コード例 #1
0
ファイル: FlatBufferBuilder.java プロジェクト: 0101RGB/CREPAS
 /**
  * Adds on offset, relative to where it will be written.
  *
  * @param off The offset to add
  */
 public void addOffset(int off) {
   prep(Constants.SIZEOF_INT, 0); // Ensure alignment is already done.
   assert off <= offset();
   off = offset() - off + Constants.SIZEOF_INT;
   putInt(off);
 }
コード例 #2
0
ファイル: FlatBufferBuilder.java プロジェクト: 0101RGB/CREPAS
 /**
  * Finish off the creation of an array and all its elements. The array must be created with {@link
  * #startVector(int, int, int)}.
  *
  * @return The offset at which the newly created array starts.
  * @see #startVector(int, int, int)
  */
 public int endVector() {
   putInt(vector_num_elems);
   return offset();
 }
コード例 #3
0
ファイル: FlatBufferBuilder.java プロジェクト: 0101RGB/CREPAS
 public void addInt(int x) {
   prep(4, 0);
   putInt(x);
 }