Searched refs:AddByte (Results 1 – 8 of 8) sorted by relevance
/external/flatbuffers/tests/FlatBuffers.Test/ |
D | FlatBuffersFuzzTests.cs | 41 builder.AddByte(255); in TestNumbers() 71 builder.AddByte(1); in TestVector_1xUInt8() 83 builder.AddByte(1); in TestVector_2xUint8() 85 builder.AddByte(2); in TestVector_2xUint8() 402 builder.AddByte(33); in TestVTableWithAVectorOf_2xStructOf_2xInt8() 403 builder.AddByte(44); in TestVTableWithAVectorOf_2xStructOf_2xInt8() 404 builder.AddByte(55); in TestVTableWithAVectorOf_2xStructOf_2xInt8() 405 builder.AddByte(66); in TestVTableWithAVectorOf_2xStructOf_2xInt8() 436 builder.AddByte(0, 33, 0); in TestVTableWithSomeElements() 469 builder.AddByte(0, 33, 0); in TestTwoFinishTable() [all …]
|
D | FlatBufferBuilderTests.cs | 56 fbb.AddByte(0, 0, 0); in FlatBufferBuilder_WithForceDefaults_WhenAddByte_AndDefaultValue_OffsetIncreasesBySize() 166 fbb.AddByte(0, 0, 0); in FlatBufferBuilder_WhenAddByte_AndDefaultValue_OffsetIsUnchanged()
|
D | FlatBuffersExampleTests.cs | 71 fbb.AddByte((byte)i); in CanCreateNewFlatBufferFromScratch()
|
/external/flatbuffers/net/FlatBuffers/ |
D | FlatBufferBuilder.cs | 241 public void AddByte(byte x) { Prep(sizeof(byte), 0); PutByte(x); } in AddByte() method in FlatBuffers.FlatBufferBuilder 460 …public void AddByte(int o, byte x, byte d) { if (ForceDefaults || x != d) { AddByte(x); Slot(o); }… in AddByte() method in FlatBuffers.FlatBufferBuilder 554 AddByte(0); in CreateString() 574 AddByte(0); in CreateUTF8String() 775 AddByte((byte)fileIdentifier[i]); in Finish()
|
/external/flatbuffers/tests/union_vector/ |
D | Movie.cs | 45 …erType(FlatBufferBuilder builder, Character mainCharacterType) { builder.AddByte(0, (byte)mainChar… in AddMainCharacterType() 48 …r(1, data.Length, 1); for (int i = data.Length - 1; i >= 0; i--) builder.AddByte((byte)data[i]); r… in CreateCharactersTypeVector()
|
/external/flatbuffers/tests/MyGame/Example/ |
D | Monster.cs | 197 …r(1, data.Length, 1); for (int i = data.Length - 1; i >= 0; i--) builder.AddByte(data[i]); return … in CreateInventoryVector() 201 …public static void AddTestType(FlatBufferBuilder builder, Any testType) { builder.AddByte(7, (byte… in AddTestType() 215 …r(1, data.Length, 1); for (int i = data.Length - 1; i >= 0; i--) builder.AddByte(data[i]); return … in CreateTestnestedflatbufferVector() 242 …r(1, data.Length, 1); for (int i = data.Length - 1; i >= 0; i--) builder.AddByte(data[i]); return … in CreateFlexVector() 279 …ype(FlatBufferBuilder builder, AnyUniqueAliases anyUniqueType) { builder.AddByte(43, (byte)anyUniq… in AddAnyUniqueType() 281 …atBufferBuilder builder, AnyAmbiguousAliases anyAmbiguousType) { builder.AddByte(45, (byte)anyAmbi… in AddAnyAmbiguousType()
|
D | TypeAliases.cs | 90 public static void AddU8(FlatBufferBuilder builder, byte u8) { builder.AddByte(1, u8, 0); } in AddU8()
|
/external/flatbuffers/docs/source/ |
D | Tutorial.md | 887 builder.AddByte((byte)i);
|