SYMBOL INDEX (22952 symbols across 993 files) FILE: android/app/src/main/cpp/animals.cpp function JNIEXPORT (line 27) | JNIEXPORT jbyteArray JNICALL FILE: android/app/src/main/cpp/generated/animal_generated.h function namespace (line 15) | namespace com { FILE: benchmarks/cpp/bench.h type Bench (line 6) | struct Bench { FILE: benchmarks/cpp/benchmark_main.cpp function Encode (line 8) | static inline void Encode(benchmark::State& state, function Decode (line 17) | static inline void Decode(benchmark::State& state, function Use (line 28) | static inline void Use(benchmark::State& state, std::unique_ptr& ... function BM_Flatbuffers_Encode (line 43) | static void BM_Flatbuffers_Encode(benchmark::State& state) { function BM_Flatbuffers_Decode (line 53) | static void BM_Flatbuffers_Decode(benchmark::State& state) { function BM_Flatbuffers_Use (line 63) | static void BM_Flatbuffers_Use(benchmark::State& state) { function BM_Raw_Encode (line 73) | static void BM_Raw_Encode(benchmark::State& state) { function BM_Raw_Decode (line 82) | static void BM_Raw_Decode(benchmark::State& state) { function BM_Raw_Use (line 91) | static void BM_Raw_Use(benchmark::State& state) { FILE: benchmarks/cpp/flatbuffers/bench_generated.h function namespace (line 15) | namespace benchmarks_flatbuffers { function Bar (line 78) | Bar FLATBUFFERS_FINAL_CLASS { function time (line 105) | int32_t time() const { return flatbuffers::EndianScalar(time_); } function size (line 107) | uint16_t size() const { return flatbuffers::EndianScalar(size_); } function FLATBUFFERS_FINAL_CLASS (line 184) | struct FooBarContainer FLATBUFFERS_FINAL_CLASS : private flatbuffers::Ta... function benchmarks_flatbuffers (line 280) | inline const benchmarks_flatbuffers::FooBarContainer* GetFooBarContainer( function benchmarks_flatbuffers (line 285) | inline const benchmarks_flatbuffers::FooBarContainer* function VerifyFooBarContainerBuffer (line 291) | inline bool VerifyFooBarContainerBuffer(flatbuffers::Verifier& verifier) { function VerifySizePrefixedFooBarContainerBuffer (line 296) | inline bool VerifySizePrefixedFooBarContainerBuffer( function FinishFooBarContainerBuffer (line 303) | inline void FinishFooBarContainerBuffer( function FinishSizePrefixedFooBarContainerBuffer (line 309) | inline void FinishSizePrefixedFooBarContainerBuffer( FILE: benchmarks/cpp/flatbuffers/fb_bench.cpp type FlatBufferBench (line 15) | struct FlatBufferBench : Bench { method FlatBufferBench (line 16) | explicit FlatBufferBench(int64_t initial_size, Allocator* allocator) method Use (line 43) | int64_t Use(void* decoded) override { function NewFlatBuffersBench (line 76) | std::unique_ptr NewFlatBuffersBench(int64_t initial_size, FILE: benchmarks/cpp/flatbuffers/fb_bench.h type StaticAllocator (line 10) | struct StaticAllocator function explicit (line 11) | explicit StaticAllocator(uint8_t* buffer) : buffer_(buffer) {} function deallocate (line 15) | void deallocate(uint8_t*, size_t) override {} FILE: benchmarks/cpp/raw/raw_bench.cpp type Enum (line 13) | enum Enum { Apples, Pears, Bananas } type Foo (line 15) | struct Foo { type Bar (line 22) | struct Bar { type FooBar (line 29) | struct FooBar { type FooBarContainer (line 39) | struct FooBarContainer { type RawBench (line 47) | struct RawBench : Bench { method Use (line 77) | int64_t Use(void* decoded) override { function NewRawBench (line 107) | std::unique_ptr NewRawBench() { FILE: dart/example/example.dart function main (line 23) | void main() function builderTest (line 28) | void builderTest() function objectBuilderTest (line 87) | void objectBuilderTest() function verify (line 121) | bool verify(List buffer) FILE: dart/example/monster_my_game.sample_generated.dart class Color (line 10) | class Color { method _createOrNull (line 22) | Color? _createOrNull(int? value) method containsValue (line 27) | bool containsValue(int value) method toString (line 37) | String toString() class _ColorReader (line 42) | class _ColorReader extends fb.Reader { method read (line 49) | Color read(fb.BufferContext bc, int offset) class EquipmentTypeId (line 53) | class EquipmentTypeId { method _createOrNull (line 67) | EquipmentTypeId? _createOrNull(int? value) method containsValue (line 72) | bool containsValue(int value) method toString (line 81) | String toString() class _EquipmentTypeIdReader (line 86) | class _EquipmentTypeIdReader extends fb.Reader { method read (line 93) | EquipmentTypeId read(fb.BufferContext bc, int offset) class Vec3 (line 97) | class Vec3 { method toString (line 110) | String toString() class _Vec3Reader (line 115) | class _Vec3Reader extends fb.StructReader { method createObject (line 122) | Vec3 createObject(fb.BufferContext bc, int offset) class Vec3Builder (line 125) | class Vec3Builder { method finish (line 130) | int finish(double x, double y, double z) class Vec3ObjectBuilder (line 138) | class Vec3ObjectBuilder extends fb.ObjectBuilder { method finish (line 150) | int finish(fb.Builder fbBuilder) method toBytes (line 159) | Uint8List toBytes([String? fileIdentifier]) class Monster (line 166) | class Monster { method toString (line 207) | String toString() class _MonsterReader (line 212) | class _MonsterReader extends fb.TableReader { method createObject (line 216) | Monster createObject(fb.BufferContext bc, int offset) class MonsterBuilder (line 220) | class MonsterBuilder { method begin (line 225) | void begin() method addPos (line 229) | int addPos(int offset) method addMana (line 234) | int addMana(int? mana) method addHp (line 239) | int addHp(int? hp) method addNameOffset (line 244) | int addNameOffset(int? offset) method addInventoryOffset (line 249) | int addInventoryOffset(int? offset) method addColor (line 254) | int addColor(Color? color) method addWeaponsOffset (line 259) | int addWeaponsOffset(int? offset) method addEquippedType (line 264) | int addEquippedType(EquipmentTypeId? equippedType) method addEquippedOffset (line 269) | int addEquippedOffset(int? offset) method addPathOffset (line 274) | int addPathOffset(int? offset) method finish (line 279) | int finish() class MonsterObjectBuilder (line 284) | class MonsterObjectBuilder extends fb.ObjectBuilder { method finish (line 320) | int finish(fb.Builder fbBuilder) method toBytes (line 354) | Uint8List toBytes([String? fileIdentifier]) class Weapon (line 361) | class Weapon { method toString (line 378) | String toString() class _WeaponReader (line 383) | class _WeaponReader extends fb.TableReader { method createObject (line 387) | Weapon createObject(fb.BufferContext bc, int offset) class WeaponBuilder (line 390) | class WeaponBuilder { method begin (line 395) | void begin() method addNameOffset (line 399) | int addNameOffset(int? offset) method addDamage (line 404) | int addDamage(int? damage) method finish (line 409) | int finish() class WeaponObjectBuilder (line 414) | class WeaponObjectBuilder extends fb.ObjectBuilder { method finish (line 424) | int finish(fb.Builder fbBuilder) method toBytes (line 436) | Uint8List toBytes([String? fileIdentifier]) FILE: dart/lib/flat_buffers.dart type StructBuilder (line 21) | typedef StructBuilder = void Function(); class BufferContext (line 24) | class BufferContext { method derefObject (line 40) | int derefObject(int offset) method _asUint8List (line 43) | Uint8List _asUint8List(int offset, int length) method _getFloat64 (line 47) | double _getFloat64(int offset) method _getFloat32 (line 50) | double _getFloat32(int offset) method _getInt64 (line 53) | int _getInt64(int offset) method _getInt32 (line 56) | int _getInt32(int offset) method _getInt16 (line 59) | int _getInt16(int offset) method _getInt8 (line 62) | int _getInt8(int offset) method _getUint64 (line 65) | int _getUint64(int offset) method _getUint32 (line 68) | int _getUint32(int offset) method _getUint16 (line 71) | int _getUint16(int offset) method _getUint8 (line 74) | int _getUint8(int offset) class Packable (line 78) | abstract class Packable { method pack (line 80) | int pack(Builder fbBuilder) class ObjectBuilder (line 84) | abstract class ObjectBuilder { method getOrCreateOffset (line 93) | int getOrCreateOffset(Builder fbBuilder) method finish (line 99) | int finish(Builder fbBuilder) method toBytes (line 103) | Uint8List toBytes() class Builder (line 107) | class Builder { method size (line 163) | int size() method addBool (line 168) | void addBool(int field, bool? value, [bool? def]) method addInt32 (line 179) | void addInt32(int field, int? value, [int? def]) method addInt16 (line 190) | void addInt16(int field, int? value, [int? def]) method addInt8 (line 201) | void addInt8(int field, int? value, [int? def]) method addStruct (line 210) | void addStruct(int field, int offset) method addOffset (line 217) | void addOffset(int field, int? offset) method addUint32 (line 228) | void addUint32(int field, int? value, [int? def]) method addUint16 (line 239) | void addUint16(int field, int? value, [int? def]) method addUint8 (line 250) | void addUint8(int field, int? value, [int? def]) method addFloat32 (line 261) | void addFloat32(int field, double? value, [double? def]) method addFloat64 (line 272) | void addFloat64(int field, double? value, [double? def]) method addUint64 (line 283) | void addUint64(int field, int? value, [double? def]) method addInt64 (line 294) | void addInt64(int field, int? value, [double? def]) method endTable (line 304) | int endTable() method finish (line 365) | void finish(int offset, [String? fileIdentifier]) method putFloat64 (line 394) | void putFloat64(double value) method putFloat32 (line 402) | void putFloat32(double value) method putBool (line 411) | void putBool(bool value) method putInt64 (line 419) | void putInt64(int value) method putInt32 (line 427) | void putInt32(int value) method putInt16 (line 435) | void putInt16(int value) method putInt8 (line 443) | void putInt8(int value) method putUint64 (line 451) | void putUint64(int value) method putUint32 (line 459) | void putUint32(int value) method putUint16 (line 467) | void putUint16(int value) method putUint8 (line 475) | void putUint8(int value) method reset (line 481) | void reset() method startTable (line 493) | void startTable(int numFields) method endStructVector (line 502) | int endStructVector(int count) method writeListOfStructs (line 508) | int writeListOfStructs(List structBuilders) method writeList (line 517) | int writeList(List values) method writeListFloat64 (line 532) | int writeListFloat64(List values) method writeListFloat32 (line 547) | int writeListFloat32(List values) method writeListInt64 (line 562) | int writeListInt64(List values) method writeListUint64 (line 577) | int writeListUint64(List values) method writeListInt32 (line 592) | int writeListInt32(List values) method writeListUint32 (line 607) | int writeListUint32(List values) method writeListInt16 (line 622) | int writeListInt16(List values) method writeListUint16 (line 637) | int writeListUint16(List values) method writeListBool (line 652) | int writeListBool(List values) method writeListInt8 (line 657) | int writeListInt8(List values) method writeListUint8 (line 672) | int writeListUint8(List values) method writeString (line 694) | int writeString(String value, {bool asciiOptimization = false}) method _writeString (line 706) | int _writeString(String value, bool asciiOptimization) method _tryWriteASCIIString (line 721) | bool _tryWriteASCIIString(String value) method _writeUTFString (line 740) | void _writeUTFString(String value) method pad (line 772) | void pad(int howManyBytes) method _prepare (line 782) | void _prepare(int size, int count, {int additionalBytes = 0}) method _trackField (line 815) | void _trackField(int field) method _setFloat64AtTail (line 818) | void _setFloat64AtTail(int tail, double x) method _setFloat32AtTail (line 822) | void _setFloat32AtTail(int tail, double x) method _setUint64AtTail (line 826) | void _setUint64AtTail(int tail, int x) method _setInt64AtTail (line 830) | void _setInt64AtTail(int tail, int x) method _setInt32AtTail (line 834) | void _setInt32AtTail(int tail, int x) method _setUint32AtTail (line 838) | void _setUint32AtTail(int tail, int x) method _setInt16AtTail (line 842) | void _setInt16AtTail(int tail, int x) method _setUint16AtTail (line 846) | void _setUint16AtTail(int tail, int x) method _setInt8AtTail (line 850) | void _setInt8AtTail(int tail, int x) method _setUint8AtTail (line 854) | void _setUint8AtTail(int tail, int x) class BoolListReader (line 861) | class BoolListReader extends Reader> { method read (line 870) | List read(BufferContext bc, int offset) class BoolReader (line 875) | class BoolReader extends Reader { method read (line 884) | bool read(BufferContext bc, int offset) class Float64ListReader (line 890) | class Float64ListReader extends Reader> { method read (line 899) | List read(BufferContext bc, int offset) class Float32ListReader (line 903) | class Float32ListReader extends Reader> { method read (line 912) | List read(BufferContext bc, int offset) class Float64Reader (line 916) | class Float64Reader extends Reader { method read (line 925) | double read(BufferContext bc, int offset) class Float32Reader (line 928) | class Float32Reader extends Reader { method read (line 937) | double read(BufferContext bc, int offset) class Int64Reader (line 940) | class Int64Reader extends Reader { method read (line 949) | int read(BufferContext bc, int offset) class Int32Reader (line 953) | class Int32Reader extends Reader { method read (line 962) | int read(BufferContext bc, int offset) class Int16Reader (line 966) | class Int16Reader extends Reader { method read (line 975) | int read(BufferContext bc, int offset) class Int8Reader (line 979) | class Int8Reader extends Reader { method read (line 988) | int read(BufferContext bc, int offset) class ListReader (line 992) | class ListReader extends Reader> { method read (line 1010) | List read(BufferContext bc, int offset) class Reader (line 1026) | abstract class Reader { method read (line 1033) | T read(BufferContext bc, int offset) method vTableGet (line 1037) | T vTableGet(BufferContext object, int offset, int field, T defaultValue) method vTableGetNullable (line 1044) | T? vTableGetNullable(BufferContext object, int offset, int field) method _vTableFieldOffset (line 1050) | int _vTableFieldOffset(BufferContext object, int offset, int field) class StringReader (line 1060) | class StringReader extends Reader { method read (line 1071) | String read(BufferContext bc, int offset) method _isLatin (line 1082) | bool _isLatin(Uint8List bytes) class StructReader (line 1094) | abstract class StructReader extends Reader { method createObject (line 1098) | T createObject(BufferContext bc, int offset) method read (line 1101) | T read(BufferContext bc, int offset) class TableReader (line 1107) | abstract class TableReader extends Reader { method createObject (line 1115) | T createObject(BufferContext bc, int offset) method read (line 1118) | T read(BufferContext bc, int offset) class Uint32ListReader (line 1127) | class Uint32ListReader extends Reader> { method read (line 1136) | List read(BufferContext bc, int offset) class Uint64Reader (line 1143) | class Uint64Reader extends Reader { method read (line 1152) | int read(BufferContext bc, int offset) class Uint32Reader (line 1156) | class Uint32Reader extends Reader { method read (line 1165) | int read(BufferContext bc, int offset) class Uint16ListReader (line 1171) | class Uint16ListReader extends Reader> { method read (line 1180) | List read(BufferContext bc, int offset) class Uint16Reader (line 1185) | class Uint16Reader extends Reader { method read (line 1194) | int read(BufferContext bc, int offset) class Uint8ListReader (line 1198) | class Uint8ListReader extends Reader> { method read (line 1215) | List read(BufferContext bc, int offset) class Uint8Reader (line 1230) | class Uint8Reader extends Reader { method read (line 1239) | int read(BufferContext bc, int offset) class Int8ListReader (line 1243) | class Int8ListReader extends Reader> { method read (line 1260) | List read(BufferContext bc, int offset) class _FbFloat64List (line 1275) | class _FbFloat64List extends _FbList { class _FbFloat32List (line 1284) | class _FbFloat32List extends _FbList { class _FbGenericList (line 1293) | class _FbGenericList extends _FbList { class _FbList (line 1315) | abstract class _FbList extends Object with ListMixin implements Li... class _FbUint32List (line 1335) | class _FbUint32List extends _FbList { class _FbUint16List (line 1344) | class _FbUint16List extends _FbList { class _FbUint8List (line 1353) | class _FbUint8List extends _FbList { class _FbInt8List (line 1362) | class _FbInt8List extends _FbList { class _FbBoolList (line 1371) | class _FbBoolList extends _FbList { class _VTable (line 1380) | class _VTable { method addField (line 1404) | void addField(int field, int offset) method _offsetsMatch (line 1412) | bool _offsetsMatch(int vt2Start, ByteData buf) method computeFieldOffsets (line 1425) | void computeFieldOffsets(int tableTail) method output (line 1438) | void output(ByteData buf, int bufOffset) class Allocator (line 1455) | abstract class Allocator { method allocate (line 1459) | ByteData allocate(int size) method deallocate (line 1462) | void deallocate(ByteData data) method resize (line 1468) | ByteData resize( method _copyDownward (line 1483) | void _copyDownward( class DefaultAllocator (line 1507) | class DefaultAllocator extends Allocator { method allocate (line 1511) | ByteData allocate(int size) method deallocate (line 1514) | void deallocate(ByteData data) FILE: dart/lib/src/builder.dart class Builder (line 7) | class Builder { method buildFromObject (line 28) | ByteBuffer buildFromObject(Object? value) method _add (line 37) | void _add(Object? value) method addNull (line 71) | void addNull() method addInt (line 77) | void addInt(int value) method addBool (line 83) | void addBool(bool value) method addDouble (line 89) | void addDouble(double value) method addString (line 95) | void addString(String value) method addKey (line 122) | void addKey(String value) method addBlob (line 146) | void addBlob(ByteBuffer value) method addIntIndirectly (line 170) | void addIntIndirectly(int value, {bool cache = false}) method addDoubleIndirectly (line 198) | void addDoubleIndirectly(double value, {bool cache = false}) method startVector (line 225) | void startVector() method startMap (line 235) | void startMap() method end (line 241) | void end() method finish (line 254) | Uint8List finish() method snapshot (line 265) | ByteBuffer snapshot() method _integrityCheckOnValueAddition (line 283) | void _integrityCheckOnValueAddition() method _integrityCheckOnKeyAddition (line 296) | void _integrityCheckOnKeyAddition() method _finish (line 305) | void _finish() method _createVector (line 319) | _StackValue _createVector( method _endVector (line 384) | void _endVector(_StackPointer pointer) method _sortKeysAndEndMap (line 391) | void _sortKeysAndEndMap(_StackPointer pointer) method _endMap (line 427) | void _endMap(_StackPointer pointer) method _shouldFlip (line 451) | bool _shouldFlip(_StackValue v1, _StackValue v2) method _align (line 470) | int _align(BitWidth width) method _writeStackValue (line 476) | void _writeStackValue(_StackValue value, int byteWidth) method _writeUInt (line 493) | void _writeUInt(int value, int byteWidth) method _newOffset (line 499) | int _newOffset(int newValueSize) method _pushInt (line 514) | void _pushInt(int value, BitWidth width) method _pushUInt (line 531) | void _pushUInt(int value, BitWidth width) method _pushBuffer (line 548) | void _pushBuffer(List value) class _StackValue (line 553) | class _StackValue { method storedWidth (line 581) | BitWidth storedWidth({BitWidth width = BitWidth.width8}) method storedPackedType (line 587) | int storedPackedType({BitWidth width = BitWidth.width8}) method elementWidth (line 591) | BitWidth elementWidth(int size, int index) method asU8List (line 608) | List asU8List(BitWidth width) class _StackPointer (line 676) | class _StackPointer { class _KeysHash (line 683) | class _KeysHash { FILE: dart/lib/src/reference.dart class Reference (line 10) | class Reference { method fromBuffer (line 31) | Reference fromBuffer(ByteBuffer buffer) method _readInt (line 326) | int _readInt(int offset, BitWidth width) method _readUInt (line 340) | int _readUInt(int offset, BitWidth width) method _readFloat (line 354) | double _readFloat(int offset, BitWidth width) method _validateOffset (line 367) | void _validateOffset(int offset, BitWidth width) method _keyIndex (line 375) | int? _keyIndex(String key) method _diffKeys (line 400) | int _diffKeys(List input, int index, int indirectOffset, int byte... method _valueForIndexWithKey (line 413) | Reference _valueForIndexWithKey(int index, String key) method _valueForIndex (line 426) | Reference _valueForIndex(int index) method _keyForIndex (line 439) | String _keyForIndex(int index) class _VectorIterator (line 459) | class _VectorIterator method moveNext (line 471) | bool moveNext() class _MapKeyIterator (line 480) | class _MapKeyIterator with IterableMixin implements Iterator { method createObject (line 60) | Foo createObject(fb.BufferContext bc, int offset) class FooBuilder (line 63) | class FooBuilder { method begin (line 68) | void begin() method addMyFoo (line 72) | int addMyFoo(int offset) method finish (line 77) | int finish() class FooObjectBuilder (line 82) | class FooObjectBuilder extends fb.ObjectBuilder { method finish (line 89) | int finish(fb.Builder fbBuilder) method toBytes (line 99) | Uint8List toBytes([String? fileIdentifier]) class FooProperties (line 106) | class FooProperties { method toString (line 118) | String toString() method unpack (line 122) | FooPropertiesT unpack() method pack (line 124) | int pack(fb.Builder fbBuilder, FooPropertiesT? object) class FooPropertiesT (line 130) | class FooPropertiesT implements fb.Packable { method pack (line 137) | int pack(fb.Builder fbBuilder) method toString (line 144) | String toString() class _FooPropertiesReader (line 149) | class _FooPropertiesReader extends fb.StructReader { method createObject (line 156) | FooProperties createObject(fb.BufferContext bc, int offset) class FooPropertiesBuilder (line 160) | class FooPropertiesBuilder { method finish (line 165) | int finish(bool a, bool b) class FooPropertiesObjectBuilder (line 172) | class FooPropertiesObjectBuilder extends fb.ObjectBuilder { method finish (line 182) | int finish(fb.Builder fbBuilder) method toBytes (line 190) | Uint8List toBytes([String? fileIdentifier]) FILE: dart/test/enums_generated.dart type OptionsEnum (line 8) | enum OptionsEnum { class _OptionsEnumReader (line 37) | class _OptionsEnumReader extends fb.Reader { method read (line 44) | OptionsEnum read(fb.BufferContext bc, int offset) class MyTable (line 48) | class MyTable { method toString (line 65) | String toString() method unpack (line 69) | MyTableT unpack() method pack (line 76) | int pack(fb.Builder fbBuilder, MyTableT? object) class MyTableT (line 82) | class MyTableT implements fb.Packable { method pack (line 88) | int pack(fb.Builder fbBuilder) method toString (line 98) | String toString() class _MyTableReader (line 103) | class _MyTableReader extends fb.TableReader { method createObject (line 107) | MyTable createObject(fb.BufferContext bc, int offset) class MyTableBuilder (line 111) | class MyTableBuilder { method begin (line 116) | void begin() method addOptionsOffset (line 120) | int addOptionsOffset(int? offset) method finish (line 125) | int finish() class MyTableObjectBuilder (line 130) | class MyTableObjectBuilder extends fb.ObjectBuilder { method finish (line 137) | int finish(fb.Builder fbBuilder) method toBytes (line 148) | Uint8List toBytes([String? fileIdentifier]) FILE: dart/test/flat_buffers_test.dart function main (line 14) | main() function indexToField (line 24) | int indexToField(int index) class CheckOtherLangaugesData (line 28) | @reflectiveTest class CustomAllocator (line 151) | class CustomAllocator extends Allocator { method buffer (line 155) | Uint8List buffer(int size) method allocate (line 158) | ByteData allocate(int size) method deallocate (line 167) | void deallocate(ByteData _) class BuilderTest (line 170) | @reflectiveTest method test_monsterBuilder (line 172) | void test_monsterBuilder([Builder? builder]) method test_error_addInt32_withoutStartTable (line 222) | void test_error_addInt32_withoutStartTable([Builder? builder]) method test_error_addOffset_withoutStartTable (line 229) | void test_error_addOffset_withoutStartTable() method test_error_endTable_withoutStartTable (line 236) | void test_error_endTable_withoutStartTable() method test_error_startTable_duringTable (line 243) | void test_error_startTable_duringTable() method test_error_writeString_duringTable (line 251) | void test_error_writeString_duringTable() method test_file_identifier (line 259) | void test_file_identifier() method test_low (line 288) | void test_low() method test_table_default (line 367) | void test_table_default() method test_table_format (line 394) | void test_table_format([Builder? builder]) method test_table_string (line 429) | void test_table_string() method test_table_types (line 469) | void test_table_types([Builder? builder]) method test_writeList_of_Uint32 (line 527) | void test_writeList_of_Uint32() method test_writeList_ofBool (line 544) | void test_writeList_ofBool() method verifyListBooleans (line 545) | void verifyListBooleans(int len, List trueBits) method test_writeList_ofInt32 (line 587) | void test_writeList_ofInt32() method test_writeList_ofFloat64 (line 602) | void test_writeList_ofFloat64() method test_writeList_ofFloat32 (line 623) | void test_writeList_ofFloat32() method test_writeList_ofObjects (line 642) | void test_writeList_ofObjects([Builder? builder]) method test_writeList_ofStrings_asRoot (line 679) | void test_writeList_ofStrings_asRoot() method test_writeList_ofStrings_inObject (line 697) | void test_writeList_ofStrings_inObject([Builder? builder]) method test_writeList_ofUint32 (line 720) | void test_writeList_ofUint32() method test_writeList_ofUint16 (line 735) | void test_writeList_ofUint16() method test_writeList_ofUint8 (line 750) | void test_writeList_ofUint8() method test_reset (line 775) | void test_reset() method _permutationsOf (line 812) | List> _permutationsOf(List source) method permutate (line 815) | void permutate(List items, int startAt) method _factorial (line 835) | int _factorial(int n) class ObjectAPITest (line 844) | @reflectiveTest method test_tableStat (line 846) | void test_tableStat() method test_tableMonster (line 857) | void test_tableMonster() method test_Lists (line 907) | void test_Lists() class StringListWrapperImpl (line 937) | class StringListWrapperImpl { class StringListWrapperReader (line 948) | class StringListWrapperReader extends TableReader { method createObject (line 952) | StringListWrapperImpl createObject(BufferContext object, int offset) class TestPointImpl (line 957) | class TestPointImpl { class TestPointReader (line 968) | class TestPointReader extends TableReader { method createObject (line 972) | TestPointImpl createObject(BufferContext object, int offset) class GeneratorTest (line 977) | @reflectiveTest method test_constantEnumValues (line 979) | void test_constantEnumValues() class ListOfEnumsTest (line 995) | @reflectiveTest method test_listOfEnums (line 997) | void test_listOfEnums() class BoolInStructTest (line 1013) | @reflectiveTest method test_boolInStruct (line 1015) | void test_boolInStruct() FILE: dart/test/flex_builder_test.dart function main (line 6) | void main() FILE: dart/test/flex_reader_test.dart function main (line 6) | void main() function b (line 855) | ByteBuffer b(List values) function testNumbers (line 860) | void testNumbers(List buffer, List numbers) function testStrings (line 868) | void testStrings(List buffer, List numbers) function complexMap (line 876) | Reference complexMap() FILE: dart/test/flex_types_test.dart function main (line 4) | void main() FILE: dart/test/include_test1_generated.dart class TableA (line 11) | class TableA { method toString (line 29) | String toString() method unpack (line 33) | TableAT unpack() method pack (line 35) | int pack(fb.Builder fbBuilder, TableAT? object) class TableAT (line 41) | class TableAT implements fb.Packable { method pack (line 47) | int pack(fb.Builder fbBuilder) method toString (line 55) | String toString() class _TableAReader (line 60) | class _TableAReader extends fb.TableReader { method createObject (line 64) | TableA createObject(fb.BufferContext bc, int offset) class TableABuilder (line 67) | class TableABuilder { method begin (line 72) | void begin() method addBOffset (line 76) | int addBOffset(int? offset) method finish (line 81) | int finish() class TableAObjectBuilder (line 86) | class TableAObjectBuilder extends fb.ObjectBuilder { method finish (line 94) | int finish(fb.Builder fbBuilder) method toBytes (line 103) | Uint8List toBytes([String? fileIdentifier]) FILE: dart/test/include_test2_my_game.other_name_space_generated.dart type FromInclude (line 12) | enum FromInclude { class _FromIncludeReader (line 35) | class _FromIncludeReader extends fb.Reader { method read (line 42) | FromInclude read(fb.BufferContext bc, int offset) class Unused (line 46) | class Unused { method toString (line 57) | String toString() method unpack (line 61) | UnusedT unpack() method pack (line 63) | int pack(fb.Builder fbBuilder, UnusedT? object) class UnusedT (line 69) | class UnusedT implements fb.Packable { method pack (line 75) | int pack(fb.Builder fbBuilder) method toString (line 81) | String toString() class _UnusedReader (line 86) | class _UnusedReader extends fb.StructReader { method createObject (line 93) | Unused createObject(fb.BufferContext bc, int offset) class UnusedBuilder (line 96) | class UnusedBuilder { method finish (line 101) | int finish(int a) class UnusedObjectBuilder (line 107) | class UnusedObjectBuilder extends fb.ObjectBuilder { method finish (line 114) | int finish(fb.Builder fbBuilder) method toBytes (line 121) | Uint8List toBytes([String? fileIdentifier]) class TableB (line 128) | class TableB { method toString (line 143) | String toString() method unpack (line 147) | TableBT unpack() method pack (line 149) | int pack(fb.Builder fbBuilder, TableBT? object) class TableBT (line 155) | class TableBT implements fb.Packable { method pack (line 161) | int pack(fb.Builder fbBuilder) method toString (line 169) | String toString() class _TableBReader (line 174) | class _TableBReader extends fb.TableReader { method createObject (line 178) | TableB createObject(fb.BufferContext bc, int offset) class TableBBuilder (line 181) | class TableBBuilder { method begin (line 186) | void begin() method addAOffset (line 190) | int addAOffset(int? offset) method finish (line 195) | int finish() class TableBObjectBuilder (line 200) | class TableBObjectBuilder extends fb.ObjectBuilder { method finish (line 207) | int finish(fb.Builder fbBuilder) method toBytes (line 216) | Uint8List toBytes([String? fileIdentifier]) FILE: dart/test/keyword_test_keyword_test_generated.dart type Abc (line 11) | enum Abc { class _AbcReader (line 36) | class _AbcReader extends fb.Reader { method read (line 43) | Abc read(fb.BufferContext bc, int offset) type Public (line 47) | enum Public { class _PublicReader (line 68) | class _PublicReader extends fb.Reader { method read (line 75) | Public read(fb.BufferContext bc, int offset) type KeywordsInUnionTypeId (line 79) | enum KeywordsInUnionTypeId { class _KeywordsInUnionTypeIdReader (line 104) | class _KeywordsInUnionTypeIdReader extends fb.Reader { method createObject (line 181) | KeywordsInTable createObject(fb.BufferContext bc, int offset) class KeywordsInTableBuilder (line 185) | class KeywordsInTableBuilder { method begin (line 190) | void begin() method addIs (line 194) | int addIs(Abc? $is) method addPrivate (line 198) | int addPrivate(Public? private) method addType (line 202) | int addType(int? type) method addDefault (line 206) | int addDefault(bool? $default) method finish (line 211) | int finish() class KeywordsInTableObjectBuilder (line 216) | class KeywordsInTableObjectBuilder extends fb.ObjectBuilder { method finish (line 235) | int finish(fb.Builder fbBuilder) method toBytes (line 246) | Uint8List toBytes([String? fileIdentifier]) class Table2 (line 252) | class Table2 { method toString (line 274) | String toString() method unpack (line 278) | Table2T unpack() method pack (line 282) | int pack(fb.Builder fbBuilder, Table2T? object) class Table2T (line 288) | class Table2T implements fb.Packable { method pack (line 297) | int pack(fb.Builder fbBuilder) method toString (line 306) | String toString() class _Table2Reader (line 311) | class _Table2Reader extends fb.TableReader { method createObject (line 315) | Table2 createObject(fb.BufferContext bc, int offset) class Table2Builder (line 319) | class Table2Builder { method begin (line 324) | void begin() method addTypeType (line 328) | int addTypeType(KeywordsInUnionTypeId? typeType) method addTypeOffset (line 332) | int addTypeOffset(int? offset) method finish (line 337) | int finish() class Table2ObjectBuilder (line 342) | class Table2ObjectBuilder extends fb.ObjectBuilder { method finish (line 355) | int finish(fb.Builder fbBuilder) method toBytes (line 365) | Uint8List toBytes([String? fileIdentifier]) FILE: dart/test/monster_test_my_game.example2_generated.dart class Monster (line 14) | class Monster { method toString (line 27) | String toString() method unpack (line 31) | MonsterT unpack() method pack (line 33) | int pack(fb.Builder fbBuilder, MonsterT? object) class MonsterT (line 39) | class MonsterT implements fb.Packable { method pack (line 41) | int pack(fb.Builder fbBuilder) method toString (line 47) | String toString() class _MonsterReader (line 52) | class _MonsterReader extends fb.TableReader { method createObject (line 56) | Monster createObject(fb.BufferContext bc, int offset) class MonsterObjectBuilder (line 60) | class MonsterObjectBuilder extends fb.ObjectBuilder { method finish (line 65) | int finish(fb.Builder fbBuilder) method toBytes (line 72) | Uint8List toBytes([String? fileIdentifier]) FILE: dart/test/monster_test_my_game.example_generated.dart type Color (line 15) | enum Color { class _ColorReader (line 45) | class _ColorReader extends fb.Reader { method read (line 52) | Color read(fb.BufferContext bc, int offset) type Race (line 56) | enum Race { class _RaceReader (line 88) | class _RaceReader extends fb.Reader { method read (line 95) | Race read(fb.BufferContext bc, int offset) type LongEnum (line 99) | enum LongEnum { class _LongEnumReader (line 129) | class _LongEnumReader extends fb.Reader { method read (line 136) | LongEnum read(fb.BufferContext bc, int offset) type AnyTypeId (line 140) | enum AnyTypeId { class _AnyTypeIdReader (line 172) | class _AnyTypeIdReader extends fb.Reader { method read (line 179) | AnyTypeId read(fb.BufferContext bc, int offset) type AnyUniqueAliasesTypeId (line 183) | enum AnyUniqueAliasesTypeId { class _AnyUniqueAliasesTypeIdReader (line 216) | class _AnyUniqueAliasesTypeIdReader extends fb.Reader { method createObject (line 325) | Test createObject(fb.BufferContext bc, int offset) class TestBuilder (line 328) | class TestBuilder { method finish (line 333) | int finish(int a, int b) class TestObjectBuilder (line 341) | class TestObjectBuilder extends fb.ObjectBuilder { method finish (line 349) | int finish(fb.Builder fbBuilder) method toBytes (line 358) | Uint8List toBytes([String? fileIdentifier]) class TestSimpleTableWithEnum (line 365) | class TestSimpleTableWithEnum { method toString (line 382) | String toString() method unpack (line 386) | TestSimpleTableWithEnumT unpack() method pack (line 388) | int pack(fb.Builder fbBuilder, TestSimpleTableWithEnumT? object) class TestSimpleTableWithEnumT (line 394) | class TestSimpleTableWithEnumT implements fb.Packable { method pack (line 400) | int pack(fb.Builder fbBuilder) method toString (line 407) | String toString() class _TestSimpleTableWithEnumReader (line 412) | class _TestSimpleTableWithEnumReader method createObject (line 417) | TestSimpleTableWithEnum createObject(fb.BufferContext bc, int offset) class TestSimpleTableWithEnumBuilder (line 421) | class TestSimpleTableWithEnumBuilder { method begin (line 426) | void begin() method addColor (line 430) | int addColor(Color? color) method finish (line 435) | int finish() class TestSimpleTableWithEnumObjectBuilder (line 440) | class TestSimpleTableWithEnumObjectBuilder extends fb.ObjectBuilder { method finish (line 447) | int finish(fb.Builder fbBuilder) method toBytes (line 455) | Uint8List toBytes([String? fileIdentifier]) class Vec3 (line 462) | class Vec3 { method toString (line 479) | String toString() method unpack (line 483) | Vec3T unpack() method pack (line 492) | int pack(fb.Builder fbBuilder, Vec3T? object) class Vec3T (line 498) | class Vec3T implements fb.Packable { method pack (line 516) | int pack(fb.Builder fbBuilder) method toString (line 530) | String toString() class _Vec3Reader (line 535) | class _Vec3Reader extends fb.StructReader { method createObject (line 542) | Vec3 createObject(fb.BufferContext bc, int offset) class Vec3Builder (line 545) | class Vec3Builder { method finish (line 550) | int finish( class Vec3ObjectBuilder (line 571) | class Vec3ObjectBuilder extends fb.ObjectBuilder { method finish (line 595) | int finish(fb.Builder fbBuilder) method toBytes (line 610) | Uint8List toBytes([String? fileIdentifier]) class Ability (line 617) | class Ability { method toString (line 629) | String toString() method unpack (line 633) | AbilityT unpack() method pack (line 635) | int pack(fb.Builder fbBuilder, AbilityT? object) class AbilityT (line 641) | class AbilityT implements fb.Packable { method pack (line 648) | int pack(fb.Builder fbBuilder) method toString (line 655) | String toString() class _AbilityReader (line 660) | class _AbilityReader extends fb.StructReader { method createObject (line 667) | Ability createObject(fb.BufferContext bc, int offset) class AbilityBuilder (line 671) | class AbilityBuilder { method finish (line 676) | int finish(int id, int distance) class AbilityObjectBuilder (line 683) | class AbilityObjectBuilder extends fb.ObjectBuilder { method finish (line 693) | int finish(fb.Builder fbBuilder) method toBytes (line 701) | Uint8List toBytes([String? fileIdentifier]) class StructOfStructs (line 708) | class StructOfStructs { method toString (line 721) | String toString() method unpack (line 725) | StructOfStructsT unpack() method pack (line 728) | int pack(fb.Builder fbBuilder, StructOfStructsT? object) class StructOfStructsT (line 734) | class StructOfStructsT implements fb.Packable { method pack (line 742) | int pack(fb.Builder fbBuilder) method toString (line 750) | String toString() class _StructOfStructsReader (line 755) | class _StructOfStructsReader extends fb.StructReader { method createObject (line 762) | StructOfStructs createObject(fb.BufferContext bc, int offset) class StructOfStructsBuilder (line 766) | class StructOfStructsBuilder { method finish (line 771) | int finish(fb.StructBuilder a, fb.StructBuilder b, fb.StructBuilder c) class StructOfStructsObjectBuilder (line 779) | class StructOfStructsObjectBuilder extends fb.ObjectBuilder { method finish (line 794) | int finish(fb.Builder fbBuilder) method toBytes (line 803) | Uint8List toBytes([String? fileIdentifier]) class StructOfStructsOfStructs (line 810) | class StructOfStructsOfStructs { method toString (line 822) | String toString() method unpack (line 826) | StructOfStructsOfStructsT unpack() method pack (line 829) | int pack(fb.Builder fbBuilder, StructOfStructsOfStructsT? object) class StructOfStructsOfStructsT (line 835) | class StructOfStructsOfStructsT implements fb.Packable { method pack (line 841) | int pack(fb.Builder fbBuilder) method toString (line 847) | String toString() class _StructOfStructsOfStructsReader (line 852) | class _StructOfStructsOfStructsReader method createObject (line 860) | StructOfStructsOfStructs createObject(fb.BufferContext bc, int offset) class StructOfStructsOfStructsBuilder (line 864) | class StructOfStructsOfStructsBuilder { method finish (line 869) | int finish(fb.StructBuilder a) class StructOfStructsOfStructsObjectBuilder (line 875) | class StructOfStructsOfStructsObjectBuilder extends fb.ObjectBuilder { method finish (line 884) | int finish(fb.Builder fbBuilder) method toBytes (line 891) | Uint8List toBytes([String? fileIdentifier]) class Stat (line 898) | class Stat { method toString (line 916) | String toString() method unpack (line 920) | StatT unpack() method pack (line 922) | int pack(fb.Builder fbBuilder, StatT? object) class StatT (line 928) | class StatT implements fb.Packable { method pack (line 936) | int pack(fb.Builder fbBuilder) method toString (line 946) | String toString() class _StatReader (line 951) | class _StatReader extends fb.TableReader { method createObject (line 955) | Stat createObject(fb.BufferContext bc, int offset) class StatBuilder (line 958) | class StatBuilder { method begin (line 963) | void begin() method addIdOffset (line 967) | int addIdOffset(int? offset) method addVal (line 972) | int addVal(int? val) method addCount (line 977) | int addCount(int? count) method finish (line 982) | int finish() class StatObjectBuilder (line 987) | class StatObjectBuilder extends fb.ObjectBuilder { method finish (line 999) | int finish(fb.Builder fbBuilder) method toBytes (line 1010) | Uint8List toBytes([String? fileIdentifier]) class Referrable (line 1017) | class Referrable { method toString (line 1032) | String toString() method unpack (line 1036) | ReferrableT unpack() method pack (line 1038) | int pack(fb.Builder fbBuilder, ReferrableT? object) class ReferrableT (line 1044) | class ReferrableT implements fb.Packable { method pack (line 1050) | int pack(fb.Builder fbBuilder) method toString (line 1057) | String toString() class _ReferrableReader (line 1062) | class _ReferrableReader extends fb.TableReader { method createObject (line 1066) | Referrable createObject(fb.BufferContext bc, int offset) class ReferrableBuilder (line 1070) | class ReferrableBuilder { method begin (line 1075) | void begin() method addId (line 1079) | int addId(int? id) method finish (line 1084) | int finish() class ReferrableObjectBuilder (line 1089) | class ReferrableObjectBuilder extends fb.ObjectBuilder { method finish (line 1096) | int finish(fb.Builder fbBuilder) method toBytes (line 1104) | Uint8List toBytes([String? fileIdentifier]) class Monster (line 1112) | class Monster { method toString (line 1326) | String toString() method unpack (line 1330) | MonsterT unpack() method pack (line 1394) | int pack(fb.Builder fbBuilder, MonsterT? object) class MonsterT (line 1401) | class MonsterT implements fb.Packable { method pack (line 1532) | int pack(fb.Builder fbBuilder) method toString (line 1700) | String toString() class _MonsterReader (line 1705) | class _MonsterReader extends fb.TableReader { method createObject (line 1709) | Monster createObject(fb.BufferContext bc, int offset) class MonsterBuilder (line 1713) | class MonsterBuilder { method begin (line 1718) | void begin() method addPos (line 1722) | int addPos(int offset) method addMana (line 1727) | int addMana(int? mana) method addHp (line 1732) | int addHp(int? hp) method addNameOffset (line 1737) | int addNameOffset(int? offset) method addInventoryOffset (line 1742) | int addInventoryOffset(int? offset) method addColor (line 1747) | int addColor(Color? color) method addTestType (line 1752) | int addTestType(AnyTypeId? testType) method addTestOffset (line 1757) | int addTestOffset(int? offset) method addTest4Offset (line 1762) | int addTest4Offset(int? offset) method addTestarrayofstringOffset (line 1767) | int addTestarrayofstringOffset(int? offset) method addTestarrayoftablesOffset (line 1772) | int addTestarrayoftablesOffset(int? offset) method addEnemyOffset (line 1777) | int addEnemyOffset(int? offset) method addTestnestedflatbufferOffset (line 1782) | int addTestnestedflatbufferOffset(int? offset) method addTestemptyOffset (line 1787) | int addTestemptyOffset(int? offset) method addTestbool (line 1792) | int addTestbool(bool? testbool) method addTesthashs32Fnv1 (line 1797) | int addTesthashs32Fnv1(int? testhashs32Fnv1) method addTesthashu32Fnv1 (line 1802) | int addTesthashu32Fnv1(int? testhashu32Fnv1) method addTesthashs64Fnv1 (line 1807) | int addTesthashs64Fnv1(int? testhashs64Fnv1) method addTesthashu64Fnv1 (line 1812) | int addTesthashu64Fnv1(int? testhashu64Fnv1) method addTesthashs32Fnv1a (line 1817) | int addTesthashs32Fnv1a(int? testhashs32Fnv1a) method addTesthashu32Fnv1a (line 1822) | int addTesthashu32Fnv1a(int? testhashu32Fnv1a) method addTesthashs64Fnv1a (line 1827) | int addTesthashs64Fnv1a(int? testhashs64Fnv1a) method addTesthashu64Fnv1a (line 1832) | int addTesthashu64Fnv1a(int? testhashu64Fnv1a) method addTestarrayofboolsOffset (line 1837) | int addTestarrayofboolsOffset(int? offset) method addTestf (line 1842) | int addTestf(double? testf) method addTestf2 (line 1847) | int addTestf2(double? testf2) method addTestf3 (line 1852) | int addTestf3(double? testf3) method addTestarrayofstring2Offset (line 1857) | int addTestarrayofstring2Offset(int? offset) method addTestarrayofsortedstructOffset (line 1862) | int addTestarrayofsortedstructOffset(int? offset) method addFlexOffset (line 1867) | int addFlexOffset(int? offset) method addTest5Offset (line 1872) | int addTest5Offset(int? offset) method addVectorOfLongsOffset (line 1877) | int addVectorOfLongsOffset(int? offset) method addVectorOfDoublesOffset (line 1882) | int addVectorOfDoublesOffset(int? offset) method addParentNamespaceTestOffset (line 1887) | int addParentNamespaceTestOffset(int? offset) method addVectorOfReferrablesOffset (line 1892) | int addVectorOfReferrablesOffset(int? offset) method addSingleWeakReference (line 1897) | int addSingleWeakReference(int? singleWeakReference) method addVectorOfWeakReferencesOffset (line 1902) | int addVectorOfWeakReferencesOffset(int? offset) method addVectorOfStrongReferrablesOffset (line 1907) | int addVectorOfStrongReferrablesOffset(int? offset) method addCoOwningReference (line 1912) | int addCoOwningReference(int? coOwningReference) method addVectorOfCoOwningReferencesOffset (line 1917) | int addVectorOfCoOwningReferencesOffset(int? offset) method addNonOwningReference (line 1922) | int addNonOwningReference(int? nonOwningReference) method addVectorOfNonOwningReferencesOffset (line 1927) | int addVectorOfNonOwningReferencesOffset(int? offset) method addAnyUniqueType (line 1932) | int addAnyUniqueType(AnyUniqueAliasesTypeId? anyUniqueType) method addAnyUniqueOffset (line 1937) | int addAnyUniqueOffset(int? offset) method addAnyAmbiguousType (line 1942) | int addAnyAmbiguousType(AnyAmbiguousAliasesTypeId? anyAmbiguousType) method addAnyAmbiguousOffset (line 1947) | int addAnyAmbiguousOffset(int? offset) method addVectorOfEnumsOffset (line 1952) | int addVectorOfEnumsOffset(int? offset) method addSignedEnum (line 1957) | int addSignedEnum(Race? signedEnum) method addTestrequirednestedflatbufferOffset (line 1962) | int addTestrequirednestedflatbufferOffset(int? offset) method addScalarKeySortedTablesOffset (line 1967) | int addScalarKeySortedTablesOffset(int? offset) method addNativeInline (line 1972) | int addNativeInline(int offset) method addLongEnumNonEnumDefault (line 1977) | int addLongEnumNonEnumDefault(LongEnum? longEnumNonEnumDefault) method addLongEnumNormalDefault (line 1982) | int addLongEnumNormalDefault(LongEnum? longEnumNormalDefault) method addNanDefault (line 1987) | int addNanDefault(double? nanDefault) method addInfDefault (line 1992) | int addInfDefault(double? infDefault) method addPositiveInfDefault (line 1997) | int addPositiveInfDefault(double? positiveInfDefault) method addInfinityDefault (line 2002) | int addInfinityDefault(double? infinityDefault) method addPositiveInfinityDefault (line 2007) | int addPositiveInfinityDefault(double? positiveInfinityDefault) method addNegativeInfDefault (line 2012) | int addNegativeInfDefault(double? negativeInfDefault) method addNegativeInfinityDefault (line 2017) | int addNegativeInfinityDefault(double? negativeInfinityDefault) method addDoubleInfDefault (line 2022) | int addDoubleInfDefault(double? doubleInfDefault) method finish (line 2027) | int finish() class MonsterObjectBuilder (line 2032) | class MonsterObjectBuilder extends fb.ObjectBuilder { method finish (line 2221) | int finish(fb.Builder fbBuilder) method toBytes (line 2389) | Uint8List toBytes([String? fileIdentifier]) class TypeAliases (line 2396) | class TypeAliases { method toString (line 2425) | String toString() method unpack (line 2429) | TypeAliasesT unpack() method pack (line 2444) | int pack(fb.Builder fbBuilder, TypeAliasesT? object) class TypeAliasesT (line 2450) | class TypeAliasesT implements fb.Packable { method pack (line 2480) | int pack(fb.Builder fbBuilder) method toString (line 2502) | String toString() class _TypeAliasesReader (line 2507) | class _TypeAliasesReader extends fb.TableReader { method createObject (line 2511) | TypeAliases createObject(fb.BufferContext bc, int offset) class TypeAliasesBuilder (line 2515) | class TypeAliasesBuilder { method begin (line 2520) | void begin() method addI8 (line 2524) | int addI8(int? i8) method addU8 (line 2529) | int addU8(int? u8) method addI16 (line 2534) | int addI16(int? i16) method addU16 (line 2539) | int addU16(int? u16) method addI32 (line 2544) | int addI32(int? i32) method addU32 (line 2549) | int addU32(int? u32) method addI64 (line 2554) | int addI64(int? i64) method addU64 (line 2559) | int addU64(int? u64) method addF32 (line 2564) | int addF32(double? f32) method addF64 (line 2569) | int addF64(double? f64) method addV8Offset (line 2574) | int addV8Offset(int? offset) method addVf64Offset (line 2579) | int addVf64Offset(int? offset) method finish (line 2584) | int finish() class TypeAliasesObjectBuilder (line 2589) | class TypeAliasesObjectBuilder extends fb.ObjectBuilder { method finish (line 2631) | int finish(fb.Builder fbBuilder) method toBytes (line 2654) | Uint8List toBytes([String? fileIdentifier]) FILE: dart/test/monster_test_my_game_generated.dart class InParentNamespace (line 14) | class InParentNamespace { method toString (line 27) | String toString() method unpack (line 31) | InParentNamespaceT unpack() method pack (line 33) | int pack(fb.Builder fbBuilder, InParentNamespaceT? object) class InParentNamespaceT (line 39) | class InParentNamespaceT implements fb.Packable { method pack (line 41) | int pack(fb.Builder fbBuilder) method toString (line 47) | String toString() class _InParentNamespaceReader (line 52) | class _InParentNamespaceReader extends fb.TableReader { method createObject (line 56) | InParentNamespace createObject(fb.BufferContext bc, int offset) class InParentNamespaceObjectBuilder (line 60) | class InParentNamespaceObjectBuilder extends fb.ObjectBuilder { method finish (line 65) | int finish(fb.Builder fbBuilder) method toBytes (line 72) | Uint8List toBytes([String? fileIdentifier]) FILE: examples/go-echo/client/client.go function RequestBody (line 15) | func RequestBody() *bytes.Reader { function ReadResponse (line 22) | func ReadResponse(r *http.Response) { function main (line 35) | func main() { FILE: examples/go-echo/hero/Warrior.go type WarriorT (line 9) | type WarriorT struct method Pack (line 14) | func (t *WarriorT) Pack(builder *flatbuffers.Builder) flatbuffers.UOff... type Warrior (line 42) | type Warrior struct method UnPackTo (line 28) | func (rcv *Warrior) UnPackTo(t *WarriorT) { method UnPack (line 33) | func (rcv *Warrior) UnPack() *WarriorT { method Init (line 60) | func (rcv *Warrior) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 65) | func (rcv *Warrior) Table() flatbuffers.Table { method Name (line 69) | func (rcv *Warrior) Name() []byte { method Hp (line 77) | func (rcv *Warrior) Hp() uint32 { method MutateHp (line 85) | func (rcv *Warrior) MutateHp(n uint32) bool { function GetRootAsWarrior (line 46) | func GetRootAsWarrior(buf []byte, offset flatbuffers.UOffsetT) *Warrior { function GetSizePrefixedRootAsWarrior (line 53) | func GetSizePrefixedRootAsWarrior(buf []byte, offset flatbuffers.UOffset... function WarriorStart (line 89) | func WarriorStart(builder *flatbuffers.Builder) { function WarriorAddName (line 92) | func WarriorAddName(builder *flatbuffers.Builder, name flatbuffers.UOffs... function WarriorAddHp (line 95) | func WarriorAddHp(builder *flatbuffers.Builder, hp uint32) { function WarriorEnd (line 98) | func WarriorEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { FILE: examples/go-echo/net/Request.go type RequestT (line 11) | type RequestT struct method Pack (line 15) | func (t *RequestT) Pack(builder *flatbuffers.Builder) flatbuffers.UOff... type Request (line 38) | type Request struct method UnPackTo (line 25) | func (rcv *Request) UnPackTo(t *RequestT) { method UnPack (line 29) | func (rcv *Request) UnPack() *RequestT { method Init (line 56) | func (rcv *Request) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 61) | func (rcv *Request) Table() flatbuffers.Table { method Player (line 65) | func (rcv *Request) Player(obj *hero.Warrior) *hero.Warrior { function GetRootAsRequest (line 42) | func GetRootAsRequest(buf []byte, offset flatbuffers.UOffsetT) *Request { function GetSizePrefixedRootAsRequest (line 49) | func GetSizePrefixedRootAsRequest(buf []byte, offset flatbuffers.UOffset... function RequestStart (line 78) | func RequestStart(builder *flatbuffers.Builder) { function RequestAddPlayer (line 81) | func RequestAddPlayer(builder *flatbuffers.Builder, player flatbuffers.U... function RequestEnd (line 84) | func RequestEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { FILE: examples/go-echo/net/Response.go type ResponseT (line 11) | type ResponseT struct method Pack (line 15) | func (t *ResponseT) Pack(builder *flatbuffers.Builder) flatbuffers.UOf... type Response (line 38) | type Response struct method UnPackTo (line 25) | func (rcv *Response) UnPackTo(t *ResponseT) { method UnPack (line 29) | func (rcv *Response) UnPack() *ResponseT { method Init (line 56) | func (rcv *Response) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 61) | func (rcv *Response) Table() flatbuffers.Table { method Player (line 65) | func (rcv *Response) Player(obj *hero.Warrior) *hero.Warrior { function GetRootAsResponse (line 42) | func GetRootAsResponse(buf []byte, offset flatbuffers.UOffsetT) *Response { function GetSizePrefixedRootAsResponse (line 49) | func GetSizePrefixedRootAsResponse(buf []byte, offset flatbuffers.UOffse... function ResponseStart (line 78) | func ResponseStart(builder *flatbuffers.Builder) { function ResponseAddPlayer (line 81) | func ResponseAddPlayer(builder *flatbuffers.Builder, player flatbuffers.... function ResponseEnd (line 84) | func ResponseEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { FILE: examples/go-echo/server/server.go function echo (line 10) | func echo(w http.ResponseWriter, r *http.Request) { function main (line 24) | func main() { FILE: go/builder.go type Builder (line 10) | type Builder struct method Reset (line 46) | func (b *Builder) Reset() { method FinishedBytes (line 74) | func (b *Builder) FinishedBytes() []byte { method StartObject (line 80) | func (b *Builder) StartObject(numfields int) { method WriteVtable (line 119) | func (b *Builder) WriteVtable() (n UOffsetT) { method EndObject (line 208) | func (b *Builder) EndObject() UOffsetT { method growByteBuffer (line 217) | func (b *Builder) growByteBuffer() { method Head (line 239) | func (b *Builder) Head() UOffsetT { method Offset (line 244) | func (b *Builder) Offset() UOffsetT { method Pad (line 249) | func (b *Builder) Pad(n int) { method Prep (line 260) | func (b *Builder) Prep(size, additionalBytes int) { method PrependSOffsetT (line 280) | func (b *Builder) PrependSOffsetT(off SOffsetT) { method PrependUOffsetT (line 290) | func (b *Builder) PrependUOffsetT(off UOffsetT) { method StartVector (line 305) | func (b *Builder) StartVector(elemSize, numElems, alignment int) UOffs... method EndVector (line 314) | func (b *Builder) EndVector(vectorNumElems int) UOffsetT { method CreateVectorOfTables (line 325) | func (b *Builder) CreateVectorOfTables(offsets []UOffsetT) UOffsetT { method CreateVectorOfSortedTables (line 336) | func (b *Builder) CreateVectorOfSortedTables(offsets []UOffsetT, keyCo... method CreateSharedString (line 345) | func (b *Builder) CreateSharedString(s string) UOffsetT { method CreateString (line 358) | func (b *Builder) CreateString(s string) UOffsetT { method CreateByteString (line 374) | func (b *Builder) CreateByteString(s []byte) UOffsetT { method CreateByteVector (line 390) | func (b *Builder) CreateByteVector(v []byte) UOffsetT { method assertNested (line 404) | func (b *Builder) assertNested() { method assertNotNested (line 414) | func (b *Builder) assertNotNested() { method assertFinished (line 428) | func (b *Builder) assertFinished() { method PrependBoolSlot (line 442) | func (b *Builder) PrependBoolSlot(o int, x, d bool) { method PrependByteSlot (line 457) | func (b *Builder) PrependByteSlot(o int, x, d byte) { method PrependUint8Slot (line 467) | func (b *Builder) PrependUint8Slot(o int, x, d uint8) { method PrependUint16Slot (line 477) | func (b *Builder) PrependUint16Slot(o int, x, d uint16) { method PrependUint32Slot (line 487) | func (b *Builder) PrependUint32Slot(o int, x, d uint32) { method PrependUint64Slot (line 497) | func (b *Builder) PrependUint64Slot(o int, x, d uint64) { method PrependInt8Slot (line 507) | func (b *Builder) PrependInt8Slot(o int, x, d int8) { method PrependInt16Slot (line 517) | func (b *Builder) PrependInt16Slot(o int, x, d int16) { method PrependInt32Slot (line 527) | func (b *Builder) PrependInt32Slot(o int, x, d int32) { method PrependInt64Slot (line 537) | func (b *Builder) PrependInt64Slot(o int, x, d int64) { method PrependFloat32Slot (line 547) | func (b *Builder) PrependFloat32Slot(o int, x, d float32) { method PrependFloat64Slot (line 557) | func (b *Builder) PrependFloat64Slot(o int, x, d float64) { method PrependUOffsetTSlot (line 567) | func (b *Builder) PrependUOffsetTSlot(o int, x, d UOffsetT) { method PrependStructSlot (line 577) | func (b *Builder) PrependStructSlot(voffset int, x, d UOffsetT) { method Slot (line 588) | func (b *Builder) Slot(slotnum int) { method FinishWithFileIdentifier (line 594) | func (b *Builder) FinishWithFileIdentifier(rootTable UOffsetT, fid []b... method FinishSizePrefixed (line 612) | func (b *Builder) FinishSizePrefixed(rootTable UOffsetT) { method FinishSizePrefixedWithFileIdentifier (line 619) | func (b *Builder) FinishSizePrefixedWithFileIdentifier(rootTable UOffs... method Finish (line 635) | func (b *Builder) Finish(rootTable UOffsetT) { method finish (line 641) | func (b *Builder) finish(rootTable UOffsetT, sizePrefix bool) { method PrependBool (line 683) | func (b *Builder) PrependBool(x bool) { method PrependUint8 (line 690) | func (b *Builder) PrependUint8(x uint8) { method PrependUint16 (line 697) | func (b *Builder) PrependUint16(x uint16) { method PrependUint32 (line 704) | func (b *Builder) PrependUint32(x uint32) { method PrependUint64 (line 711) | func (b *Builder) PrependUint64(x uint64) { method PrependInt8 (line 718) | func (b *Builder) PrependInt8(x int8) { method PrependInt16 (line 725) | func (b *Builder) PrependInt16(x int16) { method PrependInt32 (line 732) | func (b *Builder) PrependInt32(x int32) { method PrependInt64 (line 739) | func (b *Builder) PrependInt64(x int64) { method PrependFloat32 (line 746) | func (b *Builder) PrependFloat32(x float32) { method PrependFloat64 (line 753) | func (b *Builder) PrependFloat64(x float64) { method PrependByte (line 760) | func (b *Builder) PrependByte(x byte) { method PrependVOffsetT (line 767) | func (b *Builder) PrependVOffsetT(x VOffsetT) { method PlaceBool (line 773) | func (b *Builder) PlaceBool(x bool) { method PlaceUint8 (line 779) | func (b *Builder) PlaceUint8(x uint8) { method PlaceUint16 (line 785) | func (b *Builder) PlaceUint16(x uint16) { method PlaceUint32 (line 791) | func (b *Builder) PlaceUint32(x uint32) { method PlaceUint64 (line 797) | func (b *Builder) PlaceUint64(x uint64) { method PlaceInt8 (line 803) | func (b *Builder) PlaceInt8(x int8) { method PlaceInt16 (line 809) | func (b *Builder) PlaceInt16(x int16) { method PlaceInt32 (line 815) | func (b *Builder) PlaceInt32(x int32) { method PlaceInt64 (line 821) | func (b *Builder) PlaceInt64(x int64) { method PlaceFloat32 (line 827) | func (b *Builder) PlaceFloat32(x float32) { method PlaceFloat64 (line 833) | func (b *Builder) PlaceFloat64(x float64) { method PlaceByte (line 839) | func (b *Builder) PlaceByte(x byte) { method PlaceVOffsetT (line 845) | func (b *Builder) PlaceVOffsetT(x VOffsetT) { method PlaceSOffsetT (line 851) | func (b *Builder) PlaceSOffsetT(x SOffsetT) { method PlaceUOffsetT (line 857) | func (b *Builder) PlaceUOffsetT(x UOffsetT) { constant fileIdentifierLength (line 26) | fileIdentifierLength = 4 constant sizePrefixLength (line 27) | sizePrefixLength = 4 function NewBuilder (line 31) | func NewBuilder(initialSize int) *Builder { type KeyCompare (line 334) | type KeyCompare function vtableEqual (line 660) | func vtableEqual(a []UOffsetT, objectStart UOffsetT, b []byte) bool { FILE: go/encode.go type SOffsetT (line 9) | type SOffsetT type UOffsetT (line 11) | type UOffsetT type VOffsetT (line 13) | type VOffsetT constant VtableMetadataFields (line 18) | VtableMetadataFields = 2 function GetByte (line 22) | func GetByte(buf []byte) byte { function GetBool (line 27) | func GetBool(buf []byte) bool { function GetUint8 (line 32) | func GetUint8(buf []byte) (n uint8) { function GetUint16 (line 38) | func GetUint16(buf []byte) (n uint16) { function GetUint32 (line 46) | func GetUint32(buf []byte) (n uint32) { function GetUint64 (line 56) | func GetUint64(buf []byte) (n uint64) { function GetInt8 (line 70) | func GetInt8(buf []byte) (n int8) { function GetInt16 (line 76) | func GetInt16(buf []byte) (n int16) { function GetInt32 (line 84) | func GetInt32(buf []byte) (n int32) { function GetInt64 (line 94) | func GetInt64(buf []byte) (n int64) { function GetFloat32 (line 108) | func GetFloat32(buf []byte) float32 { function GetFloat64 (line 114) | func GetFloat64(buf []byte) float64 { function GetUOffsetT (line 120) | func GetUOffsetT(buf []byte) UOffsetT { function GetSOffsetT (line 125) | func GetSOffsetT(buf []byte) SOffsetT { function GetVOffsetT (line 130) | func GetVOffsetT(buf []byte) VOffsetT { function WriteByte (line 135) | func WriteByte(buf []byte, n byte) { function WriteBool (line 140) | func WriteBool(buf []byte, b bool) { function WriteUint8 (line 148) | func WriteUint8(buf []byte, n uint8) { function WriteUint16 (line 153) | func WriteUint16(buf []byte, n uint16) { function WriteUint32 (line 160) | func WriteUint32(buf []byte, n uint32) { function WriteUint64 (line 169) | func WriteUint64(buf []byte, n uint64) { function WriteInt8 (line 182) | func WriteInt8(buf []byte, n int8) { function WriteInt16 (line 187) | func WriteInt16(buf []byte, n int16) { function WriteInt32 (line 194) | func WriteInt32(buf []byte, n int32) { function WriteInt64 (line 203) | func WriteInt64(buf []byte, n int64) { function WriteFloat32 (line 216) | func WriteFloat32(buf []byte, n float32) { function WriteFloat64 (line 221) | func WriteFloat64(buf []byte, n float64) { function WriteVOffsetT (line 226) | func WriteVOffsetT(buf []byte, n VOffsetT) { function WriteSOffsetT (line 231) | func WriteSOffsetT(buf []byte, n SOffsetT) { function WriteUOffsetT (line 236) | func WriteUOffsetT(buf []byte, n UOffsetT) { FILE: go/grpc.go type FlatbuffersCodec (line 19) | type FlatbuffersCodec struct method Marshal (line 22) | func (FlatbuffersCodec) Marshal(v interface{}) ([]byte, error) { method Unmarshal (line 27) | func (FlatbuffersCodec) Unmarshal(data []byte, v interface{}) error { method String (line 47) | func (FlatbuffersCodec) String() string { method Name (line 56) | func (FlatbuffersCodec) Name() string { type flatbuffersInit (line 60) | type flatbuffersInit interface FILE: go/lib.go type FlatBuffer (line 4) | type FlatBuffer interface function GetRootAs (line 10) | func GetRootAs(buf []byte, offset UOffsetT, fb FlatBuffer) { function GetSizePrefixedRootAs (line 17) | func GetSizePrefixedRootAs(buf []byte, offset UOffsetT, fb FlatBuffer) { function GetSizePrefix (line 23) | func GetSizePrefix(buf []byte, offset UOffsetT) uint32 { function GetIndirectOffset (line 28) | func GetIndirectOffset(buf []byte, offset UOffsetT) UOffsetT { function GetBufferIdentifier (line 33) | func GetBufferIdentifier(buf []byte) string { function GetSizePrefixedBufferIdentifier (line 38) | func GetSizePrefixedBufferIdentifier(buf []byte) string { function BufferHasIdentifier (line 43) | func BufferHasIdentifier(buf []byte, identifier string) bool { function SizePrefixedBufferHasIdentifier (line 48) | func SizePrefixedBufferHasIdentifier(buf []byte, identifier string) bool { FILE: go/sizes.go constant SizeUint8 (line 11) | SizeUint8 = 1 constant SizeUint16 (line 13) | SizeUint16 = 2 constant SizeUint32 (line 15) | SizeUint32 = 4 constant SizeUint64 (line 17) | SizeUint64 = 8 constant SizeInt8 (line 20) | SizeInt8 = 1 constant SizeInt16 (line 22) | SizeInt16 = 2 constant SizeInt32 (line 24) | SizeInt32 = 4 constant SizeInt64 (line 26) | SizeInt64 = 8 constant SizeFloat32 (line 29) | SizeFloat32 = 4 constant SizeFloat64 (line 31) | SizeFloat64 = 8 constant SizeByte (line 35) | SizeByte = 1 constant SizeBool (line 39) | SizeBool = 1 constant SizeSOffsetT (line 43) | SizeSOffsetT = 4 constant SizeUOffsetT (line 46) | SizeUOffsetT = 4 constant SizeVOffsetT (line 49) | SizeVOffsetT = 2 function byteSliceToString (line 53) | func byteSliceToString(b []byte) string { FILE: go/struct.go type Struct (line 6) | type Struct struct FILE: go/table.go type Table (line 6) | type Table struct method Offset (line 14) | func (t *Table) Offset(vtableOffset VOffsetT) VOffsetT { method Indirect (line 23) | func (t *Table) Indirect(off UOffsetT) UOffsetT { method String (line 28) | func (t *Table) String(off UOffsetT) string { method ByteVector (line 35) | func (t *Table) ByteVector(off UOffsetT) []byte { method VectorLen (line 58) | func (t *Table) VectorLen(off UOffsetT) int { method Vector (line 66) | func (t *Table) Vector(off UOffsetT) UOffsetT { method Union (line 76) | func (t *Table) Union(t2 *Table, off UOffsetT) { method GetBool (line 83) | func (t *Table) GetBool(off UOffsetT) bool { method GetByte (line 88) | func (t *Table) GetByte(off UOffsetT) byte { method GetUint8 (line 93) | func (t *Table) GetUint8(off UOffsetT) uint8 { method GetUint16 (line 98) | func (t *Table) GetUint16(off UOffsetT) uint16 { method GetUint32 (line 103) | func (t *Table) GetUint32(off UOffsetT) uint32 { method GetUint64 (line 108) | func (t *Table) GetUint64(off UOffsetT) uint64 { method GetInt8 (line 113) | func (t *Table) GetInt8(off UOffsetT) int8 { method GetInt16 (line 118) | func (t *Table) GetInt16(off UOffsetT) int16 { method GetInt32 (line 123) | func (t *Table) GetInt32(off UOffsetT) int32 { method GetInt64 (line 128) | func (t *Table) GetInt64(off UOffsetT) int64 { method GetFloat32 (line 133) | func (t *Table) GetFloat32(off UOffsetT) float32 { method GetFloat64 (line 138) | func (t *Table) GetFloat64(off UOffsetT) float64 { method GetUOffsetT (line 143) | func (t *Table) GetUOffsetT(off UOffsetT) UOffsetT { method GetVOffsetT (line 148) | func (t *Table) GetVOffsetT(off UOffsetT) VOffsetT { method GetSOffsetT (line 153) | func (t *Table) GetSOffsetT(off UOffsetT) SOffsetT { method GetBoolSlot (line 160) | func (t *Table) GetBoolSlot(slot VOffsetT, d bool) bool { method GetByteSlot (line 172) | func (t *Table) GetByteSlot(slot VOffsetT, d byte) byte { method GetInt8Slot (line 184) | func (t *Table) GetInt8Slot(slot VOffsetT, d int8) int8 { method GetUint8Slot (line 196) | func (t *Table) GetUint8Slot(slot VOffsetT, d uint8) uint8 { method GetInt16Slot (line 208) | func (t *Table) GetInt16Slot(slot VOffsetT, d int16) int16 { method GetUint16Slot (line 220) | func (t *Table) GetUint16Slot(slot VOffsetT, d uint16) uint16 { method GetInt32Slot (line 232) | func (t *Table) GetInt32Slot(slot VOffsetT, d int32) int32 { method GetUint32Slot (line 244) | func (t *Table) GetUint32Slot(slot VOffsetT, d uint32) uint32 { method GetInt64Slot (line 256) | func (t *Table) GetInt64Slot(slot VOffsetT, d int64) int64 { method GetUint64Slot (line 268) | func (t *Table) GetUint64Slot(slot VOffsetT, d uint64) uint64 { method GetFloat32Slot (line 280) | func (t *Table) GetFloat32Slot(slot VOffsetT, d float32) float32 { method GetFloat64Slot (line 292) | func (t *Table) GetFloat64Slot(slot VOffsetT, d float64) float64 { method GetVOffsetTSlot (line 304) | func (t *Table) GetVOffsetTSlot(slot VOffsetT, d VOffsetT) VOffsetT { method MutateBool (line 313) | func (t *Table) MutateBool(off UOffsetT, n bool) bool { method MutateByte (line 319) | func (t *Table) MutateByte(off UOffsetT, n byte) bool { method MutateUint8 (line 325) | func (t *Table) MutateUint8(off UOffsetT, n uint8) bool { method MutateUint16 (line 331) | func (t *Table) MutateUint16(off UOffsetT, n uint16) bool { method MutateUint32 (line 337) | func (t *Table) MutateUint32(off UOffsetT, n uint32) bool { method MutateUint64 (line 343) | func (t *Table) MutateUint64(off UOffsetT, n uint64) bool { method MutateInt8 (line 349) | func (t *Table) MutateInt8(off UOffsetT, n int8) bool { method MutateInt16 (line 355) | func (t *Table) MutateInt16(off UOffsetT, n int16) bool { method MutateInt32 (line 361) | func (t *Table) MutateInt32(off UOffsetT, n int32) bool { method MutateInt64 (line 367) | func (t *Table) MutateInt64(off UOffsetT, n int64) bool { method MutateFloat32 (line 373) | func (t *Table) MutateFloat32(off UOffsetT, n float32) bool { method MutateFloat64 (line 379) | func (t *Table) MutateFloat64(off UOffsetT, n float64) bool { method MutateUOffsetT (line 385) | func (t *Table) MutateUOffsetT(off UOffsetT, n UOffsetT) bool { method MutateVOffsetT (line 391) | func (t *Table) MutateVOffsetT(off UOffsetT, n VOffsetT) bool { method MutateSOffsetT (line 397) | func (t *Table) MutateSOffsetT(off UOffsetT, n SOffsetT) bool { method MutateBoolSlot (line 403) | func (t *Table) MutateBoolSlot(slot VOffsetT, n bool) bool { method MutateByteSlot (line 413) | func (t *Table) MutateByteSlot(slot VOffsetT, n byte) bool { method MutateInt8Slot (line 423) | func (t *Table) MutateInt8Slot(slot VOffsetT, n int8) bool { method MutateUint8Slot (line 433) | func (t *Table) MutateUint8Slot(slot VOffsetT, n uint8) bool { method MutateInt16Slot (line 443) | func (t *Table) MutateInt16Slot(slot VOffsetT, n int16) bool { method MutateUint16Slot (line 453) | func (t *Table) MutateUint16Slot(slot VOffsetT, n uint16) bool { method MutateInt32Slot (line 463) | func (t *Table) MutateInt32Slot(slot VOffsetT, n int32) bool { method MutateUint32Slot (line 473) | func (t *Table) MutateUint32Slot(slot VOffsetT, n uint32) bool { method MutateInt64Slot (line 483) | func (t *Table) MutateInt64Slot(slot VOffsetT, n int64) bool { method MutateUint64Slot (line 493) | func (t *Table) MutateUint64Slot(slot VOffsetT, n uint64) bool { method MutateFloat32Slot (line 503) | func (t *Table) MutateFloat32Slot(slot VOffsetT, n float32) bool { method MutateFloat64Slot (line 513) | func (t *Table) MutateFloat64Slot(slot VOffsetT, n float64) bool { FILE: goldens/cpp/basic_generated.h function namespace (line 16) | namespace flatbuffers { function flatbuffers (line 132) | inline const flatbuffers::goldens::Universe *GetUniverse(const void *buf) { function flatbuffers (line 136) | inline const flatbuffers::goldens::Universe *GetSizePrefixedUniverse(con... function FinishUniverseBuffer (line 152) | inline void FinishUniverseBuffer( function FinishSizePrefixedUniverseBuffer (line 158) | inline void FinishSizePrefixedUniverseBuffer( FILE: goldens/cpp/generate.py function flatc (line 4) | def flatc(options, schema): function GenerateCpp (line 9) | def GenerateCpp(): FILE: goldens/csharp/flatbuffers/goldens/Galaxy.cs type Galaxy (line 12) | public struct Galaxy : IFlatbufferObject method ValidateVersion (line 16) | public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS... method GetRootAsGalaxy (line 17) | public static Galaxy GetRootAsGalaxy(ByteBuffer _bb) { return GetRootA... method GetRootAsGalaxy (line 18) | public static Galaxy GetRootAsGalaxy(ByteBuffer _bb, Galaxy obj) { ret... method __init (line 19) | public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } method __assign (line 20) | public Galaxy __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); retu... method CreateGalaxy (line 24) | public static Offset CreateGalaxy(FlatBuff... method StartGalaxy (line 31) | public static void StartGalaxy(FlatBufferBuilder builder) { builder.St... method AddNumStars (line 32) | public static void AddNumStars(FlatBufferBuilder builder, long numStar... method EndGalaxy (line 33) | public static Offset EndGalaxy(FlatBufferB... class GalaxyVerify (line 40) | static public class GalaxyVerify method Verify (line 42) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... FILE: goldens/csharp/flatbuffers/goldens/Universe.cs type Universe (line 12) | public struct Universe : IFlatbufferObject method ValidateVersion (line 16) | public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS... method GetRootAsUniverse (line 17) | public static Universe GetRootAsUniverse(ByteBuffer _bb) { return GetR... method GetRootAsUniverse (line 18) | public static Universe GetRootAsUniverse(ByteBuffer _bb, Universe obj)... method VerifyUniverse (line 19) | public static bool VerifyUniverse(ByteBuffer _bb) {Google.FlatBuffers.... method __init (line 20) | public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } method __assign (line 21) | public Universe __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); re... method Galaxies (line 24) | public flatbuffers.goldens.Galaxy? Galaxies(int j) { int o = __p.__off... method CreateUniverse (line 27) | public static Offset CreateUniverse(Flat... method StartUniverse (line 36) | public static void StartUniverse(FlatBufferBuilder builder) { builder.... method AddAge (line 37) | public static void AddAge(FlatBufferBuilder builder, double age) { bui... method AddGalaxies (line 38) | public static void AddGalaxies(FlatBufferBuilder builder, VectorOffset... method CreateGalaxiesVector (line 39) | public static VectorOffset CreateGalaxiesVector(FlatBufferBuilder buil... method CreateGalaxiesVectorBlock (line 40) | public static VectorOffset CreateGalaxiesVectorBlock(FlatBufferBuilder... method CreateGalaxiesVectorBlock (line 41) | public static VectorOffset CreateGalaxiesVectorBlock(FlatBufferBuilder... method CreateGalaxiesVectorBlock (line 42) | public static VectorOffset CreateGalaxiesVectorBlock(FlatBufferBuilder... method StartGalaxiesVector (line 43) | public static void StartGalaxiesVector(FlatBufferBuilder builder, int ... method EndUniverse (line 44) | public static Offset EndUniverse(FlatBuf... method FinishUniverseBuffer (line 48) | public static void FinishUniverseBuffer(FlatBufferBuilder builder, Off... method FinishSizePrefixedUniverseBuffer (line 49) | public static void FinishSizePrefixedUniverseBuffer(FlatBufferBuilder ... class UniverseVerify (line 53) | static public class UniverseVerify method Verify (line 55) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... FILE: goldens/csharp/generate.py function flatc (line 4) | def flatc(options, schema): function GenerateCSharp (line 9) | def GenerateCSharp(): FILE: goldens/dart/basic_flatbuffers.goldens_generated.dart class Galaxy (line 11) | class Galaxy { method toString (line 26) | String toString() class _GalaxyReader (line 31) | class _GalaxyReader extends fb.TableReader { method createObject (line 35) | Galaxy createObject(fb.BufferContext bc, int offset) class GalaxyBuilder (line 39) | class GalaxyBuilder { method begin (line 44) | void begin() method addNumStars (line 48) | int addNumStars(int? numStars) method finish (line 53) | int finish() class GalaxyObjectBuilder (line 58) | class GalaxyObjectBuilder extends fb.ObjectBuilder { method finish (line 68) | int finish(fb.Builder fbBuilder) method toBytes (line 76) | Uint8List toBytes([String? fileIdentifier]) class Universe (line 82) | class Universe { method toString (line 98) | String toString() class _UniverseReader (line 103) | class _UniverseReader extends fb.TableReader { method createObject (line 107) | Universe createObject(fb.BufferContext bc, int offset) class UniverseBuilder (line 111) | class UniverseBuilder { method begin (line 116) | void begin() method addAge (line 120) | int addAge(double? age) method addGalaxiesOffset (line 124) | int addGalaxiesOffset(int? offset) method finish (line 129) | int finish() class UniverseObjectBuilder (line 134) | class UniverseObjectBuilder extends fb.ObjectBuilder { method finish (line 147) | int finish(fb.Builder fbBuilder) method toBytes (line 158) | Uint8List toBytes([String? fileIdentifier]) FILE: goldens/dart/generate.py function flatc (line 4) | def flatc(options, schema): function GenerateDart (line 9) | def GenerateDart(): FILE: goldens/go/flatbuffers/goldens/Galaxy.go type Galaxy (line 9) | type Galaxy struct method Init (line 35) | func (rcv *Galaxy) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 40) | func (rcv *Galaxy) Table() flatbuffers.Table { method NumStars (line 44) | func (rcv *Galaxy) NumStars() int64 { method MutateNumStars (line 52) | func (rcv *Galaxy) MutateNumStars(n int64) bool { function GetRootAsGalaxy (line 13) | func GetRootAsGalaxy(buf []byte, offset flatbuffers.UOffsetT) *Galaxy { function FinishGalaxyBuffer (line 20) | func FinishGalaxyBuffer(builder *flatbuffers.Builder, offset flatbuffers... function GetSizePrefixedRootAsGalaxy (line 24) | func GetSizePrefixedRootAsGalaxy(buf []byte, offset flatbuffers.UOffsetT... function FinishSizePrefixedGalaxyBuffer (line 31) | func FinishSizePrefixedGalaxyBuffer(builder *flatbuffers.Builder, offset... function GalaxyStart (line 56) | func GalaxyStart(builder *flatbuffers.Builder) { function GalaxyAddNumStars (line 59) | func GalaxyAddNumStars(builder *flatbuffers.Builder, numStars int64) { function GalaxyEnd (line 62) | func GalaxyEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { FILE: goldens/go/flatbuffers/goldens/Universe.go type Universe (line 9) | type Universe struct method Init (line 35) | func (rcv *Universe) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 40) | func (rcv *Universe) Table() flatbuffers.Table { method Age (line 44) | func (rcv *Universe) Age() float64 { method MutateAge (line 52) | func (rcv *Universe) MutateAge(n float64) bool { method Galaxies (line 56) | func (rcv *Universe) Galaxies(obj *Galaxy, j int) bool { method GalaxiesLength (line 68) | func (rcv *Universe) GalaxiesLength() int { function GetRootAsUniverse (line 13) | func GetRootAsUniverse(buf []byte, offset flatbuffers.UOffsetT) *Universe { function FinishUniverseBuffer (line 20) | func FinishUniverseBuffer(builder *flatbuffers.Builder, offset flatbuffe... function GetSizePrefixedRootAsUniverse (line 24) | func GetSizePrefixedRootAsUniverse(buf []byte, offset flatbuffers.UOffse... function FinishSizePrefixedUniverseBuffer (line 31) | func FinishSizePrefixedUniverseBuffer(builder *flatbuffers.Builder, offs... function UniverseStart (line 76) | func UniverseStart(builder *flatbuffers.Builder) { function UniverseAddAge (line 79) | func UniverseAddAge(builder *flatbuffers.Builder, age float64) { function UniverseAddGalaxies (line 82) | func UniverseAddGalaxies(builder *flatbuffers.Builder, galaxies flatbuff... function UniverseStartGalaxiesVector (line 85) | func UniverseStartGalaxiesVector(builder *flatbuffers.Builder, numElems ... function UniverseEnd (line 88) | func UniverseEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { FILE: goldens/go/generate.py function flatc (line 4) | def flatc(options, schema): function GenerateGo (line 9) | def GenerateGo(): FILE: goldens/golden_utils.py function flatc_golden (line 20) | def flatc_golden(options, schema, prefix): FILE: goldens/java/flatbuffers/goldens/Galaxy.java class Galaxy (line 21) | @SuppressWarnings("unused") method ValidateVersion (line 23) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsGalaxy (line 24) | public static Galaxy getRootAsGalaxy(ByteBuffer _bb) { return getRootA... method getRootAsGalaxy (line 25) | public static Galaxy getRootAsGalaxy(ByteBuffer _bb, Galaxy obj) { _bb... method __init (line 26) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 27) | public Galaxy __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); retu... method numStars (line 29) | public long numStars() { int o = __offset(4); return o != 0 ? bb.getLo... method createGalaxy (line 31) | public static int createGalaxy(FlatBufferBuilder builder, method startGalaxy (line 38) | public static void startGalaxy(FlatBufferBuilder builder) { builder.st... method addNumStars (line 39) | public static void addNumStars(FlatBufferBuilder builder, long numStar... method endGalaxy (line 40) | public static int endGalaxy(FlatBufferBuilder builder) { class Vector (line 45) | public static final class Vector extends BaseVector { method __assign (line 46) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 48) | public Galaxy get(int j) { return get(new Galaxy(), j); } method get (line 49) | public Galaxy get(Galaxy obj, int j) { return obj.__assign(__indire... FILE: goldens/java/flatbuffers/goldens/Universe.java class Universe (line 21) | @SuppressWarnings("unused") method ValidateVersion (line 23) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsUniverse (line 24) | public static Universe getRootAsUniverse(ByteBuffer _bb) { return getR... method getRootAsUniverse (line 25) | public static Universe getRootAsUniverse(ByteBuffer _bb, Universe obj)... method __init (line 26) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 27) | public Universe __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); re... method age (line 29) | public double age() { int o = __offset(4); return o != 0 ? bb.getDoubl... method galaxies (line 30) | public flatbuffers.goldens.Galaxy galaxies(int j) { return galaxies(ne... method galaxies (line 31) | public flatbuffers.goldens.Galaxy galaxies(flatbuffers.goldens.Galaxy ... method galaxiesLength (line 32) | public int galaxiesLength() { int o = __offset(6); return o != 0 ? __v... method galaxiesVector (line 33) | public flatbuffers.goldens.Galaxy.Vector galaxiesVector() { return gal... method galaxiesVector (line 34) | public flatbuffers.goldens.Galaxy.Vector galaxiesVector(flatbuffers.go... method createUniverse (line 36) | public static int createUniverse(FlatBufferBuilder builder, method startUniverse (line 45) | public static void startUniverse(FlatBufferBuilder builder) { builder.... method addAge (line 46) | public static void addAge(FlatBufferBuilder builder, double age) { bui... method addGalaxies (line 47) | public static void addGalaxies(FlatBufferBuilder builder, int galaxies... method createGalaxiesVector (line 48) | public static int createGalaxiesVector(FlatBufferBuilder builder, int[... method startGalaxiesVector (line 49) | public static void startGalaxiesVector(FlatBufferBuilder builder, int ... method endUniverse (line 50) | public static int endUniverse(FlatBufferBuilder builder) { method finishUniverseBuffer (line 54) | public static void finishUniverseBuffer(FlatBufferBuilder builder, int... method finishSizePrefixedUniverseBuffer (line 55) | public static void finishSizePrefixedUniverseBuffer(FlatBufferBuilder ... class Vector (line 57) | public static final class Vector extends BaseVector { method __assign (line 58) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 60) | public Universe get(int j) { return get(new Universe(), j); } method get (line 61) | public Universe get(Universe obj, int j) { return obj.__assign(__in... FILE: goldens/java/generate.py function flatc (line 4) | def flatc(options, schema): function GenerateJava (line 9) | def GenerateJava(): FILE: goldens/kotlin/generate.py function flatc (line 4) | def flatc(options, schema): function GenerateKotlin (line 9) | def GenerateKotlin(): FILE: goldens/lobster/generate.py function flatc (line 4) | def flatc(options, schema): function GenerateLobster (line 9) | def GenerateLobster(): FILE: goldens/lua/generate.py function flatc (line 4) | def flatc(options, schema): function GenerateLua (line 9) | def GenerateLua(): FILE: goldens/nim/generate.py function flatc (line 4) | def flatc(options, schema): function GenerateNim (line 9) | def GenerateNim(): FILE: goldens/php/flatbuffers/goldens/Galaxy.php class Galaxy (line 11) | class Galaxy extends Table method getRootAsGalaxy (line 17) | public static function getRootAsGalaxy(ByteBuffer $bb) method init (line 28) | public function init($_i, ByteBuffer $_bb) method getNumStars (line 38) | public function getNumStars() method startGalaxy (line 48) | public static function startGalaxy(FlatBufferBuilder $builder) method createGalaxy (line 57) | public static function createGalaxy(FlatBufferBuilder $builder, $num_s... method addNumStars (line 70) | public static function addNumStars(FlatBufferBuilder $builder, $numStars) method endGalaxy (line 79) | public static function endGalaxy(FlatBufferBuilder $builder) FILE: goldens/php/flatbuffers/goldens/Universe.php class Universe (line 11) | class Universe extends Table method getRootAsUniverse (line 17) | public static function getRootAsUniverse(ByteBuffer $bb) method init (line 28) | public function init($_i, ByteBuffer $_bb) method getAge (line 38) | public function getAge() method getGalaxies (line 47) | public function getGalaxies($j) method getGalaxiesLength (line 57) | public function getGalaxiesLength() method startUniverse (line 67) | public static function startUniverse(FlatBufferBuilder $builder) method createUniverse (line 76) | public static function createUniverse(FlatBufferBuilder $builder, $age... method addAge (line 90) | public static function addAge(FlatBufferBuilder $builder, $age) method addGalaxies (line 100) | public static function addGalaxies(FlatBufferBuilder $builder, $galaxies) method createGalaxiesVector (line 110) | public static function createGalaxiesVector(FlatBufferBuilder $builder... method startGalaxiesVector (line 124) | public static function startGalaxiesVector(FlatBufferBuilder $builder,... method endUniverse (line 133) | public static function endUniverse(FlatBufferBuilder $builder) method finishUniverseBuffer (line 139) | public static function finishUniverseBuffer(FlatBufferBuilder $builder... FILE: goldens/php/generate.py function flatc (line 4) | def flatc(options, schema): function GeneratePhp (line 9) | def GeneratePhp(): FILE: goldens/py/flatbuffers/goldens/Galaxy.py class Galaxy (line 9) | class Galaxy(object): method GetRootAs (line 13) | def GetRootAs(cls, buf, offset=0): method GetRootAsGalaxy (line 20) | def GetRootAsGalaxy(cls, buf, offset=0): method Init (line 24) | def Init(self, buf, pos): method NumStars (line 28) | def NumStars(self): function GalaxyStart (line 34) | def GalaxyStart(builder): function Start (line 37) | def Start(builder): function GalaxyAddNumStars (line 40) | def GalaxyAddNumStars(builder, numStars): function AddNumStars (line 43) | def AddNumStars(builder, numStars): function GalaxyEnd (line 46) | def GalaxyEnd(builder): function End (line 49) | def End(builder): FILE: goldens/py/flatbuffers/goldens/Universe.py class Universe (line 9) | class Universe(object): method GetRootAs (line 13) | def GetRootAs(cls, buf, offset=0): method GetRootAsUniverse (line 20) | def GetRootAsUniverse(cls, buf, offset=0): method Init (line 24) | def Init(self, buf, pos): method Age (line 28) | def Age(self): method Galaxies (line 35) | def Galaxies(self, j): method GalaxiesLength (line 48) | def GalaxiesLength(self): method GalaxiesIsNone (line 55) | def GalaxiesIsNone(self): function UniverseStart (line 59) | def UniverseStart(builder): function Start (line 62) | def Start(builder): function UniverseAddAge (line 65) | def UniverseAddAge(builder, age): function AddAge (line 68) | def AddAge(builder, age): function UniverseAddGalaxies (line 71) | def UniverseAddGalaxies(builder, galaxies): function AddGalaxies (line 74) | def AddGalaxies(builder, galaxies): function UniverseStartGalaxiesVector (line 77) | def UniverseStartGalaxiesVector(builder, numElems): function StartGalaxiesVector (line 80) | def StartGalaxiesVector(builder, numElems): function UniverseCreateGalaxiesVector (line 83) | def UniverseCreateGalaxiesVector(builder, data): function CreateGalaxiesVector (line 86) | def CreateGalaxiesVector(builder, data): function UniverseEnd (line 89) | def UniverseEnd(builder): function End (line 92) | def End(builder): FILE: goldens/py/generate.py function flatc (line 4) | def flatc(options, schema): function GeneratePython (line 9) | def GeneratePython(): FILE: goldens/rust/basic_generated.rs type GalaxyOffset (line 13) | pub enum GalaxyOffset {} type Galaxy (line 16) | pub struct Galaxy<'a> { type Inner (line 21) | type Inner = Galaxy<'a>; function follow (line 24) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_NUM_STARS (line 30) | pub const VT_NUM_STARS: ::flatbuffers::VOffsetT = 4; function init_from_table (line 33) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 38) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function num_stars (line 49) | pub fn num_stars(&self) -> i64 { function run_verifier (line 59) | fn run_verifier( type GalaxyArgs (line 69) | pub struct GalaxyArgs { method default (line 75) | fn default() -> Self { type GalaxyBuilder (line 82) | pub struct GalaxyBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function add_num_stars (line 89) | pub fn add_num_stars(&mut self, num_stars: i64) { function new (line 94) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Gal... function finish (line 103) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 110) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type UniverseOffset (line 117) | pub enum UniverseOffset {} type Universe (line 120) | pub struct Universe<'a> { type Inner (line 125) | type Inner = Universe<'a>; function follow (line 128) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_AGE (line 134) | pub const VT_AGE: ::flatbuffers::VOffsetT = 4; constant VT_GALAXIES (line 135) | pub const VT_GALAXIES: ::flatbuffers::VOffsetT = 6; function init_from_table (line 138) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 143) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function age (line 155) | pub fn age(&self) -> f64 { function galaxies (line 163) | pub fn galaxies(&self) -> Option<::flatbuffers::Vector<'a, ::flatbuffers... function run_verifier (line 173) | fn run_verifier( type UniverseArgs (line 184) | pub struct UniverseArgs<'a> { method default (line 191) | fn default() -> Self { type UniverseBuilder (line 199) | pub struct UniverseBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function add_age (line 206) | pub fn add_age(&mut self, age: f64) { function add_galaxies (line 211) | pub fn add_galaxies(&mut self, galaxies: ::flatbuffers::WIPOffset<::flat... function new (line 216) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Uni... function finish (line 225) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 232) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { function root_as_universe (line 247) | pub fn root_as_universe(buf: &[u8]) -> Result, ::flatbuffer... function size_prefixed_root_as_universe (line 258) | pub fn size_prefixed_root_as_universe(buf: &[u8]) -> Result... function root_as_universe_with_opts (line 269) | pub fn root_as_universe_with_opts<'b, 'o>( function size_prefixed_root_as_universe_with_opts (line 283) | pub fn size_prefixed_root_as_universe_with_opts<'b, 'o>( function root_as_universe_unchecked (line 294) | pub unsafe fn root_as_universe_unchecked(buf: &[u8]) -> Universe<'_> { function size_prefixed_root_as_universe_unchecked (line 302) | pub unsafe fn size_prefixed_root_as_universe_unchecked(buf: &[u8]) -> Un... function finish_universe_buffer (line 307) | pub fn finish_universe_buffer<'a, 'b, A: ::flatbuffers::Allocator + 'a>( function finish_size_prefixed_universe_buffer (line 315) | pub fn finish_size_prefixed_universe_buffer<'a, 'b, A: ::flatbuffers::Al... FILE: goldens/rust/generate.py function flatc (line 4) | def flatc(options, schema): function GenerateRust (line 9) | def GenerateRust(): FILE: goldens/swift/generate.py function flatc (line 4) | def flatc(options, schema): function GenerateSwift (line 9) | def GenerateSwift(): FILE: goldens/ts/flatbuffers/goldens/galaxy.ts class Galaxy (line 7) | class Galaxy { method __init (line 10) | __init(i:number, bb:flatbuffers.ByteBuffer):Galaxy { method getRootAsGalaxy (line 16) | static getRootAsGalaxy(bb:flatbuffers.ByteBuffer, obj?:Galaxy):Galaxy { method getSizePrefixedRootAsGalaxy (line 20) | static getSizePrefixedRootAsGalaxy(bb:flatbuffers.ByteBuffer, obj?:Gal... method numStars (line 25) | numStars():bigint { method startGalaxy (line 30) | static startGalaxy(builder:flatbuffers.Builder) { method addNumStars (line 34) | static addNumStars(builder:flatbuffers.Builder, numStars:bigint) { method endGalaxy (line 38) | static endGalaxy(builder:flatbuffers.Builder):flatbuffers.Offset { method createGalaxy (line 43) | static createGalaxy(builder:flatbuffers.Builder, numStars:bigint):flat... FILE: goldens/ts/flatbuffers/goldens/universe.ts class Universe (line 10) | class Universe { method __init (line 13) | __init(i:number, bb:flatbuffers.ByteBuffer):Universe { method getRootAsUniverse (line 19) | static getRootAsUniverse(bb:flatbuffers.ByteBuffer, obj?:Universe):Uni... method getSizePrefixedRootAsUniverse (line 23) | static getSizePrefixedRootAsUniverse(bb:flatbuffers.ByteBuffer, obj?:U... method age (line 28) | age():number { method galaxies (line 33) | galaxies(index: number, obj?:Galaxy):Galaxy|null { method galaxiesLength (line 38) | galaxiesLength():number { method startUniverse (line 43) | static startUniverse(builder:flatbuffers.Builder) { method addAge (line 47) | static addAge(builder:flatbuffers.Builder, age:number) { method addGalaxies (line 51) | static addGalaxies(builder:flatbuffers.Builder, galaxiesOffset:flatbuf... method createGalaxiesVector (line 55) | static createGalaxiesVector(builder:flatbuffers.Builder, data:flatbuff... method startGalaxiesVector (line 63) | static startGalaxiesVector(builder:flatbuffers.Builder, numElems:numbe... method endUniverse (line 67) | static endUniverse(builder:flatbuffers.Builder):flatbuffers.Offset { method finishUniverseBuffer (line 72) | static finishUniverseBuffer(builder:flatbuffers.Builder, offset:flatbu... method finishSizePrefixedUniverseBuffer (line 76) | static finishSizePrefixedUniverseBuffer(builder:flatbuffers.Builder, o... method createUniverse (line 80) | static createUniverse(builder:flatbuffers.Builder, age:number, galaxie... FILE: goldens/ts/generate.py function flatc (line 4) | def flatc(options, schema): function GenerateTs (line 9) | def GenerateTs(): FILE: grpc/examples/go/greeter/models/Greeter_grpc.go type GreeterClient (line 16) | type GreeterClient interface type greeterClient (line 23) | type greeterClient struct method SayHello (line 31) | func (c *greeterClient) SayHello(ctx context.Context, in *flatbuffers.... method SayManyHellos (line 41) | func (c *greeterClient) SayManyHellos(ctx context.Context, in *flatbuf... function NewGreeterClient (line 27) | func NewGreeterClient(cc grpc.ClientConnInterface) GreeterClient { type Greeter_SayManyHellosClient (line 57) | type Greeter_SayManyHellosClient interface type greeterSayManyHellosClient (line 62) | type greeterSayManyHellosClient struct method Recv (line 66) | func (x *greeterSayManyHellosClient) Recv() (*HelloReply, error) { type GreeterServer (line 75) | type GreeterServer interface type UnimplementedGreeterServer (line 81) | type UnimplementedGreeterServer struct method SayHello (line 84) | func (UnimplementedGreeterServer) SayHello(context.Context, *HelloRequ... method SayManyHellos (line 88) | func (UnimplementedGreeterServer) SayManyHellos(*HelloRequest, Greeter... method mustEmbedUnimplementedGreeterServer (line 92) | func (UnimplementedGreeterServer) mustEmbedUnimplementedGreeterServer(... type UnsafeGreeterServer (line 94) | type UnsafeGreeterServer interface function RegisterGreeterServer (line 98) | func RegisterGreeterServer(s grpc.ServiceRegistrar, srv GreeterServer) { function _Greeter_SayHello_Handler (line 102) | func _Greeter_SayHello_Handler(srv interface{}, ctx context.Context, function _Greeter_SayManyHellos_Handler (line 121) | func _Greeter_SayManyHellos_Handler(srv interface{}, stream grpc.ServerS... type Greeter_SayManyHellosServer (line 129) | type Greeter_SayManyHellosServer interface type greeterSayManyHellosServer (line 134) | type greeterSayManyHellosServer struct method Send (line 138) | func (x *greeterSayManyHellosServer) Send(m *flatbuffers.Builder) error { FILE: grpc/examples/go/greeter/models/HelloReply.go type HelloReply (line 9) | type HelloReply struct method Init (line 35) | func (rcv *HelloReply) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 40) | func (rcv *HelloReply) Table() flatbuffers.Table { method Message (line 44) | func (rcv *HelloReply) Message() []byte { function GetRootAsHelloReply (line 13) | func GetRootAsHelloReply(buf []byte, offset flatbuffers.UOffsetT) *Hello... function FinishHelloReplyBuffer (line 20) | func FinishHelloReplyBuffer(builder *flatbuffers.Builder, offset flatbuf... function GetSizePrefixedRootAsHelloReply (line 24) | func GetSizePrefixedRootAsHelloReply(buf []byte, offset flatbuffers.UOff... function FinishSizePrefixedHelloReplyBuffer (line 31) | func FinishSizePrefixedHelloReplyBuffer(builder *flatbuffers.Builder, of... function HelloReplyStart (line 52) | func HelloReplyStart(builder *flatbuffers.Builder) { function HelloReplyAddMessage (line 55) | func HelloReplyAddMessage(builder *flatbuffers.Builder, message flatbuff... function HelloReplyEnd (line 58) | func HelloReplyEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { FILE: grpc/examples/go/greeter/models/HelloRequest.go type HelloRequest (line 9) | type HelloRequest struct method Init (line 35) | func (rcv *HelloRequest) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 40) | func (rcv *HelloRequest) Table() flatbuffers.Table { method Name (line 44) | func (rcv *HelloRequest) Name() []byte { function GetRootAsHelloRequest (line 13) | func GetRootAsHelloRequest(buf []byte, offset flatbuffers.UOffsetT) *Hel... function FinishHelloRequestBuffer (line 20) | func FinishHelloRequestBuffer(builder *flatbuffers.Builder, offset flatb... function GetSizePrefixedRootAsHelloRequest (line 24) | func GetSizePrefixedRootAsHelloRequest(buf []byte, offset flatbuffers.UO... function FinishSizePrefixedHelloRequestBuffer (line 31) | func FinishSizePrefixedHelloRequestBuffer(builder *flatbuffers.Builder, ... function HelloRequestStart (line 52) | func HelloRequestStart(builder *flatbuffers.Builder) { function HelloRequestAddName (line 55) | func HelloRequestAddName(builder *flatbuffers.Builder, name flatbuffers.... function HelloRequestEnd (line 58) | func HelloRequestEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { FILE: grpc/examples/python/greeter/client.py function say_hello (line 17) | def say_hello(stub, hello_request): function say_many_hellos (line 23) | def say_many_hellos(stub, hello_request): function main (line 30) | def main(): FILE: grpc/examples/python/greeter/greeter_grpc.fb.py class GreeterStub (line 9) | class GreeterStub(object): method __init__ (line 12) | def __init__(self, channel): class GreeterServicer (line 26) | class GreeterServicer(object): method SayHello (line 29) | def SayHello(self, request, context): method SayManyHellos (line 34) | def SayManyHellos(self, request, context): function add_GreeterServicer_to_server (line 40) | def add_GreeterServicer_to_server(servicer, server): FILE: grpc/examples/python/greeter/models/HelloReply.py class HelloReply (line 9) | class HelloReply(object): method GetRootAs (line 13) | def GetRootAs(cls, buf, offset=0): method GetRootAsHelloReply (line 20) | def GetRootAsHelloReply(cls, buf, offset=0): method Init (line 24) | def Init(self, buf, pos): method Message (line 28) | def Message(self): function HelloReplyStart (line 34) | def HelloReplyStart(builder): function Start (line 37) | def Start(builder): function HelloReplyAddMessage (line 40) | def HelloReplyAddMessage(builder, message): function AddMessage (line 43) | def AddMessage(builder, message): function HelloReplyEnd (line 46) | def HelloReplyEnd(builder): function End (line 49) | def End(builder): FILE: grpc/examples/python/greeter/models/HelloRequest.py class HelloRequest (line 9) | class HelloRequest(object): method GetRootAs (line 13) | def GetRootAs(cls, buf, offset=0): method GetRootAsHelloRequest (line 20) | def GetRootAsHelloRequest(cls, buf, offset=0): method Init (line 24) | def Init(self, buf, pos): method Name (line 28) | def Name(self): function HelloRequestStart (line 34) | def HelloRequestStart(builder): function Start (line 37) | def Start(builder): function HelloRequestAddName (line 40) | def HelloRequestAddName(builder, name): function AddName (line 43) | def AddName(builder, name): function HelloRequestEnd (line 46) | def HelloRequestEnd(builder): function End (line 49) | def End(builder): FILE: grpc/examples/python/greeter/models/greeter_grpc_fb.py class GreeterStub (line 10) | class GreeterStub(object): method __init__ (line 13) | def __init__(self, channel): class GreeterServicer (line 27) | class GreeterServicer(object): method SayHello (line 30) | def SayHello(self, request, context): method SayManyHellos (line 35) | def SayManyHellos(self, request, context): function add_GreeterServicer_to_server (line 41) | def add_GreeterServicer_to_server(servicer, server): FILE: grpc/examples/python/greeter/server.py function build_reply (line 15) | def build_reply(message): class GreeterServicer (line 25) | class GreeterServicer(greeter_grpc_fb.GreeterServicer): method __init__ (line 27) | def __init__(self): method SayHello (line 30) | def SayHello(self, request, context): method SayManyHellos (line 37) | def SayManyHellos(self, request, context): function serve (line 48) | def serve(): FILE: grpc/examples/ts/greeter/src/client.ts function main (line 7) | async function main(PORT: Number, name: string) { constant PORT (line 32) | const PORT = Number(args[0]); FILE: grpc/examples/ts/greeter/src/greeter_grpc.d.ts type IGreeterService (line 8) | interface IGreeterService extends grpc.ServiceDefinition { method extract (line 31) | T extract(InputStream stream) throws IOException { method extract (line 44) | public abstract T extract(ByteBuffer buffer); class FBInputStream (line 47) | static class FBInputStream extends InputStream implements Drainable, K... method FBInputStream (line 52) | FBInputStream(ByteBuffer buffer) { method makeStreamIfNotAlready (line 57) | private void makeStreamIfNotAlready() { method drainTo (line 62) | @Override method read (line 68) | @Override method read (line 74) | @Override method available (line 88) | @Override method marshaller (line 94) | public static MethodDescriptor.Marshaller marshal... FILE: grpc/samples/greeter/client.cpp class GreeterClient (line 10) | class GreeterClient { method GreeterClient (line 12) | GreeterClient(std::shared_ptr channel) method SayHello (line 15) | std::string SayHello(const std::string& name) { method SayManyHellos (line 37) | void SayManyHellos(const std::string& name, int num_greetings, function main (line 67) | int main(int argc, char** argv) { FILE: grpc/samples/greeter/server.cpp class GreeterServiceImpl (line 10) | class GreeterServiceImpl final : public Greeter::Service { method SayHello (line 11) | virtual grpc::Status SayHello( method SayManyHellos (line 41) | virtual grpc::Status SayManyHellos( function RunServer (line 65) | void RunServer() { function main (line 78) | int main(int argc, const char* argv[]) { FILE: grpc/src/compiler/cpp_generator.cc type grpc_cpp_generator (line 8) | namespace grpc_cpp_generator { function as_string (line 12) | static grpc::string as_string(T x) { function ClientOnlyStreaming (line 18) | static inline bool ClientOnlyStreaming(const grpc_generator::Method* m... function ServerOnlyStreaming (line 22) | static inline bool ServerOnlyStreaming(const grpc_generator::Method* m... function FilenameIdentifier (line 26) | static grpc::string FilenameIdentifier(const grpc::string& filename) { function T (line 43) | static T* array_end(T (&array)[N]) { function PrintIncludes (line 47) | static void PrintIncludes(grpc_generator::Printer* printer, function GetHeaderPrologue (line 82) | grpc::string GetHeaderPrologue(grpc_generator::File* file, function GetHeaderIncludes (line 114) | grpc::string GetHeaderIncludes(grpc_generator::File* file, function PrintHeaderClientMethodInterfaces (line 157) | static void PrintHeaderClientMethodInterfaces( function PrintHeaderClientMethod (line 371) | static void PrintHeaderClientMethod(grpc_generator::Printer* printer, function PrintHeaderClientMethodData (line 616) | static void PrintHeaderClientMethodData( function PrintHeaderServerMethodSync (line 624) | static void PrintHeaderServerMethodSync( function PrintHeaderServerMethodAsync (line 658) | static void PrintHeaderServerMethodAsync( function PrintHeaderServerMethodStreamedUnary (line 774) | static void PrintHeaderServerMethodStreamedUnary( function PrintHeaderServerMethodSplitStreaming (line 825) | static void PrintHeaderServerMethodSplitStreaming( function PrintHeaderServerMethodGeneric (line 878) | static void PrintHeaderServerMethodGeneric( function PrintHeaderService (line 949) | static void PrintHeaderService(grpc_generator::Printer* printer, function GetHeaderServices (line 1174) | grpc::string GetHeaderServices(grpc_generator::File* file, function GetHeaderEpilogue (line 1210) | grpc::string GetHeaderEpilogue(grpc_generator::File* file, function GetSourcePrologue (line 1239) | grpc::string GetSourcePrologue(grpc_generator::File* file, function GetSourceIncludes (line 1265) | grpc::string GetSourceIncludes(grpc_generator::File* file, function PrintSourceClientMethod (line 1301) | static void PrintSourceClientMethod( function PrintSourceServerMethod (line 1501) | static void PrintSourceServerMethod( function PrintSourceService (line 1550) | static void PrintSourceService(grpc_generator::Printer* printer, function GetSourceServices (line 1777) | grpc::string GetSourceServices(grpc_generator::File* file, function GetSourceEpilogue (line 1807) | grpc::string GetSourceEpilogue(grpc_generator::File* file, function GetMockPrologue (line 1825) | grpc::string GetMockPrologue(grpc_generator::File* file, function GetMockIncludes (line 1852) | grpc::string GetMockIncludes(grpc_generator::File* file, function PrintMockClientMethods (line 1884) | static void PrintMockClientMethods(grpc_generator::Printer* printer, function PrintMockService (line 1975) | static void PrintMockService(grpc_generator::Printer* printer, function GetMockServices (line 1993) | grpc::string GetMockServices(grpc_generator::File* file, function GetMockEpilogue (line 2024) | grpc::string GetMockEpilogue(grpc_generator::File* file, FILE: grpc/src/compiler/cpp_generator.h function namespace (line 18) | namespace grpc { function namespace (line 24) | namespace grpc_cpp_generator { FILE: grpc/src/compiler/go_generator.cc function as_string (line 8) | grpc::string as_string(T x) { function ClientOnlyStreaming (line 14) | inline bool ClientOnlyStreaming(const grpc_generator::Method* method) { function ServerOnlyStreaming (line 18) | inline bool ServerOnlyStreaming(const grpc_generator::Method* method) { type grpc_go_generator (line 22) | namespace grpc_go_generator { function unexportName (line 26) | static grpc::string unexportName(grpc::string s) { function exportName (line 33) | static grpc::string exportName(grpc::string s) { function GenerateError (line 39) | static void GenerateError(grpc_generator::Printer* printer, function GenerateImports (line 51) | static void GenerateImports(grpc_generator::File* file, function GenerateServerMethodSignature (line 71) | static void GenerateServerMethodSignature( function GenerateServerMethod (line 91) | static void GenerateServerMethod(const grpc_generator::Method* method, function GenerateClientMethodSignature (line 213) | static void GenerateClientMethodSignature( function GenerateClientMethod (line 234) | static void GenerateClientMethod(const grpc_generator::Method* method, function GenerateService (line 341) | void GenerateService(const grpc_generator::Service* service, function GenerateServiceSource (line 496) | grpc::string GenerateServiceSource(grpc_generator::File* file, FILE: grpc/src/compiler/go_generator.h function namespace (line 11) | namespace grpc_go_generator { FILE: grpc/src/compiler/java_generator.cc type grpc_java_generator (line 45) | namespace grpc_java_generator { function GenerateImports (line 49) | static void GenerateImports(grpc_generator::File* file, function string (line 67) | static string MixedLower(const string& word) { function string (line 87) | static string ToAllUpperCase(const string& word) { function string (line 98) | static inline string LowerMethodName(const MethodDescriptor* method) { function string (line 102) | static inline string MethodPropertiesFieldName(const MethodDescriptor*... function string (line 106) | static inline string MethodPropertiesGetterName( function string (line 111) | static inline string MethodIdFieldName(const MethodDescriptor* method) { function string (line 115) | static inline string JavaClassName(VARS& vars, const string& name) { function string (line 120) | static inline string ServiceClassName(const string& service_name) { function GrpcSplitStringToIteratorUsing (line 127) | static void GrpcSplitStringToIteratorUsing(const string& full, function GrpcSplitStringUsing (line 159) | static void GrpcSplitStringUsing(const string& full, const char* delim, function GrpcSplit (line 165) | static std::vector GrpcSplit(const string& full, const char* d... function string (line 173) | static string GrpcEscapeJavadoc(const string& input) { function GrpcGetDocLines (line 231) | static std::vector GrpcGetDocLines(const string& comments) { function GrpcGetDocLinesForDescriptor (line 250) | static std::vector GrpcGetDocLinesForDescriptor( function GrpcWriteDocCommentBody (line 256) | static void GrpcWriteDocCommentBody(Printer* printer, VARS& vars, function GrpcWriteDocComment (line 282) | static void GrpcWriteDocComment(Printer* printer, VARS& vars, function GrpcWriteServiceDocComment (line 290) | static void GrpcWriteServiceDocComment(Printer* printer, VARS& vars, function GrpcWriteMethodDocComment (line 298) | static void GrpcWriteMethodDocComment(Printer* printer, VARS& vars, function PrintTypeExtractor (line 308) | static void PrintTypeExtractor(Printer* p, VARS& vars) { function PrintMethodFields (line 330) | static void PrintMethodFields(Printer* p, VARS& vars, type StubType (line 440) | enum StubType { type CallType (line 451) | enum CallType { ASYNC_CALL = 0, BLOCKING_CALL = 1, FUTURE_CALL = 2 } function PrintStub (line 457) | static void PrintStub(Printer* p, VARS& vars, const ServiceDescriptor*... function CompareMethodClientStreaming (line 709) | static bool CompareMethodClientStreaming( function PrintMethodHandlerClass (line 717) | static void PrintMethodHandlerClass(Printer* p, VARS& vars, function PrintGetServiceDescriptorMethod (line 822) | static void PrintGetServiceDescriptorMethod(Printer* p, VARS& vars, function PrintBindServiceMethodBody (line 915) | static void PrintBindServiceMethodBody(Printer* p, VARS& vars, function PrintService (line 968) | static void PrintService(Printer* p, VARS& vars, function PrintStaticImports (line 1049) | static void PrintStaticImports(Printer* p) { function GenerateService (line 1082) | static void GenerateService(const grpc_generator::Service* service, function GenerateServiceSource (line 1119) | grpc::string GenerateServiceSource( FILE: grpc/src/compiler/java_generator.h function class (line 28) | class LogMessageVoidify { function namespace (line 69) | namespace grpc_java_generator { FILE: grpc/src/compiler/python_generator.cc type flatbuffers (line 34) | namespace flatbuffers { type python (line 35) | namespace python { type grpc (line 36) | namespace grpc { function ClientStreaming (line 38) | bool ClientStreaming(const RPCCall* method) { function ServerStreaming (line 44) | bool ServerStreaming(const RPCCall* method) { function FormatImports (line 50) | void FormatImports(std::stringstream& ss, const Imports& imports) { class BaseGenerator (line 79) | class BaseGenerator { method BaseGenerator (line 81) | BaseGenerator(const Parser& parser, const Namer::Config& config, method ModuleForFile (line 89) | std::string ModuleForFile(const std::string& file) const { method ModuleFor (line 97) | std::string ModuleFor(const T* def) const { method NamespaceDir (line 102) | std::string NamespaceDir(const Parser& parser, const std::string... method NamespaceDir (line 117) | std::string NamespaceDir(const Namespace& ns, const bool dasheri... class StubGenerator (line 127) | class StubGenerator : public BaseGenerator { method StubGenerator (line 129) | StubGenerator(const Parser& parser, const std::string& path, method Generate (line 133) | bool Generate() { method SaveStub (line 153) | bool SaveStub(const std::string& filename, const Imports& imports, method Generate (line 167) | void Generate(std::stringstream& ss, const ServiceDef* service, class ServiceGenerator (line 243) | class ServiceGenerator : public BaseGenerator { method ServiceGenerator (line 245) | ServiceGenerator(const Parser& parser, const std::string& path, method Generate (line 249) | bool Generate() { method SaveService (line 285) | bool SaveService(const std::string& filename, const Imports& imp... method GenerateStub (line 297) | void GenerateStub(std::stringstream& ss, const ServiceDef* service, method GenerateServicer (line 335) | void GenerateServicer(std::stringstream& ss, const ServiceDef* s... method GenerateRegister (line 359) | void GenerateRegister(std::stringstream& ss, const ServiceDef* s... function Generate (line 398) | bool Generate(const Parser& parser, const std::string& path, function GenerateStub (line 404) | bool GenerateStub(const Parser& parser, const std::string& path, FILE: grpc/src/compiler/python_generator.h function namespace (line 27) | namespace flatbuffers { FILE: grpc/src/compiler/schema_interface.h function namespace (line 31) | namespace grpc { function namespace (line 37) | namespace grpc_generator { FILE: grpc/src/compiler/swift_generator.cc type grpc_swift_generator (line 31) | namespace grpc_swift_generator { function WrapInNameSpace (line 34) | static std::string WrapInNameSpace(const std::vector& com... function GenerateMessage (line 42) | static grpc::string GenerateMessage(const std::vector& co... function GenerateClientFuncName (line 49) | static void GenerateClientFuncName( function GenerateClientFuncBody (line 87) | static void GenerateClientFuncBody( function GenerateClientProtocol (line 137) | void GenerateClientProtocol(const grpc_generator::Service* service, function GenerateClientClass (line 211) | void GenerateClientClass(grpc_generator::Printer* printer, function GenerateServerFuncName (line 241) | grpc::string GenerateServerFuncName(const grpc_generator::Method* meth... function GenerateServerExtensionBody (line 262) | grpc::string GenerateServerExtensionBody(const grpc_generator::Method*... function GenerateServerProtocol (line 306) | void GenerateServerProtocol(const grpc_generator::Service* service, function Generate (line 379) | grpc::string Generate(grpc_generator::File* file, function GenerateHeader (line 405) | grpc::string GenerateHeader() { FILE: grpc/src/compiler/swift_generator.h function namespace (line 27) | namespace grpc { function namespace (line 33) | namespace grpc_swift_generator { FILE: grpc/src/compiler/ts_generator.cc type grpc_ts_generator (line 32) | namespace grpc_ts_generator { function GenerateNamespace (line 35) | static grpc::string GenerateNamespace(const std::vector ns, function GenerateImports (line 59) | static void GenerateImports(const grpc_generator::Service* service, function GetStreamType (line 108) | static void GetStreamType(grpc_generator::Printer* printer, function GenerateSerializeMethod (line 120) | static void GenerateSerializeMethod( function GenerateDeserializeMethod (line 137) | static void GenerateDeserializeMethod( function GenerateMethods (line 150) | static void GenerateMethods(const grpc_generator::Service* service, function GenerateService (line 182) | static void GenerateService(const grpc_generator::Service* service, function Generate (line 219) | grpc::string Generate(grpc_generator::File* file, function FillInterface (line 246) | static void FillInterface(grpc_generator::Printer* printer, function GenerateInterfaces (line 264) | static void GenerateInterfaces( function GenerateExportedInterface (line 286) | static void GenerateExportedInterface( function GenerateMainInterface (line 330) | static void GenerateMainInterface( function GenerateMetaData (line 355) | static grpc::string GenerateMetaData() { return "metadata: grpc.Metada... function GenerateOptions (line 357) | static grpc::string GenerateOptions() { function GenerateUnaryClientInterface (line 361) | static void GenerateUnaryClientInterface( function GenerateClientWriteStreamInterface (line 376) | static void GenerateClientWriteStreamInterface( function GenerateClientReadableStreamInterface (line 393) | static void GenerateClientReadableStreamInterface( function GenerateDepluxStreamInterface (line 405) | static void GenerateDepluxStreamInterface( function GenerateClientInterface (line 421) | static void GenerateClientInterface( function GenerateClientClassInterface (line 459) | static void GenerateClientClassInterface( function GenerateInterface (line 502) | grpc::string GenerateInterface(grpc_generator::File* file, FILE: grpc/src/compiler/ts_generator.h function namespace (line 12) | namespace grpc { function namespace (line 18) | namespace grpc_ts_generator { FILE: grpc/tests/GameFactory.java class GameFactory (line 6) | class GameFactory { method createMonster (line 7) | public static Monster createMonster( method createMonsterFromStat (line 24) | public static Monster createMonsterFromStat(Stat stat, int seqNo) { method createStat (line 35) | public static Stat createStat(String greeting, long val, int count) { FILE: grpc/tests/JavaGrpcTest.java class JavaGrpcTest (line 34) | public class JavaGrpcTest { class MyService (line 45) | static class MyService extends MonsterStorageGrpc.MonsterStorageImplBa... method store (line 46) | @Override method retrieve (line 58) | @Override method getMaxHitPoint (line 68) | @Override method getMinMaxHitPoints (line 73) | @Override method computeMinMax (line 78) | private StreamObserver computeMinMax( method startServer (line 134) | @org.junit.BeforeClass method testUnary (line 149) | @org.junit.Test method testServerStreaming (line 158) | @org.junit.Test method testClientStreaming (line 174) | @org.junit.Test method testBiDiStreaming (line 207) | @org.junit.Test FILE: grpc/tests/go_test.go type server (line 15) | type server struct method Store (line 24) | func (s *server) Store(context context.Context, in *Example.Monster) (... method Retrieve (line 35) | func (s *server) Retrieve(context context.Context, in *Example.Stat) (... function StoreClient (line 44) | func StoreClient(c Example.MonsterStorageClient, t *testing.T) { function RetrieveClient (line 60) | func RetrieveClient(c Example.MonsterStorageClient, t *testing.T) { function TestGRPC (line 80) | func TestGRPC(t *testing.T) { FILE: grpc/tests/grpctest.cpp class ServiceImpl (line 34) | class ServiceImpl final : public MyGame::Example::MonsterStorage::Service { method Store (line 35) | virtual ::grpc::Status Store( method Retrieve (line 48) | virtual ::grpc::Status Retrieve( function RunServer (line 82) | void RunServer() { function StoreRPC (line 102) | void StoreRPC(MonsterStorage::Stub* stub) { function RetrieveRPC (line 124) | void RetrieveRPC(MonsterStorage::Stub* stub) { function grpc_server_test (line 140) | int grpc_server_test() { function main (line 184) | int main(int /*argc*/, const char* /*argv*/[]) { FILE: grpc/tests/grpctest.py class MonsterStorage (line 40) | class MonsterStorage(monster_grpc_fb.MonsterStorageServicer): method Store (line 42) | def Store(self, request, context): method Retrieve (line 88) | def Retrieve(self, request, context): function serve (line 102) | def serve(): function run (line 113) | def run(): FILE: grpc/tests/grpctest_callback_client_compile.cpp function main (line 60) | int main() { return 0; } FILE: grpc/tests/grpctest_callback_compile.cpp class CallbackServiceImpl (line 8) | class CallbackServiceImpl function main (line 15) | int main() { FILE: grpc/tests/message_builder_test.cpp function verify (line 10) | bool verify(flatbuffers::grpc::Message& msg, function release_n_verify (line 20) | bool release_n_verify(flatbuffers::grpc::MessageBuilder& mbb, function builder_move_assign_after_releaseraw_test (line 26) | void builder_move_assign_after_releaseraw_test( type BuilderReuseTests (line 45) | struct BuilderReuseTests { method builder_reusable_after_release_message_test (line 46) | static void builder_reusable_after_release_message_test( method builder_reusable_after_release_test (line 62) | static void builder_reusable_after_release_test(TestSelector selector) { method builder_reusable_after_releaseraw_test (line 80) | static void builder_reusable_after_releaseraw_test(TestSelector select... method builder_reusable_after_release_and_move_assign_test (line 96) | static void builder_reusable_after_release_and_move_assign_test( method builder_reusable_after_release_message_and_move_assign_test (line 123) | static void builder_reusable_after_release_message_and_move_assign_test( method builder_reusable_after_releaseraw_and_move_assign_test (line 146) | static void builder_reusable_after_releaseraw_and_move_assign_test( method run_tests (line 168) | static void run_tests(TestSelector selector) { function slice_allocator_tests (line 178) | void slice_allocator_tests() { function populate_first_half (line 207) | void populate_first_half(MyGame::Example::MonsterBuilder& wrapper, function populate_second_half (line 215) | void populate_second_half(MyGame::Example::MonsterBuilder& wrapper) { function test_only_hack_update_fbb_reference (line 228) | void test_only_hack_update_fbb_reference( function builder_move_ctor_conversion_before_finish_half_n_half_table_test (line 238) | void builder_move_ctor_conversion_before_finish_half_n_half_table_test() { function builder_move_ctor_conversion_before_finish_test (line 256) | void builder_move_ctor_conversion_before_finish_test() { function builder_move_assign_conversion_before_finish_half_n_half_table_test (line 283) | void builder_move_assign_conversion_before_finish_half_n_half_table_test... function builder_move_assign_conversion_before_finish_test (line 304) | void builder_move_assign_conversion_before_finish_test() { function builder_move_ctor_conversion_after_finish_test (line 322) | void builder_move_ctor_conversion_after_finish_test() { function builder_move_assign_conversion_after_finish_test (line 332) | void builder_move_assign_conversion_after_finish_test() { function message_builder_tests (line 344) | void message_builder_tests() { FILE: include/codegen/idl_namer.h function namespace (line 7) | namespace flatbuffers { FILE: include/codegen/namer.h function namespace (line 6) | namespace flatbuffers { FILE: include/codegen/python.cc type flatbuffers (line 8) | namespace flatbuffers { type python (line 9) | namespace python { function Keywords (line 20) | std::set Keywords(const Version& version) { FILE: include/codegen/python.h function namespace (line 11) | namespace flatbuffers { FILE: include/flatbuffers/allocator.h function namespace (line 22) | namespace flatbuffers { FILE: include/flatbuffers/array.h function namespace (line 27) | namespace flatbuffers { type size_type (line 170) | typedef uint16_t size_type; function return_type (line 175) | return_type operator[](uoffset_t) const { FILE: include/flatbuffers/base.h function class (line 106) | const class nullptr_t { FILE: include/flatbuffers/buffer.h function namespace (line 25) | namespace flatbuffers { type pointee_type (line 165) | typedef pointee_type* mutable_return_type; function return_type (line 168) | static return_type Read(const uint8_t* const p, const size_t i) { function mutable_return_type (line 172) | static mutable_return_type Read(uint8_t* const p, const size_t i) { function T (line 214) | T* GetRoot(const void* buf) { function T (line 219) | T* GetSizePrefixedRoot(const void* buf) { FILE: include/flatbuffers/buffer_ref.h function namespace (line 23) | namespace flatbuffers { FILE: include/flatbuffers/code_generator.h function namespace (line 25) | namespace flatbuffers { FILE: include/flatbuffers/code_generators.h function namespace (line 25) | namespace flatbuffers { function class (line 92) | class BaseGenerator { type CommentConfig (line 154) | struct CommentConfig { function class (line 164) | class FloatConstantGenerator { function class (line 182) | class SimpleFloatConstantGenerator : public FloatConstantGenerator { function class (line 204) | class TypedFloatConstantGenerator : public FloatConstantGenerator { FILE: include/flatbuffers/default_allocator.h function namespace (line 23) | namespace flatbuffers { FILE: include/flatbuffers/detached_buffer.h function namespace (line 24) | namespace flatbuffers { FILE: include/flatbuffers/file_manager.h function namespace (line 24) | namespace flatbuffers { FILE: include/flatbuffers/flatbuffer_builder.h function namespace (line 41) | namespace flatbuffers { function Swap (line 144) | void Swap(FlatBufferBuilderImpl& other) { function Reset (line 162) | void Reset() { function Clear (line 169) | void Clear() { function DetachedBuffer (line 228) | DetachedBuffer Release() { function ForceDefaults (line 277) | void ForceDefaults(bool fd) { force_defaults_ = fd; } function DedupVtables (line 281) | void DedupVtables(bool dedup) { dedup_vtables_ = dedup; } function Pad (line 284) | void Pad(size_t num_bytes) { buf_.fill(num_bytes); } function TrackMinAlign (line 286) | void TrackMinAlign(size_t elem_size) { function Align (line 290) | void Align(size_t elem_size) { function PushFlatBuffer (line 295) | void PushFlatBuffer(const uint8_t* bytes, size_t size) { function PushBytes (line 300) | void PushBytes(const uint8_t* bytes, size_t size) { buf_.push(bytes, siz... function PopBytes (line 302) | void PopBytes(size_t amount) { buf_.pop(amount); } function TrackField (line 327) | void TrackField(voffset_t field, uoffset_t off) { function AddStructOffset (line 369) | void AddStructOffset(voffset_t field, uoffset_t off) { function uoffset_t (line 376) | uoffset_t ReferTo(uoffset_t off) { function uoffset64_t (line 385) | uoffset64_t ReferTo(uoffset64_t off) { function NotNested (line 404) | void NotNested() { function uoffset_t (line 420) | uoffset_t StartTable() { function uoffset_t (line 429) | uoffset_t EndTable(uoffset_t start) { function FLATBUFFERS_ATTRIBUTE (line 498) | FLATBUFFERS_ATTRIBUTE([[deprecated("call the version above instead")]]) function uoffset_t (line 514) | uoffset_t StartStruct(size_t alignment) { function uoffset_t (line 519) | uoffset_t EndStruct() { return GetSizeRelative32BitRegion(); } function ClearOffsets (line 521) | void ClearOffsets() { function PreAlign (line 529) | void PreAlign(size_t len, size_t alignment) { function ForceVectorAlignment (line 712) | void ForceVectorAlignment(const size_t len, const size_t elemsize, function ForceStringAlignment (line 734) | void ForceStringAlignment(size_t len, size_t alignment) { type typename (line 756) | typedef typename OffsetT>::offset_type offset_type; type typename (line 939) | typedef typename VectorT::size_type LenT; type T (line 940) | typedef typename OffsetT>::offset_type offset_type; function explicit (line 1146) | explicit TableKeyComparator(vector_downward& buf) : buf_(buf) {} function buf_ (line 1147) | TableKeyComparator(const TableKeyComparator& other) : buf_(other.buf_) {} function const (line 1148) | bool operator()(const Offset& a, const Offset& b) const { function uoffset_t (line 1196) | uoffset_t CreateUninitializedVector(size_t len, size_t elemsize, function FLATBUFFERS_ATTRIBUTE (line 1207) | FLATBUFFERS_ATTRIBUTE([[deprecated("call the version above instead")]]) function SwapBufAllocator (line 1280) | void SwapBufAllocator(FlatBufferBuilderImpl& other) { function Finish (line 1293) | void Finish(uoffset_t root, const char* file_identifier, bool size_prefi... type FieldLoc (line 1322) | struct FieldLoc { type StringOffsetCompare (line 1368) | struct StringOffsetCompare { type std (line 1381) | typedef std::set, StringOffsetCompare> StringOffsetMap; function CreateStringImpl (line 1412) | void CreateStringImpl(const char* str, size_t len) { FILE: include/flatbuffers/flatbuffers.h function namespace (line 38) | namespace flatbuffers { FILE: include/flatbuffers/flatc.h function namespace (line 31) | namespace flatbuffers { FILE: include/flatbuffers/flex_flat_util.h function namespace (line 23) | namespace flexbuffers { FILE: include/flatbuffers/flexbuffers.h function namespace (line 36) | namespace flexbuffers { function Type (line 121) | inline Type ToTypedVectorElementType(Type t) { function Type (line 126) | inline Type ToFixedTypedVectorElementType(Type t, uint8_t* len) { type half (line 136) | typedef int16_t half; type quarter (line 137) | typedef int8_t quarter; function ReadInt64 (line 155) | inline int64_t ReadInt64(const uint8_t* data, uint8_t byte_width) { function ReadUInt64 (line 160) | inline uint64_t ReadUInt64(const uint8_t* data, uint8_t byte_width) { function ReadDouble (line 181) | inline double ReadDouble(const uint8_t* data, uint8_t byte_width) { function BitWidth (line 195) | inline BitWidth WidthU(uint64_t u) { function BitWidth (line 207) | inline BitWidth WidthI(int64_t i) { function BitWidth (line 212) | inline BitWidth WidthF(double f) { function class (line 219) | class Object { function class (line 230) | class Sized : public Object { function class (line 248) | class String : public Sized { function String (line 260) | static String EmptyString() { function class (line 267) | class Blob : public Sized { function class (line 280) | class Vector : public Sized { function class (line 293) | class TypedVector : public Sized { function class (line 318) | class FixedTypedVector : public Object { function class (line 342) | class Map : public Vector { function TypedVector (line 351) | TypedVector Keys() const { function IndentString (line 370) | inline void IndentString(std::string& s, int indent, function class (line 404) | class Reference { function IsTypedVector (line 439) | bool IsTypedVector() const { return flexbuffers::IsTypedVector(type_); } function ToString (line 593) | void ToString(bool strings_quoted, bool keys_quoted, std::string& s) con... function else (line 666) | else if (IsTypedVector()) { function else (line 669) | else if (IsFixedTypedVector()) { function else (line 673) | else if (IsBlob()) { function MutateInt (line 748) | bool MutateInt(int64_t i) { function MutateBool (line 764) | bool MutateBool(bool b) { function MutateUInt (line 768) | bool MutateUInt(uint64_t u) { function MutateFloat (line 784) | bool MutateFloat(float f) { function MutateFloat (line 794) | bool MutateFloat(double d) { function MutateString (line 804) | bool MutateString(const char* str, size_t len) { function MutateString (line 813) | bool MutateString(const char* str) { return MutateString(str, strlen(str... function MutateString (line 814) | bool MutateString(const std::string& str) { function res (line 997) | auto res = std::bsearch(key, keys.data_, keys.size(), keys.byte_width_, ... function Reference (line 1007) | inline Reference GetRoot(const uint8_t* buffer, size_t size) { function Reference (line 1017) | inline Reference GetRoot(const std::vector& buffer) { type BuilderFlag (line 1031) | enum BuilderFlag { function class (line 1040) | class Builder FLATBUFFERS_FINAL_CLASS { function Clear (line 1070) | void Clear() { function Null (line 1084) | void Null() { stack_.push_back(Value()); } function Null (line 1085) | void Null(const char* key) { function Int (line 1090) | void Int(int64_t i) { stack_.push_back(Value(i, FBT_INT, WidthI(i))); } function Int (line 1091) | void Int(const char* key, int64_t i) { function UInt (line 1096) | void UInt(uint64_t u) { stack_.push_back(Value(u, FBT_UINT, WidthU(u))); } function UInt (line 1097) | void UInt(const char* key, uint64_t u) { function Float (line 1102) | void Float(float f) { stack_.push_back(Value(f)); } function Float (line 1103) | void Float(const char* key, float f) { function Double (line 1108) | void Double(double f) { stack_.push_back(Value(f)); } function Double (line 1109) | void Double(const char* key, double d) { function Bool (line 1114) | void Bool(bool b) { stack_.push_back(Value(b)); } function Bool (line 1115) | void Bool(const char* key, bool b) { function IndirectInt (line 1120) | void IndirectInt(int64_t i) { PushIndirect(i, FBT_INDIRECT_INT, WidthI(i... function IndirectInt (line 1121) | void IndirectInt(const char* key, int64_t i) { function IndirectUInt (line 1126) | void IndirectUInt(uint64_t u) { function IndirectUInt (line 1129) | void IndirectUInt(const char* key, uint64_t u) { function IndirectFloat (line 1134) | void IndirectFloat(float f) { function IndirectFloat (line 1137) | void IndirectFloat(const char* key, float f) { function IndirectDouble (line 1142) | void IndirectDouble(double f) { function IndirectDouble (line 1145) | void IndirectDouble(const char* key, double d) { function Key (line 1150) | size_t Key(const char* str, size_t len) { function Key (line 1168) | size_t Key(const char* str) { return Key(str, strlen(str)); } function Key (line 1169) | size_t Key(const std::string& str) { return Key(str.c_str(), str.size()); } function String (line 1171) | size_t String(const char* str, size_t len) { function String (line 1189) | size_t String(const char* str) { return String(str, strlen(str)); } function String (line 1190) | size_t String(const std::string& str) { function String (line 1193) | void String(const flexbuffers::String& str) { function String (line 1197) | void String(const char* key, const char* str) { function String (line 1201) | void String(const char* key, const std::string& str) { function String (line 1205) | void String(const char* key, const flexbuffers::String& str) { function Blob (line 1210) | size_t Blob(const void* data, size_t len) { function Blob (line 1213) | size_t Blob(const std::vector& v) { function Blob (line 1217) | void Blob(const char* key, const void* data, size_t len) { function Blob (line 1221) | void Blob(const char* key, const std::vector& v) { function StartVector (line 1230) | size_t StartVector() { return stack_.size(); } function StartVector (line 1231) | size_t StartVector(const char* key) { function StartMap (line 1235) | size_t StartMap() { return stack_.size(); } function StartMap (line 1236) | size_t StartMap(const char* key) { function EndVector (line 1243) | size_t EndVector(size_t start, bool typed, bool fixed) { function EndMap (line 1251) | size_t EndMap(size_t start) { function MapElementCount (line 1425) | size_t MapElementCount(size_t start) { type Value (line 1443) | struct Value function Value (line 1444) | Value LastValue() { return stack_.back(); } function ReuseValue (line 1445) | void ReuseValue(Value v) { stack_.push_back(v); } function ReuseValue (line 1446) | void ReuseValue(const char* key, Value v) { function Undo (line 1453) | void Undo() { stack_.pop_back(); } function Add (line 1456) | void Add(int8_t i) { Int(i); } function Add (line 1457) | void Add(int16_t i) { Int(i); } function Add (line 1458) | void Add(int32_t i) { Int(i); } function Add (line 1459) | void Add(int64_t i) { Int(i); } function Add (line 1460) | void Add(uint8_t u) { UInt(u); } function Add (line 1461) | void Add(uint16_t u) { UInt(u); } function Add (line 1462) | void Add(uint32_t u) { UInt(u); } function Add (line 1463) | void Add(uint64_t u) { UInt(u); } function Add (line 1464) | void Add(float f) { Float(f); } function Add (line 1465) | void Add(double d) { Double(d); } function Add (line 1466) | void Add(bool b) { Bool(b); } function Add (line 1467) | void Add(const char* str) { String(str); } function Add (line 1468) | void Add(const std::string& str) { String(str); } function Add (line 1469) | void Add(const flexbuffers::String& str) { String(str); } function ForceMinimumBitWidth (line 1496) | void ForceMinimumBitWidth(BitWidth bw = BIT_WIDTH_8) { function Finish (line 1500) | void Finish() { function Align (line 1527) | uint8_t Align(BitWidth alignment) { function WriteBytes (line 1534) | void WriteBytes(const void* val, size_t size) { function WriteDouble (line 1546) | void WriteDouble(double f, uint8_t byte_width) { function WriteOffset (line 1561) | void WriteOffset(uint64_t o, uint8_t byte_width) { function BitWidth (line 1575) | static BitWidth WidthB(size_t byte_width) { function Type (line 1592) | Type GetScalarType() { type Value (line 1602) | struct Value { function BitWidth (line 1665) | BitWidth StoredWidth(BitWidth parent_bit_width_ = BIT_WIDTH_8) const { function CreateBlob (line 1694) | size_t CreateBlob(const void* data, size_t len, size_t trailing, Type ty... type KeyOffsetCompare (line 1797) | struct KeyOffsetCompare { type std (line 1807) | typedef std::pair StringOffset; type StringOffsetCompare (line 1808) | struct StringOffsetCompare { type std (line 1820) | typedef std::set KeyOffsetMap; type std (line 1821) | typedef std::set StringOffsetMap; function class (line 1830) | class Verifier FLATBUFFERS_FINAL_CLASS { function VerifyFrom (line 1867) | bool VerifyFrom(size_t elem, size_t elem_len) const { function VerifyBefore (line 1870) | bool VerifyBefore(size_t elem, size_t elem_len) const { function VerifyFromPointer (line 1874) | bool VerifyFromPointer(const uint8_t* p, size_t len) { function VerifyBeforePointer (line 1878) | bool VerifyBeforePointer(const uint8_t* p, size_t len) { function VerifyByteWidth (line 1883) | bool VerifyByteWidth(size_t width) { function VerifyType (line 1887) | bool VerifyType(int type) { return Check(type >= 0 && type < FBT_MAX_TYP... function VerifyOffset (line 1889) | bool VerifyOffset(uint64_t off, const uint8_t* p) { function VerifyAlignment (line 1894) | bool VerifyAlignment(const uint8_t* p, size_t size) const { function VerifyVector (line 1910) | bool VerifyVector(Reference r, const uint8_t* p, Type elem_type) { function VerifyKeys (line 1948) | bool VerifyKeys(const uint8_t* p, uint8_t byte_width) { function VerifyKey (line 1962) | bool VerifyKey(const uint8_t* p) { function VerifyTerminator (line 1971) | bool VerifyTerminator(const String& s) { function VerifyRef (line 1976) | bool VerifyRef(Reference r) { FILE: include/flatbuffers/grpc.h function namespace (line 26) | namespace flatbuffers { function namespace (line 262) | namespace grpc { FILE: include/flatbuffers/hash.h function namespace (line 25) | namespace flatbuffers { FILE: include/flatbuffers/idl.h function namespace (line 43) | namespace flatbuffers { type Definition (line 301) | struct Definition { function Definition (line 397) | struct StructDef : public Definition { function EqualByName (line 600) | inline bool EqualByName(const Type& a, const Type& b) { function Definition (line 610) | struct RPCCall : public Definition { function Definition (line 619) | struct ServiceDef : public Definition { type IncludedFile (line 627) | struct IncludedFile { type IDLOptions (line 646) | struct IDLOptions { type Language (line 750) | enum Language { type MiniReflect (line 773) | enum MiniReflect { kNone, kTypes, kTypesAndNames } type ParserState (line 889) | struct ParserState { function class (line 937) | class CheckedError { function Check (line 955) | bool Check() { function class (line 976) | class Parser : public ParserState { FILE: include/flatbuffers/minireflect.h function namespace (line 23) | namespace flatbuffers { function InlineSize (line 72) | inline size_t InlineSize(ElementaryType type, const TypeTable* type_tabl... function LookupEnum (line 108) | inline int64_t LookupEnum(int64_t enum_val, const int64_t* values, function IterateValue (line 131) | inline void IterateValue(ElementaryType type, const uint8_t* val, function IterateObject (line 247) | inline void IterateObject(const uint8_t* obj, const TypeTable* type_table, function IterateFlatBuffer (line 304) | inline void IterateFlatBuffer(const uint8_t* buffer, function IterationVisitor (line 313) | struct ToStringVisitor : public IterationVisitor { FILE: include/flatbuffers/reflection.h function namespace (line 29) | namespace flatbuffers { function SetFieldT (line 491) | inline bool SetFieldT(Table* table, const reflection::Field& field, FILE: include/flatbuffers/reflection_generated.h function namespace (line 16) | namespace reflection { function FLATBUFFERS_FINAL_CLASS (line 263) | struct KeyValue FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table { function FLATBUFFERS_FINAL_CLASS (line 342) | struct EnumVal FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table { function FLATBUFFERS_FINAL_CLASS (line 456) | struct Enum FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table { function FLATBUFFERS_FINAL_CLASS (line 608) | struct Field FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table { function FLATBUFFERS_FINAL_CLASS (line 839) | struct Object FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table { function FLATBUFFERS_FINAL_CLASS (line 1001) | struct RPCCall FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table { function FLATBUFFERS_FINAL_CLASS (line 1124) | struct Service FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table { function FLATBUFFERS_FINAL_CLASS (line 1252) | struct SchemaFile FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table { function FLATBUFFERS_FINAL_CLASS (line 1334) | struct Schema FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table { function reflection (line 1489) | inline const reflection::Schema *GetSchema(const void *buf) { function reflection (line 1493) | inline const reflection::Schema *GetSizePrefixedSchema(const void *buf) { function SchemaBufferHasIdentifier (line 1501) | inline bool SchemaBufferHasIdentifier(const void *buf) { function SizePrefixedSchemaBufferHasIdentifier (line 1506) | inline bool SizePrefixedSchemaBufferHasIdentifier(const void *buf) { function FinishSchemaBuffer (line 1527) | inline void FinishSchemaBuffer( function FinishSizePrefixedSchemaBuffer (line 1533) | inline void FinishSizePrefixedSchemaBuffer( FILE: include/flatbuffers/registry.h function namespace (line 23) | namespace flatbuffers { FILE: include/flatbuffers/stl_emulation.h function namespace (line 70) | namespace flatbuffers { FILE: include/flatbuffers/string.h type String (line 25) | struct String function operator (line 36) | operator flatbuffers::string_view() const { function std (line 49) | static inline std::string GetString(const String* str) { function flatbuffers (line 62) | static inline flatbuffers::string_view GetStringView(const String* str) { FILE: include/flatbuffers/struct.h function namespace (line 22) | namespace flatbuffers { FILE: include/flatbuffers/table.h function namespace (line 24) | namespace flatbuffers { function SetPointer (line 130) | bool SetPointer(voffset_t field, const uint8_t* val) { function CheckField (line 146) | bool CheckField(voffset_t field) const { FILE: include/flatbuffers/util.h function namespace (line 38) | namespace flatbuffers { function string (line 160) | string FloatToString(T t, int precision) { function std (line 199) | inline std::string IntToStringHex(int i, int xdigits) { function class (line 217) | class ClassicLocale { function strtoval_impl (line 254) | inline void strtoval_impl(int64_t *val, const char *str, char **endptr, function strtoval_impl (line 259) | inline void strtoval_impl(uint64_t *val, const char *str, char **endptr, function strtoval_impl (line 264) | inline void strtoval_impl(double *val, const char *str, char **endptr) { function strtoval_impl (line 270) | inline void strtoval_impl(float *val, const char *str, char **endptr) { function StringToFloatImpl (line 319) | bool StringToFloatImpl(T* val, const char* const str) { function StringToNumber (line 339) | bool StringToNumber(const char* s, T* val) { function StringToNumber (line 394) | inline bool StringToNumber(const char* s, float* val) { function StringToNumber (line 399) | inline bool StringToNumber(const char* s, double* val) { function StringIsFlatbufferNan (line 413) | inline bool StringIsFlatbufferNan(const std::string& s) { function StringIsFlatbufferPositiveInfinity (line 417) | inline bool StringIsFlatbufferPositiveInfinity(const std::string& s) { function StringIsFlatbufferNegativeInfinity (line 421) | inline bool StringIsFlatbufferNegativeInfinity(const std::string& s) { function SaveFile (line 461) | inline bool SaveFile(const char* name, const std::string& buf, bool bina... function ToUTF8 (line 517) | inline int ToUTF8(uint32_t ucc, std::string* out) { function FromUTF8 (line 545) | inline int FromUTF8(const char** in) { function std (line 603) | inline std::string WordWrap(const std::string in, size_t max_length, function EscapeString (line 627) | inline bool EscapeString(const char* s, size_t length, std::string* _text, function std (line 711) | inline std::string BufferToHexText(const void* buffer, size_t buffer_size, function Case (line 752) | enum class Case { FILE: include/flatbuffers/vector.h function namespace (line 24) | namespace flatbuffers { function typename (line 145) | typename Iterator::value_type operator*() const { type VectorConstIterator (line 166) | typedef VectorConstIterator reverse_iterator; type VectorReverseIterator (line 169) | typedef VectorReverseIterator const_reverse_iterator; type typename (line 171) | typedef typename flatbuffers::bool_constant::v... function FLATBUFFERS_ATTRIBUTE (line 186) | FLATBUFFERS_ATTRIBUTE([[deprecated("use size() instead")]]) function return_type (line 199) | return_type operator[](SizeT i) const { return Get(i); } function U (line 212) | U* GetAs(SizeT i) const { function String (line 218) | const String* GetAsString(SizeT i) const { function iterator (line 226) | iterator begin() { return iterator(Data(), 0); } function iterator (line 229) | iterator end() { return iterator(Data(), size()); } function reverse_iterator (line 232) | reverse_iterator rbegin() { return reverse_iterator(end()); } function reverse_iterator (line 237) | reverse_iterator rend() { return reverse_iterator(begin()); } function Mutate (line 252) | void Mutate(SizeT i, const T& val) { function MutateOffset (line 260) | void MutateOffset(SizeT i, const uint8_t* val) { function mutable_return_type (line 268) | mutable_return_type GetMutableObject(SizeT i) const { function T (line 281) | const T* data() const { return reinterpret_cast(Data()); } function T (line 282) | T* data() { return reinterpret_cast(Data()); } function KeyCompare (line 317) | int KeyCompare(const void* ap, const void* bp) { function class (line 415) | class VectorOfAny { function VectorLength (line 449) | inline size_t VectorLength(const Vector* v) { FILE: include/flatbuffers/vector_downward.h function namespace (line 27) | namespace flatbuffers { function fill (line 222) | void fill(size_t zero_pad_bytes) { function fill_big (line 229) | void fill_big(size_t zero_pad_bytes) { function pop (line 233) | void pop(size_t bytes_to_remove) { function scratch_pop (line 238) | void scratch_pop(size_t bytes_to_remove) { scratch_ -= bytes_to_remove; } function swap (line 240) | void swap(vector_downward& other) { function swap_allocator (line 254) | void swap_allocator(vector_downward& other) { function reallocate (line 278) | void reallocate(size_t len) { FILE: include/flatbuffers/verifier.h function namespace (line 23) | namespace flatbuffers { function VerifyString (line 137) | bool VerifyString(const String* const str) const { function VerifyVectorOfStrings (line 164) | bool VerifyVectorOfStrings(const Vector>* const vec) const { function VerifyTableStart (line 185) | bool VerifyTableStart(const uint8_t* const table) { function VerifyComplexity (line 286) | bool VerifyComplexity() { function EndTable (line 293) | bool EndTable() { function SetFlexReuseTracker (line 323) | void SetFlexReuseTracker(std::vector* const rt) { FILE: java/src/main/java/com/google/flatbuffers/ArrayReadWriteBuf.java class ArrayReadWriteBuf (line 12) | public class ArrayReadWriteBuf implements ReadWriteBuf { method ArrayReadWriteBuf (line 17) | public ArrayReadWriteBuf() { method ArrayReadWriteBuf (line 21) | public ArrayReadWriteBuf(int initialCapacity) { method ArrayReadWriteBuf (line 25) | public ArrayReadWriteBuf(byte[] buffer) { method ArrayReadWriteBuf (line 30) | public ArrayReadWriteBuf(byte[] buffer, int startPos) { method clear (line 35) | @Override method getBoolean (line 40) | @Override method get (line 45) | @Override method getShort (line 50) | @Override method getInt (line 55) | @Override method getLong (line 63) | @Override method getFloat (line 75) | @Override method getDouble (line 80) | @Override method getString (line 85) | @Override method data (line 90) | @Override method putBoolean (line 95) | @Override method put (line 101) | @Override method put (line 107) | @Override method putShort (line 113) | @Override method putInt (line 119) | @Override method putLong (line 125) | @Override method putFloat (line 131) | @Override method putDouble (line 137) | @Override method setBoolean (line 143) | @Override method set (line 148) | @Override method set (line 154) | @Override method setShort (line 160) | @Override method setInt (line 168) | @Override method setLong (line 178) | @Override method setFloat (line 194) | @Override method setDouble (line 205) | @Override method limit (line 222) | @Override method writePosition (line 227) | @Override method requestCapacity (line 232) | @Override FILE: java/src/main/java/com/google/flatbuffers/BaseVector.java class BaseVector (line 24) | public class BaseVector { method __vector (line 42) | protected int __vector() { method __element (line 52) | protected int __element(int j) { method __reset (line 63) | protected void __reset(int _vector, int _element_size, ByteBuffer _bb) { method reset (line 83) | public void reset() { method length (line 92) | public int length() { FILE: java/src/main/java/com/google/flatbuffers/BooleanVector.java class BooleanVector (line 24) | public final class BooleanVector extends BaseVector { method __assign (line 33) | public BooleanVector __assign(int _vector, ByteBuffer _bb) { method get (line 44) | public boolean get(int j) { FILE: java/src/main/java/com/google/flatbuffers/ByteBufferReadWriteBuf.java class ByteBufferReadWriteBuf (line 6) | public class ByteBufferReadWriteBuf implements ReadWriteBuf { method ByteBufferReadWriteBuf (line 10) | public ByteBufferReadWriteBuf(ByteBuffer bb) { method clear (line 15) | @Override method getBoolean (line 20) | @Override method get (line 25) | @Override method getShort (line 30) | @Override method getInt (line 35) | @Override method getLong (line 40) | @Override method getFloat (line 45) | @Override method getDouble (line 50) | @Override method getString (line 55) | @Override method data (line 60) | @Override method putBoolean (line 65) | @Override method put (line 70) | @Override method put (line 75) | @Override method putShort (line 80) | @Override method putInt (line 85) | @Override method putLong (line 90) | @Override method putFloat (line 95) | @Override method putDouble (line 100) | @Override method setBoolean (line 105) | @Override method set (line 110) | @Override method set (line 116) | @Override method setShort (line 125) | @Override method setInt (line 131) | @Override method setLong (line 137) | @Override method setFloat (line 143) | @Override method setDouble (line 149) | @Override method writePosition (line 155) | @Override method limit (line 160) | @Override method requestCapacity (line 165) | @Override FILE: java/src/main/java/com/google/flatbuffers/ByteBufferUtil.java class ByteBufferUtil (line 28) | public class ByteBufferUtil { method getSizePrefix (line 36) | public static int getSizePrefix(ByteBuffer bb) { method removeSizePrefix (line 47) | public static ByteBuffer removeSizePrefix(ByteBuffer bb) { FILE: java/src/main/java/com/google/flatbuffers/ByteVector.java class ByteVector (line 24) | public final class ByteVector extends BaseVector { method __assign (line 33) | public ByteVector __assign(int vector, ByteBuffer bb) { method get (line 44) | public byte get(int j) { method getAsUnsigned (line 55) | public int getAsUnsigned(int j) { FILE: java/src/main/java/com/google/flatbuffers/Constants.java class Constants (line 22) | public class Constants { method FLATBUFFERS_25_12_19 (line 54) | public static void FLATBUFFERS_25_12_19() {} FILE: java/src/main/java/com/google/flatbuffers/DoubleVector.java class DoubleVector (line 24) | public final class DoubleVector extends BaseVector { method __assign (line 33) | public DoubleVector __assign(int _vector, ByteBuffer _bb) { method get (line 44) | public double get(int j) { FILE: java/src/main/java/com/google/flatbuffers/FlatBufferBuilder.java class FlatBufferBuilder (line 36) | public class FlatBufferBuilder { method FlatBufferBuilder (line 71) | public FlatBufferBuilder(int initial_size, ByteBufferFactory bb_factor... method FlatBufferBuilder (line 83) | public FlatBufferBuilder( method FlatBufferBuilder (line 105) | public FlatBufferBuilder(int initial_size) { method FlatBufferBuilder (line 110) | public FlatBufferBuilder() { method FlatBufferBuilder (line 123) | public FlatBufferBuilder(ByteBuffer existing_bb, ByteBufferFactory bb_... method FlatBufferBuilder (line 134) | public FlatBufferBuilder(ByteBuffer existing_bb) { method init (line 148) | public FlatBufferBuilder init(ByteBuffer existing_bb, ByteBufferFactor... class ByteBufferFactory (line 177) | public abstract static class ByteBufferFactory { method newByteBuffer (line 185) | public abstract ByteBuffer newByteBuffer(int capacity); method releaseByteBuffer (line 194) | public void releaseByteBuffer(ByteBuffer bb) {} class HeapByteBufferFactory (line 203) | public static final class HeapByteBufferFactory extends ByteBufferFact... method newByteBuffer (line 207) | @Override method isFieldPresent (line 220) | public static boolean isFieldPresent(Table table, int offset) { method clear (line 225) | public void clear() { method growByteBuffer (line 250) | static ByteBuffer growByteBuffer(ByteBuffer bb, ByteBufferFactory bb_f... method offset (line 277) | public int offset() { method pad (line 286) | public void pad(int byte_size) { method prep (line 299) | public void prep(int size, int additional_bytes) { method putBoolean (line 324) | public void putBoolean(boolean x) { method putByte (line 334) | public void putByte(byte x) { method putShort (line 344) | public void putShort(short x) { method putInt (line 354) | public void putInt(int x) { method putLong (line 364) | public void putLong(long x) { method putFloat (line 374) | public void putFloat(float x) { method putDouble (line 384) | public void putDouble(double x) { method addBoolean (line 395) | public void addBoolean(boolean x) { method addByte (line 405) | public void addByte(byte x) { method addShort (line 415) | public void addShort(short x) { method addInt (line 425) | public void addInt(int x) { method addLong (line 435) | public void addLong(long x) { method addFloat (line 445) | public void addFloat(float x) { method addDouble (line 455) | public void addDouble(double x) { method addOffset (line 465) | public void addOffset(int off) { method startVector (line 516) | public void startVector(int elem_size, int num_elems, int alignment) { method endVector (line 531) | public int endVector() { method createUnintializedVector (line 549) | public ByteBuffer createUnintializedVector(int elem_size, int num_elem... method createVectorOfTables (line 567) | public int createVectorOfTables(int[] offsets) { method createSortedVectorOfTables (line 581) | public int createSortedVectorOfTables(T obj, int[] o... method createSharedString (line 597) | public int createSharedString(String s) { method createString (line 622) | public int createString(CharSequence s) { method createString (line 637) | public int createString(ByteBuffer s) { method createByteVector (line 652) | public int createByteVector(byte[] arr) { method createByteVector (line 668) | public int createByteVector(byte[] arr, int offset, int length) { method createByteVector (line 684) | public int createByteVector(ByteBuffer byteBuffer) { method finished (line 694) | public void finished() { method notNested (line 704) | public void notNested() { method Nested (line 714) | public void Nested(int obj) { method startTable (line 758) | public void startTable(int numfields) { method addBoolean (line 776) | public void addBoolean(int o, boolean x, boolean d) { method addByte (line 792) | public void addByte(int o, byte x, int d) { method addShort (line 808) | public void addShort(int o, short x, int d) { method addInt (line 824) | public void addInt(int o, int x, int d) { method addLong (line 840) | public void addLong(int o, long x, long d) { method addFloat (line 856) | public void addFloat(int o, float x, double d) { method addDouble (line 872) | public void addDouble(int o, double x, double d) { method addOffset (line 888) | public void addOffset(int o, int x, int d) { method addStruct (line 902) | public void addStruct(int voffset, int x, int d) { method slot (line 914) | public void slot(int voffset) { method endTable (line 924) | public int endTable() { method required (line 987) | public void required(int table, int field) { method finish (line 1003) | protected void finish(int root_table, boolean size_prefix) { method finish (line 1018) | public void finish(int root_table) { method finishSizePrefixed (line 1027) | public void finishSizePrefixed(int root_table) { method finish (line 1039) | protected void finish(int root_table, String file_identifier, boolean ... method finish (line 1057) | public void finish(int root_table, String file_identifier) { method finishSizePrefixed (line 1068) | public void finishSizePrefixed(int root_table, String file_identifier) { method forceDefaults (line 1079) | public FlatBufferBuilder forceDefaults(boolean forceDefaults) { method dataBuffer (line 1090) | public ByteBuffer dataBuffer() { method dataStart (line 1103) | @Deprecated method sizedByteArray (line 1118) | public byte[] sizedByteArray(int start, int length) { method sizedByteArray (line 1131) | public byte[] sizedByteArray() { method sizedInputStream (line 1141) | public InputStream sizedInputStream() { class ByteBufferBackedInputStream (line 1150) | static class ByteBufferBackedInputStream extends InputStream { method ByteBufferBackedInputStream (line 1154) | public ByteBufferBackedInputStream(ByteBuffer buf) { method read (line 1158) | public int read() throws IOException { FILE: java/src/main/java/com/google/flatbuffers/FlexBuffers.java class FlexBuffers (line 43) | public class FlexBuffers { method isTypedVector (line 128) | static boolean isTypedVector(int type) { method isTypeInline (line 139) | static boolean isTypeInline(int type) { method toTypedVectorElementType (line 143) | static int toTypedVectorElementType(int original_type) { method toTypedVector (line 154) | static int toTypedVector(int type, int fixedLength) { method isTypedVectorElementType (line 171) | static boolean isTypedVectorElementType(int type) { method indirect (line 176) | private static int indirect(ReadBuf bb, int offset, int byteWidth) { method readUInt (line 182) | private static long readUInt(ReadBuf buff, int end, int byteWidth) { method readInt (line 199) | private static int readInt(ReadBuf buff, int end, int byteWidth) { method readLong (line 204) | private static long readLong(ReadBuf buff, int end, int byteWidth) { method readDouble (line 219) | private static double readDouble(ReadBuf buff, int end, int byteWidth) { method getRoot (line 236) | @Deprecated method getRoot (line 250) | public static Reference getRoot(ReadBuf buffer) { class Reference (line 261) | public static class Reference { method Reference (line 270) | Reference(ReadBuf bb, int end, int parentWidth, int packedType) { method Reference (line 274) | Reference(ReadBuf bb, int end, int parentWidth, int byteWidth, int t... method getType (line 287) | public int getType() { method isNull (line 296) | public boolean isNull() { method isBoolean (line 305) | public boolean isBoolean() { method isNumeric (line 314) | public boolean isNumeric() { method isIntOrUInt (line 323) | public boolean isIntOrUInt() { method isFloat (line 332) | public boolean isFloat() { method isInt (line 341) | public boolean isInt() { method isUInt (line 350) | public boolean isUInt() { method isString (line 359) | public boolean isString() { method isKey (line 368) | public boolean isKey() { method isVector (line 377) | public boolean isVector() { method isTypedVector (line 386) | public boolean isTypedVector() { method isMap (line 395) | public boolean isMap() { method isBlob (line 404) | public boolean isBlob() { method asInt (line 421) | public int asInt() { method asUInt (line 464) | public long asUInt() { method asLong (line 507) | public long asLong() { method asFloat (line 552) | public double asFloat() { method asKey (line 586) | public Key asKey() { method asString (line 599) | public String asString() { method asMap (line 621) | public Map asMap() { method asVector (line 634) | public Vector asVector() { method asBlob (line 656) | public Blob asBlob() { method asBoolean (line 671) | public boolean asBoolean() { method toString (line 683) | @Override method toString (line 689) | StringBuilder toString(StringBuilder sb) { class Object (line 740) | private abstract static class Object { method Object (line 745) | Object(ReadBuf buff, int end, int byteWidth) { method toString (line 751) | @Override method toString (line 756) | public abstract StringBuilder toString(StringBuilder sb); class Sized (line 760) | private abstract static class Sized extends Object { method Sized (line 764) | Sized(ReadBuf buff, int end, int byteWidth) { method size (line 769) | public int size() { class Blob (line 780) | public static class Blob extends Sized { method Blob (line 783) | Blob(ReadBuf buff, int end, int byteWidth) { method empty (line 788) | public static Blob empty() { method data (line 797) | public ByteBuffer data() { method getBytes (line 809) | public byte[] getBytes() { method get (line 823) | public byte get(int pos) { method toString (line 829) | @Override method toString (line 835) | @Override class Key (line 844) | public static class Key extends Object { method Key (line 848) | Key(ReadBuf buff, int end, int byteWidth) { method empty (line 857) | public static Key empty() { method toString (line 862) | @Override method toString (line 867) | @Override method compareTo (line 879) | int compareTo(byte[] other) { method equals (line 909) | @Override method hashCode (line 916) | public int hashCode() { class Map (line 922) | public static class Map extends Vector { method Map (line 928) | Map(ReadBuf bb, int end, int byteWidth) { method empty (line 937) | public static Map empty() { method get (line 945) | public Reference get(String key) { method get (line 957) | public Reference get(byte[] key) { method keys (line 970) | public KeyVector keys() { method values (line 984) | public Vector values() { method toString (line 994) | public StringBuilder toString(StringBuilder builder) { method binarySearch (line 1009) | private int binarySearch(CharSequence searchedKey) { method binarySearch (line 1027) | private int binarySearch(byte[] searchedKey) { method compareBytes (line 1047) | private int compareBytes(ReadBuf bb, int start, byte[] other) { method compareCharSequence (line 1072) | private int compareCharSequence(int start, CharSequence other) { class Vector (line 1130) | public static class Vector extends Sized { method Vector (line 1134) | Vector(ReadBuf bb, int end, int byteWidth) { method empty (line 1143) | public static Vector empty() { method isEmpty (line 1152) | public boolean isEmpty() { method toString (line 1157) | @Override method get (line 1177) | public Reference get(int index) { class TypedVector (line 1189) | public static class TypedVector extends Vector { method TypedVector (line 1195) | TypedVector(ReadBuf bb, int end, int byteWidth, int elemType) { method empty (line 1200) | public static TypedVector empty() { method isEmptyVector (line 1209) | public boolean isEmptyVector() { method getElemType (line 1218) | public int getElemType() { method get (line 1228) | @Override class KeyVector (line 1238) | public static class KeyVector { method KeyVector (line 1242) | KeyVector(TypedVector vec) { method get (line 1252) | public Key get(int pos) { method size (line 1264) | public int size() { method toString (line 1269) | public String toString() { class FlexBufferException (line 1282) | public static class FlexBufferException extends RuntimeException { method FlexBufferException (line 1283) | FlexBufferException(String msg) { class Unsigned (line 1288) | static class Unsigned { method byteToUnsignedInt (line 1290) | static int byteToUnsignedInt(byte x) { method shortToUnsignedInt (line 1294) | static int shortToUnsignedInt(short x) { method intToUnsignedLong (line 1298) | static long intToUnsignedLong(int x) { FILE: java/src/main/java/com/google/flatbuffers/FlexBuffersBuilder.java class FlexBuffersBuilder (line 54) | public class FlexBuffersBuilder { method compare (line 96) | @Override method FlexBuffersBuilder (line 120) | public FlexBuffersBuilder(int bufSize) { method FlexBuffersBuilder (line 128) | public FlexBuffersBuilder() { method FlexBuffersBuilder (line 138) | @Deprecated method FlexBuffersBuilder (line 143) | public FlexBuffersBuilder(ReadWriteBuf bb, int flags) { method FlexBuffersBuilder (line 154) | public FlexBuffersBuilder(ByteBuffer bb) { method clear (line 159) | public void clear() { method getBuffer (line 173) | public ReadWriteBuf getBuffer() { method putNull (line 179) | public void putNull() { method putNull (line 188) | public void putNull(String key) { method putBoolean (line 197) | public void putBoolean(boolean val) { method putBoolean (line 207) | public void putBoolean(String key, boolean val) { method putKey (line 211) | private int putKey(String key) { method putInt (line 240) | public void putInt(int val) { method putInt (line 250) | public void putInt(String key, int val) { method putInt (line 260) | public void putInt(String key, long val) { method putInt (line 278) | public void putInt(long value) { method putUInt (line 287) | public void putUInt(int value) { method putUInt (line 296) | public void putUInt(long value) { method putUInt64 (line 306) | public void putUInt64(BigInteger value) { method putUInt64 (line 310) | private void putUInt64(String key, long value) { method putUInt (line 314) | private void putUInt(String key, long value) { method putFloat (line 337) | public void putFloat(float value) { method putFloat (line 347) | public void putFloat(String key, float val) { method putFloat (line 356) | public void putFloat(double value) { method putFloat (line 366) | public void putFloat(String key, double val) { method putString (line 376) | public int putString(String value) { method putString (line 387) | public int putString(String key, String val) { method writeString (line 408) | private Value writeString(int key, String s) { method widthUInBits (line 413) | static int widthUInBits(long len) { method writeBlob (line 420) | private Value writeBlob(int key, byte[] blob, int type, boolean traili... method align (line 433) | private int align(int alignment) { method writeInt (line 442) | private void writeInt(long value, int byteWidth) { method putBlob (line 465) | public int putBlob(byte[] value) { method putBlob (line 476) | public int putBlob(String key, byte[] val) { method startVector (line 489) | public int startVector() { method endVector (line 502) | public int endVector(String key, int start, boolean typed, boolean fix... method finish (line 519) | public ByteBuffer finish() { method createVector (line 547) | private Value createVector( method writeOffset (line 612) | private void writeOffset(long val, int byteWidth) { method writeAny (line 618) | private void writeAny(final Value val, int byteWidth) { method writeDouble (line 635) | private void writeDouble(double val, int byteWidth) { method startMap (line 649) | public int startMap() { method endMap (line 660) | public int endMap(String key, int start) { method createKeyVector (line 675) | private Value createKeyVector(int start, int length) { class Value (line 700) | private static class Value { method Value (line 713) | Value(int key, int type, int bitWidth, long iValue) { method Value (line 721) | Value(int key, int type, int bitWidth, double dValue) { method nullValue (line 729) | static Value nullValue(int key) { method bool (line 733) | static Value bool(int key, boolean b) { method blob (line 737) | static Value blob(int key, int position, int type, int bitWidth) { method int8 (line 741) | static Value int8(int key, int value) { method int16 (line 745) | static Value int16(int key, int value) { method int32 (line 749) | static Value int32(int key, int value) { method int64 (line 753) | static Value int64(int key, long value) { method uInt8 (line 757) | static Value uInt8(int key, int value) { method uInt16 (line 761) | static Value uInt16(int key, int value) { method uInt32 (line 765) | static Value uInt32(int key, int value) { method uInt64 (line 769) | static Value uInt64(int key, long value) { method float32 (line 773) | static Value float32(int key, float value) { method float64 (line 777) | static Value float64(int key, double value) { method storedPackedType (line 781) | private byte storedPackedType() { method storedPackedType (line 785) | private byte storedPackedType(int parentBitWidth) { method packedType (line 789) | private static byte packedType(int bitWidth, int type) { method storedWidth (line 793) | private int storedWidth(int parentBitWidth) { method elemWidth (line 801) | private int elemWidth(int bufSize, int elemIndex) { method elemWidth (line 805) | private static int elemWidth( method paddingBytes (line 832) | private static int paddingBytes(int bufSize, int scalarSize) { FILE: java/src/main/java/com/google/flatbuffers/FloatVector.java class FloatVector (line 24) | public final class FloatVector extends BaseVector { method __assign (line 33) | public FloatVector __assign(int _vector, ByteBuffer _bb) { method get (line 44) | public float get(int j) { FILE: java/src/main/java/com/google/flatbuffers/IntVector.java class IntVector (line 24) | public final class IntVector extends BaseVector { method __assign (line 33) | public IntVector __assign(int _vector, ByteBuffer _bb) { method get (line 44) | public int get(int j) { method getAsUnsigned (line 55) | public long getAsUnsigned(int j) { FILE: java/src/main/java/com/google/flatbuffers/LongVector.java class LongVector (line 24) | public final class LongVector extends BaseVector { method __assign (line 33) | public LongVector __assign(int _vector, ByteBuffer _bb) { method get (line 44) | public long get(int j) { FILE: java/src/main/java/com/google/flatbuffers/ReadBuf.java type ReadBuf (line 4) | public interface ReadBuf { method getBoolean (line 12) | boolean getBoolean(int index); method get (line 20) | byte get(int index); method getShort (line 28) | short getShort(int index); method getInt (line 36) | int getInt(int index); method getLong (line 44) | long getLong(int index); method getFloat (line 52) | float getFloat(int index); method getDouble (line 60) | double getDouble(int index); method getString (line 69) | String getString(int start, int size); method data (line 78) | byte[] data(); method limit (line 86) | int limit(); FILE: java/src/main/java/com/google/flatbuffers/ReadWriteBuf.java type ReadWriteBuf (line 7) | public interface ReadWriteBuf extends ReadBuf { method clear (line 12) | void clear(); method putBoolean (line 20) | void putBoolean(boolean value); method put (line 30) | void put(byte[] value, int start, int length); method put (line 35) | void put(byte value); method putShort (line 41) | void putShort(short value); method putInt (line 47) | void putInt(int value); method putLong (line 53) | void putLong(long value); method putFloat (line 59) | void putFloat(float value); method putDouble (line 65) | void putDouble(double value); method setBoolean (line 72) | void setBoolean(int index, boolean value); method set (line 80) | void set(int index, byte value); method set (line 90) | void set(int index, byte[] value, int start, int length); method setShort (line 98) | void setShort(int index, short value); method setInt (line 106) | void setInt(int index, int value); method setLong (line 114) | void setLong(int index, long value); method setFloat (line 122) | void setFloat(int index, float value); method setDouble (line 130) | void setDouble(int index, double value); method writePosition (line 132) | int writePosition(); method limit (line 140) | int limit(); method requestCapacity (line 148) | boolean requestCapacity(int capacity); FILE: java/src/main/java/com/google/flatbuffers/ShortVector.java class ShortVector (line 24) | public final class ShortVector extends BaseVector { method __assign (line 33) | public ShortVector __assign(int _vector, ByteBuffer _bb) { method get (line 44) | public short get(int j) { method getAsUnsigned (line 55) | public int getAsUnsigned(int j) { FILE: java/src/main/java/com/google/flatbuffers/StringVector.java class StringVector (line 24) | public final class StringVector extends BaseVector { method __assign (line 36) | public StringVector __assign(int _vector, int _element_size, ByteBuffe... method get (line 47) | public String get(int j) { FILE: java/src/main/java/com/google/flatbuffers/Struct.java class Struct (line 24) | public class Struct { method __reset (line 37) | protected void __reset(int _i, ByteBuffer _bb) { method __reset (line 55) | public void __reset() { FILE: java/src/main/java/com/google/flatbuffers/Table.java class Table (line 27) | public class Table { method getByteBuffer (line 47) | public ByteBuffer getByteBuffer() { method __offset (line 57) | protected int __offset(int vtable_offset) { method __offset (line 61) | protected static int __offset(int vtable_offset, int offset, ByteBuffe... method __indirect (line 72) | protected int __indirect(int offset) { method __indirect (line 83) | protected static int __indirect(int offset, ByteBuffer bb) { method __string (line 98) | protected String __string(int offset) { method __string (line 115) | protected static String __string(int offset, ByteBuffer bb, Utf8 utf8) { method __vector_len (line 127) | protected int __vector_len(int offset) { method __vector (line 139) | protected int __vector(int offset) { method __vector_as_bytebuffer (line 155) | protected ByteBuffer __vector_as_bytebuffer(int vector_offset, int ele... method __vector_in_bytebuffer (line 176) | protected ByteBuffer __vector_in_bytebuffer(ByteBuffer bb, int vector_... method __union (line 193) | protected Table __union(Table t, int offset) { method __union (line 205) | protected static Table __union(Table t, int offset, ByteBuffer bb) { method __has_identifier (line 217) | protected static boolean __has_identifier(ByteBuffer bb, String ident) { method sortTables (line 233) | protected void sortTables(int[] offsets, final ByteBuffer bb) { method keysCompare (line 253) | protected int keysCompare(Integer o1, Integer o2, ByteBuffer bb) { method compareStrings (line 264) | protected static int compareStrings(int offset_1, int offset_2, ByteBu... method compareStrings (line 286) | protected static int compareStrings(int offset_1, byte[] key, ByteBuff... method __reset (line 304) | protected void __reset(int _i, ByteBuffer _bb) { method __reset (line 324) | public void __reset() { FILE: java/src/main/java/com/google/flatbuffers/UnionVector.java class UnionVector (line 24) | public final class UnionVector extends BaseVector { method __assign (line 34) | public UnionVector __assign(int _vector, int _element_size, ByteBuffer... method get (line 46) | public Table get(Table obj, int j) { FILE: java/src/main/java/com/google/flatbuffers/Utf8.java class Utf8 (line 29) | public abstract class Utf8 { method encodedLength (line 39) | public abstract int encodedLength(CharSequence sequence); method encodeUtf8 (line 50) | public abstract void encodeUtf8(CharSequence in, ByteBuffer out); method decodeUtf8 (line 57) | public abstract String decodeUtf8(ByteBuffer buffer, int offset, int l... method getDefault (line 66) | public static Utf8 getDefault() { method setDefault (line 78) | public static void setDefault(Utf8 instance) { method encodeUtf8CodePoint (line 90) | public static int encodeUtf8CodePoint(CharSequence in, int start, byte... class DecodeUtil (line 138) | static class DecodeUtil { method isOneByte (line 141) | static boolean isOneByte(byte b) { method isTwoBytes (line 146) | static boolean isTwoBytes(byte b) { method isThreeBytes (line 151) | static boolean isThreeBytes(byte b) { method handleOneByte (line 155) | static void handleOneByte(byte byte1, char[] resultArr, int resultPo... method handleTwoBytes (line 159) | static void handleTwoBytes(byte byte1, byte byte2, char[] resultArr,... method handleThreeBytes (line 172) | static void handleThreeBytes( method handleFourBytes (line 188) | static void handleFourBytes( method isNotTrailingByte (line 214) | private static boolean isNotTrailingByte(byte b) { method trailingByteValue (line 219) | private static int trailingByteValue(byte b) { method highSurrogate (line 223) | private static char highSurrogate(int codePoint) { method lowSurrogate (line 228) | private static char lowSurrogate(int codePoint) { class UnpairedSurrogateException (line 237) | static class UnpairedSurrogateException extends IllegalArgumentExcepti... method UnpairedSurrogateException (line 238) | UnpairedSurrogateException(int index, int length) { FILE: java/src/main/java/com/google/flatbuffers/Utf8Old.java class Utf8Old (line 31) | public class Utf8Old extends Utf8 { class Cache (line 33) | private static class Cache { method Cache (line 39) | Cache() { method initialValue (line 49) | @Override method encodedLength (line 58) | @Override method encodeUtf8 (line 80) | @Override method decodeUtf8 (line 91) | @Override FILE: java/src/main/java/com/google/flatbuffers/Utf8Safe.java class Utf8Safe (line 31) | public final class Utf8Safe extends Utf8 { method computeEncodedLength (line 41) | private static int computeEncodedLength(CharSequence sequence) { method encodedLengthGeneral (line 71) | private static int encodedLengthGeneral(CharSequence sequence, int sta... method decodeUtf8Array (line 94) | public static String decodeUtf8Array(byte[] bytes, int index, int size) { method decodeUtf8Buffer (line 168) | public static String decodeUtf8Buffer(ByteBuffer buffer, int offset, i... method encodedLength (line 241) | @Override method decodeUtf8 (line 251) | @Override method encodeUtf8Buffer (line 261) | private static void encodeUtf8Buffer(CharSequence in, ByteBuffer out) { method encodeUtf8Array (line 332) | private static int encodeUtf8Array(CharSequence in, byte[] out, int of... method encodeUtf8 (line 392) | @Override class UnpairedSurrogateException (line 406) | static class UnpairedSurrogateException extends IllegalArgumentExcepti... method UnpairedSurrogateException (line 407) | UnpairedSurrogateException(int index, int length) { FILE: java/src/main/java/com/google/flatbuffers/reflection/AdvancedFeatures.java class AdvancedFeatures (line 8) | @SuppressWarnings("unused") method AdvancedFeatures (line 10) | private AdvancedFeatures() { } FILE: java/src/main/java/com/google/flatbuffers/reflection/BaseType.java class BaseType (line 5) | @SuppressWarnings("unused") method BaseType (line 7) | private BaseType() { } method name (line 31) | public static String name(int e) { return names[e]; } FILE: java/src/main/java/com/google/flatbuffers/reflection/Enum.java class Enum (line 21) | @SuppressWarnings("unused") method ValidateVersion (line 23) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsEnum (line 24) | public static Enum getRootAsEnum(ByteBuffer _bb) { return getRootAsEnu... method getRootAsEnum (line 25) | public static Enum getRootAsEnum(ByteBuffer _bb, Enum obj) { _bb.order... method __init (line 26) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 27) | public Enum __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return... method name (line 29) | public String name() { int o = __offset(4); return o != 0 ? __string(o... method nameAsByteBuffer (line 30) | public ByteBuffer nameAsByteBuffer() { return __vector_as_bytebuffer(4... method nameInByteBuffer (line 31) | public ByteBuffer nameInByteBuffer(ByteBuffer _bb) { return __vector_i... method values (line 32) | public com.google.flatbuffers.reflection.EnumVal values(int j) { retur... method values (line 33) | public com.google.flatbuffers.reflection.EnumVal values(com.google.fla... method valuesLength (line 34) | public int valuesLength() { int o = __offset(6); return o != 0 ? __vec... method valuesByKey (line 35) | public com.google.flatbuffers.reflection.EnumVal valuesByKey(long key)... method valuesByKey (line 36) | public com.google.flatbuffers.reflection.EnumVal valuesByKey(com.googl... method valuesVector (line 37) | public com.google.flatbuffers.reflection.EnumVal.Vector valuesVector()... method valuesVector (line 38) | public com.google.flatbuffers.reflection.EnumVal.Vector valuesVector(c... method isUnion (line 39) | public boolean isUnion() { int o = __offset(8); return o != 0 ? 0!=bb.... method underlyingType (line 40) | public com.google.flatbuffers.reflection.Type underlyingType() { retur... method underlyingType (line 41) | public com.google.flatbuffers.reflection.Type underlyingType(com.googl... method attributes (line 42) | public com.google.flatbuffers.reflection.KeyValue attributes(int j) { ... method attributes (line 43) | public com.google.flatbuffers.reflection.KeyValue attributes(com.googl... method attributesLength (line 44) | public int attributesLength() { int o = __offset(12); return o != 0 ? ... method attributesByKey (line 45) | public com.google.flatbuffers.reflection.KeyValue attributesByKey(Stri... method attributesByKey (line 46) | public com.google.flatbuffers.reflection.KeyValue attributesByKey(com.... method attributesVector (line 47) | public com.google.flatbuffers.reflection.KeyValue.Vector attributesVec... method attributesVector (line 48) | public com.google.flatbuffers.reflection.KeyValue.Vector attributesVec... method documentation (line 49) | public String documentation(int j) { int o = __offset(14); return o !=... method documentationLength (line 50) | public int documentationLength() { int o = __offset(14); return o != 0... method documentationVector (line 51) | public StringVector documentationVector() { return documentationVector... method documentationVector (line 52) | public StringVector documentationVector(StringVector obj) { int o = __... method declarationFile (line 56) | public String declarationFile() { int o = __offset(16); return o != 0 ... method declarationFileAsByteBuffer (line 57) | public ByteBuffer declarationFileAsByteBuffer() { return __vector_as_b... method declarationFileInByteBuffer (line 58) | public ByteBuffer declarationFileInByteBuffer(ByteBuffer _bb) { return... method createEnum (line 60) | public static int createEnum(FlatBufferBuilder builder, method startEnum (line 79) | public static void startEnum(FlatBufferBuilder builder) { builder.star... method addName (line 80) | public static void addName(FlatBufferBuilder builder, int nameOffset) ... method addValues (line 81) | public static void addValues(FlatBufferBuilder builder, int valuesOffs... method createValuesVector (line 82) | public static int createValuesVector(FlatBufferBuilder builder, int[] ... method startValuesVector (line 83) | public static void startValuesVector(FlatBufferBuilder builder, int nu... method addIsUnion (line 84) | public static void addIsUnion(FlatBufferBuilder builder, boolean isUni... method addUnderlyingType (line 85) | public static void addUnderlyingType(FlatBufferBuilder builder, int un... method addAttributes (line 86) | public static void addAttributes(FlatBufferBuilder builder, int attrib... method createAttributesVector (line 87) | public static int createAttributesVector(FlatBufferBuilder builder, in... method startAttributesVector (line 88) | public static void startAttributesVector(FlatBufferBuilder builder, in... method addDocumentation (line 89) | public static void addDocumentation(FlatBufferBuilder builder, int doc... method createDocumentationVector (line 90) | public static int createDocumentationVector(FlatBufferBuilder builder,... method startDocumentationVector (line 91) | public static void startDocumentationVector(FlatBufferBuilder builder,... method addDeclarationFile (line 92) | public static void addDeclarationFile(FlatBufferBuilder builder, int d... method endEnum (line 93) | public static int endEnum(FlatBufferBuilder builder) { method keysCompare (line 101) | @Override method __lookup_by_key (line 104) | public static Enum __lookup_by_key(Enum obj, int vectorLocation, Strin... class Vector (line 125) | public static final class Vector extends BaseVector { method __assign (line 126) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 128) | public Enum get(int j) { return get(new Enum(), j); } method get (line 129) | public Enum get(Enum obj, int j) { return obj.__assign(__indirect(_... method getByKey (line 130) | public Enum getByKey(String key) { return __lookup_by_key(null, __v... method getByKey (line 131) | public Enum getByKey(Enum obj, String key) { return __lookup_by_key... FILE: java/src/main/java/com/google/flatbuffers/reflection/EnumVal.java class EnumVal (line 21) | @SuppressWarnings("unused") method ValidateVersion (line 23) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsEnumVal (line 24) | public static EnumVal getRootAsEnumVal(ByteBuffer _bb) { return getRoo... method getRootAsEnumVal (line 25) | public static EnumVal getRootAsEnumVal(ByteBuffer _bb, EnumVal obj) { ... method __init (line 26) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 27) | public EnumVal __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); ret... method name (line 29) | public String name() { int o = __offset(4); return o != 0 ? __string(o... method nameAsByteBuffer (line 30) | public ByteBuffer nameAsByteBuffer() { return __vector_as_bytebuffer(4... method nameInByteBuffer (line 31) | public ByteBuffer nameInByteBuffer(ByteBuffer _bb) { return __vector_i... method value (line 32) | public long value() { int o = __offset(6); return o != 0 ? bb.getLong(... method unionType (line 33) | public com.google.flatbuffers.reflection.Type unionType() { return uni... method unionType (line 34) | public com.google.flatbuffers.reflection.Type unionType(com.google.fla... method documentation (line 35) | public String documentation(int j) { int o = __offset(12); return o !=... method documentationLength (line 36) | public int documentationLength() { int o = __offset(12); return o != 0... method documentationVector (line 37) | public StringVector documentationVector() { return documentationVector... method documentationVector (line 38) | public StringVector documentationVector(StringVector obj) { int o = __... method attributes (line 39) | public com.google.flatbuffers.reflection.KeyValue attributes(int j) { ... method attributes (line 40) | public com.google.flatbuffers.reflection.KeyValue attributes(com.googl... method attributesLength (line 41) | public int attributesLength() { int o = __offset(14); return o != 0 ? ... method attributesByKey (line 42) | public com.google.flatbuffers.reflection.KeyValue attributesByKey(Stri... method attributesByKey (line 43) | public com.google.flatbuffers.reflection.KeyValue attributesByKey(com.... method attributesVector (line 44) | public com.google.flatbuffers.reflection.KeyValue.Vector attributesVec... method attributesVector (line 45) | public com.google.flatbuffers.reflection.KeyValue.Vector attributesVec... method createEnumVal (line 47) | public static int createEnumVal(FlatBufferBuilder builder, method startEnumVal (line 62) | public static void startEnumVal(FlatBufferBuilder builder) { builder.s... method addName (line 63) | public static void addName(FlatBufferBuilder builder, int nameOffset) ... method addValue (line 64) | public static void addValue(FlatBufferBuilder builder, long value) { b... method addUnionType (line 65) | public static void addUnionType(FlatBufferBuilder builder, int unionTy... method addDocumentation (line 66) | public static void addDocumentation(FlatBufferBuilder builder, int doc... method createDocumentationVector (line 67) | public static int createDocumentationVector(FlatBufferBuilder builder,... method startDocumentationVector (line 68) | public static void startDocumentationVector(FlatBufferBuilder builder,... method addAttributes (line 69) | public static void addAttributes(FlatBufferBuilder builder, int attrib... method createAttributesVector (line 70) | public static int createAttributesVector(FlatBufferBuilder builder, in... method startAttributesVector (line 71) | public static void startAttributesVector(FlatBufferBuilder builder, in... method endEnumVal (line 72) | public static int endEnumVal(FlatBufferBuilder builder) { method keysCompare (line 78) | @Override method __lookup_by_key (line 85) | public static EnumVal __lookup_by_key(EnumVal obj, int vectorLocation,... class Vector (line 106) | public static final class Vector extends BaseVector { method __assign (line 107) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 109) | public EnumVal get(int j) { return get(new EnumVal(), j); } method get (line 110) | public EnumVal get(EnumVal obj, int j) { return obj.__assign(__indi... method getByKey (line 111) | public EnumVal getByKey(long key) { return __lookup_by_key(null, __... method getByKey (line 112) | public EnumVal getByKey(EnumVal obj, long key) { return __lookup_by... FILE: java/src/main/java/com/google/flatbuffers/reflection/Field.java class Field (line 21) | @SuppressWarnings("unused") method ValidateVersion (line 23) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsField (line 24) | public static Field getRootAsField(ByteBuffer _bb) { return getRootAsF... method getRootAsField (line 25) | public static Field getRootAsField(ByteBuffer _bb, Field obj) { _bb.or... method __init (line 26) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 27) | public Field __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); retur... method name (line 29) | public String name() { int o = __offset(4); return o != 0 ? __string(o... method nameAsByteBuffer (line 30) | public ByteBuffer nameAsByteBuffer() { return __vector_as_bytebuffer(4... method nameInByteBuffer (line 31) | public ByteBuffer nameInByteBuffer(ByteBuffer _bb) { return __vector_i... method type (line 32) | public com.google.flatbuffers.reflection.Type type() { return type(new... method type (line 33) | public com.google.flatbuffers.reflection.Type type(com.google.flatbuff... method id (line 34) | public int id() { int o = __offset(8); return o != 0 ? bb.getShort(o +... method offset (line 35) | public int offset() { int o = __offset(10); return o != 0 ? bb.getShor... method defaultInteger (line 36) | public long defaultInteger() { int o = __offset(12); return o != 0 ? b... method defaultReal (line 37) | public double defaultReal() { int o = __offset(14); return o != 0 ? bb... method deprecated (line 38) | public boolean deprecated() { int o = __offset(16); return o != 0 ? 0!... method required (line 39) | public boolean required() { int o = __offset(18); return o != 0 ? 0!=b... method key (line 40) | public boolean key() { int o = __offset(20); return o != 0 ? 0!=bb.get... method attributes (line 41) | public com.google.flatbuffers.reflection.KeyValue attributes(int j) { ... method attributes (line 42) | public com.google.flatbuffers.reflection.KeyValue attributes(com.googl... method attributesLength (line 43) | public int attributesLength() { int o = __offset(22); return o != 0 ? ... method attributesByKey (line 44) | public com.google.flatbuffers.reflection.KeyValue attributesByKey(Stri... method attributesByKey (line 45) | public com.google.flatbuffers.reflection.KeyValue attributesByKey(com.... method attributesVector (line 46) | public com.google.flatbuffers.reflection.KeyValue.Vector attributesVec... method attributesVector (line 47) | public com.google.flatbuffers.reflection.KeyValue.Vector attributesVec... method documentation (line 48) | public String documentation(int j) { int o = __offset(24); return o !=... method documentationLength (line 49) | public int documentationLength() { int o = __offset(24); return o != 0... method documentationVector (line 50) | public StringVector documentationVector() { return documentationVector... method documentationVector (line 51) | public StringVector documentationVector(StringVector obj) { int o = __... method optional (line 52) | public boolean optional() { int o = __offset(26); return o != 0 ? 0!=b... method padding (line 56) | public int padding() { int o = __offset(28); return o != 0 ? bb.getSho... method offset64 (line 60) | public boolean offset64() { int o = __offset(30); return o != 0 ? 0!=b... method createField (line 62) | public static int createField(FlatBufferBuilder builder, method startField (line 95) | public static void startField(FlatBufferBuilder builder) { builder.sta... method addName (line 96) | public static void addName(FlatBufferBuilder builder, int nameOffset) ... method addType (line 97) | public static void addType(FlatBufferBuilder builder, int typeOffset) ... method addId (line 98) | public static void addId(FlatBufferBuilder builder, int id) { builder.... method addOffset (line 99) | public static void addOffset(FlatBufferBuilder builder, int offset) { ... method addDefaultInteger (line 100) | public static void addDefaultInteger(FlatBufferBuilder builder, long d... method addDefaultReal (line 101) | public static void addDefaultReal(FlatBufferBuilder builder, double de... method addDeprecated (line 102) | public static void addDeprecated(FlatBufferBuilder builder, boolean de... method addRequired (line 103) | public static void addRequired(FlatBufferBuilder builder, boolean requ... method addKey (line 104) | public static void addKey(FlatBufferBuilder builder, boolean key) { bu... method addAttributes (line 105) | public static void addAttributes(FlatBufferBuilder builder, int attrib... method createAttributesVector (line 106) | public static int createAttributesVector(FlatBufferBuilder builder, in... method startAttributesVector (line 107) | public static void startAttributesVector(FlatBufferBuilder builder, in... method addDocumentation (line 108) | public static void addDocumentation(FlatBufferBuilder builder, int doc... method createDocumentationVector (line 109) | public static int createDocumentationVector(FlatBufferBuilder builder,... method startDocumentationVector (line 110) | public static void startDocumentationVector(FlatBufferBuilder builder,... method addOptional (line 111) | public static void addOptional(FlatBufferBuilder builder, boolean opti... method addPadding (line 112) | public static void addPadding(FlatBufferBuilder builder, int padding) ... method addOffset64 (line 113) | public static void addOffset64(FlatBufferBuilder builder, boolean offs... method endField (line 114) | public static int endField(FlatBufferBuilder builder) { method keysCompare (line 121) | @Override method __lookup_by_key (line 124) | public static Field __lookup_by_key(Field obj, int vectorLocation, Str... class Vector (line 145) | public static final class Vector extends BaseVector { method __assign (line 146) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 148) | public Field get(int j) { return get(new Field(), j); } method get (line 149) | public Field get(Field obj, int j) { return obj.__assign(__indirect... method getByKey (line 150) | public Field getByKey(String key) { return __lookup_by_key(null, __... method getByKey (line 151) | public Field getByKey(Field obj, String key) { return __lookup_by_k... FILE: java/src/main/java/com/google/flatbuffers/reflection/KeyValue.java class KeyValue (line 21) | @SuppressWarnings("unused") method ValidateVersion (line 23) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsKeyValue (line 24) | public static KeyValue getRootAsKeyValue(ByteBuffer _bb) { return getR... method getRootAsKeyValue (line 25) | public static KeyValue getRootAsKeyValue(ByteBuffer _bb, KeyValue obj)... method __init (line 26) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 27) | public KeyValue __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); re... method key (line 29) | public String key() { int o = __offset(4); return o != 0 ? __string(o ... method keyAsByteBuffer (line 30) | public ByteBuffer keyAsByteBuffer() { return __vector_as_bytebuffer(4,... method keyInByteBuffer (line 31) | public ByteBuffer keyInByteBuffer(ByteBuffer _bb) { return __vector_in... method value (line 32) | public String value() { int o = __offset(6); return o != 0 ? __string(... method valueAsByteBuffer (line 33) | public ByteBuffer valueAsByteBuffer() { return __vector_as_bytebuffer(... method valueInByteBuffer (line 34) | public ByteBuffer valueInByteBuffer(ByteBuffer _bb) { return __vector_... method createKeyValue (line 36) | public static int createKeyValue(FlatBufferBuilder builder, method startKeyValue (line 45) | public static void startKeyValue(FlatBufferBuilder builder) { builder.... method addKey (line 46) | public static void addKey(FlatBufferBuilder builder, int keyOffset) { ... method addValue (line 47) | public static void addValue(FlatBufferBuilder builder, int valueOffset... method endKeyValue (line 48) | public static int endKeyValue(FlatBufferBuilder builder) { method keysCompare (line 54) | @Override method __lookup_by_key (line 57) | public static KeyValue __lookup_by_key(KeyValue obj, int vectorLocatio... class Vector (line 78) | public static final class Vector extends BaseVector { method __assign (line 79) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 81) | public KeyValue get(int j) { return get(new KeyValue(), j); } method get (line 82) | public KeyValue get(KeyValue obj, int j) { return obj.__assign(__in... method getByKey (line 83) | public KeyValue getByKey(String key) { return __lookup_by_key(null,... method getByKey (line 84) | public KeyValue getByKey(KeyValue obj, String key) { return __looku... FILE: java/src/main/java/com/google/flatbuffers/reflection/Object.java class Object (line 21) | @SuppressWarnings("unused") method ValidateVersion (line 23) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsObject (line 24) | public static Object getRootAsObject(ByteBuffer _bb) { return getRootA... method getRootAsObject (line 25) | public static Object getRootAsObject(ByteBuffer _bb, Object obj) { _bb... method __init (line 26) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 27) | public Object __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); retu... method name (line 29) | public String name() { int o = __offset(4); return o != 0 ? __string(o... method nameAsByteBuffer (line 30) | public ByteBuffer nameAsByteBuffer() { return __vector_as_bytebuffer(4... method nameInByteBuffer (line 31) | public ByteBuffer nameInByteBuffer(ByteBuffer _bb) { return __vector_i... method fields (line 32) | public com.google.flatbuffers.reflection.Field fields(int j) { return ... method fields (line 33) | public com.google.flatbuffers.reflection.Field fields(com.google.flatb... method fieldsLength (line 34) | public int fieldsLength() { int o = __offset(6); return o != 0 ? __vec... method fieldsByKey (line 35) | public com.google.flatbuffers.reflection.Field fieldsByKey(String key)... method fieldsByKey (line 36) | public com.google.flatbuffers.reflection.Field fieldsByKey(com.google.... method fieldsVector (line 37) | public com.google.flatbuffers.reflection.Field.Vector fieldsVector() {... method fieldsVector (line 38) | public com.google.flatbuffers.reflection.Field.Vector fieldsVector(com... method isStruct (line 39) | public boolean isStruct() { int o = __offset(8); return o != 0 ? 0!=bb... method minalign (line 40) | public int minalign() { int o = __offset(10); return o != 0 ? bb.getIn... method bytesize (line 41) | public int bytesize() { int o = __offset(12); return o != 0 ? bb.getIn... method attributes (line 42) | public com.google.flatbuffers.reflection.KeyValue attributes(int j) { ... method attributes (line 43) | public com.google.flatbuffers.reflection.KeyValue attributes(com.googl... method attributesLength (line 44) | public int attributesLength() { int o = __offset(14); return o != 0 ? ... method attributesByKey (line 45) | public com.google.flatbuffers.reflection.KeyValue attributesByKey(Stri... method attributesByKey (line 46) | public com.google.flatbuffers.reflection.KeyValue attributesByKey(com.... method attributesVector (line 47) | public com.google.flatbuffers.reflection.KeyValue.Vector attributesVec... method attributesVector (line 48) | public com.google.flatbuffers.reflection.KeyValue.Vector attributesVec... method documentation (line 49) | public String documentation(int j) { int o = __offset(16); return o !=... method documentationLength (line 50) | public int documentationLength() { int o = __offset(16); return o != 0... method documentationVector (line 51) | public StringVector documentationVector() { return documentationVector... method documentationVector (line 52) | public StringVector documentationVector(StringVector obj) { int o = __... method declarationFile (line 56) | public String declarationFile() { int o = __offset(18); return o != 0 ... method declarationFileAsByteBuffer (line 57) | public ByteBuffer declarationFileAsByteBuffer() { return __vector_as_b... method declarationFileInByteBuffer (line 58) | public ByteBuffer declarationFileInByteBuffer(ByteBuffer _bb) { return... method createObject (line 60) | public static int createObject(FlatBufferBuilder builder, method startObject (line 81) | public static void startObject(FlatBufferBuilder builder) { builder.st... method addName (line 82) | public static void addName(FlatBufferBuilder builder, int nameOffset) ... method addFields (line 83) | public static void addFields(FlatBufferBuilder builder, int fieldsOffs... method createFieldsVector (line 84) | public static int createFieldsVector(FlatBufferBuilder builder, int[] ... method startFieldsVector (line 85) | public static void startFieldsVector(FlatBufferBuilder builder, int nu... method addIsStruct (line 86) | public static void addIsStruct(FlatBufferBuilder builder, boolean isSt... method addMinalign (line 87) | public static void addMinalign(FlatBufferBuilder builder, int minalign... method addBytesize (line 88) | public static void addBytesize(FlatBufferBuilder builder, int bytesize... method addAttributes (line 89) | public static void addAttributes(FlatBufferBuilder builder, int attrib... method createAttributesVector (line 90) | public static int createAttributesVector(FlatBufferBuilder builder, in... method startAttributesVector (line 91) | public static void startAttributesVector(FlatBufferBuilder builder, in... method addDocumentation (line 92) | public static void addDocumentation(FlatBufferBuilder builder, int doc... method createDocumentationVector (line 93) | public static int createDocumentationVector(FlatBufferBuilder builder,... method startDocumentationVector (line 94) | public static void startDocumentationVector(FlatBufferBuilder builder,... method addDeclarationFile (line 95) | public static void addDeclarationFile(FlatBufferBuilder builder, int d... method endObject (line 96) | public static int endObject(FlatBufferBuilder builder) { method keysCompare (line 103) | @Override method __lookup_by_key (line 106) | public static Object __lookup_by_key(Object obj, int vectorLocation, S... class Vector (line 127) | public static final class Vector extends BaseVector { method __assign (line 128) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 130) | public Object get(int j) { return get(new Object(), j); } method get (line 131) | public Object get(Object obj, int j) { return obj.__assign(__indire... method getByKey (line 132) | public Object getByKey(String key) { return __lookup_by_key(null, _... method getByKey (line 133) | public Object getByKey(Object obj, String key) { return __lookup_by... FILE: java/src/main/java/com/google/flatbuffers/reflection/RPCCall.java class RPCCall (line 21) | @SuppressWarnings("unused") method ValidateVersion (line 23) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsRPCCall (line 24) | public static RPCCall getRootAsRPCCall(ByteBuffer _bb) { return getRoo... method getRootAsRPCCall (line 25) | public static RPCCall getRootAsRPCCall(ByteBuffer _bb, RPCCall obj) { ... method __init (line 26) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 27) | public RPCCall __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); ret... method name (line 29) | public String name() { int o = __offset(4); return o != 0 ? __string(o... method nameAsByteBuffer (line 30) | public ByteBuffer nameAsByteBuffer() { return __vector_as_bytebuffer(4... method nameInByteBuffer (line 31) | public ByteBuffer nameInByteBuffer(ByteBuffer _bb) { return __vector_i... method request (line 32) | public com.google.flatbuffers.reflection.Object request() { return req... method request (line 33) | public com.google.flatbuffers.reflection.Object request(com.google.fla... method response (line 34) | public com.google.flatbuffers.reflection.Object response() { return re... method response (line 35) | public com.google.flatbuffers.reflection.Object response(com.google.fl... method attributes (line 36) | public com.google.flatbuffers.reflection.KeyValue attributes(int j) { ... method attributes (line 37) | public com.google.flatbuffers.reflection.KeyValue attributes(com.googl... method attributesLength (line 38) | public int attributesLength() { int o = __offset(10); return o != 0 ? ... method attributesByKey (line 39) | public com.google.flatbuffers.reflection.KeyValue attributesByKey(Stri... method attributesByKey (line 40) | public com.google.flatbuffers.reflection.KeyValue attributesByKey(com.... method attributesVector (line 41) | public com.google.flatbuffers.reflection.KeyValue.Vector attributesVec... method attributesVector (line 42) | public com.google.flatbuffers.reflection.KeyValue.Vector attributesVec... method documentation (line 43) | public String documentation(int j) { int o = __offset(12); return o !=... method documentationLength (line 44) | public int documentationLength() { int o = __offset(12); return o != 0... method documentationVector (line 45) | public StringVector documentationVector() { return documentationVector... method documentationVector (line 46) | public StringVector documentationVector(StringVector obj) { int o = __... method createRPCCall (line 48) | public static int createRPCCall(FlatBufferBuilder builder, method startRPCCall (line 63) | public static void startRPCCall(FlatBufferBuilder builder) { builder.s... method addName (line 64) | public static void addName(FlatBufferBuilder builder, int nameOffset) ... method addRequest (line 65) | public static void addRequest(FlatBufferBuilder builder, int requestOf... method addResponse (line 66) | public static void addResponse(FlatBufferBuilder builder, int response... method addAttributes (line 67) | public static void addAttributes(FlatBufferBuilder builder, int attrib... method createAttributesVector (line 68) | public static int createAttributesVector(FlatBufferBuilder builder, in... method startAttributesVector (line 69) | public static void startAttributesVector(FlatBufferBuilder builder, in... method addDocumentation (line 70) | public static void addDocumentation(FlatBufferBuilder builder, int doc... method createDocumentationVector (line 71) | public static int createDocumentationVector(FlatBufferBuilder builder,... method startDocumentationVector (line 72) | public static void startDocumentationVector(FlatBufferBuilder builder,... method endRPCCall (line 73) | public static int endRPCCall(FlatBufferBuilder builder) { method keysCompare (line 81) | @Override method __lookup_by_key (line 84) | public static RPCCall __lookup_by_key(RPCCall obj, int vectorLocation,... class Vector (line 105) | public static final class Vector extends BaseVector { method __assign (line 106) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 108) | public RPCCall get(int j) { return get(new RPCCall(), j); } method get (line 109) | public RPCCall get(RPCCall obj, int j) { return obj.__assign(__indi... method getByKey (line 110) | public RPCCall getByKey(String key) { return __lookup_by_key(null, ... method getByKey (line 111) | public RPCCall getByKey(RPCCall obj, String key) { return __lookup_... FILE: java/src/main/java/com/google/flatbuffers/reflection/Schema.java class Schema (line 21) | @SuppressWarnings("unused") method ValidateVersion (line 23) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsSchema (line 24) | public static Schema getRootAsSchema(ByteBuffer _bb) { return getRootA... method getRootAsSchema (line 25) | public static Schema getRootAsSchema(ByteBuffer _bb, Schema obj) { _bb... method SchemaBufferHasIdentifier (line 26) | public static boolean SchemaBufferHasIdentifier(ByteBuffer _bb) { retu... method __init (line 27) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 28) | public Schema __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); retu... method objects (line 30) | public com.google.flatbuffers.reflection.Object objects(int j) { retur... method objects (line 31) | public com.google.flatbuffers.reflection.Object objects(com.google.fla... method objectsLength (line 32) | public int objectsLength() { int o = __offset(4); return o != 0 ? __ve... method objectsByKey (line 33) | public com.google.flatbuffers.reflection.Object objectsByKey(String ke... method objectsByKey (line 34) | public com.google.flatbuffers.reflection.Object objectsByKey(com.googl... method objectsVector (line 35) | public com.google.flatbuffers.reflection.Object.Vector objectsVector()... method objectsVector (line 36) | public com.google.flatbuffers.reflection.Object.Vector objectsVector(c... method enums (line 37) | public com.google.flatbuffers.reflection.Enum enums(int j) { return en... method enums (line 38) | public com.google.flatbuffers.reflection.Enum enums(com.google.flatbuf... method enumsLength (line 39) | public int enumsLength() { int o = __offset(6); return o != 0 ? __vect... method enumsByKey (line 40) | public com.google.flatbuffers.reflection.Enum enumsByKey(String key) {... method enumsByKey (line 41) | public com.google.flatbuffers.reflection.Enum enumsByKey(com.google.fl... method enumsVector (line 42) | public com.google.flatbuffers.reflection.Enum.Vector enumsVector() { r... method enumsVector (line 43) | public com.google.flatbuffers.reflection.Enum.Vector enumsVector(com.g... method fileIdent (line 44) | public String fileIdent() { int o = __offset(8); return o != 0 ? __str... method fileIdentAsByteBuffer (line 45) | public ByteBuffer fileIdentAsByteBuffer() { return __vector_as_bytebuf... method fileIdentInByteBuffer (line 46) | public ByteBuffer fileIdentInByteBuffer(ByteBuffer _bb) { return __vec... method fileExt (line 47) | public String fileExt() { int o = __offset(10); return o != 0 ? __stri... method fileExtAsByteBuffer (line 48) | public ByteBuffer fileExtAsByteBuffer() { return __vector_as_bytebuffe... method fileExtInByteBuffer (line 49) | public ByteBuffer fileExtInByteBuffer(ByteBuffer _bb) { return __vecto... method rootTable (line 50) | public com.google.flatbuffers.reflection.Object rootTable() { return r... method rootTable (line 51) | public com.google.flatbuffers.reflection.Object rootTable(com.google.f... method services (line 52) | public com.google.flatbuffers.reflection.Service services(int j) { ret... method services (line 53) | public com.google.flatbuffers.reflection.Service services(com.google.f... method servicesLength (line 54) | public int servicesLength() { int o = __offset(14); return o != 0 ? __... method servicesByKey (line 55) | public com.google.flatbuffers.reflection.Service servicesByKey(String ... method servicesByKey (line 56) | public com.google.flatbuffers.reflection.Service servicesByKey(com.goo... method servicesVector (line 57) | public com.google.flatbuffers.reflection.Service.Vector servicesVector... method servicesVector (line 58) | public com.google.flatbuffers.reflection.Service.Vector servicesVector... method advancedFeatures (line 59) | public long advancedFeatures() { int o = __offset(16); return o != 0 ?... method fbsFiles (line 64) | public com.google.flatbuffers.reflection.SchemaFile fbsFiles(int j) { ... method fbsFiles (line 65) | public com.google.flatbuffers.reflection.SchemaFile fbsFiles(com.googl... method fbsFilesLength (line 66) | public int fbsFilesLength() { int o = __offset(18); return o != 0 ? __... method fbsFilesByKey (line 67) | public com.google.flatbuffers.reflection.SchemaFile fbsFilesByKey(Stri... method fbsFilesByKey (line 68) | public com.google.flatbuffers.reflection.SchemaFile fbsFilesByKey(com.... method fbsFilesVector (line 69) | public com.google.flatbuffers.reflection.SchemaFile.Vector fbsFilesVec... method fbsFilesVector (line 70) | public com.google.flatbuffers.reflection.SchemaFile.Vector fbsFilesVec... method createSchema (line 72) | public static int createSchema(FlatBufferBuilder builder, method startSchema (line 93) | public static void startSchema(FlatBufferBuilder builder) { builder.st... method addObjects (line 94) | public static void addObjects(FlatBufferBuilder builder, int objectsOf... method createObjectsVector (line 95) | public static int createObjectsVector(FlatBufferBuilder builder, int[]... method startObjectsVector (line 96) | public static void startObjectsVector(FlatBufferBuilder builder, int n... method addEnums (line 97) | public static void addEnums(FlatBufferBuilder builder, int enumsOffset... method createEnumsVector (line 98) | public static int createEnumsVector(FlatBufferBuilder builder, int[] d... method startEnumsVector (line 99) | public static void startEnumsVector(FlatBufferBuilder builder, int num... method addFileIdent (line 100) | public static void addFileIdent(FlatBufferBuilder builder, int fileIde... method addFileExt (line 101) | public static void addFileExt(FlatBufferBuilder builder, int fileExtOf... method addRootTable (line 102) | public static void addRootTable(FlatBufferBuilder builder, int rootTab... method addServices (line 103) | public static void addServices(FlatBufferBuilder builder, int services... method createServicesVector (line 104) | public static int createServicesVector(FlatBufferBuilder builder, int[... method startServicesVector (line 105) | public static void startServicesVector(FlatBufferBuilder builder, int ... method addAdvancedFeatures (line 106) | public static void addAdvancedFeatures(FlatBufferBuilder builder, long... method addFbsFiles (line 107) | public static void addFbsFiles(FlatBufferBuilder builder, int fbsFiles... method createFbsFilesVector (line 108) | public static int createFbsFilesVector(FlatBufferBuilder builder, int[... method startFbsFilesVector (line 109) | public static void startFbsFilesVector(FlatBufferBuilder builder, int ... method endSchema (line 110) | public static int endSchema(FlatBufferBuilder builder) { method finishSchemaBuffer (line 116) | public static void finishSchemaBuffer(FlatBufferBuilder builder, int o... method finishSizePrefixedSchemaBuffer (line 117) | public static void finishSizePrefixedSchemaBuffer(FlatBufferBuilder bu... class Vector (line 119) | public static final class Vector extends BaseVector { method __assign (line 120) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 122) | public Schema get(int j) { return get(new Schema(), j); } method get (line 123) | public Schema get(Schema obj, int j) { return obj.__assign(__indire... FILE: java/src/main/java/com/google/flatbuffers/reflection/SchemaFile.java class SchemaFile (line 26) | @SuppressWarnings("unused") method ValidateVersion (line 28) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsSchemaFile (line 29) | public static SchemaFile getRootAsSchemaFile(ByteBuffer _bb) { return ... method getRootAsSchemaFile (line 30) | public static SchemaFile getRootAsSchemaFile(ByteBuffer _bb, SchemaFil... method __init (line 31) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 32) | public SchemaFile __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); ... method filename (line 37) | public String filename() { int o = __offset(4); return o != 0 ? __stri... method filenameAsByteBuffer (line 38) | public ByteBuffer filenameAsByteBuffer() { return __vector_as_bytebuff... method filenameInByteBuffer (line 39) | public ByteBuffer filenameInByteBuffer(ByteBuffer _bb) { return __vect... method includedFilenames (line 43) | public String includedFilenames(int j) { int o = __offset(6); return o... method includedFilenamesLength (line 44) | public int includedFilenamesLength() { int o = __offset(6); return o !... method includedFilenamesVector (line 45) | public StringVector includedFilenamesVector() { return includedFilenam... method includedFilenamesVector (line 46) | public StringVector includedFilenamesVector(StringVector obj) { int o ... method createSchemaFile (line 48) | public static int createSchemaFile(FlatBufferBuilder builder, method startSchemaFile (line 57) | public static void startSchemaFile(FlatBufferBuilder builder) { builde... method addFilename (line 58) | public static void addFilename(FlatBufferBuilder builder, int filename... method addIncludedFilenames (line 59) | public static void addIncludedFilenames(FlatBufferBuilder builder, int... method createIncludedFilenamesVector (line 60) | public static int createIncludedFilenamesVector(FlatBufferBuilder buil... method startIncludedFilenamesVector (line 61) | public static void startIncludedFilenamesVector(FlatBufferBuilder buil... method endSchemaFile (line 62) | public static int endSchemaFile(FlatBufferBuilder builder) { method keysCompare (line 68) | @Override method __lookup_by_key (line 71) | public static SchemaFile __lookup_by_key(SchemaFile obj, int vectorLoc... class Vector (line 92) | public static final class Vector extends BaseVector { method __assign (line 93) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 95) | public SchemaFile get(int j) { return get(new SchemaFile(), j); } method get (line 96) | public SchemaFile get(SchemaFile obj, int j) { return obj.__assign(... method getByKey (line 97) | public SchemaFile getByKey(String key) { return __lookup_by_key(nul... method getByKey (line 98) | public SchemaFile getByKey(SchemaFile obj, String key) { return __l... FILE: java/src/main/java/com/google/flatbuffers/reflection/Service.java class Service (line 21) | @SuppressWarnings("unused") method ValidateVersion (line 23) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsService (line 24) | public static Service getRootAsService(ByteBuffer _bb) { return getRoo... method getRootAsService (line 25) | public static Service getRootAsService(ByteBuffer _bb, Service obj) { ... method __init (line 26) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 27) | public Service __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); ret... method name (line 29) | public String name() { int o = __offset(4); return o != 0 ? __string(o... method nameAsByteBuffer (line 30) | public ByteBuffer nameAsByteBuffer() { return __vector_as_bytebuffer(4... method nameInByteBuffer (line 31) | public ByteBuffer nameInByteBuffer(ByteBuffer _bb) { return __vector_i... method calls (line 32) | public com.google.flatbuffers.reflection.RPCCall calls(int j) { return... method calls (line 33) | public com.google.flatbuffers.reflection.RPCCall calls(com.google.flat... method callsLength (line 34) | public int callsLength() { int o = __offset(6); return o != 0 ? __vect... method callsByKey (line 35) | public com.google.flatbuffers.reflection.RPCCall callsByKey(String key... method callsByKey (line 36) | public com.google.flatbuffers.reflection.RPCCall callsByKey(com.google... method callsVector (line 37) | public com.google.flatbuffers.reflection.RPCCall.Vector callsVector() ... method callsVector (line 38) | public com.google.flatbuffers.reflection.RPCCall.Vector callsVector(co... method attributes (line 39) | public com.google.flatbuffers.reflection.KeyValue attributes(int j) { ... method attributes (line 40) | public com.google.flatbuffers.reflection.KeyValue attributes(com.googl... method attributesLength (line 41) | public int attributesLength() { int o = __offset(8); return o != 0 ? _... method attributesByKey (line 42) | public com.google.flatbuffers.reflection.KeyValue attributesByKey(Stri... method attributesByKey (line 43) | public com.google.flatbuffers.reflection.KeyValue attributesByKey(com.... method attributesVector (line 44) | public com.google.flatbuffers.reflection.KeyValue.Vector attributesVec... method attributesVector (line 45) | public com.google.flatbuffers.reflection.KeyValue.Vector attributesVec... method documentation (line 46) | public String documentation(int j) { int o = __offset(10); return o !=... method documentationLength (line 47) | public int documentationLength() { int o = __offset(10); return o != 0... method documentationVector (line 48) | public StringVector documentationVector() { return documentationVector... method documentationVector (line 49) | public StringVector documentationVector(StringVector obj) { int o = __... method declarationFile (line 53) | public String declarationFile() { int o = __offset(12); return o != 0 ... method declarationFileAsByteBuffer (line 54) | public ByteBuffer declarationFileAsByteBuffer() { return __vector_as_b... method declarationFileInByteBuffer (line 55) | public ByteBuffer declarationFileInByteBuffer(ByteBuffer _bb) { return... method createService (line 57) | public static int createService(FlatBufferBuilder builder, method startService (line 72) | public static void startService(FlatBufferBuilder builder) { builder.s... method addName (line 73) | public static void addName(FlatBufferBuilder builder, int nameOffset) ... method addCalls (line 74) | public static void addCalls(FlatBufferBuilder builder, int callsOffset... method createCallsVector (line 75) | public static int createCallsVector(FlatBufferBuilder builder, int[] d... method startCallsVector (line 76) | public static void startCallsVector(FlatBufferBuilder builder, int num... method addAttributes (line 77) | public static void addAttributes(FlatBufferBuilder builder, int attrib... method createAttributesVector (line 78) | public static int createAttributesVector(FlatBufferBuilder builder, in... method startAttributesVector (line 79) | public static void startAttributesVector(FlatBufferBuilder builder, in... method addDocumentation (line 80) | public static void addDocumentation(FlatBufferBuilder builder, int doc... method createDocumentationVector (line 81) | public static int createDocumentationVector(FlatBufferBuilder builder,... method startDocumentationVector (line 82) | public static void startDocumentationVector(FlatBufferBuilder builder,... method addDeclarationFile (line 83) | public static void addDeclarationFile(FlatBufferBuilder builder, int d... method endService (line 84) | public static int endService(FlatBufferBuilder builder) { method keysCompare (line 90) | @Override method __lookup_by_key (line 93) | public static Service __lookup_by_key(Service obj, int vectorLocation,... class Vector (line 114) | public static final class Vector extends BaseVector { method __assign (line 115) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 117) | public Service get(int j) { return get(new Service(), j); } method get (line 118) | public Service get(Service obj, int j) { return obj.__assign(__indi... method getByKey (line 119) | public Service getByKey(String key) { return __lookup_by_key(null, ... method getByKey (line 120) | public Service getByKey(Service obj, String key) { return __lookup_... FILE: java/src/main/java/com/google/flatbuffers/reflection/Type.java class Type (line 21) | @SuppressWarnings("unused") method ValidateVersion (line 23) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsType (line 24) | public static Type getRootAsType(ByteBuffer _bb) { return getRootAsTyp... method getRootAsType (line 25) | public static Type getRootAsType(ByteBuffer _bb, Type obj) { _bb.order... method __init (line 26) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 27) | public Type __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return... method baseType (line 29) | public byte baseType() { int o = __offset(4); return o != 0 ? bb.get(o... method element (line 30) | public byte element() { int o = __offset(6); return o != 0 ? bb.get(o ... method index (line 31) | public int index() { int o = __offset(8); return o != 0 ? bb.getInt(o ... method fixedLength (line 32) | public int fixedLength() { int o = __offset(10); return o != 0 ? bb.ge... method baseSize (line 36) | public long baseSize() { int o = __offset(12); return o != 0 ? (long)b... method elementSize (line 40) | public long elementSize() { int o = __offset(14); return o != 0 ? (lon... method createType (line 42) | public static int createType(FlatBufferBuilder builder, method startType (line 59) | public static void startType(FlatBufferBuilder builder) { builder.star... method addBaseType (line 60) | public static void addBaseType(FlatBufferBuilder builder, byte baseTyp... method addElement (line 61) | public static void addElement(FlatBufferBuilder builder, byte element)... method addIndex (line 62) | public static void addIndex(FlatBufferBuilder builder, int index) { bu... method addFixedLength (line 63) | public static void addFixedLength(FlatBufferBuilder builder, int fixed... method addBaseSize (line 64) | public static void addBaseSize(FlatBufferBuilder builder, long baseSiz... method addElementSize (line 65) | public static void addElementSize(FlatBufferBuilder builder, long elem... method endType (line 66) | public static int endType(FlatBufferBuilder builder) { class Vector (line 71) | public static final class Vector extends BaseVector { method __assign (line 72) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 74) | public Type get(int j) { return get(new Type(), j); } method get (line 75) | public Type get(Type obj, int j) { return obj.__assign(__indirect(_... FILE: java/src/test/java/JavaTest.java class JavaTest (line 52) | @RunWith(JUnit4.class) method mainTest (line 57) | @org.junit.Test method testFlatBufferBuilder (line 71) | @org.junit.Test method TestEnums (line 82) | @org.junit.Test method TestBuffer (line 90) | static void TestBuffer(ByteBuffer bb) { method TestExtendedBuffer (line 162) | static void TestExtendedBuffer(ByteBuffer bb) { method TestNamespaceNesting (line 170) | @org.junit.Test method TestNestedFlatBuffer (line 184) | @org.junit.Test method TestCreateByteVector (line 221) | @org.junit.Test method TestCreateUninitializedVector (line 243) | @org.junit.Test method TestByteBufferFactory (line 268) | @org.junit.Test method TestSizedInputStream (line 295) | @org.junit.Test method TestBuilderBasics (line 320) | void TestBuilderBasics(FlatBufferBuilder fbb, boolean sizePrefix) { method TestVectorOfUnions (line 466) | @org.junit.Test method TestFixedLengthArrays (line 507) | @org.junit.Test method testFlexBuffersTest (line 576) | @org.junit.Test method testFlexBuffersTest (line 591) | public static void testFlexBuffersTest(FlexBuffersBuilder builder) { method testFlexBufferVectorStrings (line 710) | @org.junit.Test method testDeprecatedTypedVectorString (line 750) | @org.junit.Test method testSingleElementBoolean (line 768) | @org.junit.Test method testSingleElementByte (line 776) | @org.junit.Test method testSingleElementShort (line 784) | @org.junit.Test method testSingleElementInt (line 792) | @org.junit.Test method testSingleElementLong (line 800) | @org.junit.Test method testSingleElementFloat (line 808) | @org.junit.Test method testSingleElementDouble (line 817) | @org.junit.Test method testSingleElementBigString (line 825) | @org.junit.Test method testSingleElementSmallString (line 843) | @org.junit.Test method testSingleElementBlob (line 855) | @org.junit.Test method testSingleElementLongBlob (line 868) | @org.junit.Test method testSingleElementUByte (line 890) | @org.junit.Test method testSingleElementUShort (line 899) | @org.junit.Test method testSingleElementUInt (line 908) | @org.junit.Test method testSingleFixedTypeVector (line 917) | @org.junit.Test method testSingleElementVector (line 957) | @org.junit.Test method testSingleElementMap (line 985) | @org.junit.Test method testFlexBuferEmpty (line 1021) | @org.junit.Test method testHashMapToMap (line 1033) | @org.junit.Test method testBuilderGrowth (line 1071) | @org.junit.Test method testFlexBuffersUtf8Map (line 1083) | @org.junit.Test method testFlexBuffersMapLookup (line 1120) | @org.junit.Test method TestDictionaryLookup (line 1146) | @org.junit.Test method TestVectorOfBytes (line 1166) | @org.junit.Test method TestSharedStringPool (line 1285) | @org.junit.Test method TestScalarOptional (line 1295) | @org.junit.Test method TestObject (line 1450) | static void TestObject(MonsterT monster) { method TestPackUnpack (line 1552) | static void TestPackUnpack(ByteBuffer bb) { FILE: net/FlatBuffers/ByteBuffer.cs class ByteBufferAllocator (line 56) | public abstract class ByteBufferAllocator method GrowFront (line 78) | public abstract void GrowFront(int newSize); class ByteArrayAllocator (line 81) | public sealed class ByteArrayAllocator : ByteBufferAllocator method ByteArrayAllocator (line 85) | public ByteArrayAllocator(byte[] buffer) method GrowFront (line 91) | public override void GrowFront(int newSize) method InitBuffer (line 113) | private void InitBuffer() method ByteBuffer (line 130) | public ByteBuffer(ByteBufferAllocator allocator, int position) method ByteBuffer (line 136) | public ByteBuffer(int size) : this(new byte[size]) { } method ByteBuffer (line 138) | public ByteBuffer(byte[] buffer) : this(buffer, 0) { } method ByteBuffer (line 140) | public ByteBuffer(byte[] buffer, int pos) method Reset (line 154) | public void Reset() method Duplicate (line 161) | public ByteBuffer Duplicate() method GrowFront (line 168) | public void GrowFront(int newSize) method ToArray (line 173) | public byte[] ToArray(int pos, int len) method SizeOf (line 202) | public static int SizeOf() method IsSupportedType (line 212) | public static bool IsSupportedType() method ArraySize (line 223) | public static int ArraySize(T[] x) method ArraySize (line 235) | public static int ArraySize(ArraySegment x) method ArraySize (line 241) | public static int ArraySize(Span x) method ToArray (line 249) | public T[] ToArray(int posInBytes, int lenInBytes) method ToArrayPadded (line 263) | public T[] ToArrayPadded(int posInBytes, int lenInBytes, int padLeftI... method ToSizedArrayPadded (line 280) | public byte[] ToSizedArrayPadded(int padLeft, int padRight) method ToSizedArray (line 285) | public byte[] ToSizedArray() method ToFullArray (line 290) | public byte[] ToFullArray() method ToSizedReadOnlySpan (line 296) | public ReadOnlySpan ToSizedReadOnlySpan() method ToReadOnlyMemory (line 301) | public ReadOnlyMemory ToReadOnlyMemory(int pos, int len) method ToMemory (line 306) | public Memory ToMemory(int pos, int len) method ToSpan (line 311) | public Span ToSpan(int pos, int len) method ToReadOnlySpan (line 316) | public ReadOnlySpan ToReadOnlySpan(int pos, int len) method ToArraySegment (line 321) | public ArraySegment ToArraySegment(int pos, int len) method ToMemoryStream (line 326) | public MemoryStream ToMemoryStream(int pos, int len) type ConversionUnion (line 335) | [StructLayout(LayoutKind.Explicit)] method ReverseBytes (line 344) | static public ushort ReverseBytes(ushort input) method ReverseBytes (line 349) | static public uint ReverseBytes(uint input) method ReverseBytes (line 356) | static public ulong ReverseBytes(ulong input) method WriteLittleEndian (line 370) | protected void WriteLittleEndian(int offset, int count, ulong data) method ReadLittleEndian (line 388) | protected ulong ReadLittleEndian(int offset, int count) method WriteLittleEndian (line 409) | protected void WriteLittleEndian(int offset, int count, ulong data) method ReadLittleEndian (line 428) | protected ulong ReadLittleEndian(int offset, int count) method AssertOffsetAndLength (line 451) | private void AssertOffsetAndLength(int offset, int length) method ConvertTsToBytes (line 460) | public static int ConvertTsToBytes(int valueInTs) method ConvertBytesToTs (line 468) | public static int ConvertBytesToTs(int valueInBytes) method PutSbyte (line 484) | public void PutSbyte(int offset, sbyte value) method PutByte (line 490) | public void PutByte(int offset, byte value) method PutByte (line 496) | public void PutByte(int offset, byte value, int count) method PutSbyte (line 503) | public void PutSbyte(int offset, sbyte value) method PutByte (line 509) | public void PutByte(int offset, byte value) method PutByte (line 515) | public void PutByte(int offset, byte value, int count) method Put (line 524) | public void Put(int offset, byte value) method PutStringUTF8 (line 530) | public unsafe void PutStringUTF8(int offset, string value) method PutStringUTF8 (line 542) | public void PutStringUTF8(int offset, string value) method PutStringUTF8 (line 549) | public void PutStringUTF8(int offset, string value) method PutShort (line 559) | public void PutShort(int offset, short value) method PutUshort (line 564) | public unsafe void PutUshort(int offset, ushort value) method PutInt (line 580) | public void PutInt(int offset, int value) method PutUint (line 585) | public unsafe void PutUint(int offset, uint value) method PutLong (line 601) | public unsafe void PutLong(int offset, long value) method PutUlong (line 606) | public unsafe void PutUlong(int offset, ulong value) FILE: net/FlatBuffers/ByteBufferUtil.cs class ByteBufferUtil (line 24) | public class ByteBufferUtil method GetSizePrefix (line 27) | public static int GetSizePrefix(ByteBuffer bb) { method RemoveSizePrefix (line 33) | public static ByteBuffer RemoveSizePrefix(ByteBuffer bb) { FILE: net/FlatBuffers/FlatBufferBuilder.cs class FlatBufferBuilder (line 32) | public class FlatBufferBuilder method FlatBufferBuilder (line 60) | public FlatBufferBuilder(int initialSize) method FlatBufferBuilder (line 73) | public FlatBufferBuilder(ByteBuffer buffer) method Clear (line 83) | public void Clear() method Pad (line 112) | public void Pad(int size) method GrowBuffer (line 119) | void GrowBuffer() method Prep (line 129) | public void Prep(int size, int additionalBytes) method PutBool (line 151) | public void PutBool(bool x) method PutSbyte (line 156) | public void PutSbyte(sbyte x) method PutByte (line 161) | public void PutByte(byte x) method PutShort (line 166) | public void PutShort(short x) method PutUshort (line 171) | public void PutUshort(ushort x) method PutInt (line 176) | public void PutInt(int x) method PutUint (line 181) | public void PutUint(uint x) method PutLong (line 186) | public void PutLong(long x) method PutUlong (line 191) | public void PutUlong(ulong x) method PutFloat (line 196) | public void PutFloat(float x) method Put (line 207) | public void Put(T[] x) method Put (line 219) | public void Put(ArraySegment x) method Put (line 232) | public void Put(IntPtr ptr, int sizeInBytes) method Put (line 245) | public void Put(Span x) method PutDouble (line 252) | public void PutDouble(double x) method AddBool (line 262) | public void AddBool(bool x) { Prep(sizeof(byte), 0); PutBool(x); } method AddSbyte (line 268) | public void AddSbyte(sbyte x) { Prep(sizeof(sbyte), 0); PutSbyte(x); } method AddByte (line 274) | public void AddByte(byte x) { Prep(sizeof(byte), 0); PutByte(x); } method AddShort (line 280) | public void AddShort(short x) { Prep(sizeof(short), 0); PutShort(x); } method AddUshort (line 286) | public void AddUshort(ushort x) { Prep(sizeof(ushort), 0); PutUshort(x... method AddInt (line 292) | public void AddInt(int x) { Prep(sizeof(int), 0); PutInt(x); } method AddUint (line 298) | public void AddUint(uint x) { Prep(sizeof(uint), 0); PutUint(x); } method AddLong (line 304) | public void AddLong(long x) { Prep(sizeof(long), 0); PutLong(x); } method AddUlong (line 310) | public void AddUlong(ulong x) { Prep(sizeof(ulong), 0); PutUlong(x); } method AddFloat (line 316) | public void AddFloat(float x) { Prep(sizeof(float), 0); PutFloat(x); } method Add (line 323) | public void Add(T[] x) method Add (line 334) | public void Add(ArraySegment x) method Add (line 366) | public void Add(IntPtr ptr, int sizeInBytes) method Add (line 408) | public void Add(Span x) method AddDouble (line 428) | public void AddDouble(double x) { Prep(sizeof(double), 0); method AddOffset (line 435) | public void AddOffset(int off) method StartVector (line 446) | public void StartVector(int elemSize, int count, int alignment) method EndVector (line 458) | public VectorOffset EndVector() method CreateVectorOfTables (line 468) | public VectorOffset CreateVectorOfTables(Offset[] offsets) where... method Nested (line 477) | public void Nested(int obj) method NotNested (line 487) | public void NotNested() method StartTable (line 496) | public void StartTable(int numfields) method Slot (line 513) | public void Slot(int voffset) method AddBool (line 528) | public void AddBool(int o, bool x, bool d) { if (ForceDefaults || x !=... method AddBool (line 536) | public void AddBool(int o, bool? x) { if (x.HasValue) { AddBool(x.Valu... method AddSbyte (line 546) | public void AddSbyte(int o, sbyte x, sbyte d) { if (ForceDefaults || x... method AddSbyte (line 554) | public void AddSbyte(int o, sbyte? x) { if (x.HasValue) { AddSbyte(x.V... method AddByte (line 563) | public void AddByte(int o, byte x, byte d) { if (ForceDefaults || x !=... method AddByte (line 571) | public void AddByte(int o, byte? x) { if (x.HasValue) { AddByte(x.Valu... method AddShort (line 580) | public void AddShort(int o, short x, int d) { if (ForceDefaults || x !... method AddShort (line 588) | public void AddShort(int o, short? x) { if (x.HasValue) { AddShort(x.V... method AddUshort (line 597) | public void AddUshort(int o, ushort x, ushort d) { if (ForceDefaults |... method AddUshort (line 605) | public void AddUshort(int o, ushort? x) { if (x.HasValue) { AddUshort(... method AddInt (line 614) | public void AddInt(int o, int x, int d) { if (ForceDefaults || x != d)... method AddInt (line 622) | public void AddInt(int o, int? x) { if (x.HasValue) { AddInt(x.Value);... method AddUint (line 631) | public void AddUint(int o, uint x, uint d) { if (ForceDefaults || x !=... method AddUint (line 639) | public void AddUint(int o, uint? x) { if (x.HasValue) { AddUint(x.Valu... method AddLong (line 648) | public void AddLong(int o, long x, long d) { if (ForceDefaults || x !=... method AddLong (line 656) | public void AddLong(int o, long? x) { if (x.HasValue) { AddLong(x.Valu... method AddUlong (line 665) | public void AddUlong(int o, ulong x, ulong d) { if (ForceDefaults || x... method AddUlong (line 673) | public void AddUlong(int o, ulong? x) { if (x.HasValue) { AddUlong(x.V... method AddFloat (line 682) | public void AddFloat(int o, float x, double d) { if (ForceDefaults || ... method AddFloat (line 690) | public void AddFloat(int o, float? x) { if (x.HasValue) { AddFloat(x.V... method AddDouble (line 699) | public void AddDouble(int o, double x, double d) { if (ForceDefaults |... method AddDouble (line 707) | public void AddDouble(int o, double? x) { if (x.HasValue) { AddDouble(... method AddOffset (line 716) | public void AddOffset(int o, int x, int d) { if (x != d) { AddOffset(x... method CreateString (line 726) | public StringOffset CreateString(string s) method CreateUTF8String (line 750) | public StringOffset CreateUTF8String(Span chars) method CreateSharedString (line 770) | public StringOffset CreateSharedString(string s) method AddStruct (line 795) | public void AddStruct(int voffset, int x, int d) method EndTable (line 804) | public int EndTable() method Required (line 881) | public void Required(int table, int field) method Finish (line 902) | protected void Finish(int rootTable, bool sizePrefix) method Finish (line 918) | public void Finish(int rootTable) method FinishSizePrefixed (line 929) | public void FinishSizePrefixed(int rootTable) method SizedByteArray (line 954) | public byte[] SizedByteArray() method SizedReadOnlySpan (line 968) | public ReadOnlySpan SizedReadOnlySpan() method Finish (line 987) | protected void Finish(int rootTable, string fileIdentifier, bool sizeP... method Finish (line 1015) | public void Finish(int rootTable, string fileIdentifier) method FinishSizePrefixed (line 1030) | public void FinishSizePrefixed(int rootTable, string fileIdentifier) FILE: net/FlatBuffers/FlatBufferConstants.cs class FlatBufferConstants (line 24) | public static class FlatBufferConstants method FLATBUFFERS_25_12_19 (line 35) | public static void FLATBUFFERS_25_12_19() {} FILE: net/FlatBuffers/FlatBufferVerify.cs class Options (line 26) | public class Options method Options (line 36) | public Options() method Options (line 44) | public Options(int maxDepth, int maxTables, bool stringEndCheck, bool ... type checkElementStruct (line 77) | public struct checkElementStruct class Verifier (line 89) | public class Verifier method Verifier (line 106) | public Verifier() method Verifier (line 121) | public Verifier(ByteBuffer buf, Options options = null) method SetMaxDepth (line 157) | public Verifier SetMaxDepth(int value) method SetMaxTables (line 164) | public Verifier SetMaxTables(int value) method SetAlignmentCheck (line 171) | public Verifier SetAlignmentCheck(bool value) method SetStringCheck (line 178) | public Verifier SetStringCheck(bool value) method BufferHasIdentifier (line 189) | private bool BufferHasIdentifier(ByteBuffer buf, uint startPos, string... method ReadUOffsetT (line 210) | private uint ReadUOffsetT(ByteBuffer buf, uint pos) method ReadSOffsetT (line 218) | private int ReadSOffsetT(ByteBuffer buf, int pos) method ReadVOffsetT (line 226) | private short ReadVOffsetT(ByteBuffer buf, int pos) method GetVRelOffset (line 236) | private short GetVRelOffset(int pos, short vtableOffset) method GetVOffset (line 269) | private uint GetVOffset(uint tablePos, short vtableOffset) method CheckComplexity (line 288) | private bool CheckComplexity() method CheckAlignment (line 295) | private bool CheckAlignment(uint element, ulong align) method CheckElement (line 304) | private bool CheckElement(uint pos, ulong elementSize) method CheckScalar (line 312) | private bool CheckScalar(uint pos, ulong elementSize) method CheckOffset (line 317) | private bool CheckOffset(uint offset) method CheckVectorOrString (line 322) | private checkElementStruct CheckVectorOrString(uint pos, ulong element... method CheckString (line 356) | private bool CheckString(uint pos) method CheckVector (line 368) | private bool CheckVector(uint pos, ulong elementSize) method CheckTable (line 374) | private bool CheckTable(uint tablePos, VerifyTableAction verifyAction) method CheckStringFunc (line 380) | private bool CheckStringFunc(Verifier verifier, uint pos) method CheckVectorOfObjects (line 386) | private bool CheckVectorOfObjects(uint pos, VerifyTableAction verifyAc... method CheckIndirectOffset (line 415) | private bool CheckIndirectOffset(uint pos) method CheckBufferFromStart (line 434) | private bool CheckBufferFromStart(string identifier, uint startPos, Ve... method GetIndirectOffset (line 451) | private uint GetIndirectOffset(uint pos) method VerifyTableStart (line 462) | public bool VerifyTableStart(uint tablePos) method VerifyTableEnd (line 479) | public bool VerifyTableEnd(uint tablePos) method VerifyField (line 493) | public bool VerifyField(uint tablePos, short offsetId, ulong elementSi... method VerifyString (line 509) | public bool VerifyString(uint tablePos, short vOffset, bool required) method VerifyVectorOfData (line 531) | public bool VerifyVectorOfData(uint tablePos, short vOffset, ulong ele... method VerifyVectorOfStrings (line 552) | public bool VerifyVectorOfStrings(uint tablePos, short offsetId, bool ... method VerifyVectorOfTables (line 574) | public bool VerifyVectorOfTables(uint tablePos, short offsetId, Verify... method VerifyTable (line 596) | public bool VerifyTable(uint tablePos, short offsetId, VerifyTableActi... method VerifyNestedBuffer (line 617) | public bool VerifyNestedBuffer(uint tablePos, short offsetId, VerifyTa... method VerifyUnionData (line 652) | public bool VerifyUnionData(uint pos, ulong elementSize, ulong align) method VerifyUnionString (line 662) | public bool VerifyUnionString(uint pos) method VerifyUnion (line 675) | public bool VerifyUnion(uint tablePos, short typeIdVOffset, short valu... method VerifyVectorOfUnion (line 713) | public bool VerifyVectorOfUnion(uint tablePos, short typeOffsetId, sho... method VerifyBuffer (line 798) | public bool VerifyBuffer(string identifier, bool sizePrefixed, VerifyT... FILE: net/FlatBuffers/IFlatbufferObject.cs type IFlatbufferObject (line 22) | public interface IFlatbufferObject method __init (line 24) | void __init(int _i, ByteBuffer _bb); FILE: net/FlatBuffers/Offset.cs type Offset (line 22) | public struct Offset where T : struct method Offset (line 25) | public Offset(int value) type StringOffset (line 31) | public struct StringOffset method StringOffset (line 34) | public StringOffset(int value) type VectorOffset (line 40) | public struct VectorOffset method VectorOffset (line 43) | public VectorOffset(int value) FILE: net/FlatBuffers/Struct.cs type Struct (line 22) | public struct Struct method Struct (line 28) | public Struct(int _i, ByteBuffer _bb) : this() FILE: net/FlatBuffers/Table.cs type Table (line 26) | public struct Table method Table (line 34) | public Table(int _i, ByteBuffer _bb) : this() method __offset (line 42) | public int __offset(int vtableOffset) method __offset (line 48) | public static int __offset(int vtableOffset, int offset, ByteBuffer bb) method __indirect (line 55) | public int __indirect(int offset) method __indirect (line 60) | public static int __indirect(int offset, ByteBuffer bb) method __string (line 66) | public string __string(int offset) method __vector_len (line 75) | public int __vector_len(int offset) method __vector (line 83) | public int __vector(int offset) method __vector_as_span (line 93) | public Span __vector_as_span(int offset, int elementSize) where ... method __vector_as_arraysegment (line 115) | public ArraySegment? __vector_as_arraysegment(int offset) method __vector_as_array (line 132) | public T[] __vector_as_array(int offset) method __union (line 153) | public T __union(int offset) where T : struct, IFlatbufferObject method __has_identifier (line 160) | public static bool __has_identifier(ByteBuffer bb, string ident) method CompareStrings (line 174) | public static int CompareStrings(int offset_1, int offset_2, ByteBuffe... method CompareStrings (line 200) | public static int CompareStrings(int offset_1, byte[] key, ByteBuffer bb) FILE: php/ByteBuffer.php class ByteBuffer (line 20) | class ByteBuffer method wrap (line 37) | public static function wrap($bytes) method __construct (line 48) | public function __construct($size) method capacity (line 56) | public function capacity() method getPosition (line 64) | public function getPosition() method setPosition (line 72) | public function setPosition($pos) method reset (line 80) | public function reset() method length (line 88) | public function length() method data (line 96) | public function data() method isLittleEndian (line 104) | public static function isLittleEndian() method writeLittleEndian (line 120) | public function writeLittleEndian($offset, $count, $data) method readLittleEndian (line 140) | public function readLittleEndian($offset, $count, $force_bigendian = f... method assertOffsetAndLength (line 162) | public function assertOffsetAndLength($offset, $length) method putSbyte (line 176) | public function putSbyte($offset, $value) method putByte (line 190) | public function putByte($offset, $value) method put (line 203) | public function put($offset, $value) method putShort (line 216) | public function putShort($offset, $value) method putUshort (line 228) | public function putUshort($offset, $value) method putInt (line 240) | public function putInt($offset, $value) method putUint (line 254) | public function putUint($offset, $value) method putLong (line 268) | public function putLong($offset, $value) method putUlong (line 281) | public function putUlong($offset, $value) method putFloat (line 294) | public function putFloat($offset, $value) method putDouble (line 307) | public function putDouble($offset, $value) method getByte (line 322) | public function getByte($index) method getSbyte (line 331) | public function getSbyte($index) method getX (line 340) | public function getX(&$buffer) method get (line 351) | public function get($index) method getBool (line 362) | public function getBool($index) method getShort (line 371) | public function getShort($index) method getUShort (line 386) | public function getUShort($index) method getInt (line 395) | public function getInt($index) method getUint (line 415) | public function getUint($index) method getLong (line 424) | public function getLong($index) method getUlong (line 433) | public function getUlong($index) method getFloat (line 442) | public function getFloat($index) method getDouble (line 453) | public function getDouble($index) method convertHelper (line 466) | private static function convertHelper($type, $value, $value2 = null) { method validateValue (line 488) | private static function validateValue($min, $max, $value, $type, $addi... FILE: php/Constants.php class Constants (line 20) | class Constants FILE: php/FlatbufferBuilder.php class FlatbufferBuilder (line 24) | final class FlatbufferBuilder method __construct (line 89) | public function __construct($initial_size) method newByteBuffer (line 105) | private function newByteBuffer($size) method offset (line 115) | public function offset() method pad (line 125) | public function pad($byte_size) method prep (line 139) | public function prep($size, $additional_bytes) method growByteBuffer (line 160) | private static function growByteBuffer(ByteBuffer $bb) method putBool (line 185) | public function putBool($x) method putByte (line 193) | public function putByte($x) method putSbyte (line 201) | public function putSbyte($x) method putShort (line 209) | public function putShort($x) method putUshort (line 217) | public function putUshort($x) method putInt (line 225) | public function putInt($x) method putUint (line 233) | public function putUint($x) method putLong (line 245) | public function putLong($x) method putUlong (line 257) | public function putUlong($x) method putFloat (line 269) | public function putFloat($x) method putDouble (line 277) | public function putDouble($x) method putOffset (line 285) | public function putOffset($off) method addBool (line 296) | public function addBool($x) method addByte (line 306) | public function addByte($x) method addSbyte (line 316) | public function addSbyte($x) method addShort (line 326) | public function addShort($x) method addUshort (line 336) | public function addUshort($x) method addInt (line 346) | public function addInt($x) method addUint (line 356) | public function addUint($x) method addLong (line 366) | public function addLong($x) method addUlong (line 376) | public function addUlong($x) method addFloat (line 386) | public function addFloat($x) method addDouble (line 396) | public function addDouble($x) method addBoolX (line 408) | public function addBoolX($o, $x, $d) method addByteX (line 421) | public function addByteX($o, $x, $d) method addSbyteX (line 434) | public function addSbyteX($o, $x, $d) method addShortX (line 447) | public function addShortX($o, $x, $d) method addUshortX (line 460) | public function addUshortX($o, $x, $d) method addIntX (line 473) | public function addIntX($o, $x, $d) method addUintX (line 486) | public function addUintX($o, $x, $d) method addLongX (line 499) | public function addLongX($o, $x, $d) method addUlongX (line 512) | public function addUlongX($o, $x, $d) method addFloatX (line 526) | public function addFloatX($o, $x, $d) method addDoubleX (line 539) | public function addDoubleX($o, $x, $d) method addOffsetX (line 553) | public function addOffsetX($o, $x, $d) method addOffset (line 568) | public function addOffset($off) method startVector (line 584) | public function startVector($elem_size, $num_elems, $alignment) method endVector (line 595) | public function endVector() method is_utf8 (line 601) | protected function is_utf8($bytes) method createString (line 715) | public function createString($s) method notNested (line 735) | public function notNested() method nested (line 746) | public function nested($obj) method startObject (line 757) | public function startObject($numfields) method addStructX (line 779) | public function addStructX($voffset, $x, $d) method addStruct (line 793) | public function addStruct($voffset, $x, $d) method slot (line 804) | public function slot($voffset) method endObject (line 813) | public function endObject() method required (line 885) | public function required($table, $field) method finish (line 906) | public function finish($root_table, $identifier = null) method forceDefaults (line 934) | public function forceDefaults($forceDefaults) method dataBuffer (line 943) | public function dataBuffer() method dataStart (line 952) | public function dataStart() method sizedByteArray (line 964) | public function sizedByteArray() FILE: php/Struct.php class Struct (line 20) | abstract class Struct method setByteBufferPos (line 32) | public function setByteBufferPos($pos) method setByteBuffer (line 37) | public function setByteBuffer($bb) FILE: php/Table.php class Table (line 20) | abstract class Table method __construct (line 31) | public function __construct() method setByteBufferPos (line 35) | public function setByteBufferPos($pos) method setByteBuffer (line 40) | public function setByteBuffer($bb) method __offset (line 51) | protected function __offset($vtable_offset) method __indirect (line 61) | protected function __indirect($offset) method __string (line 72) | protected function __string($offset) method __vector_len (line 84) | protected function __vector_len($offset) method __vector (line 95) | protected function __vector($offset) method __vector_as_bytes (line 102) | protected function __vector_as_bytes($vector_offset, $elem_size=1) method __union (line 117) | protected function __union($table, $offset) method __has_identifier (line 131) | protected static function __has_identifier($bb, $ident) FILE: python/flatbuffers/builder.py class OffsetArithmeticError (line 33) | class OffsetArithmeticError(RuntimeError): class IsNotNestedError (line 43) | class IsNotNestedError(RuntimeError): class IsNestedError (line 52) | class IsNestedError(RuntimeError): class StructIsNotInlineError (line 61) | class StructIsNotInlineError(RuntimeError): class BuilderSizeError (line 70) | class BuilderSizeError(RuntimeError): class BuilderNotFinishedError (line 79) | class BuilderNotFinishedError(RuntimeError): class EndVectorLengthMismatched (line 85) | class EndVectorLengthMismatched(RuntimeError): class Builder (line 99) | class Builder(object): method __init__ (line 143) | def __init__(self, initialSize=1024): method Clear (line 166) | def Clear(self): method Output (line 180) | def Output(self): method StartObject (line 198) | def StartObject(self, numfields): method WriteVtable (line 208) | def WriteVtable(self): method EndObject (line 318) | def EndObject(self): method GrowByteBuffer (line 324) | def GrowByteBuffer(self): method Head (line 342) | def Head(self): method Offset (line 353) | def Offset(self): method Pad (line 357) | def Pad(self, n): method Prep (line 365) | def Prep(self, size, additionalBytes): method PrependSOffsetTRelative (line 395) | def PrependSOffsetTRelative(self, off): method PrependUOffsetTRelative (line 411) | def PrependUOffsetTRelative(self, off): method StartVector (line 425) | def StartVector(self, elemSize, numElems, alignment): method EndVector (line 440) | def EndVector(self, numElems=None): method CreateSharedString (line 458) | def CreateSharedString(self, s, encoding="utf-8", errors="strict"): method CreateString (line 474) | def CreateString(self, s, encoding="utf-8", errors="strict"): method CreateByteVector (line 500) | def CreateByteVector(self, x): method CreateNumpyVector (line 520) | def CreateNumpyVector(self, x): method CreateVectorOfTables (line 556) | def CreateVectorOfTables(self, offsets): method assertNested (line 572) | def assertNested(self): method assertNotNested (line 578) | def assertNotNested(self): method assertStructIsInline (line 587) | def assertStructIsInline(self, obj): method Slot (line 602) | def Slot(self, slotnum): method __Finish (line 612) | def __Finish(self, rootTable, sizePrefix, file_identifier=None): method Finish (line 642) | def Finish(self, rootTable, file_identifier=None): method FinishSizePrefixed (line 646) | def FinishSizePrefixed(self, rootTable, file_identifier=None): method Prepend (line 654) | def Prepend(self, flags, off): method PrependSlot (line 658) | def PrependSlot(self, flags, o, x, d): method PrependBoolSlot (line 667) | def PrependBoolSlot(self, *args): method PrependByteSlot (line 670) | def PrependByteSlot(self, *args): method PrependUint8Slot (line 673) | def PrependUint8Slot(self, *args): method PrependUint16Slot (line 676) | def PrependUint16Slot(self, *args): method PrependUint32Slot (line 679) | def PrependUint32Slot(self, *args): method PrependUint64Slot (line 682) | def PrependUint64Slot(self, *args): method PrependInt8Slot (line 685) | def PrependInt8Slot(self, *args): method PrependInt16Slot (line 688) | def PrependInt16Slot(self, *args): method PrependInt32Slot (line 691) | def PrependInt32Slot(self, *args): method PrependInt64Slot (line 694) | def PrependInt64Slot(self, *args): method PrependFloat32Slot (line 697) | def PrependFloat32Slot(self, *args): method PrependFloat64Slot (line 700) | def PrependFloat64Slot(self, *args): method PrependUOffsetTRelativeSlot (line 703) | def PrependUOffsetTRelativeSlot(self, o, x, d): method PrependStructSlot (line 714) | def PrependStructSlot(self, v, x, d): method PrependBool (line 728) | def PrependBool(self, x): method PrependByte (line 735) | def PrependByte(self, x): method PrependUint8 (line 742) | def PrependUint8(self, x): method PrependUint16 (line 749) | def PrependUint16(self, x): method PrependUint32 (line 756) | def PrependUint32(self, x): method PrependUint64 (line 763) | def PrependUint64(self, x): method PrependInt8 (line 770) | def PrependInt8(self, x): method PrependInt16 (line 777) | def PrependInt16(self, x): method PrependInt32 (line 784) | def PrependInt32(self, x): method PrependInt64 (line 791) | def PrependInt64(self, x): method PrependFloat32 (line 798) | def PrependFloat32(self, x): method PrependFloat64 (line 805) | def PrependFloat64(self, x): method ForceDefaults (line 812) | def ForceDefaults(self, forceDefaults): method PrependVOffsetT (line 824) | def PrependVOffsetT(self, x): method Place (line 827) | def Place(self, x, flags): method PlaceVOffsetT (line 838) | def PlaceVOffsetT(self, x): method PlaceSOffsetT (line 848) | def PlaceSOffsetT(self, x): method PlaceUOffsetT (line 858) | def PlaceUOffsetT(self, x): FILE: python/flatbuffers/compat.py function import_numpy (line 56) | def import_numpy(): class NumpyRequiredForThisFeature (line 82) | class NumpyRequiredForThisFeature(RuntimeError): FILE: python/flatbuffers/encode.py function Get (line 25) | def Get(packer_type, buf, head): function GetVectorAsNumpy (line 30) | def GetVectorAsNumpy(numpy_type, buf, count, offset): function Write (line 43) | def Write(packer_type, buf, head, n): FILE: python/flatbuffers/flexbuffers.py class BitWidth (line 33) | class BitWidth(enum.IntEnum): method U (line 46) | def U(value): method I (line 62) | def I(value): method F (line 77) | def F(value): method B (line 84) | def B(byte_width): function _Unpack (line 95) | def _Unpack(fmt, buf): function _UnpackVector (line 99) | def _UnpackVector(fmt, buf, length): function _Pack (line 104) | def _Pack(fmt, value, byte_width): function _PackVector (line 108) | def _PackVector(fmt, values, byte_width): function _Mutate (line 112) | def _Mutate(fmt, buf, value, byte_width, value_bit_width): function _PaddingBytes (line 122) | def _PaddingBytes(buf_size, scalar_size): function _ShiftSlice (line 127) | def _ShiftSlice(s, offset, length): function _LowerBound (line 134) | def _LowerBound(values, value, pred): function _BinarySearch (line 152) | def _BinarySearch(values, value, pred=lambda x, y: x < y): class Type (line 160) | class Type(enum.IntEnum): method Pack (line 203) | def Pack(type_, bit_width): method Unpack (line 207) | def Unpack(packed_type): method IsInline (line 211) | def IsInline(type_): method IsTypedVector (line 215) | def IsTypedVector(type_): method IsTypedVectorElementType (line 222) | def IsTypedVectorElementType(type_): method ToTypedVectorElementType (line 226) | def ToTypedVectorElementType(type_): method IsFixedTypedVector (line 233) | def IsFixedTypedVector(type_): method IsFixedTypedVectorElementType (line 237) | def IsFixedTypedVectorElementType(type_): method ToFixedTypedVectorElementType (line 241) | def ToFixedTypedVectorElementType(type_): method ToTypedVector (line 250) | def ToTypedVector(element_type, fixed_len=0): class Buf (line 281) | class Buf: method __init__ (line 284) | def __init__(self, buf, offset): method __getitem__ (line 289) | def __getitem__(self, key): method __setitem__ (line 297) | def __setitem__(self, key, value): method __repr__ (line 305) | def __repr__(self): method Find (line 308) | def Find(self, sub): method Slice (line 312) | def Slice(self, offset): method Indirect (line 316) | def Indirect(self, offset, byte_width): class Object (line 321) | class Object: method __init__ (line 326) | def __init__(self, buf, byte_width): method ByteWidth (line 331) | def ByteWidth(self): class Sized (line 335) | class Sized(Object): method __init__ (line 340) | def __init__(self, buf, byte_width, size=0): method SizeBytes (line 348) | def SizeBytes(self): method __len__ (line 351) | def __len__(self): class Blob (line 355) | class Blob(Sized): method Bytes (line 361) | def Bytes(self): method __repr__ (line 364) | def __repr__(self): class String (line 368) | class String(Sized): method Bytes (line 374) | def Bytes(self): method Mutate (line 377) | def Mutate(self, value): method __str__ (line 397) | def __str__(self): method __repr__ (line 400) | def __repr__(self): class Key (line 404) | class Key(Object): method __init__ (line 409) | def __init__(self, buf, byte_width): method Bytes (line 414) | def Bytes(self): method __len__ (line 417) | def __len__(self): method __str__ (line 420) | def __str__(self): method __repr__ (line 423) | def __repr__(self): class Vector (line 427) | class Vector(Sized): method __getitem__ (line 432) | def __getitem__(self, index): method Value (line 443) | def Value(self): method __repr__ (line 447) | def __repr__(self): class TypedVector (line 455) | class TypedVector(Sized): method __init__ (line 460) | def __init__(self, buf, byte_width, element_type, size=0): method Bytes (line 475) | def Bytes(self): method ElementType (line 479) | def ElementType(self): method __getitem__ (line 482) | def __getitem__(self, index): method Value (line 492) | def Value(self): method __repr__ (line 512) | def __repr__(self): class Map (line 521) | class Map(Vector): method CompareKeys (line 525) | def CompareKeys(a, b): method __getitem__ (line 532) | def __getitem__(self, key): method Keys (line 543) | def Keys(self): method Values (line 551) | def Values(self): method Value (line 555) | def Value(self): method __repr__ (line 558) | def __repr__(self): class Ref (line 562) | class Ref: method PackedType (line 568) | def PackedType(buf, parent_width, packed_type): method __init__ (line 572) | def __init__(self, buf, parent_width, byte_width, type_): method __repr__ (line 578) | def __repr__(self): method _Bytes (line 587) | def _Bytes(self): method _ConvertError (line 590) | def _ConvertError(self, target_type): method _Indirect (line 593) | def _Indirect(self): method IsNull (line 597) | def IsNull(self): method IsBool (line 601) | def IsBool(self): method AsBool (line 605) | def AsBool(self): method MutateBool (line 611) | def MutateBool(self, value): method IsNumeric (line 625) | def IsNumeric(self): method IsInt (line 629) | def IsInt(self): method AsInt (line 638) | def AsInt(self): method MutateInt (line 667) | def MutateInt(self, value): method IsFloat (line 693) | def IsFloat(self): method AsFloat (line 697) | def AsFloat(self): method MutateFloat (line 720) | def MutateFloat(self, value): method IsKey (line 750) | def IsKey(self): method AsKeyBytes (line 754) | def AsKeyBytes(self): method AsKey (line 761) | def AsKey(self): method IsString (line 768) | def IsString(self): method AsStringBytes (line 772) | def AsStringBytes(self): method AsString (line 781) | def AsString(self): method MutateString (line 789) | def MutateString(self, value): method IsBlob (line 793) | def IsBlob(self): method AsBlob (line 797) | def AsBlob(self): method IsAnyVector (line 804) | def IsAnyVector(self): method IsVector (line 808) | def IsVector(self): method AsVector (line 812) | def AsVector(self): method IsTypedVector (line 819) | def IsTypedVector(self): method AsTypedVector (line 823) | def AsTypedVector(self): method IsFixedTypedVector (line 834) | def IsFixedTypedVector(self): method AsFixedTypedVector (line 838) | def AsFixedTypedVector(self): method IsMap (line 846) | def IsMap(self): method AsMap (line 850) | def AsMap(self): method Value (line 857) | def Value(self): function _IsIterable (line 892) | def _IsIterable(obj): class Value (line 900) | class Value: method Null (line 904) | def Null(): method Bool (line 908) | def Bool(value): method Int (line 912) | def Int(value, bit_width): method UInt (line 916) | def UInt(value, bit_width): method Float (line 920) | def Float(value, bit_width): method Key (line 924) | def Key(offset): method __init__ (line 927) | def __init__(self, value, type_, min_bit_width): method Value (line 935) | def Value(self): method Type (line 939) | def Type(self): method MinBitWidth (line 943) | def MinBitWidth(self): method StoredPackedType (line 946) | def StoredPackedType(self, parent_bit_width=BitWidth.W8): method ElemWidth (line 954) | def ElemWidth(self, buf_size, elem_index=0): method StoredWidth (line 968) | def StoredWidth(self, parent_bit_width=BitWidth.W8): method __repr__ (line 973) | def __repr__(self): method __str__ (line 976) | def __str__(self): function InMap (line 980) | def InMap(func): function InMapForString (line 991) | def InMapForString(func): class Pool (line 1004) | class Pool: method __init__ (line 1007) | def __init__(self): method FindOrInsert (line 1010) | def FindOrInsert(self, data, offset): method Clear (line 1019) | def Clear(self): method Elements (line 1023) | def Elements(self): class Builder (line 1027) | class Builder: method __init__ (line 1030) | def __init__( method __len__ (line 1047) | def __len__(self): method StringPool (line 1051) | def StringPool(self): method KeyPool (line 1055) | def KeyPool(self): method Clear (line 1058) | def Clear(self): method Finish (line 1065) | def Finish(self): method _ReadKey (line 1086) | def _ReadKey(self, offset): method _Align (line 1090) | def _Align(self, alignment): method _Write (line 1095) | def _Write(self, fmt, value, byte_width): method _WriteVector (line 1098) | def _WriteVector(self, fmt, values, byte_width): method _WriteOffset (line 1101) | def _WriteOffset(self, offset, byte_width): method _WriteAny (line 1106) | def _WriteAny(self, value, byte_width): method _WriteBlob (line 1119) | def _WriteBlob(self, data, append_zero, type_): method _WriteScalarVector (line 1130) | def _WriteScalarVector(self, element_type, byte_width, elements, fixed): method _CreateVector (line 1154) | def _CreateVector(self, elements, typed, fixed, keys=None): method _PushIndirect (line 1212) | def _PushIndirect(self, value, type_, bit_width): method String (line 1222) | def String(self, value): method Blob (line 1236) | def Blob(self, value): method Key (line 1247) | def Key(self, value): method Null (line 1277) | def Null(self, key=None): method Bool (line 1284) | def Bool(self, value): method Int (line 1293) | def Int(self, value, byte_width=0): method IndirectInt (line 1304) | def IndirectInt(self, value, byte_width=0): method UInt (line 1315) | def UInt(self, value, byte_width=0): method IndirectUInt (line 1326) | def IndirectUInt(self, value, byte_width=0): method Float (line 1337) | def Float(self, value, byte_width=0): method IndirectFloat (line 1348) | def IndirectFloat(self, value, byte_width=0): method _StartVector (line 1358) | def _StartVector(self): method _EndVector (line 1362) | def _EndVector(self, start, typed, fixed): method Vector (line 1370) | def Vector(self, key=None): method VectorFromElements (line 1381) | def VectorFromElements(self, elements): method TypedVector (line 1392) | def TypedVector(self, key=None): method TypedVectorFromElements (line 1403) | def TypedVectorFromElements(self, elements, element_type=None): method FixedTypedVectorFromElements (line 1433) | def FixedTypedVectorFromElements( method _StartMap (line 1473) | def _StartMap(self): method _EndMap (line 1477) | def _EndMap(self, start): method Map (line 1506) | def Map(self, key=None): method MapFromElements (line 1516) | def MapFromElements(self, elements): method Adder (line 1523) | def Adder(self, type_): method Add (line 1538) | def Add(self, value): method LastValue (line 1565) | def LastValue(self): method ReuseValue (line 1569) | def ReuseValue(self, value): function GetRoot (line 1573) | def GetRoot(buf): function Dumps (line 1583) | def Dumps(obj): function Loads (line 1590) | def Loads(buf): FILE: python/flatbuffers/number_types.py class BoolFlags (line 30) | class BoolFlags(object): class Uint8Flags (line 39) | class Uint8Flags(object): class Uint16Flags (line 48) | class Uint16Flags(object): class Uint32Flags (line 57) | class Uint32Flags(object): class Uint64Flags (line 66) | class Uint64Flags(object): class Int8Flags (line 75) | class Int8Flags(object): class Int16Flags (line 84) | class Int16Flags(object): class Int32Flags (line 93) | class Int32Flags(object): class Int64Flags (line 102) | class Int64Flags(object): class Float32Flags (line 111) | class Float32Flags(object): class Float64Flags (line 120) | class Float64Flags(object): class SOffsetTFlags (line 129) | class SOffsetTFlags(Int32Flags): class UOffsetTFlags (line 133) | class UOffsetTFlags(Uint32Flags): class VOffsetTFlags (line 137) | class VOffsetTFlags(Uint16Flags): function valid_number (line 141) | def valid_number(n, flags): function enforce_number (line 147) | def enforce_number(n, flags): function float32_to_uint32 (line 154) | def float32_to_uint32(n): function uint32_to_float32 (line 160) | def uint32_to_float32(n): function float64_to_uint64 (line 166) | def float64_to_uint64(n): function uint64_to_float64 (line 172) | def uint64_to_float64(n): function to_numpy_type (line 178) | def to_numpy_type(number_type): FILE: python/flatbuffers/reflection/AdvancedFeatures.py class AdvancedFeatures (line 6) | class AdvancedFeatures(object): FILE: python/flatbuffers/reflection/BaseType.py class BaseType (line 5) | class BaseType(object): FILE: python/flatbuffers/reflection/Enum.py class Enum (line 9) | class Enum(object): method GetRootAs (line 13) | def GetRootAs(cls, buf, offset=0): method GetRootAsEnum (line 20) | def GetRootAsEnum(cls, buf, offset=0): method EnumBufferHasIdentifier (line 24) | def EnumBufferHasIdentifier(cls, buf, offset, size_prefixed=False): method Init (line 28) | def Init(self, buf, pos): method Name (line 32) | def Name(self): method Values (line 39) | def Values(self, j): method ValuesLength (line 52) | def ValuesLength(self): method ValuesIsNone (line 59) | def ValuesIsNone(self): method IsUnion (line 64) | def IsUnion(self): method UnderlyingType (line 71) | def UnderlyingType(self): method Attributes (line 82) | def Attributes(self, j): method AttributesLength (line 95) | def AttributesLength(self): method AttributesIsNone (line 102) | def AttributesIsNone(self): method Documentation (line 107) | def Documentation(self, j): method DocumentationLength (line 115) | def DocumentationLength(self): method DocumentationIsNone (line 122) | def DocumentationIsNone(self): method DeclarationFile (line 128) | def DeclarationFile(self): function EnumStart (line 134) | def EnumStart(builder): function Start (line 137) | def Start(builder): function EnumAddName (line 140) | def EnumAddName(builder, name): function AddName (line 143) | def AddName(builder, name): function EnumAddValues (line 146) | def EnumAddValues(builder, values): function AddValues (line 149) | def AddValues(builder, values): function EnumStartValuesVector (line 152) | def EnumStartValuesVector(builder, numElems): function StartValuesVector (line 155) | def StartValuesVector(builder, numElems): function EnumCreateValuesVector (line 158) | def EnumCreateValuesVector(builder, data): function CreateValuesVector (line 161) | def CreateValuesVector(builder, data): function EnumAddIsUnion (line 164) | def EnumAddIsUnion(builder, isUnion): function AddIsUnion (line 167) | def AddIsUnion(builder, isUnion): function EnumAddUnderlyingType (line 170) | def EnumAddUnderlyingType(builder, underlyingType): function AddUnderlyingType (line 173) | def AddUnderlyingType(builder, underlyingType): function EnumAddAttributes (line 176) | def EnumAddAttributes(builder, attributes): function AddAttributes (line 179) | def AddAttributes(builder, attributes): function EnumStartAttributesVector (line 182) | def EnumStartAttributesVector(builder, numElems): function StartAttributesVector (line 185) | def StartAttributesVector(builder, numElems): function EnumCreateAttributesVector (line 188) | def EnumCreateAttributesVector(builder, data): function CreateAttributesVector (line 191) | def CreateAttributesVector(builder, data): function EnumAddDocumentation (line 194) | def EnumAddDocumentation(builder, documentation): function AddDocumentation (line 197) | def AddDocumentation(builder, documentation): function EnumStartDocumentationVector (line 200) | def EnumStartDocumentationVector(builder, numElems): function StartDocumentationVector (line 203) | def StartDocumentationVector(builder, numElems): function EnumCreateDocumentationVector (line 206) | def EnumCreateDocumentationVector(builder, data): function CreateDocumentationVector (line 209) | def CreateDocumentationVector(builder, data): function EnumAddDeclarationFile (line 212) | def EnumAddDeclarationFile(builder, declarationFile): function AddDeclarationFile (line 215) | def AddDeclarationFile(builder, declarationFile): function EnumEnd (line 218) | def EnumEnd(builder): function End (line 221) | def End(builder): FILE: python/flatbuffers/reflection/EnumVal.py class EnumVal (line 9) | class EnumVal(object): method GetRootAs (line 13) | def GetRootAs(cls, buf, offset=0): method GetRootAsEnumVal (line 20) | def GetRootAsEnumVal(cls, buf, offset=0): method EnumValBufferHasIdentifier (line 24) | def EnumValBufferHasIdentifier(cls, buf, offset, size_prefixed=False): method Init (line 28) | def Init(self, buf, pos): method Name (line 32) | def Name(self): method Value (line 39) | def Value(self): method UnionType (line 46) | def UnionType(self): method Documentation (line 57) | def Documentation(self, j): method DocumentationLength (line 65) | def DocumentationLength(self): method DocumentationIsNone (line 72) | def DocumentationIsNone(self): method Attributes (line 77) | def Attributes(self, j): method AttributesLength (line 90) | def AttributesLength(self): method AttributesIsNone (line 97) | def AttributesIsNone(self): function EnumValStart (line 101) | def EnumValStart(builder): function Start (line 104) | def Start(builder): function EnumValAddName (line 107) | def EnumValAddName(builder, name): function AddName (line 110) | def AddName(builder, name): function EnumValAddValue (line 113) | def EnumValAddValue(builder, value): function AddValue (line 116) | def AddValue(builder, value): function EnumValAddUnionType (line 119) | def EnumValAddUnionType(builder, unionType): function AddUnionType (line 122) | def AddUnionType(builder, unionType): function EnumValAddDocumentation (line 125) | def EnumValAddDocumentation(builder, documentation): function AddDocumentation (line 128) | def AddDocumentation(builder, documentation): function EnumValStartDocumentationVector (line 131) | def EnumValStartDocumentationVector(builder, numElems): function StartDocumentationVector (line 134) | def StartDocumentationVector(builder, numElems): function EnumValCreateDocumentationVector (line 137) | def EnumValCreateDocumentationVector(builder, data): function CreateDocumentationVector (line 140) | def CreateDocumentationVector(builder, data): function EnumValAddAttributes (line 143) | def EnumValAddAttributes(builder, attributes): function AddAttributes (line 146) | def AddAttributes(builder, attributes): function EnumValStartAttributesVector (line 149) | def EnumValStartAttributesVector(builder, numElems): function StartAttributesVector (line 152) | def StartAttributesVector(builder, numElems): function EnumValCreateAttributesVector (line 155) | def EnumValCreateAttributesVector(builder, data): function CreateAttributesVector (line 158) | def CreateAttributesVector(builder, data): function EnumValEnd (line 161) | def EnumValEnd(builder): function End (line 164) | def End(builder): FILE: python/flatbuffers/reflection/Field.py class Field (line 9) | class Field(object): method GetRootAs (line 13) | def GetRootAs(cls, buf, offset=0): method GetRootAsField (line 20) | def GetRootAsField(cls, buf, offset=0): method FieldBufferHasIdentifier (line 24) | def FieldBufferHasIdentifier(cls, buf, offset, size_prefixed=False): method Init (line 28) | def Init(self, buf, pos): method Name (line 32) | def Name(self): method Type (line 39) | def Type(self): method Id (line 50) | def Id(self): method Offset (line 57) | def Offset(self): method DefaultInteger (line 64) | def DefaultInteger(self): method DefaultReal (line 71) | def DefaultReal(self): method Deprecated (line 78) | def Deprecated(self): method Required (line 85) | def Required(self): method Key (line 92) | def Key(self): method Attributes (line 99) | def Attributes(self, j): method AttributesLength (line 112) | def AttributesLength(self): method AttributesIsNone (line 119) | def AttributesIsNone(self): method Documentation (line 124) | def Documentation(self, j): method DocumentationLength (line 132) | def DocumentationLength(self): method DocumentationIsNone (line 139) | def DocumentationIsNone(self): method Optional (line 144) | def Optional(self): method Padding (line 152) | def Padding(self): method Offset64 (line 160) | def Offset64(self): function FieldStart (line 166) | def FieldStart(builder): function Start (line 169) | def Start(builder): function FieldAddName (line 172) | def FieldAddName(builder, name): function AddName (line 175) | def AddName(builder, name): function FieldAddType (line 178) | def FieldAddType(builder, type): function AddType (line 181) | def AddType(builder, type): function FieldAddId (line 184) | def FieldAddId(builder, id): function AddId (line 187) | def AddId(builder, id): function FieldAddOffset (line 190) | def FieldAddOffset(builder, offset): function AddOffset (line 193) | def AddOffset(builder, offset): function FieldAddDefaultInteger (line 196) | def FieldAddDefaultInteger(builder, defaultInteger): function AddDefaultInteger (line 199) | def AddDefaultInteger(builder, defaultInteger): function FieldAddDefaultReal (line 202) | def FieldAddDefaultReal(builder, defaultReal): function AddDefaultReal (line 205) | def AddDefaultReal(builder, defaultReal): function FieldAddDeprecated (line 208) | def FieldAddDeprecated(builder, deprecated): function AddDeprecated (line 211) | def AddDeprecated(builder, deprecated): function FieldAddRequired (line 214) | def FieldAddRequired(builder, required): function AddRequired (line 217) | def AddRequired(builder, required): function FieldAddKey (line 220) | def FieldAddKey(builder, key): function AddKey (line 223) | def AddKey(builder, key): function FieldAddAttributes (line 226) | def FieldAddAttributes(builder, attributes): function AddAttributes (line 229) | def AddAttributes(builder, attributes): function FieldStartAttributesVector (line 232) | def FieldStartAttributesVector(builder, numElems): function StartAttributesVector (line 235) | def StartAttributesVector(builder, numElems): function FieldCreateAttributesVector (line 238) | def FieldCreateAttributesVector(builder, data): function CreateAttributesVector (line 241) | def CreateAttributesVector(builder, data): function FieldAddDocumentation (line 244) | def FieldAddDocumentation(builder, documentation): function AddDocumentation (line 247) | def AddDocumentation(builder, documentation): function FieldStartDocumentationVector (line 250) | def FieldStartDocumentationVector(builder, numElems): function StartDocumentationVector (line 253) | def StartDocumentationVector(builder, numElems): function FieldCreateDocumentationVector (line 256) | def FieldCreateDocumentationVector(builder, data): function CreateDocumentationVector (line 259) | def CreateDocumentationVector(builder, data): function FieldAddOptional (line 262) | def FieldAddOptional(builder, optional): function AddOptional (line 265) | def AddOptional(builder, optional): function FieldAddPadding (line 268) | def FieldAddPadding(builder, padding): function AddPadding (line 271) | def AddPadding(builder, padding): function FieldAddOffset64 (line 274) | def FieldAddOffset64(builder, offset64): function AddOffset64 (line 277) | def AddOffset64(builder, offset64): function FieldEnd (line 280) | def FieldEnd(builder): function End (line 283) | def End(builder): FILE: python/flatbuffers/reflection/KeyValue.py class KeyValue (line 9) | class KeyValue(object): method GetRootAs (line 13) | def GetRootAs(cls, buf, offset=0): method GetRootAsKeyValue (line 20) | def GetRootAsKeyValue(cls, buf, offset=0): method KeyValueBufferHasIdentifier (line 24) | def KeyValueBufferHasIdentifier(cls, buf, offset, size_prefixed=False): method Init (line 28) | def Init(self, buf, pos): method Key (line 32) | def Key(self): method Value (line 39) | def Value(self): function KeyValueStart (line 45) | def KeyValueStart(builder): function Start (line 48) | def Start(builder): function KeyValueAddKey (line 51) | def KeyValueAddKey(builder, key): function AddKey (line 54) | def AddKey(builder, key): function KeyValueAddValue (line 57) | def KeyValueAddValue(builder, value): function AddValue (line 60) | def AddValue(builder, value): function KeyValueEnd (line 63) | def KeyValueEnd(builder): function End (line 66) | def End(builder): FILE: python/flatbuffers/reflection/Object.py class Object (line 9) | class Object(object): method GetRootAs (line 13) | def GetRootAs(cls, buf, offset=0): method GetRootAsObject (line 20) | def GetRootAsObject(cls, buf, offset=0): method ObjectBufferHasIdentifier (line 24) | def ObjectBufferHasIdentifier(cls, buf, offset, size_prefixed=False): method Init (line 28) | def Init(self, buf, pos): method Name (line 32) | def Name(self): method Fields (line 39) | def Fields(self, j): method FieldsLength (line 52) | def FieldsLength(self): method FieldsIsNone (line 59) | def FieldsIsNone(self): method IsStruct (line 64) | def IsStruct(self): method Minalign (line 71) | def Minalign(self): method Bytesize (line 78) | def Bytesize(self): method Attributes (line 85) | def Attributes(self, j): method AttributesLength (line 98) | def AttributesLength(self): method AttributesIsNone (line 105) | def AttributesIsNone(self): method Documentation (line 110) | def Documentation(self, j): method DocumentationLength (line 118) | def DocumentationLength(self): method DocumentationIsNone (line 125) | def DocumentationIsNone(self): method DeclarationFile (line 131) | def DeclarationFile(self): function ObjectStart (line 137) | def ObjectStart(builder): function Start (line 140) | def Start(builder): function ObjectAddName (line 143) | def ObjectAddName(builder, name): function AddName (line 146) | def AddName(builder, name): function ObjectAddFields (line 149) | def ObjectAddFields(builder, fields): function AddFields (line 152) | def AddFields(builder, fields): function ObjectStartFieldsVector (line 155) | def ObjectStartFieldsVector(builder, numElems): function StartFieldsVector (line 158) | def StartFieldsVector(builder, numElems): function ObjectCreateFieldsVector (line 161) | def ObjectCreateFieldsVector(builder, data): function CreateFieldsVector (line 164) | def CreateFieldsVector(builder, data): function ObjectAddIsStruct (line 167) | def ObjectAddIsStruct(builder, isStruct): function AddIsStruct (line 170) | def AddIsStruct(builder, isStruct): function ObjectAddMinalign (line 173) | def ObjectAddMinalign(builder, minalign): function AddMinalign (line 176) | def AddMinalign(builder, minalign): function ObjectAddBytesize (line 179) | def ObjectAddBytesize(builder, bytesize): function AddBytesize (line 182) | def AddBytesize(builder, bytesize): function ObjectAddAttributes (line 185) | def ObjectAddAttributes(builder, attributes): function AddAttributes (line 188) | def AddAttributes(builder, attributes): function ObjectStartAttributesVector (line 191) | def ObjectStartAttributesVector(builder, numElems): function StartAttributesVector (line 194) | def StartAttributesVector(builder, numElems): function ObjectCreateAttributesVector (line 197) | def ObjectCreateAttributesVector(builder, data): function CreateAttributesVector (line 200) | def CreateAttributesVector(builder, data): function ObjectAddDocumentation (line 203) | def ObjectAddDocumentation(builder, documentation): function AddDocumentation (line 206) | def AddDocumentation(builder, documentation): function ObjectStartDocumentationVector (line 209) | def ObjectStartDocumentationVector(builder, numElems): function StartDocumentationVector (line 212) | def StartDocumentationVector(builder, numElems): function ObjectCreateDocumentationVector (line 215) | def ObjectCreateDocumentationVector(builder, data): function CreateDocumentationVector (line 218) | def CreateDocumentationVector(builder, data): function ObjectAddDeclarationFile (line 221) | def ObjectAddDeclarationFile(builder, declarationFile): function AddDeclarationFile (line 224) | def AddDeclarationFile(builder, declarationFile): function ObjectEnd (line 227) | def ObjectEnd(builder): function End (line 230) | def End(builder): FILE: python/flatbuffers/reflection/RPCCall.py class RPCCall (line 9) | class RPCCall(object): method GetRootAs (line 13) | def GetRootAs(cls, buf, offset=0): method GetRootAsRPCCall (line 20) | def GetRootAsRPCCall(cls, buf, offset=0): method RPCCallBufferHasIdentifier (line 24) | def RPCCallBufferHasIdentifier(cls, buf, offset, size_prefixed=False): method Init (line 28) | def Init(self, buf, pos): method Name (line 32) | def Name(self): method Request (line 39) | def Request(self): method Response (line 50) | def Response(self): method Attributes (line 61) | def Attributes(self, j): method AttributesLength (line 74) | def AttributesLength(self): method AttributesIsNone (line 81) | def AttributesIsNone(self): method Documentation (line 86) | def Documentation(self, j): method DocumentationLength (line 94) | def DocumentationLength(self): method DocumentationIsNone (line 101) | def DocumentationIsNone(self): function RPCCallStart (line 105) | def RPCCallStart(builder): function Start (line 108) | def Start(builder): function RPCCallAddName (line 111) | def RPCCallAddName(builder, name): function AddName (line 114) | def AddName(builder, name): function RPCCallAddRequest (line 117) | def RPCCallAddRequest(builder, request): function AddRequest (line 120) | def AddRequest(builder, request): function RPCCallAddResponse (line 123) | def RPCCallAddResponse(builder, response): function AddResponse (line 126) | def AddResponse(builder, response): function RPCCallAddAttributes (line 129) | def RPCCallAddAttributes(builder, attributes): function AddAttributes (line 132) | def AddAttributes(builder, attributes): function RPCCallStartAttributesVector (line 135) | def RPCCallStartAttributesVector(builder, numElems): function StartAttributesVector (line 138) | def StartAttributesVector(builder, numElems): function RPCCallCreateAttributesVector (line 141) | def RPCCallCreateAttributesVector(builder, data): function CreateAttributesVector (line 144) | def CreateAttributesVector(builder, data): function RPCCallAddDocumentation (line 147) | def RPCCallAddDocumentation(builder, documentation): function AddDocumentation (line 150) | def AddDocumentation(builder, documentation): function RPCCallStartDocumentationVector (line 153) | def RPCCallStartDocumentationVector(builder, numElems): function StartDocumentationVector (line 156) | def StartDocumentationVector(builder, numElems): function RPCCallCreateDocumentationVector (line 159) | def RPCCallCreateDocumentationVector(builder, data): function CreateDocumentationVector (line 162) | def CreateDocumentationVector(builder, data): function RPCCallEnd (line 165) | def RPCCallEnd(builder): function End (line 168) | def End(builder): FILE: python/flatbuffers/reflection/Schema.py class Schema (line 9) | class Schema(object): method GetRootAs (line 13) | def GetRootAs(cls, buf, offset=0): method GetRootAsSchema (line 20) | def GetRootAsSchema(cls, buf, offset=0): method SchemaBufferHasIdentifier (line 24) | def SchemaBufferHasIdentifier(cls, buf, offset, size_prefixed=False): method Init (line 28) | def Init(self, buf, pos): method Objects (line 32) | def Objects(self, j): method ObjectsLength (line 45) | def ObjectsLength(self): method ObjectsIsNone (line 52) | def ObjectsIsNone(self): method Enums (line 57) | def Enums(self, j): method EnumsLength (line 70) | def EnumsLength(self): method EnumsIsNone (line 77) | def EnumsIsNone(self): method FileIdent (line 82) | def FileIdent(self): method FileExt (line 89) | def FileExt(self): method RootTable (line 96) | def RootTable(self): method Services (line 107) | def Services(self, j): method ServicesLength (line 120) | def ServicesLength(self): method ServicesIsNone (line 127) | def ServicesIsNone(self): method AdvancedFeatures (line 132) | def AdvancedFeatures(self): method FbsFiles (line 141) | def FbsFiles(self, j): method FbsFilesLength (line 154) | def FbsFilesLength(self): method FbsFilesIsNone (line 161) | def FbsFilesIsNone(self): function SchemaStart (line 165) | def SchemaStart(builder): function Start (line 168) | def Start(builder): function SchemaAddObjects (line 171) | def SchemaAddObjects(builder, objects): function AddObjects (line 174) | def AddObjects(builder, objects): function SchemaStartObjectsVector (line 177) | def SchemaStartObjectsVector(builder, numElems): function StartObjectsVector (line 180) | def StartObjectsVector(builder, numElems): function SchemaCreateObjectsVector (line 183) | def SchemaCreateObjectsVector(builder, data): function CreateObjectsVector (line 186) | def CreateObjectsVector(builder, data): function SchemaAddEnums (line 189) | def SchemaAddEnums(builder, enums): function AddEnums (line 192) | def AddEnums(builder, enums): function SchemaStartEnumsVector (line 195) | def SchemaStartEnumsVector(builder, numElems): function StartEnumsVector (line 198) | def StartEnumsVector(builder, numElems): function SchemaCreateEnumsVector (line 201) | def SchemaCreateEnumsVector(builder, data): function CreateEnumsVector (line 204) | def CreateEnumsVector(builder, data): function SchemaAddFileIdent (line 207) | def SchemaAddFileIdent(builder, fileIdent): function AddFileIdent (line 210) | def AddFileIdent(builder, fileIdent): function SchemaAddFileExt (line 213) | def SchemaAddFileExt(builder, fileExt): function AddFileExt (line 216) | def AddFileExt(builder, fileExt): function SchemaAddRootTable (line 219) | def SchemaAddRootTable(builder, rootTable): function AddRootTable (line 222) | def AddRootTable(builder, rootTable): function SchemaAddServices (line 225) | def SchemaAddServices(builder, services): function AddServices (line 228) | def AddServices(builder, services): function SchemaStartServicesVector (line 231) | def SchemaStartServicesVector(builder, numElems): function StartServicesVector (line 234) | def StartServicesVector(builder, numElems): function SchemaCreateServicesVector (line 237) | def SchemaCreateServicesVector(builder, data): function CreateServicesVector (line 240) | def CreateServicesVector(builder, data): function SchemaAddAdvancedFeatures (line 243) | def SchemaAddAdvancedFeatures(builder, advancedFeatures): function AddAdvancedFeatures (line 246) | def AddAdvancedFeatures(builder, advancedFeatures): function SchemaAddFbsFiles (line 249) | def SchemaAddFbsFiles(builder, fbsFiles): function AddFbsFiles (line 252) | def AddFbsFiles(builder, fbsFiles): function SchemaStartFbsFilesVector (line 255) | def SchemaStartFbsFilesVector(builder, numElems): function StartFbsFilesVector (line 258) | def StartFbsFilesVector(builder, numElems): function SchemaCreateFbsFilesVector (line 261) | def SchemaCreateFbsFilesVector(builder, data): function CreateFbsFilesVector (line 264) | def CreateFbsFilesVector(builder, data): function SchemaEnd (line 267) | def SchemaEnd(builder): function End (line 270) | def End(builder): FILE: python/flatbuffers/reflection/SchemaFile.py class SchemaFile (line 12) | class SchemaFile(object): method GetRootAs (line 16) | def GetRootAs(cls, buf, offset=0): method GetRootAsSchemaFile (line 23) | def GetRootAsSchemaFile(cls, buf, offset=0): method SchemaFileBufferHasIdentifier (line 27) | def SchemaFileBufferHasIdentifier(cls, buf, offset, size_prefixed=False): method Init (line 31) | def Init(self, buf, pos): method Filename (line 36) | def Filename(self): method IncludedFilenames (line 44) | def IncludedFilenames(self, j): method IncludedFilenamesLength (line 52) | def IncludedFilenamesLength(self): method IncludedFilenamesIsNone (line 59) | def IncludedFilenamesIsNone(self): function SchemaFileStart (line 63) | def SchemaFileStart(builder): function Start (line 66) | def Start(builder): function SchemaFileAddFilename (line 69) | def SchemaFileAddFilename(builder, filename): function AddFilename (line 72) | def AddFilename(builder, filename): function SchemaFileAddIncludedFilenames (line 75) | def SchemaFileAddIncludedFilenames(builder, includedFilenames): function AddIncludedFilenames (line 78) | def AddIncludedFilenames(builder, includedFilenames): function SchemaFileStartIncludedFilenamesVector (line 81) | def SchemaFileStartIncludedFilenamesVector(builder, numElems): function StartIncludedFilenamesVector (line 84) | def StartIncludedFilenamesVector(builder, numElems): function SchemaFileCreateIncludedFilenamesVector (line 87) | def SchemaFileCreateIncludedFilenamesVector(builder, data): function CreateIncludedFilenamesVector (line 90) | def CreateIncludedFilenamesVector(builder, data): function SchemaFileEnd (line 93) | def SchemaFileEnd(builder): function End (line 96) | def End(builder): FILE: python/flatbuffers/reflection/Service.py class Service (line 9) | class Service(object): method GetRootAs (line 13) | def GetRootAs(cls, buf, offset=0): method GetRootAsService (line 20) | def GetRootAsService(cls, buf, offset=0): method ServiceBufferHasIdentifier (line 24) | def ServiceBufferHasIdentifier(cls, buf, offset, size_prefixed=False): method Init (line 28) | def Init(self, buf, pos): method Name (line 32) | def Name(self): method Calls (line 39) | def Calls(self, j): method CallsLength (line 52) | def CallsLength(self): method CallsIsNone (line 59) | def CallsIsNone(self): method Attributes (line 64) | def Attributes(self, j): method AttributesLength (line 77) | def AttributesLength(self): method AttributesIsNone (line 84) | def AttributesIsNone(self): method Documentation (line 89) | def Documentation(self, j): method DocumentationLength (line 97) | def DocumentationLength(self): method DocumentationIsNone (line 104) | def DocumentationIsNone(self): method DeclarationFile (line 110) | def DeclarationFile(self): function ServiceStart (line 116) | def ServiceStart(builder): function Start (line 119) | def Start(builder): function ServiceAddName (line 122) | def ServiceAddName(builder, name): function AddName (line 125) | def AddName(builder, name): function ServiceAddCalls (line 128) | def ServiceAddCalls(builder, calls): function AddCalls (line 131) | def AddCalls(builder, calls): function ServiceStartCallsVector (line 134) | def ServiceStartCallsVector(builder, numElems): function StartCallsVector (line 137) | def StartCallsVector(builder, numElems): function ServiceCreateCallsVector (line 140) | def ServiceCreateCallsVector(builder, data): function CreateCallsVector (line 143) | def CreateCallsVector(builder, data): function ServiceAddAttributes (line 146) | def ServiceAddAttributes(builder, attributes): function AddAttributes (line 149) | def AddAttributes(builder, attributes): function ServiceStartAttributesVector (line 152) | def ServiceStartAttributesVector(builder, numElems): function StartAttributesVector (line 155) | def StartAttributesVector(builder, numElems): function ServiceCreateAttributesVector (line 158) | def ServiceCreateAttributesVector(builder, data): function CreateAttributesVector (line 161) | def CreateAttributesVector(builder, data): function ServiceAddDocumentation (line 164) | def ServiceAddDocumentation(builder, documentation): function AddDocumentation (line 167) | def AddDocumentation(builder, documentation): function ServiceStartDocumentationVector (line 170) | def ServiceStartDocumentationVector(builder, numElems): function StartDocumentationVector (line 173) | def StartDocumentationVector(builder, numElems): function ServiceCreateDocumentationVector (line 176) | def ServiceCreateDocumentationVector(builder, data): function CreateDocumentationVector (line 179) | def CreateDocumentationVector(builder, data): function ServiceAddDeclarationFile (line 182) | def ServiceAddDeclarationFile(builder, declarationFile): function AddDeclarationFile (line 185) | def AddDeclarationFile(builder, declarationFile): function ServiceEnd (line 188) | def ServiceEnd(builder): function End (line 191) | def End(builder): FILE: python/flatbuffers/reflection/Type.py class Type (line 9) | class Type(object): method GetRootAs (line 13) | def GetRootAs(cls, buf, offset=0): method GetRootAsType (line 20) | def GetRootAsType(cls, buf, offset=0): method TypeBufferHasIdentifier (line 24) | def TypeBufferHasIdentifier(cls, buf, offset, size_prefixed=False): method Init (line 28) | def Init(self, buf, pos): method BaseType (line 32) | def BaseType(self): method Element (line 39) | def Element(self): method Index (line 46) | def Index(self): method FixedLength (line 53) | def FixedLength(self): method BaseSize (line 61) | def BaseSize(self): method ElementSize (line 69) | def ElementSize(self): function TypeStart (line 75) | def TypeStart(builder): function Start (line 78) | def Start(builder): function TypeAddBaseType (line 81) | def TypeAddBaseType(builder, baseType): function AddBaseType (line 84) | def AddBaseType(builder, baseType): function TypeAddElement (line 87) | def TypeAddElement(builder, element): function AddElement (line 90) | def AddElement(builder, element): function TypeAddIndex (line 93) | def TypeAddIndex(builder, index): function AddIndex (line 96) | def AddIndex(builder, index): function TypeAddFixedLength (line 99) | def TypeAddFixedLength(builder, fixedLength): function AddFixedLength (line 102) | def AddFixedLength(builder, fixedLength): function TypeAddBaseSize (line 105) | def TypeAddBaseSize(builder, baseSize): function AddBaseSize (line 108) | def AddBaseSize(builder, baseSize): function TypeAddElementSize (line 111) | def TypeAddElementSize(builder, elementSize): function AddElementSize (line 114) | def AddElementSize(builder, elementSize): function TypeEnd (line 117) | def TypeEnd(builder): function End (line 120) | def End(builder): FILE: python/flatbuffers/table.py class Table (line 19) | class Table(object): method __init__ (line 27) | def __init__(self, buf, pos): method Offset (line 33) | def Offset(self, vtableOffset): method Indirect (line 45) | def Indirect(self, off): method String (line 50) | def String(self, off): method VectorLen (line 58) | def VectorLen(self, off): method Vector (line 70) | def Vector(self, off): method Union (line 83) | def Union(self, t2, off): method Get (line 95) | def Get(self, flags, off): method GetSlot (line 103) | def GetSlot(self, slot, d, validator_flags): method GetVectorAsNumpy (line 112) | def GetVectorAsNumpy(self, flags, off): method GetArrayAsNumpy (line 124) | def GetArrayAsNumpy(self, flags, off, length): method GetVOffsetTSlot (line 135) | def GetVOffsetTSlot(self, slot, d): FILE: python/flatbuffers/util.py function GetSizePrefix (line 20) | def GetSizePrefix(buf, offset): function GetBufferIdentifier (line 25) | def GetBufferIdentifier(buf, offset, size_prefixed=False): function BufferHasIdentifier (line 37) | def BufferHasIdentifier(buf, offset, file_identifier, size_prefixed=False): function RemoveSizePrefix (line 42) | def RemoveSizePrefix(buf, offset): FILE: rust/flatbuffers/build.rs function main (line 3) | fn main() { FILE: rust/flatbuffers/src/array.rs type Array (line 25) | pub struct Array<'a, T: 'a, const N: usize>(&'a [u8], PhantomData); method fmt (line 32) | fn fmt(&self, f: &mut Formatter) -> Result { function new (line 48) | pub unsafe fn new(buf: &'a [u8]) -> Self { function len (line 55) | pub const fn len(&self) -> usize { function as_ptr (line 58) | pub fn as_ptr(&self) -> *const u8 { function get (line 65) | pub fn get(&self, idx: usize) -> T::Inner { function iter (line 74) | pub fn iter(&self) -> VectorIter<'a, T> { function from (line 82) | fn from(array: Array<'a, T, N>) -> Self { type Inner (line 89) | type Inner = Array<'a, T, N>; function follow (line 91) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { function emplace_scalar_array (line 100) | pub unsafe fn emplace_scalar_array( type Item (line 118) | type Item = T::Inner; type IntoIter (line 119) | type IntoIter = VectorIter<'a, T>; method into_iter (line 121) | fn into_iter(self) -> Self::IntoIter { function array_init (line 127) | pub fn array_init(mut initializer: F) -> [T; N] function serialize (line 152) | fn serialize(&self, serializer: S) -> std::result::Result { method grow_downwards (line 55) | fn grow_downwards(&mut self) -> Result<(), Self::Error>; method len (line 58) | fn len(&self) -> usize; type Error (line 88) | type Error = Infallible; method grow_downwards (line 89) | fn grow_downwards(&mut self) -> Result<(), Self::Error> { method len (line 118) | fn len(&self) -> usize { type DefaultAllocator (line 63) | pub struct DefaultAllocator(Vec); method from_vec (line 67) | pub fn from_vec(buffer: Vec) -> Self { type Target (line 73) | type Target = [u8]; method deref (line 75) | fn deref(&self) -> &Self::Target { method deref_mut (line 81) | fn deref_mut(&mut self) -> &mut Self::Target { type FieldLoc (line 124) | struct FieldLoc { type FlatBufferBuilder (line 133) | pub struct FlatBufferBuilder<'fbb, A: Allocator = DefaultAllocator> { function new (line 155) | pub fn new() -> Self { function new_with_capacity (line 159) | pub fn new_with_capacity(size: usize) -> Self { function with_capacity (line 166) | pub fn with_capacity(size: usize) -> Self { function with_internal_capacity (line 180) | pub fn with_internal_capacity( function from_vec_with_internal_capacity (line 202) | pub fn from_vec_with_internal_capacity( function from_vec (line 225) | pub fn from_vec(buffer: Vec) -> Self { function collapse (line 238) | pub fn collapse(self) -> (Vec, usize) { function new_in (line 246) | pub fn new_in(allocator: A) -> Self { function new_in_with_internal_capacity (line 278) | pub fn new_in_with_internal_capacity( function collapse_in (line 308) | pub fn collapse_in(self) -> (A, usize) { function reset (line 324) | pub fn reset(&mut self) { function push (line 345) | pub fn push(&mut self, x: P) -> WIPOffset { function push_slot (line 362) | pub fn push_slot(&mut self, slotoff: VOffsetT, x: X... function push_slot_always (line 372) | pub fn push_slot_always(&mut self, slotoff: VOffsetT, x: X) { function num_written_vtables (line 381) | pub fn num_written_vtables(&self) -> usize { function start_table (line 391) | pub fn start_table(&mut self) -> WIPOffset { function end_table (line 404) | pub fn end_table( function start_vector (line 426) | pub fn start_vector(&mut self, num_items: usize) { function end_vector (line 441) | pub fn end_vector(&mut self, num_elems: usize) -> WIPOffset(&'a mut self, s: &'b str) -> WIP... function create_shared_string (line 474) | pub fn create_shared_string<'a: 'b, 'b>(&'a mut self, s: &'b str) -> WIP... function create_string (line 510) | pub fn create_string<'a: 'b, 'b>(&'a mut self, s: &'b str) -> WIPOffset<... function create_byte_string (line 519) | pub fn create_byte_string(&mut self, data: &[u8]) -> WIPOffset<&'fbb [u8... function create_vector (line 535) | pub fn create_vector<'a: 'b, 'b, T: Push + 'b>( function create_vector_from_iter (line 564) | pub fn create_vector_from_iter( function force_defaults (line 586) | pub fn force_defaults(&mut self, force_defaults: bool) { function unfinished_data (line 593) | pub fn unfinished_data(&self) -> &[u8] { function finished_data (line 601) | pub fn finished_data(&self) -> &[u8] { function mut_finished_buffer (line 610) | pub fn mut_finished_buffer(&mut self) -> (&mut [u8], usize) { function required (line 618) | pub fn required( function finish_size_prefixed (line 643) | pub fn finish_size_prefixed(&mut self, root: WIPOffset, file_ident... function finish (line 652) | pub fn finish(&mut self, root: WIPOffset, file_identifier: Option<... function finish_minimal (line 660) | pub fn finish_minimal(&mut self, root: WIPOffset) { function used_space (line 665) | fn used_space(&self) -> usize { function track_field (line 670) | fn track_field(&mut self, slot_off: VOffsetT, off: UOffsetT) { function write_vtable (line 676) | fn write_vtable( function grow_allocator (line 802) | fn grow_allocator(&mut self) { function finish_with_opts (line 812) | fn finish_with_opts( function align (line 854) | fn align(&mut self, len: usize, alignment: PushAlignment) { function track_min_align (line 861) | fn track_min_align(&mut self, alignment: usize) { function push_bytes_unprefixed (line 866) | fn push_bytes_unprefixed(&mut self, x: &[u8]) -> UOffsetT { function make_space (line 874) | fn make_space(&mut self, want: usize) -> ReverseIndex { function ensure_capacity (line 881) | fn ensure_capacity(&mut self, want: usize) -> usize { function unused_ready_space (line 893) | fn unused_ready_space(&self) -> usize { function assert_nested (line 897) | fn assert_nested(&self, fn_name: &'static str) { function assert_not_nested (line 907) | fn assert_not_nested(&self, msg: &'static str) { function assert_finished (line 911) | fn assert_finished(&self, msg: &'static str) { function assert_not_finished (line 915) | fn assert_not_finished(&self, msg: &'static str) { function get_vtable_byte_len (line 924) | fn get_vtable_byte_len(field_locs: &[FieldLoc]) -> usize { function padding_bytes (line 933) | fn padding_bytes(buf_size: usize, scalar_size: usize) -> usize { method default (line 939) | fn default() -> Self { type ReverseIndex (line 959) | struct ReverseIndex(usize); method end (line 965) | pub fn end() -> Self { method range_to_end (line 970) | pub fn range_to_end(self) -> ReverseIndexRange { method range_to (line 975) | pub fn range_to(self, end: ReverseIndex) -> ReverseIndexRange { method to_forward_index (line 980) | pub fn to_forward_index(self, buf: &[T]) -> usize { method distance_to_end (line 985) | pub fn distance_to_end(&self) -> usize { type Output (line 991) | type Output = Self; method sub (line 993) | fn sub(self, rhs: usize) -> Self::Output { method sub_assign (line 999) | fn sub_assign(&mut self, rhs: usize) { type Output (line 1005) | type Output = Self; method add (line 1007) | fn add(self, rhs: usize) -> Self::Output { method add_assign (line 1013) | fn add_assign(&mut self, rhs: usize) { type Output (line 1018) | type Output = T; function index (line 1020) | fn index(&self, index: ReverseIndex) -> &Self::Output { function index_mut (line 1027) | fn index_mut(&mut self, index: ReverseIndex) -> &mut Self::Output { type ReverseIndexRange (line 1034) | struct ReverseIndexRange(ReverseIndex, ReverseIndex); type Output (line 1037) | type Output = [T]; function index (line 1039) | fn index(&self, index: ReverseIndexRange) -> &Self::Output { function index_mut (line 1047) | fn index_mut(&mut self, index: ReverseIndexRange) -> &mut Self::Output { type CountingAllocator (line 1062) | struct CountingAllocator; method alloc (line 1065) | unsafe fn alloc(&self, layout: Layout) -> *mut u8 { method dealloc (line 1069) | unsafe fn dealloc(&self, ptr: *mut u8, layout: Layout) { function reset_alloc_count (line 1077) | fn reset_alloc_count() { function alloc_count (line 1081) | fn alloc_count() -> usize { function reverse_index_test (line 1086) | fn reverse_index_test() { function with_internal_capacity_preallocates_vecs (line 1095) | fn with_internal_capacity_preallocates_vecs() { FILE: rust/flatbuffers/src/endian_scalar.rs type TriviallyTransmutable (line 26) | pub trait TriviallyTransmutable {} type EndianScalar (line 48) | pub trait EndianScalar: Sized + PartialEq + Copy + Clone { method to_little_endian (line 51) | fn to_little_endian(self) -> Self::Scalar; method from_little_endian (line 53) | fn from_little_endian(v: Self::Scalar) -> Self; type Scalar (line 87) | type Scalar = u8; method to_little_endian (line 89) | fn to_little_endian(self) -> Self::Scalar { method from_little_endian (line 93) | fn from_little_endian(v: Self::Scalar) -> Self { type Scalar (line 99) | type Scalar = u32; method to_little_endian (line 102) | fn to_little_endian(self) -> u32 { method from_little_endian (line 109) | fn from_little_endian(v: u32) -> Self { type Scalar (line 117) | type Scalar = u64; method to_little_endian (line 121) | fn to_little_endian(self) -> u64 { method from_little_endian (line 128) | fn from_little_endian(v: u64) -> Self { function emplace_scalar (line 140) | pub unsafe fn emplace_scalar(s: &mut [u8], x: T) { function read_scalar_at (line 162) | pub unsafe fn read_scalar_at(s: &[u8], loc: usize) -> T { function read_scalar (line 171) | pub unsafe fn read_scalar(s: &[u8]) -> T { FILE: rust/flatbuffers/src/follow.rs type Follow (line 30) | pub trait Follow<'buf> { method follow (line 36) | unsafe fn follow(buf: &'buf [u8], loc: usize) -> Self::Inner; type FollowStart (line 42) | pub struct FollowStart(PhantomData); function new (line 45) | pub fn new() -> Self { function self_follow (line 53) | pub unsafe fn self_follow(&'a self, buf: &'a [u8], loc: usize) -> T::Inn... type Inner (line 58) | type Inner = T::Inner; function follow (line 60) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { FILE: rust/flatbuffers/src/get_root.rs function root (line 26) | pub fn root<'buf, T>(data: &'buf [u8]) -> Result( function size_prefixed_root (line 58) | pub fn size_prefixed_root<'buf, T>(data: &'buf [u8]) -> Result( function root_unchecked (line 92) | pub unsafe fn root_unchecked<'buf, T>(data: &'buf [u8]) -> T::Inner function size_prefixed_root_unchecked (line 106) | pub unsafe fn size_prefixed_root_unchecked<'buf, T>(data: &'buf [u8]) ->... FILE: rust/flatbuffers/src/primitives.rs constant FLATBUFFERS_MAX_BUFFER_SIZE (line 25) | pub const FLATBUFFERS_MAX_BUFFER_SIZE: usize = (1u64 << 31) as usize; constant FILE_IDENTIFIER_LENGTH (line 27) | pub const FILE_IDENTIFIER_LENGTH: usize = 4; constant VTABLE_METADATA_FIELDS (line 29) | pub const VTABLE_METADATA_FIELDS: usize = 2; constant SIZE_U8 (line 31) | pub const SIZE_U8: usize = size_of::(); constant SIZE_I8 (line 32) | pub const SIZE_I8: usize = size_of::(); constant SIZE_U16 (line 34) | pub const SIZE_U16: usize = size_of::(); constant SIZE_I16 (line 35) | pub const SIZE_I16: usize = size_of::(); constant SIZE_U32 (line 37) | pub const SIZE_U32: usize = size_of::(); constant SIZE_I32 (line 38) | pub const SIZE_I32: usize = size_of::(); constant SIZE_U64 (line 40) | pub const SIZE_U64: usize = size_of::(); constant SIZE_I64 (line 41) | pub const SIZE_I64: usize = size_of::(); constant SIZE_F32 (line 43) | pub const SIZE_F32: usize = size_of::(); constant SIZE_F64 (line 44) | pub const SIZE_F64: usize = size_of::(); constant SIZE_SOFFSET (line 46) | pub const SIZE_SOFFSET: usize = SIZE_I32; constant SIZE_UOFFSET (line 47) | pub const SIZE_UOFFSET: usize = SIZE_U32; constant SIZE_VOFFSET (line 48) | pub const SIZE_VOFFSET: usize = SIZE_I16; constant SIZE_SIZEPREFIX (line 50) | pub const SIZE_SIZEPREFIX: usize = SIZE_UOFFSET; type SOffsetT (line 53) | pub type SOffsetT = i32; type UOffsetT (line 56) | pub type UOffsetT = u32; type VOffsetT (line 59) | pub type VOffsetT = u16; type TableFinishedWIPOffset (line 63) | pub struct TableFinishedWIPOffset {} type TableUnfinishedWIPOffset (line 67) | pub struct TableUnfinishedWIPOffset {} type UnionWIPOffset (line 71) | pub struct UnionWIPOffset {} type VTableWIPOffset (line 75) | pub struct VTableWIPOffset {} type WIPOffset (line 82) | pub struct WIPOffset(UOffsetT, PhantomData); method clone (line 91) | fn clone(&self) -> Self { method eq (line 99) | fn eq(&self, o: &WIPOffset) -> bool { type Target (line 105) | type Target = UOffsetT; method deref (line 107) | fn deref(&self) -> &UOffsetT { function new (line 114) | pub fn new(o: UOffsetT) -> WIPOffset { function as_union_value (line 121) | pub fn as_union_value(self) -> WIPOffset { function value (line 126) | pub fn value(self) -> UOffsetT { type Output (line 132) | type Output = ForwardsUOffset; method push (line 135) | unsafe fn push(&self, dst: &mut [u8], written_len: usize) { type Output (line 142) | type Output = Self; method push (line 145) | unsafe fn push(&self, dst: &mut [u8], written_len: usize) { type ForwardsUOffset (line 153) | pub struct ForwardsUOffset(UOffsetT, PhantomData); method clone (line 162) | fn clone(&self) -> Self { function value (line 169) | pub fn value(self) -> UOffsetT { type Inner (line 175) | type Inner = T::Inner; function follow (line 177) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type ForwardsVOffset (line 187) | pub struct ForwardsVOffset(VOffsetT, PhantomData); function value (line 190) | pub fn value(&self) -> VOffsetT { type Inner (line 196) | type Inner = T::Inner; function follow (line 198) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 206) | type Output = Self; method push (line 209) | unsafe fn push(&self, dst: &mut [u8], written_len: usize) { type BackwardsSOffset (line 217) | pub struct BackwardsSOffset(SOffsetT, PhantomData); function value (line 220) | pub fn value(&self) -> SOffsetT { type Inner (line 226) | type Inner = T::Inner; function follow (line 228) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 236) | type Output = Self; method push (line 239) | unsafe fn push(&self, dst: &mut [u8], written_len: usize) { type SkipSizePrefix (line 246) | pub struct SkipSizePrefix(PhantomData); type Inner (line 248) | type Inner = T::Inner; function follow (line 250) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type SkipRootOffset (line 257) | pub struct SkipRootOffset(PhantomData); type Inner (line 259) | type Inner = T::Inner; function follow (line 261) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type FileIdentifier (line 268) | pub struct FileIdentifier; type Inner (line 270) | type Inner = &'a [u8]; method follow (line 272) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type SkipFileIdentifier (line 280) | pub struct SkipFileIdentifier(PhantomData); type Inner (line 282) | type Inner = T::Inner; function follow (line 284) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Inner (line 290) | type Inner = bool; function follow (line 292) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { FILE: rust/flatbuffers/src/push.rs type Push (line 25) | pub trait Push: Sized { method push (line 31) | unsafe fn push(&self, dst: &mut [u8], written_len: usize); method size (line 33) | fn size() -> usize { method alignment (line 37) | fn alignment() -> PushAlignment { type Output (line 43) | type Output = T::Output; method push (line 45) | unsafe fn push(&self, dst: &mut [u8], written_len: usize) { method size (line 49) | fn size() -> usize { method alignment (line 53) | fn alignment() -> PushAlignment { type PushAlignment (line 60) | pub struct PushAlignment(usize); method new (line 63) | pub fn new(x: usize) -> Self { method value (line 67) | pub fn value(&self) -> usize { method max_of (line 71) | pub fn max_of(&self, o: usize) -> Self { FILE: rust/flatbuffers/src/table.rs type Table (line 22) | pub struct Table<'a> { function buf (line 29) | pub fn buf(&self) -> &'a [u8] { function loc (line 34) | pub fn loc(&self) -> usize { function new (line 42) | pub unsafe fn new(buf: &'a [u8], loc: usize) -> Self { function vtable (line 47) | pub fn vtable(&self) -> VTable<'a> { function get (line 60) | pub unsafe fn get + 'a>( type Inner (line 74) | type Inner = Table<'a>; function follow (line 76) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { function buffer_has_identifier (line 83) | pub fn buffer_has_identifier(data: &[u8], ident: &str, size_prefixed: bo... FILE: rust/flatbuffers/src/vector.rs type Vector (line 30) | pub struct Vector<'a, T: 'a>(&'a [u8], usize, PhantomData); method default (line 33) | fn default() -> Self { method fmt (line 45) | fn fmt(&self, f: &mut Formatter) -> Result { method clone (line 56) | fn clone(&self) -> Self { function new (line 69) | pub unsafe fn new(buf: &'a [u8], loc: usize) -> Self { function len (line 74) | pub fn len(&self) -> usize { function is_empty (line 81) | pub fn is_empty(&self) -> bool { function bytes (line 86) | pub fn bytes(&self) -> &'a [u8] { function get (line 95) | pub fn get(&self, idx: usize) -> T::Inner { function lookup_by_key (line 105) | pub fn lookup_by_key( function lookup_index_by_key (line 119) | pub fn lookup_index_by_key( function iter (line 150) | pub fn iter(&self) -> VectorIter<'a, T> { function follow_cast_ref (line 158) | pub unsafe fn follow_cast_ref<'a, T: Sized + 'a>(buf: &'a [u8], loc: usi... type Inner (line 169) | type Inner = &'a str; function follow (line 170) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Inner (line 178) | type Inner = &'a [u8]; function follow (line 179) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Inner (line 187) | type Inner = Vector<'a, T>; function follow (line 188) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type VectorIter (line 195) | pub struct VectorIter<'a, T: 'a> { function from_vector (line 204) | pub fn from_vector(inner: Vector<'a, T>) -> Self { function from_slice (line 223) | pub unsafe fn from_slice(buf: &'a [u8], items_num: usize) -> Self { method clone (line 230) | fn clone(&self) -> Self { type Item (line 241) | type Item = T::Inner; method next (line 244) | fn next(&mut self) -> Option { method nth (line 262) | fn nth(&mut self, n: usize) -> Option { method size_hint (line 276) | fn size_hint(&self) -> (usize, Option) { method next_back (line 283) | fn next_back(&mut self) -> Option { method nth_back (line 299) | fn nth_back(&mut self, n: usize) -> Option { method len (line 307) | fn len(&self) -> usize { type Item (line 318) | type Item = T::Inner; type IntoIter (line 319) | type IntoIter = VectorIter<'a, T>; method into_iter (line 321) | fn into_iter(self) -> Self::IntoIter { type Item (line 327) | type Item = T::Inner; type IntoIter (line 328) | type IntoIter = VectorIter<'a, T>; method into_iter (line 329) | fn into_iter(self) -> Self::IntoIter { function serialize (line 340) | fn serialize(&self, serializer: S) -> std::result::Result); method as_ref (line 33) | fn as_ref(&self) -> &[ErrorTraceDetail] { method fmt (line 150) | fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result { type InvalidFlatbuffer (line 41) | pub enum InvalidFlatbuffer { method fmt (line 92) | fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result { method new_range_oob (line 184) | fn new_range_oob(start: usize, end: usize) -> Result { method new_inconsistent_union (line 187) | pub fn new_inconsistent_union( method new_missing_required (line 197) | pub fn new_missing_required(required: impl Into>)... method source (line 82) | fn source(&self) -> Option<&(dyn Error + 'static)> { type Result (line 181) | pub type Result = core::result::Result; function append_trace (line 206) | fn append_trace(mut res: Result, d: ErrorTraceDetail) -> Result { function trace_field (line 224) | fn trace_field(res: Result, field_name: Cow<'static, str>, positio... function trace_elem (line 229) | fn trace_elem(res: Result, index: usize, position: usize) -> Resul... type VerifierOptions (line 234) | pub struct VerifierOptions { method default (line 251) | fn default() -> Self { type Verifier (line 264) | pub struct Verifier<'opts, 'buf> { function new (line 273) | pub fn new(opts: &'opts VerifierOptions, buffer: &'buf [u8]) -> Self { function reset (line 278) | pub fn reset(&mut self) { function is_aligned (line 294) | pub fn is_aligned(&self, pos: usize) -> Result<()> { function range_in_buffer (line 306) | pub fn range_in_buffer(&mut self, pos: usize, size: usize) -> Result<()> { function in_buffer (line 319) | pub fn in_buffer(&mut self, pos: usize) -> Result<()> { function get_u8 (line 324) | pub fn get_u8(&mut self, pos: usize) -> Result { function get_u16 (line 329) | fn get_u16(&mut self, pos: usize) -> Result { function get_uoffset (line 334) | pub fn get_uoffset(&mut self, pos: usize) -> Result { function deref_soffset (line 344) | fn deref_soffset(&mut self, pos: usize) -> Result { function visit_table (line 371) | pub fn visit_table<'ver>( function verify_union_variant (line 393) | pub fn verify_union_variant( type TableVerifier (line 405) | pub struct TableVerifier<'ver, 'opts, 'buf> { function deref (line 417) | pub fn deref(&mut self, field: VOffsetT) -> Result> { function verifier (line 431) | pub fn verifier(&mut self) -> &mut Verifier<'opts, 'buf> { function visit_field (line 436) | pub fn visit_field( function visit_union (line 456) | pub fn visit_union( function finish (line 500) | pub fn finish(self) -> &'ver mut Verifier<'opts, 'buf> { type Verifiable (line 508) | pub trait Verifiable { method run_verifier (line 511) | fn run_verifier(v: &mut Verifier, pos: usize) -> Result<()>; method run_verifier (line 517) | fn run_verifier(v: &mut Verifier, pos: usize) -> Result<()> { method run_verifier (line 560) | fn run_verifier(v: &mut Verifier, pos: usize) -> Result<()> { method run_verifier (line 568) | fn run_verifier(v: &mut Verifier, pos: usize) -> Result<()> { method run_verifier (line 575) | fn run_verifier(v: &mut Verifier, pos: usize) -> Result<()> { method run_verifier (line 587) | fn run_verifier(v: &mut Verifier, pos: usize) -> Result<()> { function verify_vector_range (line 525) | fn verify_vector_range(v: &mut Verifier, pos: usize) -> Result { method eq (line 30) | fn eq(&self, other: &VTable) -> bool { function init (line 43) | pub unsafe fn init(buf: &'a [u8], loc: usize) -> Self { function num_fields (line 47) | pub fn num_fields(&self) -> usize { function num_bytes (line 51) | pub fn num_bytes(&self) -> usize { function object_inline_num_bytes (line 57) | pub fn object_inline_num_bytes(&self) -> usize { function get_field (line 64) | pub fn get_field(&self, idx: usize) -> VOffsetT { function get (line 80) | pub fn get(&self, byte_loc: VOffsetT) -> VOffsetT { function as_bytes (line 90) | pub fn as_bytes(&self) -> &[u8] { function field_index_to_field_offset (line 97) | pub fn field_index_to_field_offset(field_id: VOffsetT) -> VOffsetT { function field_offset_to_field_index (line 104) | pub fn field_offset_to_field_index(field_o: VOffsetT) -> VOffsetT { type Inner (line 111) | type Inner = VTable<'a>; function follow (line 112) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { FILE: rust/flatbuffers/src/vtable_writer.rs type VTableWriter (line 24) | pub struct VTableWriter<'a> { function init (line 30) | pub fn init(buf: &'a mut [u8]) -> Self { function write_vtable_byte_length (line 42) | pub fn write_vtable_byte_length(&mut self, n: VOffsetT) { function write_object_inline_size (line 54) | pub fn write_object_inline_size(&mut self, n: VOffsetT) { function write_field_offset (line 68) | pub fn write_field_offset(&mut self, vtable_offset: VOffsetT, object_dat... function clear (line 81) | pub fn clear(&mut self) { FILE: rust/flexbuffers/src/bitwidth.rs type BitWidth (line 35) | pub enum BitWidth { method iter (line 42) | pub(crate) fn iter() -> Iter<'static, Self> { method n_bytes (line 45) | pub fn n_bytes(self) -> usize { method from_nbytes (line 48) | pub fn from_nbytes(n: impl std::convert::Into) -> Option { method from (line 91) | fn from(x: f64) -> BitWidth { method from (line 100) | fn from(_: f32) -> BitWidth { method default (line 60) | fn default() -> Self { function align (line 106) | pub fn align(buffer: &mut Vec, width: BitWidth) { FILE: rust/flexbuffers/src/buffer.rs type Buffer (line 6) | pub trait Buffer: Deref + Sized { method slice (line 29) | fn slice(&self, range: Range) -> Option; method shallow_copy (line 35) | fn shallow_copy(&self) -> Self { method empty (line 43) | fn empty() -> Self; method empty_str (line 47) | fn empty_str() -> Self::BufferString { method buffer_str (line 54) | fn buffer_str(&self) -> Result; type BufferString (line 58) | type BufferString = &'de str; method slice (line 61) | fn slice(&self, range: Range) -> Option { method empty (line 66) | fn empty() -> Self { method empty_str (line 72) | fn empty_str() -> Self::BufferString { method buffer_str (line 77) | fn buffer_str(&self) -> Result { FILE: rust/flexbuffers/src/builder/map.rs type MapBuilder (line 27) | pub struct MapBuilder<'a> { function push (line 37) | pub fn push(&mut self, key: &str, p: P) { function start_vector (line 46) | pub fn start_vector(&mut self, key: &str) -> VectorBuilder<'_> { function start_map (line 58) | pub fn start_map(&mut self, key: &str) -> MapBuilder<'_> { function end_map (line 68) | pub fn end_map(self) {} method drop (line 72) | fn drop(&mut self) { function get_key (line 78) | pub(super) fn get_key(buffer: &[u8], address: usize) -> impl Iterator Self { type CachedKey (line 102) | struct CachedKey(usize); type Builder (line 120) | pub struct Builder { method new (line 133) | pub fn new(opts: BuilderOptions) -> Self { method view (line 139) | pub fn view(&self) -> &[u8] { method take_buffer (line 144) | pub fn take_buffer(&mut self) -> Vec { method reset (line 150) | pub fn reset(&mut self) { method push_key (line 157) | fn push_key(&mut self, key: &str) { method push_uint (line 183) | fn push_uint>(&mut self, x: T) { method push_int (line 186) | fn push_int>(&mut self, x: T) { method push_float (line 189) | fn push_float>(&mut self, x: T) { method push_null (line 192) | fn push_null(&mut self) { method push_bool (line 195) | fn push_bool(&mut self, x: bool) { method store_blob (line 198) | fn store_blob(&mut self, xs: &[u8]) -> Value { method push_str (line 207) | fn push_str(&mut self, x: &str) { method push_blob (line 213) | fn push_blob(&mut self, x: &[u8]) { method push_bools (line 217) | fn push_bools(&mut self, xs: &[bool]) { method start_vector (line 243) | pub fn start_vector(&'a mut self) -> VectorBuilder<'a> { method start_map (line 248) | pub fn start_map(&'a mut self) -> MapBuilder<'a> { method build_singleton (line 253) | pub fn build_singleton(&mut self, p: P) { method push (line 259) | fn push(&mut self, p: P) { method end_map_or_vector (line 265) | fn end_map_or_vector(&mut self, is_map: bool, previous_end: Option Self { function singleton (line 285) | pub fn singleton(p: P) -> Vec { function store_root (line 294) | fn store_root(buffer: &mut Vec, root: Value) { type StoreOption (line 302) | pub enum StoreOption { function store_vector (line 310) | pub fn store_vector(buffer: &mut Vec, values: &[Value], opt: StoreOp... FILE: rust/flexbuffers/src/builder/push.rs type Pushable (line 38) | pub trait Pushable: Sealed + Sized { method push_to_builder (line 39) | fn push_to_builder(self, _: &mut Builder) {} method push_to_builder (line 43) | fn push_to_builder(self, builder: &mut Builder) { method push_to_builder (line 49) | fn push_to_builder(self, builder: &mut Builder) { FILE: rust/flexbuffers/src/builder/ser.rs type FlexbufferSerializer (line 25) | pub struct FlexbufferSerializer { method new (line 30) | pub fn new() -> Self { method view (line 33) | pub fn view(&self) -> &[u8] { method take_buffer (line 36) | pub fn take_buffer(&mut self) -> Vec { method reset (line 39) | pub fn reset(&mut self) { method finish_if_not_nested (line 43) | fn finish_if_not_nested(&mut self) -> Result<(), Error> { method start_vector (line 51) | fn start_vector(&mut self) { method start_map (line 56) | fn start_map(&mut self) { method end_vector (line 61) | fn end_vector(&mut self) -> Result<(), Error> { method end_map (line 66) | fn end_map(&mut self) -> Result<(), Error> { type Error (line 75) | pub enum Error { method fmt (line 82) | fn fmt(&self, f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Err... method custom (line 88) | fn custom(msg: T) -> Self type Ok (line 96) | type Ok = (); type Error (line 97) | type Error = Error; method fmt (line 82) | fn fmt(&self, f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Err... method custom (line 88) | fn custom(msg: T) -> Self function serialize_element (line 98) | fn serialize_element(&mut self, value: &T) -> Result<(), Self... function end (line 104) | fn end(self) -> Result { type Ok (line 111) | type Ok = (); type Error (line 112) | type Error = Error; method fmt (line 82) | fn fmt(&self, f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Err... method custom (line 88) | fn custom(msg: T) -> Self function serialize_key (line 113) | fn serialize_key(&mut self, key: &T) -> Result<(), Self::Error> function serialize_value (line 119) | fn serialize_value(&mut self, value: &T) -> Result<(), Self::... function end (line 125) | fn end(self) -> Result { type Ok (line 130) | type Ok = (); type Error (line 131) | type Error = Error; method fmt (line 82) | fn fmt(&self, f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Err... method custom (line 88) | fn custom(msg: T) -> Self function serialize_element (line 132) | fn serialize_element(&mut self, value: &T) -> Result<(), Self... function end (line 138) | fn end(self) -> Result { type Ok (line 143) | type Ok = (); type Error (line 144) | type Error = Error; method fmt (line 82) | fn fmt(&self, f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Err... method custom (line 88) | fn custom(msg: T) -> Self function serialize_field (line 145) | fn serialize_field(&mut self, value: &T) -> Result<(), Self::... function end (line 151) | fn end(self) -> Result { type Ok (line 156) | type Ok = (); type Error (line 157) | type Error = Error; method fmt (line 82) | fn fmt(&self, f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Err... method custom (line 88) | fn custom(msg: T) -> Self function serialize_field (line 158) | fn serialize_field( function end (line 169) | fn end(self) -> Result { type Ok (line 174) | type Ok = (); type Error (line 175) | type Error = Error; method fmt (line 82) | fn fmt(&self, f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Err... method custom (line 88) | fn custom(msg: T) -> Self function serialize_field (line 176) | fn serialize_field(&mut self, value: &T) -> Result<(), Self::... function end (line 182) | fn end(self) -> Result { type Ok (line 188) | type Ok = (); type Error (line 189) | type Error = Error; method fmt (line 82) | fn fmt(&self, f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Err... method custom (line 88) | fn custom(msg: T) -> Self function serialize_field (line 190) | fn serialize_field( function end (line 201) | fn end(self) -> Result { type SerializeSeq (line 209) | type SerializeSeq = &'a mut FlexbufferSerializer; type SerializeTuple (line 210) | type SerializeTuple = &'a mut FlexbufferSerializer; type SerializeTupleStruct (line 211) | type SerializeTupleStruct = &'a mut FlexbufferSerializer; type SerializeTupleVariant (line 212) | type SerializeTupleVariant = &'a mut FlexbufferSerializer; type SerializeMap (line 213) | type SerializeMap = &'a mut FlexbufferSerializer; type SerializeStruct (line 214) | type SerializeStruct = &'a mut FlexbufferSerializer; type SerializeStructVariant (line 215) | type SerializeStructVariant = &'a mut FlexbufferSerializer; type Ok (line 216) | type Ok = (); type Error (line 217) | type Error = Error; method fmt (line 82) | fn fmt(&self, f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Err... method custom (line 88) | fn custom(msg: T) -> Self function is_human_readable (line 218) | fn is_human_readable(&self) -> bool { function serialize_bool (line 221) | fn serialize_bool(self, v: bool) -> Result { function serialize_i8 (line 225) | fn serialize_i8(self, v: i8) -> Result { function serialize_i16 (line 229) | fn serialize_i16(self, v: i16) -> Result { function serialize_i32 (line 233) | fn serialize_i32(self, v: i32) -> Result { function serialize_i64 (line 237) | fn serialize_i64(self, v: i64) -> Result { function serialize_u8 (line 241) | fn serialize_u8(self, v: u8) -> Result { function serialize_u16 (line 245) | fn serialize_u16(self, v: u16) -> Result { function serialize_u32 (line 249) | fn serialize_u32(self, v: u32) -> Result { function serialize_u64 (line 253) | fn serialize_u64(self, v: u64) -> Result { function serialize_f32 (line 257) | fn serialize_f32(self, v: f32) -> Result { function serialize_f64 (line 261) | fn serialize_f64(self, v: f64) -> Result { function serialize_char (line 265) | fn serialize_char(self, v: char) -> Result { function serialize_str (line 269) | fn serialize_str(self, v: &str) -> Result { function serialize_bytes (line 273) | fn serialize_bytes(self, v: &[u8]) -> Result { function serialize_none (line 277) | fn serialize_none(self) -> Result { function serialize_some (line 281) | fn serialize_some(self, t: &T) -> Result function serialize_unit (line 287) | fn serialize_unit(self) -> Result { function serialize_unit_struct (line 291) | fn serialize_unit_struct(self, _name: &'static str) -> Result( function serialize_newtype_variant (line 314) | fn serialize_newtype_variant( function serialize_seq (line 329) | fn serialize_seq(self, _len: Option) -> Result Result) -> Result() -> Result { type MapKeySerializer (line 386) | struct MapKeySerializer<'a>(&'a mut FlexbufferSerializer); type Ok (line 388) | type Ok = (); type Error (line 389) | type Error = Error; method serialize_str (line 391) | fn serialize_str(self, value: &str) -> Result<(), Error> { method serialize_unit_variant (line 396) | fn serialize_unit_variant( method serialize_newtype_struct (line 406) | fn serialize_newtype_struct( type SerializeSeq (line 416) | type SerializeSeq = Impossible<(), Error>; type SerializeTuple (line 417) | type SerializeTuple = Impossible<(), Error>; type SerializeTupleStruct (line 418) | type SerializeTupleStruct = Impossible<(), Error>; type SerializeTupleVariant (line 419) | type SerializeTupleVariant = Impossible<(), Error>; type SerializeMap (line 420) | type SerializeMap = Impossible<(), Error>; type SerializeStruct (line 421) | type SerializeStruct = Impossible<(), Error>; type SerializeStructVariant (line 422) | type SerializeStructVariant = Impossible<(), Error>; method is_human_readable (line 424) | fn is_human_readable(&self) -> bool { method serialize_bool (line 427) | fn serialize_bool(self, _value: bool) -> Result<(), Error> { method serialize_i8 (line 430) | fn serialize_i8(self, _value: i8) -> Result<(), Error> { method serialize_i16 (line 433) | fn serialize_i16(self, _value: i16) -> Result<(), Error> { method serialize_i32 (line 436) | fn serialize_i32(self, _value: i32) -> Result<(), Error> { method serialize_i64 (line 439) | fn serialize_i64(self, _value: i64) -> Result<(), Error> { method serialize_u8 (line 442) | fn serialize_u8(self, _value: u8) -> Result<(), Error> { method serialize_u16 (line 445) | fn serialize_u16(self, _value: u16) -> Result<(), Error> { method serialize_u32 (line 448) | fn serialize_u32(self, _value: u32) -> Result<(), Error> { method serialize_u64 (line 451) | fn serialize_u64(self, _value: u64) -> Result<(), Error> { method serialize_f32 (line 454) | fn serialize_f32(self, _value: f32) -> Result<(), Error> { method serialize_f64 (line 457) | fn serialize_f64(self, _value: f64) -> Result<(), Error> { method serialize_char (line 460) | fn serialize_char(self, _value: char) -> Result<(), Error> { method serialize_bytes (line 463) | fn serialize_bytes(self, _value: &[u8]) -> Result<(), Error> { method serialize_unit (line 466) | fn serialize_unit(self) -> Result<(), Error> { method serialize_unit_struct (line 469) | fn serialize_unit_struct(self, _name: &'static str) -> Result<(), Error> { method serialize_newtype_variant (line 472) | fn serialize_newtype_variant( method serialize_none (line 484) | fn serialize_none(self) -> Result<(), Error> { method serialize_some (line 487) | fn serialize_some(self, _value: &T) -> Result<(), Error> method serialize_seq (line 493) | fn serialize_seq(self, _len: Option) -> Result Result) -> Result Self { method new_map (line 63) | pub fn new_map() -> Self { method fxb_type (line 69) | pub fn fxb_type(&self) -> FlexBufferType { method is_fixed_length_vector (line 80) | pub fn is_fixed_length_vector(&self) -> bool { method is_inline (line 83) | pub fn is_inline(&self) -> bool { method is_reference (line 86) | pub fn is_reference(&self) -> bool { method is_key (line 89) | pub fn is_key(&self) -> bool { method is_typed_vector_or_map (line 96) | pub fn is_typed_vector_or_map(&self) -> bool { method prefix_length (line 103) | pub fn prefix_length(&self) -> usize { method set_fxb_type_or_panic (line 114) | pub fn set_fxb_type_or_panic(&mut self, new_type: FlexBufferType) { method set_child_width_or_panic (line 121) | pub fn set_child_width_or_panic(&mut self, new_width: BitWidth) { method get_address (line 128) | pub fn get_address(&self) -> Option { method set_address_or_panic (line 135) | pub fn set_address_or_panic(&mut self, new_address: usize) { method width_or_child_width (line 145) | pub fn width_or_child_width(&self) -> BitWidth { method relative_address (line 154) | pub fn relative_address(self, written_at: usize) -> Option { method width_in_vector (line 166) | pub fn width_in_vector(self, vector_start: usize, idx: usize) -> BitWi... method packed_type (line 190) | pub fn packed_type(self, parent_width: BitWidth) -> u8 { function find_vector_type (line 200) | pub fn find_vector_type<'a, T>(mut values: T) -> Value function store_value (line 229) | pub fn store_value(buffer: &mut Vec, mut value: Value, width: BitWid... FILE: rust/flexbuffers/src/builder/vector.rs type VectorBuilder (line 25) | pub struct VectorBuilder<'a> { function push (line 34) | pub fn push(&mut self, p: P) { function start_vector (line 39) | pub fn start_vector(&mut self) -> VectorBuilder<'_> { function start_map (line 45) | pub fn start_map(&mut self) -> MapBuilder<'_> { function end_vector (line 52) | pub fn end_vector(self) {} method drop (line 56) | fn drop(&mut self) { FILE: rust/flexbuffers/src/flexbuffer_type.rs type FlexBufferType (line 40) | pub enum FlexBufferType { method is_inline (line 124) | pub fn is_inline(self) -> bool { method is_reference (line 131) | pub fn is_reference(self) -> bool { method is_vector (line 135) | pub fn is_vector(self) -> bool { method has_length_slot (line 141) | pub fn has_length_slot(self) -> bool { method is_fixed_length_vector (line 145) | pub fn is_fixed_length_vector(self) -> bool { method typed_vector_type (line 149) | pub fn typed_vector_type(self) -> Option { method fixed_length_vector_length (line 163) | pub fn fixed_length_vector_length(self) -> Option { method is_heterogenous (line 172) | pub fn is_heterogenous(self) -> bool { method to_direct (line 176) | pub fn to_direct(self) -> Option { method default (line 108) | fn default() -> Self { FILE: rust/flexbuffers/src/lib.rs type Sealed (line 61) | pub trait Sealed {} function to_vec (line 65) | pub fn to_vec(x: T) -> Result, SerializationError> { function from_slice (line 72) | pub fn from_slice<'de, T: Deserialize<'de>>(buf: &'de [u8]) -> Result, B: Buffer>( type Blob (line 89) | pub struct Blob(pub B); method clone (line 92) | fn clone(&self) -> Self { type IndirectUInt (line 102) | pub struct IndirectUInt(pub u64); type IndirectInt (line 109) | pub struct IndirectInt(pub i64); type IndirectFloat (line 116) | pub struct IndirectFloat(pub f64); FILE: rust/flexbuffers/src/reader/de.rs type DeserializationError (line 24) | pub enum DeserializationError { method fmt (line 31) | fn fmt(&self, f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Err... method custom (line 40) | fn custom(msg: T) -> Self method from (line 49) | fn from(e: super::Error) -> Self { type Error (line 55) | type Error = DeserializationError; function next_element_seed (line 57) | fn next_element_seed( function size_hint (line 71) | fn size_hint(&self) -> Option { type EnumReader (line 76) | struct EnumReader<'de> { type Error (line 82) | type Error = DeserializationError; type Variant (line 83) | type Variant = Reader<&'de [u8]>; function variant_seed (line 85) | fn variant_seed(self, seed: V) -> Result<(V::Value, Self::Variant), S... type MapAccessor (line 94) | struct MapAccessor<'de> { type Error (line 100) | type Error = DeserializationError; function next_key_seed (line 102) | fn next_key_seed(&mut self, seed: K) -> Result, Self... function next_value_seed (line 113) | fn next_value_seed(&mut self, seed: V) -> Result type Error (line 123) | type Error = DeserializationError; function unit_variant (line 125) | fn unit_variant(self) -> Result<(), Self::Error> { function newtype_variant_seed (line 129) | fn newtype_variant_seed(self, seed: T) -> Result function tuple_variant (line 138) | fn tuple_variant(self, _len: usize, visitor: V) -> Result( type Error (line 161) | type Error = DeserializationError; function is_human_readable (line 162) | fn is_human_readable(&self) -> bool { function deserialize_any (line 166) | fn deserialize_any(self, visitor: V) -> Result function deserialize_char (line 203) | fn deserialize_char(self, visitor: V) -> Result function deserialize_byte_buf (line 210) | fn deserialize_byte_buf(self, visitor: V) -> Result(self, visitor: V) -> Result function deserialize_newtype_struct (line 228) | fn deserialize_newtype_struct( function deserialize_enum (line 239) | fn deserialize_enum( FILE: rust/flexbuffers/src/reader/iter.rs type ReaderIterator (line 21) | pub struct ReaderIterator { function new (line 28) | pub(super) fn new(reader: VectorReader) -> Self { type Item (line 35) | type Item = Reader; method next (line 36) | fn next(&mut self) -> Option { method size_hint (line 45) | fn size_hint(&self) -> (usize, Option) { method next_back (line 52) | fn next_back(&mut self) -> Option { FILE: rust/flexbuffers/src/reader/map.rs type MapReader (line 26) | pub struct MapReader { method clone (line 36) | fn clone(&self) -> Self { method default (line 42) | fn default() -> Self { function fmt (line 56) | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { function len (line 70) | pub fn len(&self) -> usize { function is_empty (line 75) | pub fn is_empty(&self) -> bool { function lazy_strcmp (line 81) | fn lazy_strcmp(&self, key_addr: usize, key: &str) -> Ordering { function index_key (line 88) | pub fn index_key(&self, key: &str) -> Option { function index (line 105) | pub fn index(&self, i: I) -> Result, Erro... function idx (line 110) | pub fn idx(&self, i: I) -> Reader { function usize_index (line 114) | fn usize_index(&self, i: usize) -> Result, Error> { function key_index (line 128) | fn key_index(&self, k: &str) -> Result, Error> { function iter_values (line 134) | pub fn iter_values(&self) -> ReaderIterator { function iter_keys (line 147) | pub fn iter_keys( function keys_vector (line 154) | pub fn keys_vector(&self) -> VectorReader { type MapReaderIndexer (line 167) | pub trait MapReaderIndexer { method index_map_reader (line 168) | fn index_map_reader(self, r: &MapReader) -> Result(self, r: &MapReader) -> Result(self, r: &MapReader) -> Result Self { method fmt (line 79) | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { method source (line 96) | fn source(&self) -> Option<&(dyn std::error::Error + 'static)> { type ReadLE (line 105) | pub trait ReadLE: crate::private::Sealed + std::marker::Sized { constant VECTOR_TYPE (line 106) | const VECTOR_TYPE: FlexBufferType; constant WIDTH (line 107) | const WIDTH: BitWidth; type Reader (line 147) | pub struct Reader { method clone (line 155) | fn clone(&self) -> Self { method default (line 166) | fn default() -> Self { function fmt (line 178) | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { function safe_sub (line 196) | fn safe_sub(a: usize, b: usize) -> Result { function deref_offset (line 200) | fn deref_offset(buffer: &[u8], address: usize, width: BitWidth) -> Resul... function new (line 206) | fn new( function get_root (line 225) | pub fn get_root(buffer: B) -> Result { function buffer (line 241) | pub fn buffer(&self) -> B { function flexbuffer_type (line 246) | pub fn flexbuffer_type(&self) -> FlexBufferType { function bitwidth (line 251) | pub fn bitwidth(&self) -> BitWidth { function length (line 257) | pub fn length(&self) -> usize { function is_aligned (line 270) | pub fn is_aligned(&self) -> bool { function expect_type (line 277) | fn expect_type(&self, ty: FlexBufferType) -> Result<(), Error> { function expect_bw (line 284) | fn expect_bw(&self, bw: BitWidth) -> Result<(), Error> { function get_slice (line 300) | pub fn get_slice(&self) -> Result<&[T], Error> { function get_bool (line 324) | pub fn get_bool(&self) -> Result { function get_key_len (line 333) | fn get_key_len(&self) -> Result { function get_key (line 344) | pub fn get_key(&self) -> Result { function get_blob (line 352) | pub fn get_blob(&self) -> Result, Error> { function as_blob (line 361) | pub fn as_blob(&self) -> Blob { function get_str (line 367) | pub fn get_str(&self) -> Result { function get_map_info (line 373) | fn get_map_info(&self) -> Result<(usize, BitWidth), Error> { function get_map (line 387) | pub fn get_map(&self) -> Result, Error> { function get_u64 (line 403) | pub fn get_u64(&self) -> Result { function get_i64 (line 420) | pub fn get_i64(&self) -> Result { function get_f64 (line 437) | pub fn get_f64(&self) -> Result { function as_bool (line 449) | pub fn as_bool(&self) -> bool { function as_u64 (line 465) | pub fn as_u64(&self) -> u64 { function as_i64 (line 490) | pub fn as_i64(&self) -> i64 { function as_f64 (line 515) | pub fn as_f64(&self) -> f64 { function as_f32 (line 532) | pub fn as_f32(&self) -> f32 { function as_str (line 537) | pub fn as_str(&self) -> B::BufferString { function get_vector (line 545) | pub fn get_vector(&self) -> Result, Error> { function fmt (line 554) | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { function f32_from_le_bytes (line 593) | fn f32_from_le_bytes(bytes: [u8; 4]) -> f32 { function f64_from_le_bytes (line 598) | fn f64_from_le_bytes(bytes: [u8; 8]) -> f64 { function read_usize (line 603) | fn read_usize(buffer: &[u8], address: usize, width: BitWidth) -> usize { function unpack_type (line 625) | fn unpack_type(ty: u8) -> Result<(FlexBufferType, BitWidth), Error> { FILE: rust/flexbuffers/src/reader/serialize.rs function serialize (line 22) | fn serialize(&self, serializer: S) -> Result FILE: rust/flexbuffers/src/reader/vector.rs type VectorReader (line 24) | pub struct VectorReader { method clone (line 31) | fn clone(&self) -> Self { method default (line 37) | fn default() -> Self { function len (line 44) | pub fn len(&self) -> usize { function is_empty (line 48) | pub fn is_empty(&self) -> bool { function get_elem_type (line 51) | fn get_elem_type(&self, i: usize) -> Result<(FlexBufferType, BitWidth), ... function idx (line 64) | pub fn idx(&self, i: usize) -> Reader { function index (line 68) | pub fn index(&self, i: usize) -> Result, Error> { function iter (line 83) | pub fn iter(&self) -> ReaderIterator { FILE: rust/reflection/src/lib.rs type FlatbufferError (line 38) | pub enum FlatbufferError { type FlatbufferResult (line 63) | pub type FlatbufferResult = core::result::Result... function get_any_root (line 71) | pub unsafe fn get_any_root(data: &[u8]) -> Table { function get_field_integer (line 80) | pub unsafe fn get_field_integer Follow<'a, Inner = T> + PrimI... function get_field_float (line 100) | pub unsafe fn get_field_float Follow<'a, Inner = T> + Float>( function get_field_string (line 120) | pub unsafe fn get_field_string<'a>( function get_field_struct (line 139) | pub unsafe fn get_field_struct<'a>( function get_field_vector (line 160) | pub unsafe fn get_field_vector<'a, T: Follow<'a, Inner = T>>( function get_field_table (line 181) | pub unsafe fn get_field_table<'a>( function get_any_field_integer (line 201) | pub unsafe fn get_any_field_integer(table: &Table, field: &Field) -> Fla... function get_any_field_float (line 214) | pub unsafe fn get_any_field_float(table: &Table, field: &Field) -> Flatb... function get_any_field_string (line 227) | pub unsafe fn get_any_field_string(table: &Table, field: &Field, schema:... function get_field_struct_in_struct (line 246) | pub unsafe fn get_field_struct_in_struct<'a>( function get_any_field_integer_in_struct (line 267) | pub unsafe fn get_any_field_integer_in_struct(st: &Struct, field: &Field... function get_any_field_float_in_struct (line 278) | pub unsafe fn get_any_field_float_in_struct(st: &Struct, field: &Field) ... function get_any_field_string_in_struct (line 289) | pub unsafe fn get_any_field_string_in_struct( function set_any_field_integer (line 310) | pub unsafe fn set_any_field_integer( function set_any_field_float (line 335) | pub unsafe fn set_any_field_float( function set_any_field_string (line 360) | pub unsafe fn set_any_field_string( function set_field (line 385) | pub unsafe fn set_field( function set_string (line 428) | pub unsafe fn set_string( function get_type_size (line 530) | fn get_type_size(base_type: BaseType) -> usize { function get_field_loc (line 551) | unsafe fn get_field_loc(table: &Table, field: &Field) -> Option { function get_any_value_integer (line 565) | unsafe fn get_any_value_integer( function get_any_value_float (line 596) | unsafe fn get_any_value_float( function get_any_value_string (line 627) | unsafe fn get_any_value_string( function set_any_value_integer (line 683) | fn set_any_value_integer( function set_any_value_float (line 763) | fn set_any_value_float( function is_scalar (line 874) | fn is_scalar(base_type: BaseType) -> bool { function update_offset (line 883) | unsafe fn update_offset( function deref_uoffset (line 1054) | unsafe fn deref_uoffset(buf: &[u8], field_loc: usize) -> FlatbufferResul... function read_uoffset (line 1063) | unsafe fn read_uoffset(buf: &[u8], loc: usize) -> UOffsetT { FILE: rust/reflection/src/reflection_generated.rs constant ENUM_MIN_BASE_TYPE (line 24) | pub const ENUM_MIN_BASE_TYPE: i8 = 0; constant ENUM_MAX_BASE_TYPE (line 29) | pub const ENUM_MAX_BASE_TYPE: i8 = 19; constant ENUM_VALUES_BASE_TYPE (line 35) | pub const ENUM_VALUES_BASE_TYPE: [BaseType; 20] = [ type BaseType (line 60) | pub struct BaseType(pub i8); constant None (line 63) | pub const None: Self = Self(0); constant UType (line 64) | pub const UType: Self = Self(1); constant Bool (line 65) | pub const Bool: Self = Self(2); constant Byte (line 66) | pub const Byte: Self = Self(3); constant UByte (line 67) | pub const UByte: Self = Self(4); constant Short (line 68) | pub const Short: Self = Self(5); constant UShort (line 69) | pub const UShort: Self = Self(6); constant Int (line 70) | pub const Int: Self = Self(7); constant UInt (line 71) | pub const UInt: Self = Self(8); constant Long (line 72) | pub const Long: Self = Self(9); constant ULong (line 73) | pub const ULong: Self = Self(10); constant Float (line 74) | pub const Float: Self = Self(11); constant Double (line 75) | pub const Double: Self = Self(12); constant String (line 76) | pub const String: Self = Self(13); constant Vector (line 77) | pub const Vector: Self = Self(14); constant Obj (line 78) | pub const Obj: Self = Self(15); constant Union (line 79) | pub const Union: Self = Self(16); constant Array (line 80) | pub const Array: Self = Self(17); constant Vector64 (line 81) | pub const Vector64: Self = Self(18); constant MaxBaseType (line 82) | pub const MaxBaseType: Self = Self(19); constant ENUM_MIN (line 84) | pub const ENUM_MIN: i8 = 0; constant ENUM_MAX (line 85) | pub const ENUM_MAX: i8 = 19; constant ENUM_VALUES (line 86) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 109) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 136) | fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result { type Inner (line 145) | type Inner = Self; method follow (line 147) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 154) | type Output = BaseType; method push (line 156) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 162) | type Scalar = i8; method to_little_endian (line 164) | fn to_little_endian(self) -> i8 { method from_little_endian (line 169) | fn from_little_endian(v: i8) -> Self { method run_verifier (line 177) | fn run_verifier( type Inner (line 203) | type Inner = Self; method follow (line 205) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 212) | type Output = AdvancedFeatures; method push (line 214) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 220) | type Scalar = u64; method to_little_endian (line 222) | fn to_little_endian(self) -> u64 { method from_little_endian (line 227) | fn from_little_endian(v: u64) -> Self { method run_verifier (line 235) | fn run_verifier( type TypeOffset (line 245) | pub enum TypeOffset {} type Type (line 248) | pub struct Type<'a> { type Inner (line 253) | type Inner = Type<'a>; function follow (line 255) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_BASE_TYPE (line 261) | pub const VT_BASE_TYPE: flatbuffers::VOffsetT = 4; constant VT_ELEMENT (line 262) | pub const VT_ELEMENT: flatbuffers::VOffsetT = 6; constant VT_INDEX (line 263) | pub const VT_INDEX: flatbuffers::VOffsetT = 8; constant VT_FIXED_LENGTH (line 264) | pub const VT_FIXED_LENGTH: flatbuffers::VOffsetT = 10; constant VT_BASE_SIZE (line 265) | pub const VT_BASE_SIZE: flatbuffers::VOffsetT = 12; constant VT_ELEMENT_SIZE (line 266) | pub const VT_ELEMENT_SIZE: flatbuffers::VOffsetT = 14; function init_from_table (line 269) | pub unsafe fn init_from_table(table: flatbuffers::Table<'a>) -> Self { function create (line 273) | pub fn create< function base_type (line 293) | pub fn base_type(&self) -> BaseType { function element (line 300) | pub fn element(&self) -> BaseType { function index (line 307) | pub fn index(&self) -> i32 { function fixed_length (line 314) | pub fn fixed_length(&self) -> u16 { function base_size (line 322) | pub fn base_size(&self) -> u32 { function element_size (line 330) | pub fn element_size(&self) -> u32 { function run_verifier (line 340) | fn run_verifier( type TypeArgs (line 356) | pub struct TypeArgs { method default (line 366) | fn default() -> Self { type TypeBuilder (line 378) | pub struct TypeBuilder<'a: 'b, 'b, A: flatbuffers::Allocator + 'a> { function add_base_type (line 384) | pub fn add_base_type(&mut self, base_type: BaseType) { function add_element (line 388) | pub fn add_element(&mut self, element: BaseType) { function add_index (line 392) | pub fn add_index(&mut self, index: i32) { function add_fixed_length (line 396) | pub fn add_fixed_length(&mut self, fixed_length: u16) { function add_base_size (line 400) | pub fn add_base_size(&mut self, base_size: u32) { function add_element_size (line 404) | pub fn add_element_size(&mut self, element_size: u32) { function new (line 408) | pub fn new(_fbb: &'b mut flatbuffers::FlatBufferBuilder<'a, A>) -> TypeB... function finish (line 413) | pub fn finish(self) -> flatbuffers::WIPOffset> { function fmt (line 420) | fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { type KeyValueOffset (line 431) | pub enum KeyValueOffset {} type KeyValue (line 434) | pub struct KeyValue<'a> { type Inner (line 439) | type Inner = KeyValue<'a>; function follow (line 441) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_KEY (line 447) | pub const VT_KEY: flatbuffers::VOffsetT = 4; constant VT_VALUE (line 448) | pub const VT_VALUE: flatbuffers::VOffsetT = 6; function init_from_table (line 451) | pub unsafe fn init_from_table(table: flatbuffers::Table<'a>) -> Self { function create (line 455) | pub fn create< function key (line 475) | pub fn key(&self) -> &'a str { function key_compare_less_than (line 484) | pub fn key_compare_less_than(&self, o: &KeyValue) -> bool { function key_compare_with_value (line 489) | pub fn key_compare_with_value(&self, val: &str) -> ::core::cmp::Ordering { function value (line 494) | pub fn value(&self) -> Option<&'a str> { function run_verifier (line 504) | fn run_verifier( type KeyValueArgs (line 516) | pub struct KeyValueArgs<'a> { method default (line 522) | fn default() -> Self { type KeyValueBuilder (line 530) | pub struct KeyValueBuilder<'a: 'b, 'b, A: flatbuffers::Allocator + 'a> { function add_key (line 536) | pub fn add_key(&mut self, key: flatbuffers::WIPOffset<&'b str>) { function add_value (line 540) | pub fn add_value(&mut self, value: flatbuffers::WIPOffset<&'b str>) { function new (line 544) | pub fn new( function finish (line 551) | pub fn finish(self) -> flatbuffers::WIPOffset> { function fmt (line 559) | fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { type EnumValOffset (line 566) | pub enum EnumValOffset {} type EnumVal (line 569) | pub struct EnumVal<'a> { type Inner (line 574) | type Inner = EnumVal<'a>; function follow (line 576) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_NAME (line 582) | pub const VT_NAME: flatbuffers::VOffsetT = 4; constant VT_VALUE (line 583) | pub const VT_VALUE: flatbuffers::VOffsetT = 6; constant VT_UNION_TYPE (line 584) | pub const VT_UNION_TYPE: flatbuffers::VOffsetT = 10; constant VT_DOCUMENTATION (line 585) | pub const VT_DOCUMENTATION: flatbuffers::VOffsetT = 12; constant VT_ATTRIBUTES (line 586) | pub const VT_ATTRIBUTES: flatbuffers::VOffsetT = 14; function init_from_table (line 589) | pub unsafe fn init_from_table(table: flatbuffers::Table<'a>) -> Self { function create (line 593) | pub fn create< function name (line 620) | pub fn name(&self) -> &'a str { function value (line 629) | pub fn value(&self) -> i64 { function key_compare_less_than (line 636) | pub fn key_compare_less_than(&self, o: &EnumVal) -> bool { function key_compare_with_value (line 641) | pub fn key_compare_with_value(&self, val: i64) -> ::core::cmp::Ordering { function union_type (line 646) | pub fn union_type(&self) -> Option> { function documentation (line 655) | pub fn documentation( function attributes (line 668) | pub fn attributes( function run_verifier (line 684) | fn run_verifier( type EnumValArgs (line 707) | pub struct EnumValArgs<'a> { method default (line 722) | fn default() -> Self { type EnumValBuilder (line 733) | pub struct EnumValBuilder<'a: 'b, 'b, A: flatbuffers::Allocator + 'a> { function add_name (line 739) | pub fn add_name(&mut self, name: flatbuffers::WIPOffset<&'b str>) { function add_value (line 743) | pub fn add_value(&mut self, value: i64) { function add_union_type (line 747) | pub fn add_union_type(&mut self, union_type: flatbuffers::WIPOffset flatbuffers::WIPOffset> { function fmt (line 791) | fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { type EnumOffset (line 801) | pub enum EnumOffset {} type Enum (line 804) | pub struct Enum<'a> { type Inner (line 809) | type Inner = Enum<'a>; function follow (line 811) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_NAME (line 817) | pub const VT_NAME: flatbuffers::VOffsetT = 4; constant VT_VALUES (line 818) | pub const VT_VALUES: flatbuffers::VOffsetT = 6; constant VT_IS_UNION (line 819) | pub const VT_IS_UNION: flatbuffers::VOffsetT = 8; constant VT_UNDERLYING_TYPE (line 820) | pub const VT_UNDERLYING_TYPE: flatbuffers::VOffsetT = 10; constant VT_ATTRIBUTES (line 821) | pub const VT_ATTRIBUTES: flatbuffers::VOffsetT = 12; constant VT_DOCUMENTATION (line 822) | pub const VT_DOCUMENTATION: flatbuffers::VOffsetT = 14; constant VT_DECLARATION_FILE (line 823) | pub const VT_DECLARATION_FILE: flatbuffers::VOffsetT = 16; function init_from_table (line 826) | pub unsafe fn init_from_table(table: flatbuffers::Table<'a>) -> Self { function create (line 830) | pub fn create< function name (line 863) | pub fn name(&self) -> &'a str { function key_compare_less_than (line 872) | pub fn key_compare_less_than(&self, o: &Enum) -> bool { function key_compare_with_value (line 877) | pub fn key_compare_with_value(&self, val: &str) -> ::core::cmp::Ordering { function values (line 882) | pub fn values(&self) -> flatbuffers::Vector<'a, flatbuffers::ForwardsUOf... function is_union (line 895) | pub fn is_union(&self) -> bool { function underlying_type (line 902) | pub fn underlying_type(&self) -> Type<'a> { function attributes (line 913) | pub fn attributes( function documentation (line 926) | pub fn documentation( function declaration_file (line 940) | pub fn declaration_file(&self) -> Option<&'a str> { function run_verifier (line 952) | fn run_verifier( type EnumArgs (line 983) | pub struct EnumArgs<'a> { method default (line 1004) | fn default() -> Self { type EnumBuilder (line 1017) | pub struct EnumBuilder<'a: 'b, 'b, A: flatbuffers::Allocator + 'a> { function add_name (line 1023) | pub fn add_name(&mut self, name: flatbuffers::WIPOffset<&'b str>) { function add_values (line 1027) | pub fn add_values( function add_is_union (line 1036) | pub fn add_is_union(&mut self, is_union: bool) { function add_underlying_type (line 1040) | pub fn add_underlying_type(&mut self, underlying_type: flatbuffers::WIPO... function add_attributes (line 1047) | pub fn add_attributes( function add_documentation (line 1057) | pub fn add_documentation( function add_declaration_file (line 1069) | pub fn add_declaration_file(&mut self, declaration_file: flatbuffers::WI... function new (line 1076) | pub fn new(_fbb: &'b mut flatbuffers::FlatBufferBuilder<'a, A>) -> EnumB... function finish (line 1081) | pub fn finish(self) -> flatbuffers::WIPOffset> { function fmt (line 1091) | fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { type FieldOffset (line 1103) | pub enum FieldOffset {} type Field (line 1106) | pub struct Field<'a> { type Inner (line 1111) | type Inner = Field<'a>; function follow (line 1113) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_NAME (line 1119) | pub const VT_NAME: flatbuffers::VOffsetT = 4; constant VT_TYPE_ (line 1120) | pub const VT_TYPE_: flatbuffers::VOffsetT = 6; constant VT_ID (line 1121) | pub const VT_ID: flatbuffers::VOffsetT = 8; constant VT_OFFSET (line 1122) | pub const VT_OFFSET: flatbuffers::VOffsetT = 10; constant VT_DEFAULT_INTEGER (line 1123) | pub const VT_DEFAULT_INTEGER: flatbuffers::VOffsetT = 12; constant VT_DEFAULT_REAL (line 1124) | pub const VT_DEFAULT_REAL: flatbuffers::VOffsetT = 14; constant VT_DEPRECATED (line 1125) | pub const VT_DEPRECATED: flatbuffers::VOffsetT = 16; constant VT_REQUIRED (line 1126) | pub const VT_REQUIRED: flatbuffers::VOffsetT = 18; constant VT_KEY (line 1127) | pub const VT_KEY: flatbuffers::VOffsetT = 20; constant VT_ATTRIBUTES (line 1128) | pub const VT_ATTRIBUTES: flatbuffers::VOffsetT = 22; constant VT_DOCUMENTATION (line 1129) | pub const VT_DOCUMENTATION: flatbuffers::VOffsetT = 24; constant VT_OPTIONAL (line 1130) | pub const VT_OPTIONAL: flatbuffers::VOffsetT = 26; constant VT_PADDING (line 1131) | pub const VT_PADDING: flatbuffers::VOffsetT = 28; constant VT_OFFSET64 (line 1132) | pub const VT_OFFSET64: flatbuffers::VOffsetT = 30; function init_from_table (line 1135) | pub unsafe fn init_from_table(table: flatbuffers::Table<'a>) -> Self { function create (line 1139) | pub fn create< function name (line 1175) | pub fn name(&self) -> &'a str { function key_compare_less_than (line 1184) | pub fn key_compare_less_than(&self, o: &Field) -> bool { function key_compare_with_value (line 1189) | pub fn key_compare_with_value(&self, val: &str) -> ::core::cmp::Ordering { function type_ (line 1194) | pub fn type_(&self) -> Type<'a> { function id (line 1203) | pub fn id(&self) -> u16 { function offset (line 1210) | pub fn offset(&self) -> u16 { function default_integer (line 1217) | pub fn default_integer(&self) -> i64 { function default_real (line 1224) | pub fn default_real(&self) -> f64 { function deprecated (line 1231) | pub fn deprecated(&self) -> bool { function required (line 1238) | pub fn required(&self) -> bool { function key (line 1245) | pub fn key(&self) -> bool { function attributes (line 1252) | pub fn attributes( function documentation (line 1265) | pub fn documentation( function optional (line 1278) | pub fn optional(&self) -> bool { function padding (line 1286) | pub fn padding(&self) -> u16 { function offset64 (line 1294) | pub fn offset64(&self) -> bool { function run_verifier (line 1304) | fn run_verifier( type FieldArgs (line 1332) | pub struct FieldArgs<'a> { method default (line 1356) | fn default() -> Self { type FieldBuilder (line 1376) | pub struct FieldBuilder<'a: 'b, 'b, A: flatbuffers::Allocator + 'a> { function add_name (line 1382) | pub fn add_name(&mut self, name: flatbuffers::WIPOffset<&'b str>) { function add_type_ (line 1386) | pub fn add_type_(&mut self, type_: flatbuffers::WIPOffset>) { function add_id (line 1390) | pub fn add_id(&mut self, id: u16) { function add_offset (line 1394) | pub fn add_offset(&mut self, offset: u16) { function add_default_integer (line 1398) | pub fn add_default_integer(&mut self, default_integer: i64) { function add_default_real (line 1402) | pub fn add_default_real(&mut self, default_real: f64) { function add_deprecated (line 1406) | pub fn add_deprecated(&mut self, deprecated: bool) { function add_required (line 1410) | pub fn add_required(&mut self, required: bool) { function add_key (line 1414) | pub fn add_key(&mut self, key: bool) { function add_attributes (line 1418) | pub fn add_attributes( function add_documentation (line 1428) | pub fn add_documentation( function add_optional (line 1440) | pub fn add_optional(&mut self, optional: bool) { function add_padding (line 1444) | pub fn add_padding(&mut self, padding: u16) { function add_offset64 (line 1448) | pub fn add_offset64(&mut self, offset64: bool) { function new (line 1452) | pub fn new(_fbb: &'b mut flatbuffers::FlatBufferBuilder<'a, A>) -> Field... function finish (line 1457) | pub fn finish(self) -> flatbuffers::WIPOffset> { function fmt (line 1466) | fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { type ObjectOffset (line 1485) | pub enum ObjectOffset {} type Object (line 1488) | pub struct Object<'a> { type Inner (line 1493) | type Inner = Object<'a>; function follow (line 1495) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_NAME (line 1501) | pub const VT_NAME: flatbuffers::VOffsetT = 4; constant VT_FIELDS (line 1502) | pub const VT_FIELDS: flatbuffers::VOffsetT = 6; constant VT_IS_STRUCT (line 1503) | pub const VT_IS_STRUCT: flatbuffers::VOffsetT = 8; constant VT_MINALIGN (line 1504) | pub const VT_MINALIGN: flatbuffers::VOffsetT = 10; constant VT_BYTESIZE (line 1505) | pub const VT_BYTESIZE: flatbuffers::VOffsetT = 12; constant VT_ATTRIBUTES (line 1506) | pub const VT_ATTRIBUTES: flatbuffers::VOffsetT = 14; constant VT_DOCUMENTATION (line 1507) | pub const VT_DOCUMENTATION: flatbuffers::VOffsetT = 16; constant VT_DECLARATION_FILE (line 1508) | pub const VT_DECLARATION_FILE: flatbuffers::VOffsetT = 18; function init_from_table (line 1511) | pub unsafe fn init_from_table(table: flatbuffers::Table<'a>) -> Self { function create (line 1515) | pub fn create< function name (line 1547) | pub fn name(&self) -> &'a str { function key_compare_less_than (line 1556) | pub fn key_compare_less_than(&self, o: &Object) -> bool { function key_compare_with_value (line 1561) | pub fn key_compare_with_value(&self, val: &str) -> ::core::cmp::Ordering { function fields (line 1566) | pub fn fields(&self) -> flatbuffers::Vector<'a, flatbuffers::ForwardsUOf... function is_struct (line 1579) | pub fn is_struct(&self) -> bool { function minalign (line 1586) | pub fn minalign(&self) -> i32 { function bytesize (line 1593) | pub fn bytesize(&self) -> i32 { function attributes (line 1600) | pub fn attributes( function documentation (line 1613) | pub fn documentation( function declaration_file (line 1627) | pub fn declaration_file(&self) -> Option<&'a str> { function run_verifier (line 1640) | fn run_verifier( type ObjectArgs (line 1668) | pub struct ObjectArgs<'a> { method default (line 1690) | fn default() -> Self { type ObjectBuilder (line 1704) | pub struct ObjectBuilder<'a: 'b, 'b, A: flatbuffers::Allocator + 'a> { function add_name (line 1710) | pub fn add_name(&mut self, name: flatbuffers::WIPOffset<&'b str>) { function add_fields (line 1714) | pub fn add_fields( function add_is_struct (line 1723) | pub fn add_is_struct(&mut self, is_struct: bool) { function add_minalign (line 1727) | pub fn add_minalign(&mut self, minalign: i32) { function add_bytesize (line 1731) | pub fn add_bytesize(&mut self, bytesize: i32) { function add_attributes (line 1735) | pub fn add_attributes( function add_documentation (line 1745) | pub fn add_documentation( function add_declaration_file (line 1757) | pub fn add_declaration_file(&mut self, declaration_file: flatbuffers::WI... function new (line 1764) | pub fn new( function finish (line 1771) | pub fn finish(self) -> flatbuffers::WIPOffset> { function fmt (line 1780) | fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { type RPCCallOffset (line 1793) | pub enum RPCCallOffset {} type RPCCall (line 1796) | pub struct RPCCall<'a> { type Inner (line 1801) | type Inner = RPCCall<'a>; function follow (line 1803) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_NAME (line 1809) | pub const VT_NAME: flatbuffers::VOffsetT = 4; constant VT_REQUEST (line 1810) | pub const VT_REQUEST: flatbuffers::VOffsetT = 6; constant VT_RESPONSE (line 1811) | pub const VT_RESPONSE: flatbuffers::VOffsetT = 8; constant VT_ATTRIBUTES (line 1812) | pub const VT_ATTRIBUTES: flatbuffers::VOffsetT = 10; constant VT_DOCUMENTATION (line 1813) | pub const VT_DOCUMENTATION: flatbuffers::VOffsetT = 12; function init_from_table (line 1816) | pub unsafe fn init_from_table(table: flatbuffers::Table<'a>) -> Self { function create (line 1820) | pub fn create< function name (line 1849) | pub fn name(&self) -> &'a str { function key_compare_less_than (line 1858) | pub fn key_compare_less_than(&self, o: &RPCCall) -> bool { function key_compare_with_value (line 1863) | pub fn key_compare_with_value(&self, val: &str) -> ::core::cmp::Ordering { function request (line 1868) | pub fn request(&self) -> Object<'a> { function response (line 1879) | pub fn response(&self) -> Object<'a> { function attributes (line 1890) | pub fn attributes( function documentation (line 1903) | pub fn documentation( function run_verifier (line 1919) | fn run_verifier( type RPCCallArgs (line 1946) | pub struct RPCCallArgs<'a> { method default (line 1961) | fn default() -> Self { type RPCCallBuilder (line 1972) | pub struct RPCCallBuilder<'a: 'b, 'b, A: flatbuffers::Allocator + 'a> { function add_name (line 1978) | pub fn add_name(&mut self, name: flatbuffers::WIPOffset<&'b str>) { function add_request (line 1982) | pub fn add_request(&mut self, request: flatbuffers::WIPOffset... function add_response (line 1987) | pub fn add_response(&mut self, response: flatbuffers::WIPOffset flatbuffers::WIPOffset> { function fmt (line 2031) | fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { type ServiceOffset (line 2041) | pub enum ServiceOffset {} type Service (line 2044) | pub struct Service<'a> { type Inner (line 2049) | type Inner = Service<'a>; function follow (line 2051) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_NAME (line 2057) | pub const VT_NAME: flatbuffers::VOffsetT = 4; constant VT_CALLS (line 2058) | pub const VT_CALLS: flatbuffers::VOffsetT = 6; constant VT_ATTRIBUTES (line 2059) | pub const VT_ATTRIBUTES: flatbuffers::VOffsetT = 8; constant VT_DOCUMENTATION (line 2060) | pub const VT_DOCUMENTATION: flatbuffers::VOffsetT = 10; constant VT_DECLARATION_FILE (line 2061) | pub const VT_DECLARATION_FILE: flatbuffers::VOffsetT = 12; function init_from_table (line 2064) | pub unsafe fn init_from_table(table: flatbuffers::Table<'a>) -> Self { function create (line 2068) | pub fn create< function name (line 2097) | pub fn name(&self) -> &'a str { function key_compare_less_than (line 2106) | pub fn key_compare_less_than(&self, o: &Service) -> bool { function key_compare_with_value (line 2111) | pub fn key_compare_with_value(&self, val: &str) -> ::core::cmp::Ordering { function calls (line 2116) | pub fn calls( function attributes (line 2129) | pub fn attributes( function documentation (line 2142) | pub fn documentation( function declaration_file (line 2156) | pub fn declaration_file(&self) -> Option<&'a str> { function run_verifier (line 2169) | fn run_verifier( type ServiceArgs (line 2194) | pub struct ServiceArgs<'a> { method default (line 2213) | fn default() -> Self { type ServiceBuilder (line 2224) | pub struct ServiceBuilder<'a: 'b, 'b, A: flatbuffers::Allocator + 'a> { function add_name (line 2230) | pub fn add_name(&mut self, name: flatbuffers::WIPOffset<&'b str>) { function add_calls (line 2234) | pub fn add_calls( function add_attributes (line 2243) | pub fn add_attributes( function add_documentation (line 2253) | pub fn add_documentation( function add_declaration_file (line 2265) | pub fn add_declaration_file(&mut self, declaration_file: flatbuffers::WI... function new (line 2272) | pub fn new( function finish (line 2279) | pub fn finish(self) -> flatbuffers::WIPOffset> { function fmt (line 2287) | fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { type SchemaFileOffset (line 2297) | pub enum SchemaFileOffset {} type SchemaFile (line 2303) | pub struct SchemaFile<'a> { type Inner (line 2308) | type Inner = SchemaFile<'a>; function follow (line 2310) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_FILENAME (line 2316) | pub const VT_FILENAME: flatbuffers::VOffsetT = 4; constant VT_INCLUDED_FILENAMES (line 2317) | pub const VT_INCLUDED_FILENAMES: flatbuffers::VOffsetT = 6; function init_from_table (line 2320) | pub unsafe fn init_from_table(table: flatbuffers::Table<'a>) -> Self { function create (line 2324) | pub fn create< function filename (line 2345) | pub fn filename(&self) -> &'a str { function key_compare_less_than (line 2356) | pub fn key_compare_less_than(&self, o: &SchemaFile) -> bool { function key_compare_with_value (line 2361) | pub fn key_compare_with_value(&self, val: &str) -> ::core::cmp::Ordering { function included_filenames (line 2367) | pub fn included_filenames( function run_verifier (line 2383) | fn run_verifier( type SchemaFileArgs (line 2401) | pub struct SchemaFileArgs<'a> { method default (line 2409) | fn default() -> Self { type SchemaFileBuilder (line 2417) | pub struct SchemaFileBuilder<'a: 'b, 'b, A: flatbuffers::Allocator + 'a> { function add_filename (line 2423) | pub fn add_filename(&mut self, filename: flatbuffers::WIPOffset<&'b str>) { function add_included_filenames (line 2428) | pub fn add_included_filenames( function new (line 2440) | pub fn new( function finish (line 2447) | pub fn finish(self) -> flatbuffers::WIPOffset> { function fmt (line 2455) | fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { type SchemaOffset (line 2462) | pub enum SchemaOffset {} type Schema (line 2465) | pub struct Schema<'a> { type Inner (line 2470) | type Inner = Schema<'a>; function follow (line 2472) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_OBJECTS (line 2478) | pub const VT_OBJECTS: flatbuffers::VOffsetT = 4; constant VT_ENUMS (line 2479) | pub const VT_ENUMS: flatbuffers::VOffsetT = 6; constant VT_FILE_IDENT (line 2480) | pub const VT_FILE_IDENT: flatbuffers::VOffsetT = 8; constant VT_FILE_EXT (line 2481) | pub const VT_FILE_EXT: flatbuffers::VOffsetT = 10; constant VT_ROOT_TABLE (line 2482) | pub const VT_ROOT_TABLE: flatbuffers::VOffsetT = 12; constant VT_SERVICES (line 2483) | pub const VT_SERVICES: flatbuffers::VOffsetT = 14; constant VT_ADVANCED_FEATURES (line 2484) | pub const VT_ADVANCED_FEATURES: flatbuffers::VOffsetT = 16; constant VT_FBS_FILES (line 2485) | pub const VT_FBS_FILES: flatbuffers::VOffsetT = 18; function init_from_table (line 2488) | pub unsafe fn init_from_table(table: flatbuffers::Table<'a>) -> Self { function create (line 2492) | pub fn create< function objects (line 2528) | pub fn objects(&self) -> flatbuffers::Vector<'a, flatbuffers::ForwardsUO... function enums (line 2541) | pub fn enums(&self) -> flatbuffers::Vector<'a, flatbuffers::ForwardsUOff... function file_ident (line 2554) | pub fn file_ident(&self) -> Option<&'a str> { function file_ext (line 2563) | pub fn file_ext(&self) -> Option<&'a str> { function root_table (line 2572) | pub fn root_table(&self) -> Option> { function services (line 2581) | pub fn services( function advanced_features (line 2594) | pub fn advanced_features(&self) -> AdvancedFeatures { function fbs_files (line 2607) | pub fn fbs_files( function run_verifier (line 2623) | fn run_verifier( type SchemaArgs (line 2665) | pub struct SchemaArgs<'a> { method default (line 2691) | fn default() -> Self { type SchemaBuilder (line 2705) | pub struct SchemaBuilder<'a: 'b, 'b, A: flatbuffers::Allocator + 'a> { function add_objects (line 2711) | pub fn add_objects( function add_enums (line 2720) | pub fn add_enums( function add_file_ident (line 2729) | pub fn add_file_ident(&mut self, file_ident: flatbuffers::WIPOffset<&'b ... function add_file_ext (line 2734) | pub fn add_file_ext(&mut self, file_ext: flatbuffers::WIPOffset<&'b str>) { function add_root_table (line 2738) | pub fn add_root_table(&mut self, root_table: flatbuffers::WIPOffset flatbuffers::WIPOffset> { function fmt (line 2788) | fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { function root_as_schema (line 2808) | pub fn root_as_schema(buf: &[u8]) -> Result( function size_prefixed_root_as_schema_with_opts (line 2843) | pub fn size_prefixed_root_as_schema_with_opts<'b, 'o>( function root_as_schema_unchecked (line 2853) | pub unsafe fn root_as_schema_unchecked(buf: &[u8]) -> Schema { function size_prefixed_root_as_schema_unchecked (line 2860) | pub unsafe fn size_prefixed_root_as_schema_unchecked(buf: &[u8]) -> Sche... constant SCHEMA_IDENTIFIER (line 2863) | pub const SCHEMA_IDENTIFIER: &str = "BFBS"; function schema_buffer_has_identifier (line 2866) | pub fn schema_buffer_has_identifier(buf: &[u8]) -> bool { function schema_size_prefixed_buffer_has_identifier (line 2871) | pub fn schema_size_prefixed_buffer_has_identifier(buf: &[u8]) -> bool { constant SCHEMA_EXTENSION (line 2875) | pub const SCHEMA_EXTENSION: &str = "bfbs"; function finish_schema_buffer (line 2878) | pub fn finish_schema_buffer<'a, 'b, A: flatbuffers::Allocator + 'a>( function finish_size_prefixed_schema_buffer (line 2886) | pub fn finish_size_prefixed_schema_buffer<'a, 'b, A: flatbuffers::Alloca... FILE: rust/reflection/src/reflection_verifier.rs function verify_with_options (line 26) | pub fn verify_with_options( function verify_table (line 51) | fn verify_table( function verify_struct (line 170) | fn verify_struct( function verify_vector (line 192) | fn verify_vector<'a, 'b, 'c>( function verify_union (line 346) | fn verify_union<'a, 'b, 'c>( FILE: rust/reflection/src/safe_buffer.rs type SafeBuffer (line 34) | pub struct SafeBuffer<'a> { function new (line 41) | pub fn new(buf: &'a [u8], schema: &'a Schema) -> FlatbufferResult { function new_with_options (line 45) | pub fn new_with_options( function get_root (line 56) | pub fn get_root(&self) -> SafeTable { function find_field_by_name (line 63) | fn find_field_by_name( function get_all_fields (line 73) | fn get_all_fields(&self, buf_loc: usize) -> FlatbufferResult { function get_field_integer (line 98) | pub fn get_field_integer Follow<'b, Inner = T> + PrimInt + Fr... function get_field_float (line 114) | pub fn get_field_float Follow<'b, Inner = T> + Float>( function get_field_string (line 130) | pub fn get_field_string(&self, field_name: &str) -> FlatbufferResult FlatbufferResult>( function get_field_table (line 174) | pub fn get_field_table(&self, field_name: &str) -> FlatbufferResult FlatbufferResul... function get_any_field_float (line 203) | pub fn get_any_field_float(&self, field_name: &str) -> FlatbufferResult<... function get_any_field_string (line 215) | pub fn get_any_field_string(&self, field_name: &str) -> FlatbufferResult... type SafeStruct (line 232) | pub struct SafeStruct<'a> { function get_field_struct (line 242) | pub fn get_field_struct(&self, field_name: &str) -> FlatbufferResult FlatbufferResul... function get_any_field_float (line 273) | pub fn get_any_field_float(&self, field_name: &str) -> FlatbufferResult<... function get_any_field_string (line 287) | pub fn get_any_field_string(&self, field_name: &str) -> FlatbufferResult... FILE: rust/reflection/src/struct.rs type Struct (line 20) | pub struct Struct<'a> { function buf (line 27) | pub fn buf(&self) -> &'a [u8] { function loc (line 32) | pub fn loc(&self) -> usize { function new (line 40) | pub unsafe fn new(buf: &'a [u8], loc: usize) -> Self { function get (line 50) | pub unsafe fn get + 'a>(&self, byte_loc: usize) -> T::Inner { type Inner (line 56) | type Inner = Struct<'a>; function follow (line 58) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { FILE: samples/SampleBinary.cs class SampleBinary (line 23) | class SampleBinary method Main (line 26) | static void Main() method Assert (line 124) | static void Assert(bool assertPassed, string codeExecuted, string actu... FILE: samples/SampleBinary.java class SampleBinary (line 27) | class SampleBinary { method main (line 29) | public static void main(String[] args) { FILE: samples/SampleBinary.php function __autoload (line 21) | function __autoload($class_name) { function main (line 36) | function main() { FILE: samples/monster_generated.h function namespace (line 16) | namespace MyGame { function Vec3 (line 187) | Vec3 FLATBUFFERS_FINAL_CLASS { function mutate_x (line 210) | void mutate_x(float _x) { function y (line 213) | float y() const { function mutate_z (line 222) | void mutate_z(float _z) { function H (line 240) | H AbslHashValue(H h, const Vec3 &obj) { function NativeTable (line 244) | struct MonsterT : public ::flatbuffers::NativeTable { function FLATBUFFERS_FINAL_CLASS (line 261) | struct Monster FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table { function flatbuffers (line 297) | const ::flatbuffers::String *name() const { function flatbuffers (line 303) | const ::flatbuffers::Vector *inventory() const { function flatbuffers (line 315) | const ::flatbuffers::Vector<::flatbuffers::Offset *path() const { function MyGame (line 374) | inline MyGame::Sample::Weapon *Monster::mutable_equipped_as name) { function add_inventory (line 394) | void add_inventory(::flatbuffers::Offset<::flatbuffers::Vector>... function add_color (line 397) | void add_color(MyGame::Sample::Color color) { function add_weapons (line 400) | void add_weapons(::flatbuffers::Offset<::flatbuffers::Vector<::flatbuffe... function add_equipped_type (line 403) | void add_equipped_type(MyGame::Sample::Equipment equipped_type) { function add_equipped (line 406) | void add_equipped(::flatbuffers::Offset equipped) { function add_path (line 409) | void add_path(::flatbuffers::Offset<::flatbuffers::Vector CreateMonster(::flatbuffers::FlatB... function flatbuffers (line 636) | inline ::flatbuffers::Offset Monster::Pack(::flatbuffers::FlatB... function WeaponT (line 676) | inline WeaponT *Weapon::UnPack(const ::flatbuffers::resolver_function_t ... function UnPackTo (line 682) | inline void Weapon::UnPackTo(WeaponT *_o, const ::flatbuffers::resolver_... function flatbuffers (line 689) | inline ::flatbuffers::Offset CreateWeapon(::flatbuffers::FlatBuf... function flatbuffers (line 693) | inline ::flatbuffers::Offset Weapon::Pack(::flatbuffers::FlatBuf... function VerifyEquipment (line 706) | bool VerifyEquipment(::flatbuffers::VerifierTemplate &verifier, const... function VerifyEquipmentVector (line 720) | bool VerifyEquipmentVector(::flatbuffers::VerifierTemplate &verifier,... function flatbuffers (line 743) | inline ::flatbuffers::Offset EquipmentUnion::Pack(::flatbuffers::F... function EquipmentUnion (line 754) | inline EquipmentUnion::EquipmentUnion(const EquipmentUnion &u) : type(u.... function Reset (line 765) | inline void EquipmentUnion::Reset() { function flatbuffers (line 778) | inline const ::flatbuffers::TypeTable *ColorTypeTable() { function flatbuffers (line 798) | inline const ::flatbuffers::TypeTable *EquipmentTypeTable() { function flatbuffers (line 816) | inline const ::flatbuffers::TypeTable *Vec3TypeTable() { function flatbuffers (line 834) | inline const ::flatbuffers::TypeTable *MonsterTypeTable() { function flatbuffers (line 873) | inline const ::flatbuffers::TypeTable *WeaponTypeTable() { function MyGame (line 888) | inline const MyGame::Sample::Monster *GetMonster(const void *buf) { function MyGame (line 892) | inline const MyGame::Sample::Monster *GetSizePrefixedMonster(const void ... function Monster (line 896) | inline Monster *GetMutableMonster(void *buf) { function MyGame (line 900) | inline MyGame::Sample::Monster *GetMutableSizePrefixedMonster(void *buf) { function FinishMonsterBuffer (line 916) | inline void FinishMonsterBuffer( function FinishSizePrefixedMonsterBuffer (line 922) | inline void FinishSizePrefixedMonsterBuffer( FILE: samples/rust_generated/my_game/sample/color_generated.rs constant ENUM_MIN_COLOR (line 7) | pub const ENUM_MIN_COLOR: i8 = 0; constant ENUM_MAX_COLOR (line 10) | pub const ENUM_MAX_COLOR: i8 = 2; constant ENUM_VALUES_COLOR (line 14) | pub const ENUM_VALUES_COLOR: [Color; 3] = [ type Color (line 22) | pub struct Color(pub i8); constant Red (line 26) | pub const Red: Self = Self(0); constant Green (line 27) | pub const Green: Self = Self(1); constant Blue (line 28) | pub const Blue: Self = Self(2); constant ENUM_MIN (line 30) | pub const ENUM_MIN: i8 = 0; constant ENUM_MAX (line 31) | pub const ENUM_MAX: i8 = 2; constant ENUM_VALUES (line 32) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 39) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 50) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 60) | type Inner = Self; method follow (line 63) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 70) | type Output = Color; method push (line 73) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 79) | type Scalar = i8; method to_little_endian (line 82) | fn to_little_endian(self) -> i8 { method from_little_endian (line 88) | fn from_little_endian(v: i8) -> Self { method run_verifier (line 96) | fn run_verifier( FILE: samples/rust_generated/my_game/sample/equipment_generated.rs constant ENUM_MIN_EQUIPMENT (line 7) | pub const ENUM_MIN_EQUIPMENT: u8 = 0; constant ENUM_MAX_EQUIPMENT (line 10) | pub const ENUM_MAX_EQUIPMENT: u8 = 1; constant ENUM_VALUES_EQUIPMENT (line 14) | pub const ENUM_VALUES_EQUIPMENT: [Equipment; 2] = [ type Equipment (line 21) | pub struct Equipment(pub u8); constant NONE (line 25) | pub const NONE: Self = Self(0); constant Weapon (line 26) | pub const Weapon: Self = Self(1); constant ENUM_MIN (line 28) | pub const ENUM_MIN: u8 = 0; constant ENUM_MAX (line 29) | pub const ENUM_MAX: u8 = 1; constant ENUM_VALUES (line 30) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 36) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 46) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 56) | type Inner = Self; method follow (line 59) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 66) | type Output = Equipment; method push (line 69) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 75) | type Scalar = u8; method to_little_endian (line 78) | fn to_little_endian(self) -> u8 { method from_little_endian (line 84) | fn from_little_endian(v: u8) -> Self { method run_verifier (line 92) | fn run_verifier( type EquipmentUnionTableOffset (line 101) | pub struct EquipmentUnionTableOffset {} type EquipmentT (line 106) | pub enum EquipmentT { method equipment_type (line 118) | pub fn equipment_type(&self) -> Equipment { method pack (line 125) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>(&self, fbb: &mut ::f... method take_weapon (line 133) | pub fn take_weapon(&mut self) -> Option> { method as_weapon (line 147) | pub fn as_weapon(&self) -> Option<&WeaponT> { method as_weapon_mut (line 152) | pub fn as_weapon_mut(&mut self) -> Option<&mut WeaponT> { method default (line 112) | fn default() -> Self { FILE: samples/rust_generated/my_game/sample/monster_generated.rs type MonsterOffset (line 6) | pub enum MonsterOffset {} type Monster (line 9) | pub struct Monster<'a> { type Inner (line 14) | type Inner = Monster<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_POS (line 23) | pub const VT_POS: ::flatbuffers::VOffsetT = 4; constant VT_MANA (line 24) | pub const VT_MANA: ::flatbuffers::VOffsetT = 6; constant VT_HP (line 25) | pub const VT_HP: ::flatbuffers::VOffsetT = 8; constant VT_NAME (line 26) | pub const VT_NAME: ::flatbuffers::VOffsetT = 10; constant VT_INVENTORY (line 27) | pub const VT_INVENTORY: ::flatbuffers::VOffsetT = 14; constant VT_COLOR (line 28) | pub const VT_COLOR: ::flatbuffers::VOffsetT = 16; constant VT_WEAPONS (line 29) | pub const VT_WEAPONS: ::flatbuffers::VOffsetT = 18; constant VT_EQUIPPED_TYPE (line 30) | pub const VT_EQUIPPED_TYPE: ::flatbuffers::VOffsetT = 20; constant VT_EQUIPPED (line 31) | pub const VT_EQUIPPED: ::flatbuffers::VOffsetT = 22; constant VT_PATH (line 32) | pub const VT_PATH: ::flatbuffers::VOffsetT = 24; function get_fully_qualified_name (line 34) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 39) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 44) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 62) | pub fn unpack(&self) -> MonsterT { function pos (line 104) | pub fn pos(&self) -> Option<&'a Vec3> { function mana (line 112) | pub fn mana(&self) -> i16 { function hp (line 120) | pub fn hp(&self) -> i16 { function name (line 128) | pub fn name(&self) -> Option<&'a str> { function inventory (line 136) | pub fn inventory(&self) -> Option<::flatbuffers::Vector<'a, u8>> { function color (line 144) | pub fn color(&self) -> Color { function weapons (line 152) | pub fn weapons(&self) -> Option<::flatbuffers::Vector<'a, ::flatbuffers:... function equipped_type (line 160) | pub fn equipped_type(&self) -> Equipment { function equipped (line 168) | pub fn equipped(&self) -> Option<::flatbuffers::Table<'a>> { function path (line 176) | pub fn path(&self) -> Option<::flatbuffers::Vector<'a, Vec3>> { function equipped_as_weapon (line 185) | pub fn equipped_as_weapon(&self) -> Option> { function run_verifier (line 201) | fn run_verifier( type MonsterArgs (line 224) | pub struct MonsterArgs<'a> { method default (line 239) | fn default() -> Self { type MonsterBuilder (line 255) | pub struct MonsterBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function add_pos (line 262) | pub fn add_pos(&mut self, pos: &Vec3) { function add_mana (line 267) | pub fn add_mana(&mut self, mana: i16) { function add_hp (line 272) | pub fn add_hp(&mut self, hp: i16) { function add_name (line 277) | pub fn add_name(&mut self, name: ::flatbuffers::WIPOffset<&'b str>) { function add_inventory (line 282) | pub fn add_inventory(&mut self, inventory: ::flatbuffers::WIPOffset<::fl... function add_color (line 287) | pub fn add_color(&mut self, color: Color) { function add_weapons (line 292) | pub fn add_weapons(&mut self, weapons: ::flatbuffers::WIPOffset<::flatbu... function add_equipped_type (line 297) | pub fn add_equipped_type(&mut self, equipped_type: Equipment) { function add_equipped (line 302) | pub fn add_equipped(&mut self, equipped: ::flatbuffers::WIPOffset<::flat... function add_path (line 307) | pub fn add_path(&mut self, path: ::flatbuffers::WIPOffset<::flatbuffers:... function new (line 312) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Mon... function finish (line 321) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 328) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type MonsterT (line 358) | pub struct MonsterT { method pack (line 387) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 371) | fn default() -> Self { function root_as_monster (line 432) | pub fn root_as_monster(buf: &[u8]) -> Result, ::flatbuffers:... function size_prefixed_root_as_monster (line 443) | pub fn size_prefixed_root_as_monster(buf: &[u8]) -> Result, ... function root_as_monster_with_opts (line 454) | pub fn root_as_monster_with_opts<'b, 'o>( function size_prefixed_root_as_monster_with_opts (line 468) | pub fn size_prefixed_root_as_monster_with_opts<'b, 'o>( function root_as_monster_unchecked (line 479) | pub unsafe fn root_as_monster_unchecked(buf: &[u8]) -> Monster<'_> { function size_prefixed_root_as_monster_unchecked (line 487) | pub unsafe fn size_prefixed_root_as_monster_unchecked(buf: &[u8]) -> Mon... function finish_monster_buffer (line 492) | pub fn finish_monster_buffer<'a, 'b, A: ::flatbuffers::Allocator + 'a>( function finish_size_prefixed_monster_buffer (line 500) | pub fn finish_size_prefixed_monster_buffer<'a, 'b, A: ::flatbuffers::All... FILE: samples/rust_generated/my_game/sample/vec_3_generated.rs type Vec3 (line 9) | pub struct Vec3(pub [u8; 12]); method fmt (line 18) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 30) | type Inner = &'a Vec3; method follow (line 33) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 48) | type Output = Vec3; method push (line 51) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 57) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 64) | fn run_verifier( method new (line 73) | pub fn new( method get_fully_qualified_name (line 85) | pub const fn get_fully_qualified_name() -> &'static str { method x (line 89) | pub fn x(&self) -> f32 { method set_x (line 104) | pub fn set_x(&mut self, x: f32) { method y (line 118) | pub fn y(&self) -> f32 { method set_y (line 133) | pub fn set_y(&mut self, x: f32) { method z (line 147) | pub fn z(&self) -> f32 { method set_z (line 162) | pub fn set_z(&mut self, x: f32) { method unpack (line 176) | pub fn unpack(&self) -> Vec3T { method default (line 12) | fn default() -> Self { type Inner (line 39) | type Inner = &'a Vec3; function follow (line 42) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Vec3T (line 186) | pub struct Vec3T { method pack (line 202) | pub fn pack(&self) -> Vec3 { method default (line 192) | fn default() -> Self { FILE: samples/rust_generated/my_game/sample/weapon_generated.rs type WeaponOffset (line 6) | pub enum WeaponOffset {} type Weapon (line 9) | pub struct Weapon<'a> { type Inner (line 14) | type Inner = Weapon<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_NAME (line 23) | pub const VT_NAME: ::flatbuffers::VOffsetT = 4; constant VT_DAMAGE (line 24) | pub const VT_DAMAGE: ::flatbuffers::VOffsetT = 6; function get_fully_qualified_name (line 26) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 31) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 36) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 46) | pub fn unpack(&self) -> WeaponT { function name (line 58) | pub fn name(&self) -> Option<&'a str> { function damage (line 66) | pub fn damage(&self) -> i16 { function run_verifier (line 76) | fn run_verifier( type WeaponArgs (line 87) | pub struct WeaponArgs<'a> { method default (line 94) | fn default() -> Self { type WeaponBuilder (line 102) | pub struct WeaponBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function add_name (line 109) | pub fn add_name(&mut self, name: ::flatbuffers::WIPOffset<&'b str>) { function add_damage (line 114) | pub fn add_damage(&mut self, damage: i16) { function new (line 119) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Wea... function finish (line 128) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 135) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type WeaponT (line 145) | pub struct WeaponT { method pack (line 160) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 151) | fn default() -> Self { FILE: samples/sample_bfbs.cpp function main (line 25) | int main(int /*argc*/, const char* /*argv*/[]) { FILE: samples/sample_binary.cpp function main (line 23) | int main(int /*argc*/, const char* /*argv*/[]) { FILE: samples/sample_binary.go function main (line 29) | func main() { function assert (line 160) | func assert(assertPassed bool, codeExecuted string, actualValue string, ... FILE: samples/sample_binary.py function main (line 36) | def main(): FILE: samples/sample_binary.rs function main (line 30) | fn main() { function test_main (line 153) | fn test_main() { FILE: samples/sample_flexbuffers.rs function main (line 34) | fn main() { function test_main (line 161) | fn test_main() { FILE: samples/sample_flexbuffers_serde.rs type Weapon (line 22) | enum Weapon { type Color (line 28) | struct Color(u8, u8, u8, u8); type Monster (line 31) | struct Monster { function main (line 42) | fn main() { function test_main (line 73) | fn test_main() { FILE: samples/sample_text.cpp function main (line 25) | int main(int /*argc*/, const char* /*argv*/[]) { FILE: scripts/generate_code.py function flatc_reflection (line 33) | def flatc_reflection(options, location, target): function flatc_annotate (line 50) | def flatc_annotate(schema, file, include=None, cwd=tests_path): function glob (line 59) | def glob(path, pattern): function flatc_annotate (line 644) | def flatc_annotate(schema, include=None, data=None, cwd=tests_path): FILE: scripts/generate_grpc_examples.py function GenerateGRPCExamples (line 31) | def GenerateGRPCExamples(): FILE: scripts/util.py function flatc (line 62) | def flatc( FILE: src/annotated_binary_text_gen.cpp type flatbuffers (line 14) | namespace flatbuffers { type OutputConfig (line 17) | struct OutputConfig { function ToString (line 31) | static std::string ToString(const BinarySectionType type) { function IsOffset (line 60) | static bool IsOffset(const BinaryRegionType type) { function ToString (line 67) | std::string ToString(T value) { function ToValueString (line 78) | std::string ToValueString(const BinaryRegion& region, const uint8_t* b... function ToValueString (line 99) | static std::string ToValueString(const BinaryRegion& region, type DocContinuation (line 175) | struct DocContinuation { function GenerateTypeString (line 183) | static std::string GenerateTypeString(const BinaryRegion& region) { function GenerateComment (line 190) | static std::string GenerateComment(const BinaryRegionComment& comment, function GenerateDocumentation (line 319) | static void GenerateDocumentation(std::ostream& os, const BinaryRegion... function GenerateRegion (line 372) | static void GenerateRegion(std::ostream& os, const BinaryRegion& region, function GenerateSection (line 415) | static void GenerateSection(std::ostream& os, const BinarySection& sec... FILE: src/annotated_binary_text_gen.h function namespace (line 26) | namespace flatbuffers { FILE: src/bfbs_gen.h function namespace (line 25) | namespace flatbuffers { function class (line 105) | class BaseBfbsGenerator : public CodeGenerator { function reflection (line 169) | const reflection::Object* GetObjectByIndex(int32_t index) const { function reflection (line 179) | const reflection::Enum* GetEnumByIndex(int32_t index) const { function ForAllFields (line 187) | void ForAllFields(const reflection::Object* object, bool reverse, FILE: src/bfbs_gen_lua.cpp type flatbuffers (line 35) | namespace flatbuffers { function LuaKeywords (line 41) | std::set LuaKeywords() { function LuaDefaultConfig (line 48) | Namer::Config LuaDefaultConfig() { class LuaBfbsGenerator (line 72) | class LuaBfbsGenerator : public BaseBfbsGenerator { method LuaBfbsGenerator (line 74) | explicit LuaBfbsGenerator(const std::string& flatc_version) method Status (line 83) | Status GenerateFromSchema(const r::Schema* schema, method Status (line 98) | Status GenerateCode(const Parser&, const std::string&, method Status (line 103) | Status GenerateMakeRule(const Parser& parser, const std::string& path, method Status (line 113) | Status GenerateGrpcCode(const Parser& parser, const std::string& path, method Status (line 121) | Status GenerateRootFile(const Parser& parser, method IsSchemaOnly (line 128) | bool IsSchemaOnly() const override { return true; } method SupportsBfbsGeneration (line 130) | bool SupportsBfbsGeneration() const override { return true; } method SupportsRootFileGeneration (line 132) | bool SupportsRootFileGeneration() const override { return false; } method Language (line 134) | IDLOptions::Language Language() const override { return IDLOptions::... method LanguageName (line 136) | std::string LanguageName() const override { return "Lua"; } method SupportedAdvancedFeatures (line 138) | uint64_t SupportedAdvancedFeatures() const FLATBUFFERS_OVERRIDE { method GenerateEnums (line 143) | bool GenerateEnums( method GenerateObjects (line 170) | bool GenerateObjects( method GenerateDocumentation (line 501) | void GenerateDocumentation( method GenerateStructBuilderArgs (line 511) | std::string GenerateStructBuilderArgs(const r::Object* object, method AppendStructBuilderBody (line 526) | std::string AppendStructBuilderBody(const r::Object* object, method GenerateMethod (line 552) | std::string GenerateMethod(const r::Field* field) const { method GenerateGetter (line 563) | std::string GenerateGetter(const r::Type* type, method GenerateType (line 578) | std::string GenerateType(const r::Type* type, method GenerateType (line 598) | std::string GenerateType(const r::BaseType base_type) const { method DefaultValue (line 631) | std::string DefaultValue(const r::Field* field) const { method StartCodeBlock (line 646) | void StartCodeBlock(const reflection::Enum* enum_def) { method StartCodeBlock (line 652) | void StartCodeBlock(const reflection::Object* object) { method RegisterRequires (line 658) | std::string RegisterRequires(const r::Field* field, method RegisterRequires (line 688) | std::string RegisterRequires(const std::string& local_name, method EmitCodeBlock (line 694) | void EmitCodeBlock(const std::string& code_block, const std::string&... function NewLuaBfbsGenerator (line 756) | std::unique_ptr NewLuaBfbsGenerator( FILE: src/bfbs_gen_lua.h function namespace (line 25) | namespace flatbuffers { FILE: src/bfbs_gen_nim.cpp type flatbuffers (line 35) | namespace flatbuffers { function NimKeywords (line 41) | std::set NimKeywords() { function NimDefaultConfig (line 57) | Namer::Config NimDefaultConfig() { class NimBfbsGenerator (line 87) | class NimBfbsGenerator : public BaseBfbsGenerator { method NimBfbsGenerator (line 89) | explicit NimBfbsGenerator(const std::string& flatc_version) method Status (line 98) | Status GenerateFromSchema(const r::Schema* schema, method Status (line 115) | Status GenerateCode(const Parser& parser, const std::string& path, method Status (line 123) | Status GenerateMakeRule(const Parser& parser, const std::string& path, method Status (line 133) | Status GenerateGrpcCode(const Parser& parser, const std::string& path, method Status (line 141) | Status GenerateRootFile(const Parser& parser, method IsSchemaOnly (line 148) | bool IsSchemaOnly() const override { return true; } method SupportsBfbsGeneration (line 150) | bool SupportsBfbsGeneration() const override { return true; } method SupportsRootFileGeneration (line 152) | bool SupportsRootFileGeneration() const override { return false; } method Language (line 154) | IDLOptions::Language Language() const override { return IDLOptions::... method LanguageName (line 156) | std::string LanguageName() const override { return "Nim"; } method SupportedAdvancedFeatures (line 158) | uint64_t SupportedAdvancedFeatures() const FLATBUFFERS_OVERRIDE { method GenerateEnum (line 164) | void GenerateEnum(const r::Enum* enum_def) { method GenerateObject (line 184) | void GenerateObject(const r::Object* object) { method GenerateDocumentation (line 356) | void GenerateDocumentation( method GenerateStructBuilderArgs (line 366) | std::string GenerateStructBuilderArgs(const r::Object* object, method AppendStructBuilderBody (line 382) | std::string AppendStructBuilderBody(const r::Object* object, method GenerateMethod (line 407) | std::string GenerateMethod(const r::Field* field) const { method GenerateGetter (line 415) | std::string GenerateGetter(const r::Type* type, const std::string& o... method Denamespace (line 446) | std::string Denamespace(const std::string& s, std::string& importns, method Denamespace (line 457) | std::string Denamespace(const std::string& s, std::string& importns)... method Denamespace (line 462) | std::string Denamespace(const std::string& s) const { method GenerateType (line 467) | std::string GenerateType(const r::Type* type, bool element_type = fa... method GenerateTypeBasic (line 505) | std::string GenerateTypeBasic(const r::Type* type, method GenerateType (line 516) | std::string GenerateType(const r::BaseType base_type) const { method DefaultValue (line 551) | std::string DefaultValue(const r::Field* field) const { method StartCodeBlock (line 582) | void StartCodeBlock(const reflection::Enum* enum_def) { method StartCodeBlock (line 588) | void StartCodeBlock(const reflection::Object* object) { method StringSplit (line 594) | std::vector StringSplit(const std::string orig_str, method GetRelativePathFromNamespace (line 612) | std::string GetRelativePathFromNamespace(const std::string& relative... method RegisterImports (line 639) | void RegisterImports(const r::Object* object, const r::Field* field, method RegisterImports (line 671) | void RegisterImports(const std::string& local_name, method EmitCodeBlock (line 676) | void EmitCodeBlock(const std::string& code_block, const std::string&... function NewNimBfbsGenerator (line 736) | std::unique_ptr NewNimBfbsGenerator( FILE: src/bfbs_gen_nim.h function namespace (line 25) | namespace flatbuffers { FILE: src/bfbs_namer.h function namespace (line 7) | namespace flatbuffers { FILE: src/binary_annotator.cpp type flatbuffers (line 15) | namespace flatbuffers { function BinaryRegionSort (line 18) | static bool BinaryRegionSort(const BinaryRegion& a, const BinaryRegion... function SetError (line 22) | static void SetError(BinaryRegionComment& comment, BinaryRegionStatus ... function BinaryRegion (line 28) | static BinaryRegion MakeBinaryRegion( function BinarySection (line 43) | static BinarySection MakeBinarySection(const std::string& name, function BinarySection (line 53) | static BinarySection MakeSingleRegionBinarySection(const std::string& ... function IsNonZeroRegion (line 61) | static bool IsNonZeroRegion(const uint64_t offset, const uint64_t length, function IsPrintableRegion (line 71) | static bool IsPrintableRegion(const uint64_t offset, const uint64_t le... function BinarySection (line 81) | static BinarySection GenerateMissingSection(const uint64_t offset, FILE: src/binary_annotator.h function BinaryRegionType (line 38) | enum class BinaryRegionType { function std (line 69) | static inline std::string ToHex(uint8_t i) { type class (line 73) | enum class type class (line 96) | enum class type BinaryRegionComment (line 141) | struct BinaryRegionComment { type BinaryRegion (line 156) | struct BinaryRegion { function BinarySectionType (line 178) | enum class BinarySectionType { FILE: src/code_generators.cpp type flatbuffers (line 31) | namespace flatbuffers { function JavaCSharpMakeRule (line 33) | std::string JavaCSharpMakeRule(const bool java, const Parser& parser, function GenComment (line 198) | void GenComment(const std::vector& dc, std::string* code_... FILE: src/file_manager.cpp type flatbuffers (line 23) | namespace flatbuffers { FILE: src/file_name_manager.cpp type flatbuffers (line 22) | namespace flatbuffers { FILE: src/flatc.cpp type flatbuffers (line 32) | namespace flatbuffers { function AppendTextWrappedString (line 290) | static void AppendTextWrappedString(std::stringstream& ss, std::string... function AppendOption (line 309) | static void AppendOption(std::stringstream& ss, const FlatCOption& opt... function AppendShortOption (line 348) | static void AppendShortOption(std::stringstream& ss, function FlatCOptions (line 450) | FlatCOptions FlatCompiler::ParseFromCommandLineArguments(int argc, FILE: src/flatc_main.cpp function Warn (line 45) | static void Warn(const flatbuffers::FlatCompiler* flatc, function Error (line 54) | static void Error(const flatbuffers::FlatCompiler* flatc, type flatbuffers (line 66) | namespace flatbuffers { function LogCompilerWarn (line 67) | void LogCompilerWarn(const std::string& warn) { function LogCompilerError (line 70) | void LogCompilerError(const std::string& err) { function main (line 76) | int main(int argc, const char* argv[]) { FILE: src/flathash.cpp type OutputFormat (line 25) | enum OutputFormat { kDecimal, kHexadecimal, kHexadecimal0x } function main (line 27) | int main(int argc, char* argv[]) { FILE: src/idl_gen_binary.cpp type flatbuffers (line 33) | namespace flatbuffers { function BinaryFileName (line 36) | static std::string BinaryFileName(const Parser& parser, const std::str... function GenerateBinary (line 42) | static bool GenerateBinary(const Parser& parser, const std::string& path, function BinaryMakeRule (line 59) | static std::string BinaryMakeRule(const Parser& parser, const std::str... class BinaryCodeGenerator (line 74) | class BinaryCodeGenerator : public CodeGenerator { method Status (line 76) | Status GenerateCode(const Parser& parser, const std::string& path, method Status (line 86) | Status GenerateCode(const uint8_t*, int64_t, const CodeGenOptions&) ... method Status (line 90) | Status GenerateMakeRule(const Parser& parser, const std::string& path, method Status (line 97) | Status GenerateGrpcCode(const Parser& parser, const std::string& path, method Status (line 105) | Status GenerateRootFile(const Parser& parser, method IsSchemaOnly (line 112) | bool IsSchemaOnly() const override { return false; } method SupportsBfbsGeneration (line 114) | bool SupportsBfbsGeneration() const override { return false; } method SupportsRootFileGeneration (line 116) | bool SupportsRootFileGeneration() const override { return false; } method Language (line 118) | IDLOptions::Language Language() const override { return IDLOptions::... method LanguageName (line 120) | std::string LanguageName() const override { return "binary"; } function NewBinaryCodeGenerator (line 125) | std::unique_ptr NewBinaryCodeGenerator() { FILE: src/idl_gen_binary.h function namespace (line 25) | namespace flatbuffers { FILE: src/idl_gen_cpp.cpp type flatbuffers (line 34) | namespace flatbuffers { function NumToStringCpp (line 38) | static inline std::string NumToStringCpp(std::string val, BaseType typ... function GenIncludeGuard (line 55) | static std::string GenIncludeGuard(const std::string& file_name, function IsVectorOfPointers (line 81) | static bool IsVectorOfPointers(const FieldDef& field) { function IsPointer (line 88) | static bool IsPointer(const FieldDef& field) { type cpp (line 93) | namespace cpp { type CppStandard (line 95) | enum CppStandard { CPP_STD_X0 = 0, CPP_STD_11, CPP_STD_17 } type GenArrayArgMode (line 98) | enum GenArrayArgMode { type IDLOptionsCpp (line 104) | struct IDLOptionsCpp : public IDLOptions { method IDLOptionsCpp (line 109) | IDLOptionsCpp(const IDLOptions& opts) function ForAllFieldsOrderedByOffset (line 115) | static void ForAllFieldsOrderedByOffset( class CppGenerator (line 132) | class CppGenerator : public BaseGenerator { method CppGenerator (line 134) | CppGenerator(const Parser& parser, const std::string& path, method GenFlatbuffersVersionCheck (line 248) | void GenFlatbuffersVersionCheck() { method GenIncludeDependencies (line 262) | void GenIncludeDependencies() { method MarkIf64BitBuilderIsNeeded (line 298) | void MarkIf64BitBuilderIsNeeded() { method GetBuilder (line 314) | std::string GetBuilder() { method GenExtraIncludes (line 319) | void GenExtraIncludes() { method GenEmbeddedIncludes (line 328) | void GenEmbeddedIncludes() { method EscapeKeyword (line 338) | std::string EscapeKeyword(const std::string& name) const { method Name (line 342) | std::string Name(const FieldDef& field) const { method Name (line 366) | std::string Name(const Definition& def) const { method Name (line 370) | std::string Name(const EnumVal& ev) const { return EscapeKeyword(e... method generate_bfbs_embed (line 372) | bool generate_bfbs_embed() { method generate (line 442) | bool generate() { method Namespace (line 785) | const Namespace* CurrentNameSpace() const { return cur_name_space_; } method TranslateNameSpace (line 789) | static std::string TranslateNameSpace(const std::string& qualified... method TypeHasKey (line 799) | bool TypeHasKey(const Type& type) { method VectorElementUserFacing (line 811) | bool VectorElementUserFacing(const Type& type) const { method GenComment (line 817) | void GenComment(const std::vector& dc, const char* pr... method GenTypeBasic (line 824) | std::string GenTypeBasic(const Type& type, bool user_facing_type) ... method GenTypePointer (line 839) | std::string GenTypePointer(const Type& type) const { method GenTypeWire (line 866) | std::string GenTypeWire(const Type& type, const char* postfix, method GenTypeSize (line 881) | std::string GenTypeSize(const Type& type) const { method NullableExtension (line 891) | std::string NullableExtension() { method NativeName (line 895) | static std::string NativeName(const std::string& name, const Struc... method WrapNativeNameInNameSpace (line 907) | std::string WrapNativeNameInNameSpace(const StructDef& struct_def, method NativeString (line 923) | const std::string NativeString(const FieldDef* field) { method FlexibleStringConstructor (line 932) | bool FlexibleStringConstructor(const FieldDef* field) { method GenTypeNativePtr (line 940) | std::string GenTypeNativePtr(const std::string& type, const FieldD... method GenPtrGet (line 955) | std::string GenPtrGet(const FieldDef& field) { method GenOptionalNull (line 962) | std::string GenOptionalNull() { return "::flatbuffers::nullopt"; } method GenOptionalDecl (line 964) | std::string GenOptionalDecl(const Type& type) { method GenTypeNative (line 968) | std::string GenTypeNative(const Type& type, bool invector, method GenTypeGet (line 1019) | std::string GenTypeGet(const Type& type, const char* afterbasic, method GenTypeSpan (line 1042) | std::string GenTypeSpan(const Type& type, bool immutable, size_t e... method GenEnumValDecl (line 1074) | std::string GenEnumValDecl(const EnumDef& enum_def, method GetEnumValUse (line 1079) | std::string GetEnumValUse(const EnumDef& enum_def, method StripUnionType (line 1090) | std::string StripUnionType(const std::string& name) { method GetUnionElement (line 1094) | std::string GetUnionElement(const EnumVal& ev, bool native_type, method UnionVerifyTemplateDecl (line 1112) | std::string UnionVerifyTemplateDecl() { return "template "; } method UnionVerifySignature (line 1120) | std::string UnionVerifySignature(const EnumDef& enum_def) { method UnionVectorVerifySignature (line 1128) | std::string UnionVectorVerifySignature(const EnumDef& enum_def) { method UnionUnPackSignature (line 1140) | std::string UnionUnPackSignature(const EnumDef& enum_def, bool inc... method UnionPackSignature (line 1147) | std::string UnionPackSignature(const EnumDef& enum_def, bool incla... method TableCreateSignature (line 1155) | std::string TableCreateSignature(const StructDef& struct_def, bool... method TablePackSignature (line 1164) | std::string TablePackSignature(const StructDef& struct_def, bool i... method TableUnPackSignature (line 1174) | std::string TableUnPackSignature(const StructDef& struct_def, bool... method TableUnPackToSignature (line 1182) | std::string TableUnPackToSignature(const StructDef& struct_def, bo... method GenMiniReflectPre (line 1190) | void GenMiniReflectPre(const StructDef* struct_def) { method GenMiniReflect (line 1196) | void GenMiniReflect(const StructDef* struct_def, const EnumDef* en... method GenEnum (line 1337) | void GenEnum(const EnumDef& enum_def) { method GenEnumObjectBasedAPI (line 1438) | void GenEnumObjectBasedAPI(const EnumDef& enum_def) { method GenEnumEquals (line 1530) | void GenEnumEquals(const EnumDef& enum_def) { method GenEnumArray (line 1575) | void GenEnumArray(const EnumDef& enum_def) { method GenEnumStringTable (line 1596) | void GenEnumStringTable(const EnumDef& enum_def) { method GenUnionPost (line 1652) | void GenUnionPost(const EnumDef& enum_def) { method GenUnderlyingCast (line 1862) | std::string GenUnderlyingCast(const FieldDef& field, bool from, method GenFieldOffsetName (line 1876) | std::string GenFieldOffsetName(const FieldDef& field) { method GenFullyQualifiedNameGetter (line 1882) | void GenFullyQualifiedNameGetter(const StructDef& struct_def, method GenDefaultConstant (line 1895) | std::string GenDefaultConstant(const FieldDef& field) { method GetDefaultScalarValue (line 1902) | std::string GetDefaultScalarValue(const FieldDef& field, bool is_c... method GenParam (line 1938) | void GenParam(const FieldDef& field, bool direct, const char* pref... method GenMember (line 1972) | void GenMember(const FieldDef& field) { method NeedsCopyCtorAssignOp (line 2014) | bool NeedsCopyCtorAssignOp(const StructDef& struct_def) { method GenDefaultConstructor (line 2043) | void GenDefaultConstructor(const StructDef& struct_def) { method GenCopyMoveCtorAndAssigOpDecls (line 2107) | void GenCopyMoveCtorAndAssigOpDecls(const StructDef& struct_def) { method GenCopyCtorAssignOpDefs (line 2121) | void GenCopyCtorAssignOpDefs(const StructDef& struct_def) { method GenCompareOperator (line 2231) | void GenCompareOperator(const StructDef& struct_def, method GenAbslHashValue (line 2318) | void GenAbslHashValue(const StructDef& struct_def) { method GenOperatorNewDelete (line 2346) | void GenOperatorNewDelete(const StructDef& struct_def) { method GenNativeTable (line 2361) | void GenNativeTable(const StructDef& struct_def) { method GenBinarySchemaTypeDef (line 2382) | void GenBinarySchemaTypeDef(const StructDef* struct_def) { method GenNativeTablePost (line 2389) | void GenNativeTablePost(const StructDef& struct_def) { method GenVerifyCall (line 2400) | void GenVerifyCall(const FieldDef& field, const char* prefix) { method GenComparatorForStruct (line 2511) | void GenComparatorForStruct(const StructDef& struct_def, size_t sp... method GenKeyFieldMethods (line 2587) | void GenKeyFieldMethods(const FieldDef& field) { method GenTableUnionAsGetters (line 2688) | void GenTableUnionAsGetters(const FieldDef& field, bool is_mutable) { method GenTableFieldGetter (line 2731) | void GenTableFieldGetter(const FieldDef& field) { method GenTableFieldType (line 2816) | void GenTableFieldType(const FieldDef& field) { method GenStructFieldType (line 2830) | void GenStructFieldType(const FieldDef& field) { method GenFieldTypeHelper (line 2839) | void GenFieldTypeHelper(const StructDef& struct_def) { method GenIndexBasedFieldGetter (line 2848) | void GenIndexBasedFieldGetter(const StructDef& struct_def) { method GenFieldNames (line 2887) | void GenFieldNames(const StructDef& struct_def) { method GenFieldsNumber (line 2912) | void GenFieldsNumber(const StructDef& struct_def) { method GenTraitsStruct (line 2922) | void GenTraitsStruct(const StructDef& struct_def) { method GenTableFieldSetter (line 2945) | void GenTableFieldSetter(const FieldDef& field) { method GetNestedFlatBufferName (line 3030) | std::string GetNestedFlatBufferName(const FieldDef& field) { method GenTable (line 3046) | void GenTable(const StructDef& struct_def) { method GenVectorForceAlign (line 3240) | std::string GenVectorForceAlign(const FieldDef& field, method GenBuilders (line 3260) | void GenBuilders(const StructDef& struct_def) { method GenUnionUnpackVal (line 3502) | std::string GenUnionUnpackVal(const FieldDef& afield, method GenUnpackVal (line 3511) | std::string GenUnpackVal(const Type& type, const std::string& val, method GenUnpackFieldStatement (line 3568) | std::string GenUnpackFieldStatement(const FieldDef& field, method GenCreateParam (line 3724) | std::string GenCreateParam(const FieldDef& field) { method GenTablePost (line 3968) | void GenTablePost(const StructDef& struct_def) { method GenPadding (line 4129) | static void GenPadding( method PaddingDefinition (line 4142) | static void PaddingDefinition(int bits, std::string* code_ptr, int... method PaddingInitializer (line 4147) | static void PaddingInitializer(int bits, std::string* code_ptr, in... method PaddingNoop (line 4153) | static void PaddingNoop(int bits, std::string* code_ptr, int* id) { method GenStructDefaultConstructor (line 4159) | void GenStructDefaultConstructor(const StructDef& struct_def) { method GenStructConstructor (line 4208) | void GenStructConstructor(const StructDef& struct_def, method GenArrayAccessor (line 4287) | void GenArrayAccessor(const Type& type, bool mutable_accessor) { method GenStruct (line 4308) | void GenStruct(const StructDef& struct_def) { method SetNameSpace (line 4461) | void SetNameSpace(const Namespace* ns) { function GenerateCPP (line 4504) | static bool GenerateCPP(const Parser& parser, const std::string& path, function CPPMakeRule (line 4543) | static std::string CPPMakeRule(const Parser& parser, const std::string... class CppCodeGenerator (line 4558) | class CppCodeGenerator : public CodeGenerator { method Status (line 4560) | Status GenerateCode(const Parser& parser, const std::string& path, method Status (line 4570) | Status GenerateCode(const uint8_t*, int64_t, const CodeGenOptions&) ... method Status (line 4574) | Status GenerateMakeRule(const Parser& parser, const std::string& path, method Status (line 4581) | Status GenerateGrpcCode(const Parser& parser, const std::string& path, method Status (line 4589) | Status GenerateRootFile(const Parser& parser, method IsSchemaOnly (line 4596) | bool IsSchemaOnly() const override { return true; } method SupportsBfbsGeneration (line 4598) | bool SupportsBfbsGeneration() const override { return false; } method SupportsRootFileGeneration (line 4600) | bool SupportsRootFileGeneration() const override { return false; } method Language (line 4602) | IDLOptions::Language Language() const override { return IDLOptions::... method LanguageName (line 4604) | std::string LanguageName() const override { return "C++"; } function NewCppCodeGenerator (line 4609) | std::unique_ptr NewCppCodeGenerator() { FILE: src/idl_gen_cpp.h function namespace (line 22) | namespace flatbuffers { FILE: src/idl_gen_csharp.cpp type flatbuffers (line 28) | namespace flatbuffers { type csharp (line 39) | namespace csharp { class CSharpGenerator (line 40) | class CSharpGenerator : public BaseGenerator { type FieldArrayLength (line 41) | struct FieldArrayLength { method CSharpGenerator (line 47) | CSharpGenerator(const Parser& parser, const std::string& path, method generate (line 146) | bool generate() { method EscapeKeyword (line 192) | std::string EscapeKeyword(const std::string& name) const { method Name (line 196) | std::string Name(const FieldDef& field) const { method Name (line 201) | std::string Name(const Definition& def) const { method NamespacedName (line 205) | std::string NamespacedName(const Definition& def) const { method Name (line 209) | std::string Name(const EnumVal& ev) const { return EscapeKeyword(e... method SaveType (line 213) | bool SaveType(const std::string& defname, const Namespace& ns, method Namespace (line 247) | const Namespace* CurrentNameSpace() const { return cur_name_space_; } method GenTypeBasic (line 249) | std::string GenTypeBasic(const Type& type, bool enableLangOverride... method GenTypeBasic (line 269) | inline std::string GenTypeBasic(const Type& type) const { method GenTypePointer (line 273) | std::string GenTypePointer(const Type& type) const { method GenTypeGet (line 288) | std::string GenTypeGet(const Type& type) const { method GenOffsetType (line 295) | std::string GenOffsetType(const StructDef& struct_def) const { method GenOffsetConstruct (line 299) | std::string GenOffsetConstruct(const StructDef& struct_def, method DestinationCast (line 306) | std::string DestinationCast(const Type& type) const { method SourceCast (line 321) | std::string SourceCast(const Type& type, method SourceCastBasic (line 332) | std::string SourceCastBasic(const Type& type, const bool isOptiona... method GenEnumDefaultValue (line 336) | std::string GenEnumDefaultValue(const FieldDef& field) const { method GenDefaultValue (line 345) | std::string GenDefaultValue(const FieldDef& field, method GenDefaultValue (line 378) | std::string GenDefaultValue(const FieldDef& field) const { method GenDefaultValueBasic (line 382) | std::string GenDefaultValueBasic(const FieldDef& field, method GenDefaultValueBasic (line 404) | std::string GenDefaultValueBasic(const FieldDef& field) const { method GenEnum (line 408) | void GenEnum(EnumDef& enum_def, std::string* code_ptr, method HasUnionStringValue (line 457) | bool HasUnionStringValue(const EnumDef& enum_def) const { method GenGetter (line 469) | std::string GenGetter(const Type& type) const { method GetObjectConstructor (line 493) | std::string GetObjectConstructor(flatbuffers::StructDef& struct_def, method GenGetterForLookupByKey (line 503) | std::string GenGetterForLookupByKey(flatbuffers::StructDef& struct... method GenSetter (line 518) | std::string GenSetter(const Type& type) const { method GenMethod (line 532) | std::string GenMethod(const Type& type) const { method GenStructArgs (line 540) | void GenStructArgs(const StructDef& struct_def, std::string* code_... method GenStructBody (line 578) | void GenStructBody(const StructDef& struct_def, std::string* code_... method GenOffsetGetter (line 636) | std::string GenOffsetGetter(flatbuffers::FieldDef* key_field, method GenKeyGetter (line 650) | std::string GenKeyGetter(flatbuffers::StructDef& struct_def, method GetStartOfTableVerifier (line 676) | void GetStartOfTableVerifier(const StructDef& struct_def, method GetEndOfTableVerifier (line 689) | void GetEndOfTableVerifier(std::string* code_ptr) { method GetNestedFlatBufferName (line 696) | std::string GetNestedFlatBufferName(const FieldDef& field) { method GenVerifyCall (line 707) | void GenVerifyCall(CodeWriter& code_, const FieldDef& field, method GenTableVerifier (line 827) | void GenTableVerifier(const StructDef& struct_def, std::string* co... method GenStructVerifier (line 847) | void GenStructVerifier(const StructDef& struct_def, std::string* c... method GenStruct (line 862) | void GenStruct(StructDef& struct_def, std::string* code_ptr, method GenVectorAccessObject (line 1684) | void GenVectorAccessObject(StructDef& struct_def, method GenUnionVerify (line 1742) | std::string GenUnionVerify(const Type& union_type) const { method GenEnum_ObjectAPI (line 1805) | void GenEnum_ObjectAPI(EnumDef& enum_def, std::string* code_ptr, method GenTypeName_ObjectAPI (line 1968) | std::string GenTypeName_ObjectAPI(const std::string& name, method GenUnionUnPack_ObjectAPI (line 1973) | void GenUnionUnPack_ObjectAPI(const EnumDef& enum_def, std::string... method GenPackUnPack_ObjectAPI (line 2027) | void GenPackUnPack_ObjectAPI( method GenStructPackDecl_ObjectAPI (line 2368) | void GenStructPackDecl_ObjectAPI( method GenStructPackCall_ObjectAPI (line 2446) | void GenStructPackCall_ObjectAPI(const StructDef& struct_def, method GenTypeGet_ObjectAPI (line 2464) | std::string GenTypeGet_ObjectAPI(flatbuffers::Type type, method GenStruct_ObjectAPI (line 2509) | void GenStruct_ObjectAPI(StructDef& struct_def, std::string* code_... function GenerateCSharp (line 2670) | static bool GenerateCSharp(const Parser& parser, const std::string& path, class CSharpCodeGenerator (line 2678) | class CSharpCodeGenerator : public CodeGenerator { method Status (line 2680) | Status GenerateCode(const Parser& parser, const std::string& path, method Status (line 2688) | Status GenerateCode(const uint8_t*, int64_t, const CodeGenOptions&) ... method Status (line 2692) | Status GenerateMakeRule(const Parser& parser, const std::string& path, method Status (line 2699) | Status GenerateGrpcCode(const Parser& parser, const std::string& path, method Status (line 2707) | Status GenerateRootFile(const Parser& parser, method IsSchemaOnly (line 2714) | bool IsSchemaOnly() const override { return true; } method SupportsBfbsGeneration (line 2716) | bool SupportsBfbsGeneration() const override { return false; } method SupportsRootFileGeneration (line 2718) | bool SupportsRootFileGeneration() const override { return false; } method Language (line 2720) | IDLOptions::Language Language() const override { return IDLOptions::... method LanguageName (line 2722) | std::string LanguageName() const override { return "CSharp"; } function NewCSharpCodeGenerator (line 2726) | std::unique_ptr NewCSharpCodeGenerator() { FILE: src/idl_gen_csharp.h function namespace (line 22) | namespace flatbuffers { FILE: src/idl_gen_dart.cpp type flatbuffers (line 29) | namespace flatbuffers { type dart (line 31) | namespace dart { function DartDefaultConfig (line 35) | static Namer::Config DartDefaultConfig() { function DartKeywords (line 59) | static std::set DartKeywords() { class DartGenerator (line 84) | class DartGenerator : public BaseGenerator { method DartGenerator (line 88) | DartGenerator(const Parser& parser, const std::string& path, method import_generator (line 95) | void import_generator(const std::string& current_namespace, method generate (line 120) | bool generate() { method Filename (line 175) | std::string Filename(const std::string& suffix, bool path = true) ... method ImportAliasName (line 181) | static std::string ImportAliasName(const std::string& ns) { method GenerateEnums (line 193) | void GenerateEnums(namespace_code_map& namespace_code) { method GenerateStructs (line 201) | void GenerateStructs(namespace_code_map& namespace_code) { method GenDocComment (line 210) | static void GenDocComment(const std::vector& dc, method GenEnum (line 219) | void GenEnum(EnumDef& enum_def, namespace_code_map& namespace_code) { method GenEnumReader (line 284) | void GenEnumReader(EnumDef& enum_def, const std::string& enum_type, method GenType (line 299) | std::string GenType(const Type& type) { method EnumSize (line 337) | static std::string EnumSize(const Type& type) { method GenReaderTypeName (line 360) | std::string GenReaderTypeName(const Type& type, Namespace* current... method GenDartTypeName (line 394) | std::string GenDartTypeName(const Type& type, Namespace* current_n... method GenDartTypeName (line 446) | std::string GenDartTypeName(const Type& type, Namespace* current_n... method MaybeWrapNamespace (line 455) | std::string MaybeWrapNamespace(const std::string& type_name, method GenStruct (line 474) | void GenStruct(const StructDef& struct_def, method GenStructObjectAPI (line 549) | std::string GenStructObjectAPI( method GenStructObjectAPIUnpack (line 603) | std::string GenStructObjectAPIUnpack( method GenStructObjectAPIPack (line 642) | std::string GenStructObjectAPIPack( method NamespaceAliasFromUnionType (line 655) | std::string NamespaceAliasFromUnionType(Namespace* root_namespace, method GenImplementationGetters (line 687) | void GenImplementationGetters( method GenToString (line 756) | std::string GenToString( method getDefaultValue (line 783) | std::string getDefaultValue(const Value& value) const { method GenReader (line 807) | void GenReader(const StructDef& struct_def, const std::string& rea... method GenBuilder (line 831) | void GenBuilder( method StructBuilderBody (line 852) | void StructBuilderBody( method TableBuilderBody (line 899) | void TableBuilderBody( method GenObjectBuilder (line 946) | void GenObjectBuilder( method GenObjectBuilderImplementation (line 1009) | std::string GenObjectBuilderImplementation( method StructObjectBuilderBody (line 1084) | std::string StructObjectBuilderBody( method TableObjectBuilderBody (line 1121) | std::string TableObjectBuilderBody( function GenerateDart (line 1163) | static bool GenerateDart(const Parser& parser, const std::string& path, function DartMakeRule (line 1169) | static std::string DartMakeRule(const Parser& parser, const std::strin... class DartCodeGenerator (line 1185) | class DartCodeGenerator : public CodeGenerator { method Status (line 1187) | Status GenerateCode(const Parser& parser, const std::string& path, method Status (line 1195) | Status GenerateCode(const uint8_t*, int64_t, const CodeGenOptions&) ... method Status (line 1199) | Status GenerateMakeRule(const Parser& parser, const std::string& path, method Status (line 1206) | Status GenerateGrpcCode(const Parser& parser, const std::string& path, method Status (line 1214) | Status GenerateRootFile(const Parser& parser, method IsSchemaOnly (line 1221) | bool IsSchemaOnly() const override { return true; } method SupportsBfbsGeneration (line 1223) | bool SupportsBfbsGeneration() const override { return false; } method SupportsRootFileGeneration (line 1225) | bool SupportsRootFileGeneration() const override { return false; } method Language (line 1227) | IDLOptions::Language Language() const override { return IDLOptions::... method LanguageName (line 1229) | std::string LanguageName() const override { return "Dart"; } function NewDartCodeGenerator (line 1233) | std::unique_ptr NewDartCodeGenerator() { FILE: src/idl_gen_dart.h function namespace (line 22) | namespace flatbuffers { FILE: src/idl_gen_fbs.cpp type flatbuffers (line 30) | namespace flatbuffers { function GenType (line 33) | static std::string GenType(const Type& type, bool underlying = false) { function HasFieldWithId (line 50) | static bool HasFieldWithId(const std::vector& fields) { function HasNonPositiveFieldId (line 62) | static bool HasNonPositiveFieldId(const std::vector& fields) { function HasFieldIdFromReservedIds (line 78) | static bool HasFieldIdFromReservedIds( function ExtractProtobufIds (line 101) | static std::vector ExtractProtobufIds( function HasTwiceUsedId (line 119) | static bool HasTwiceUsedId(const std::vector& fields) { function HasGapInProtoId (line 132) | static bool HasGapInProtoId(const std::vector& fields) { function ProtobufIdSanityCheck (line 145) | static bool ProtobufIdSanityCheck(const StructDef& struct_def, type ProtobufToFbsIdMap (line 192) | struct ProtobufToFbsIdMap { function ProtobufToFbsIdMap (line 201) | static ProtobufToFbsIdMap MapProtoIdsToFieldsId( function GenNameSpace (line 260) | static void GenNameSpace(const Namespace& name_space, std::string* _sc... function GenerateFBS (line 275) | static std::string GenerateFBS(const Parser& parser, function GenerateFBS (line 410) | static bool GenerateFBS(const Parser& parser, const std::string& path, class FBSCodeGenerator (line 426) | class FBSCodeGenerator : public CodeGenerator { method FBSCodeGenerator (line 428) | explicit FBSCodeGenerator(const bool no_log) : no_log_(no_log) {} method Status (line 430) | Status GenerateCode(const Parser& parser, const std::string& path, method Status (line 438) | Status GenerateCodeString(const Parser& parser, const std::string& f... method Status (line 446) | Status GenerateCode(const uint8_t*, int64_t, const CodeGenOptions&) ... method Status (line 450) | Status GenerateMakeRule(const Parser& parser, const std::string& path, method Status (line 460) | Status GenerateGrpcCode(const Parser& parser, const std::string& path, method Status (line 468) | Status GenerateRootFile(const Parser& parser, method IsSchemaOnly (line 475) | bool IsSchemaOnly() const override { return false; } method SupportsBfbsGeneration (line 477) | bool SupportsBfbsGeneration() const override { return false; } method SupportsRootFileGeneration (line 479) | bool SupportsRootFileGeneration() const override { return false; } method Language (line 481) | IDLOptions::Language Language() const override { return IDLOptions::... method LanguageName (line 483) | std::string LanguageName() const override { return "proto"; } function NewFBSCodeGenerator (line 491) | std::unique_ptr NewFBSCodeGenerator(const bool no_log) { FILE: src/idl_gen_fbs.h function namespace (line 22) | namespace flatbuffers { FILE: src/idl_gen_go.cpp type flatbuffers (line 42) | namespace flatbuffers { type go (line 44) | namespace go { function GoKeywords (line 49) | static std::set GoKeywords() { function GoDefaultConfig (line 59) | static Namer::Config GoDefaultConfig() { class GoGenerator (line 88) | class GoGenerator : public BaseGenerator { method GoGenerator (line 90) | GoGenerator(const Parser& parser, const std::string& path, method generate (line 104) | bool generate() { method generateEnums (line 124) | bool generateEnums(std::string* one_file_code) { method GenNativeUnionCreator (line 148) | void GenNativeUnionCreator(const EnumDef& enum_def, std::string* c... method generateStructs (line 156) | bool generateStructs(std::string* one_file_code) { type NamespacePtrLess (line 178) | struct NamespacePtrLess { method OffsetPrefix (line 189) | std::string OffsetPrefix(const FieldDef& field) { method BeginClass (line 195) | void BeginClass(const StructDef& struct_def, std::string* code_ptr) { method GetEnumTypeName (line 208) | std::string GetEnumTypeName(const EnumDef& enum_def) { method GenEnumType (line 213) | void GenEnumType(const EnumDef& enum_def, std::string* code_ptr) { method BeginEnum (line 220) | void BeginEnum(std::string* code_ptr) { method EnumMember (line 226) | void EnumMember(const EnumDef& enum_def, const EnumVal& ev, method EndEnum (line 239) | void EndEnum(std::string* code_ptr) { method BeginEnumNames (line 245) | void BeginEnumNames(const EnumDef& enum_def, std::string* code_ptr) { method EnumNameMember (line 253) | void EnumNameMember(const EnumDef& enum_def, const EnumVal& ev, method EndEnumNames (line 266) | void EndEnumNames(std::string* code_ptr) { method EnumStringer (line 272) | void EnumStringer(const EnumDef& enum_def, std::string* code_ptr) { method BeginEnumValues (line 285) | void BeginEnumValues(const EnumDef& enum_def, std::string* code_pt... method EnumValueMember (line 293) | void EnumValueMember(const EnumDef& enum_def, const EnumVal& ev, method EndEnumValues (line 305) | void EndEnumValues(std::string* code_ptr) { method NewRootTypeFromBuffer (line 311) | void NewRootTypeFromBuffer(const StructDef& struct_def, method InitializeExisting (line 369) | void InitializeExisting(const StructDef& struct_def, std::string* ... method GenTableAccessor (line 381) | void GenTableAccessor(const StructDef& struct_def, std::string* co... method GetVectorLen (line 397) | void GetVectorLen(const StructDef& struct_def, const FieldDef& field, method GetUByteSlice (line 409) | void GetUByteSlice(const StructDef& struct_def, const FieldDef& fi... method GetScalarFieldOfStruct (line 421) | void GetScalarFieldOfStruct(const StructDef& struct_def, method GetScalarFieldOfTable (line 436) | void GetScalarFieldOfTable(const StructDef& struct_def, const Fiel... method GetStructFieldOfStruct (line 460) | void GetStructFieldOfStruct(const StructDef& struct_def, method GetStructFieldOfTable (line 479) | void GetStructFieldOfTable(const StructDef& struct_def, const Fiel... method GetStringField (line 501) | void GetStringField(const StructDef& struct_def, const FieldDef& f... method GetUnionField (line 513) | void GetUnionField(const StructDef& struct_def, const FieldDef& fi... method GetMemberOfVectorOfStruct (line 527) | void GetMemberOfVectorOfStruct(const StructDef& struct_def, method GetMemberOfVectorOfStructByKey (line 548) | void GetMemberOfVectorOfStructByKey(const StructDef& struct_def, method GetMemberOfVectorOfNonStruct (line 579) | void GetMemberOfVectorOfNonStruct(const StructDef& struct_def, method BeginBuilderArgs (line 607) | void BeginBuilderArgs(const StructDef& struct_def, std::string* co... method StructBuilderArgs (line 620) | void StructBuilderArgs(const StructDef& struct_def, const char* na... method EndBuilderArgs (line 641) | void EndBuilderArgs(std::string* code_ptr) { method StructBuilderBody (line 648) | void StructBuilderBody(const StructDef& struct_def, const char* na... method EndBuilderBody (line 670) | void EndBuilderBody(std::string* code_ptr) { method GetStartOfTable (line 677) | void GetStartOfTable(const StructDef& struct_def, std::string* cod... method BuildFieldOfTable (line 687) | void BuildFieldOfTable(const StructDef& struct_def, const FieldDef... method BuildVectorOfTable (line 724) | void BuildVectorOfTable(const StructDef& struct_def, const FieldDe... method GetEndOffsetOnTable (line 740) | void GetEndOffsetOnTable(const StructDef& struct_def, std::string*... method GenReceiver (line 748) | void GenReceiver(const StructDef& struct_def, std::string* code_pt... method GenStructAccessor (line 754) | void GenStructAccessor(const StructDef& struct_def, const FieldDef... method MutateScalarFieldOfStruct (line 806) | void MutateScalarFieldOfStruct(const StructDef& struct_def, method MutateScalarFieldOfTable (line 821) | void MutateScalarFieldOfTable(const StructDef& struct_def, method MutateElementOfVectorOfNonStruct (line 835) | void MutateElementOfVectorOfNonStruct(const StructDef& struct_def, method GenStructMutator (line 857) | void GenStructMutator(const StructDef& struct_def, const FieldDef&... method GenTableBuilders (line 874) | void GenTableBuilders(const StructDef& struct_def, std::string* co... method GenStruct (line 893) | void GenStruct(const StructDef& struct_def, std::string* code_ptr) { method GenKeyCompare (line 940) | void GenKeyCompare(const StructDef& struct_def, const FieldDef& fi... method GenLookupByKey (line 962) | void GenLookupByKey(const StructDef& struct_def, const FieldDef& f... method GenNativeStruct (line 1015) | void GenNativeStruct(const StructDef& struct_def, std::string* cod... method GenNativeUnion (line 1045) | void GenNativeUnion(const EnumDef& enum_def, std::string* code_ptr) { method GenNativeUnionPack (line 1055) | void GenNativeUnionPack(const EnumDef& enum_def, std::string* code... method GenNativeUnionUnPack (line 1077) | void GenNativeUnionUnPack(const EnumDef& enum_def, std::string* co... method GenNativeTablePack (line 1108) | void GenNativeTablePack(const StructDef& struct_def, std::string* ... method GenNativeTableUnPack (line 1237) | void GenNativeTableUnPack(const StructDef& struct_def, method GenNativeStructPack (line 1314) | void GenNativeStructPack(const StructDef& struct_def, std::string*... method StructPackArgs (line 1326) | void StructPackArgs(const StructDef& struct_def, const char* namep... method GenNativeStructUnPack (line 1342) | void GenNativeStructUnPack(const StructDef& struct_def, method GenEnum (line 1371) | void GenEnum(const EnumDef& enum_def, std::string* code_ptr) { method GenGetter (line 1405) | std::string GenGetter(const Type& type) { method GenMethod (line 1419) | std::string GenMethod(const FieldDef& field) { method GenTypeBasic (line 1425) | std::string GenTypeBasic(const Type& type) { method GenTypePointer (line 1437) | std::string GenTypePointer(const Type& type) { method GenTypeGet (line 1452) | std::string GenTypeGet(const Type& type) { method TypeName (line 1459) | std::string TypeName(const FieldDef& field) { method CastToEnum (line 1469) | std::string CastToEnum(const Type& type, std::string value) { method CastToBaseType (line 1479) | std::string CastToBaseType(const Type& type, std::string value) { method GenConstant (line 1487) | std::string GenConstant(const FieldDef& field) { method NativeName (line 1516) | std::string NativeName(const StructDef& struct_def) const { method NativeName (line 1520) | std::string NativeName(const EnumDef& enum_def) const { method NativeType (line 1524) | std::string NativeType(const Type& type) { method GenStructBuilder (line 1547) | void GenStructBuilder(const StructDef& struct_def, std::string* co... method BeginFile (line 1557) | void BeginFile(const std::string& name_space_name, const bool need... method ResetImports (line 1606) | void ResetImports() { method SaveType (line 1613) | bool SaveType(const Definition& def, const std::string& classcode, method NamespaceImportName (line 1635) | std::string NamespaceImportName(const Namespace* ns) const { method NamespaceImportPath (line 1640) | std::string NamespaceImportPath(const Namespace* ns) const { method WrapInNameSpaceAndTrack (line 1651) | std::string WrapInNameSpaceAndTrack(const Definition* def, method Namespace (line 1661) | const Namespace* CurrentNameSpace() const { return cur_name_space_; } method MaxNameLength (line 1663) | static size_t MaxNameLength(const EnumDef& enum_def) { function GenerateGo (line 1673) | static bool GenerateGo(const Parser& parser, const std::string& path, class GoCodeGenerator (line 1681) | class GoCodeGenerator : public CodeGenerator { method Status (line 1683) | Status GenerateCode(const Parser& parser, const std::string& path, method Status (line 1691) | Status GenerateCode(const uint8_t*, int64_t, const CodeGenOptions&) ... method Status (line 1695) | Status GenerateMakeRule(const Parser& parser, const std::string& path, method Status (line 1705) | Status GenerateGrpcCode(const Parser& parser, const std::string& path, method Status (line 1713) | Status GenerateRootFile(const Parser& parser, method IsSchemaOnly (line 1720) | bool IsSchemaOnly() const override { return true; } method SupportsBfbsGeneration (line 1722) | bool SupportsBfbsGeneration() const override { return false; } method SupportsRootFileGeneration (line 1724) | bool SupportsRootFileGeneration() const override { return false; } method Language (line 1726) | IDLOptions::Language Language() const override { return IDLOptions::... method LanguageName (line 1728) | std::string LanguageName() const override { return "Go"; } function NewGoCodeGenerator (line 1732) | std::unique_ptr NewGoCodeGenerator() { FILE: src/idl_gen_go.h function namespace (line 22) | namespace flatbuffers { FILE: src/idl_gen_grpc.cpp type flatbuffers (line 38) | namespace flatbuffers { class FlatBufMethod (line 40) | class FlatBufMethod : public grpc_generator::Method { type Streaming (line 42) | enum Streaming { kNone, kClient, kServer, kBiDi } method FlatBufMethod (line 44) | FlatBufMethod(const RPCCall* method) : method_(method) { method GetLeadingComments (line 54) | grpc::string GetLeadingComments(const grpc::string) const { return "... method GetTrailingComments (line 56) | grpc::string GetTrailingComments(const grpc::string) const { return ... method GetAllComments (line 58) | std::vector GetAllComments() const { method name (line 62) | std::string name() const { return method_->name; } method GRPCType (line 66) | std::string GRPCType(const StructDef& sd) const { method get_input_namespace_parts (line 70) | std::vector get_input_namespace_parts() const { method get_input_type_name (line 74) | std::string get_input_type_name() const { return (*method_->request)... method get_output_namespace_parts (line 76) | std::vector get_output_namespace_parts() const { method get_output_type_name (line 80) | std::string get_output_type_name() const { return (*method_->respons... method get_module_and_message_path_input (line 82) | bool get_module_and_message_path_input(grpc::string* /*str*/, method get_module_and_message_path_output (line 89) | bool get_module_and_message_path_output( method get_fb_builder (line 95) | std::string get_fb_builder() const { return "builder"; } method input_type_name (line 97) | std::string input_type_name() const { return GRPCType(*method_->requ... method output_type_name (line 99) | std::string output_type_name() const { return GRPCType(*method_->res... method NoStreaming (line 101) | bool NoStreaming() const { return streaming_ == kNone; } method ClientStreaming (line 103) | bool ClientStreaming() const { return streaming_ == kClient; } method ServerStreaming (line 105) | bool ServerStreaming() const { return streaming_ == kServer; } method BidiStreaming (line 107) | bool BidiStreaming() const { return streaming_ == kBiDi; } class FlatBufService (line 114) | class FlatBufService : public grpc_generator::Service { method FlatBufService (line 116) | FlatBufService(const ServiceDef* service) : service_(service) {} method GetLeadingComments (line 118) | grpc::string GetLeadingComments(const grpc::string) const { return "... method GetTrailingComments (line 120) | grpc::string GetTrailingComments(const grpc::string) const { return ... method GetAllComments (line 122) | std::vector GetAllComments() const { method namespace_parts (line 126) | std::vector namespace_parts() const { method name (line 130) | std::string name() const { return service_->name; } method is_internal (line 131) | bool is_internal() const { method method_count (line 135) | int method_count() const { method method (line 139) | std::unique_ptr method(int i) const { class FlatBufPrinter (line 148) | class FlatBufPrinter : public grpc_generator::Printer { method FlatBufPrinter (line 150) | FlatBufPrinter(std::string* str, const char indentation_type) method Print (line 157) | void Print(const std::map& vars, method Print (line 177) | void Print(const char* s) { method SetIndentationSize (line 198) | void SetIndentationSize(const size_t size) { method Indent (line 203) | void Indent() { indent_++; } method Outdent (line 205) | void Outdent() { class FlatBufFile (line 218) | class FlatBufFile : public grpc_generator::File { type Language (line 220) | enum Language { method FlatBufFile (line 229) | FlatBufFile(const Parser& parser, const std::string& file_name, method GetLeadingComments (line 235) | grpc::string GetLeadingComments(const grpc::string) const { return "... method GetTrailingComments (line 237) | grpc::string GetTrailingComments(const grpc::string) const { return ... method GetAllComments (line 239) | std::vector GetAllComments() const { method filename (line 243) | std::string filename() const { return file_name_; } method filename_without_ext (line 245) | std::string filename_without_ext() const { method package (line 249) | std::string package() const { method package_parts (line 253) | std::vector package_parts() const { method additional_headers (line 257) | std::string additional_headers() const { method service_count (line 290) | int service_count() const { method service (line 294) | std::unique_ptr service(int i) const { method CreatePrinter (line 299) | std::unique_ptr CreatePrinter( class GoGRPCGenerator (line 311) | class GoGRPCGenerator : public flatbuffers::BaseGenerator { method GoGRPCGenerator (line 313) | GoGRPCGenerator(const Parser& parser, const std::string& path, method generate (line 320) | bool generate() { function GenerateGoGRPC (line 345) | bool GenerateGoGRPC(const Parser& parser, const std::string& path, function GenerateCppGRPC (line 356) | bool GenerateCppGRPC(const Parser& parser, const std::string& path, class JavaGRPCGenerator (line 407) | class JavaGRPCGenerator : public flatbuffers::BaseGenerator { method JavaGRPCGenerator (line 409) | JavaGRPCGenerator(const Parser& parser, const std::string& path, method generate (line 413) | bool generate() { function GenerateJavaGRPC (line 432) | bool GenerateJavaGRPC(const Parser& parser, const std::string& path, function GeneratePythonGRPC (line 443) | bool GeneratePythonGRPC(const Parser& parser, const std::string& path, class SwiftGRPCGenerator (line 464) | class SwiftGRPCGenerator : public flatbuffers::BaseGenerator { method SwiftGRPCGenerator (line 469) | SwiftGRPCGenerator(const Parser& parser, const std::string& path, method generate (line 473) | bool generate() { method GeneratedFileName (line 488) | static std::string GeneratedFileName(const std::string& path, function GenerateSwiftGRPC (line 494) | bool GenerateSwiftGRPC(const Parser& parser, const std::string& path, class TSGRPCGenerator (line 505) | class TSGRPCGenerator : public flatbuffers::BaseGenerator { method TSGRPCGenerator (line 510) | TSGRPCGenerator(const Parser& parser, const std::string& path, method generate (line 514) | bool generate() { method GeneratedFileName (line 537) | static std::string GeneratedFileName(const std::string& path, function GenerateTSGRPC (line 545) | bool GenerateTSGRPC(const Parser& parser, const std::string& path, FILE: src/idl_gen_java.cpp type flatbuffers (line 27) | namespace flatbuffers { type java (line 28) | namespace java { function JavaDefaultConfig (line 32) | static Namer::Config JavaDefaultConfig() { function JavaKeywords (line 58) | static std::set JavaKeywords() { class JavaGenerator (line 87) | class JavaGenerator : public BaseGenerator { type FieldArrayLength (line 88) | struct FieldArrayLength { method JavaGenerator (line 94) | JavaGenerator(const Parser& parser, const std::string& path, method generate (line 111) | bool generate() { method SaveType (line 181) | bool SaveType(const std::string& defname, const Namespace& ns, method Namespace (line 232) | const Namespace* CurrentNameSpace() const { return cur_name_space_; } method GenNullableAnnotation (line 234) | std::string GenNullableAnnotation(const Type& t) const { method GenPureAnnotation (line 242) | std::string GenPureAnnotation(const Type& t) const { method GenTypeBasic (line 249) | std::string GenTypeBasic(const Type& type) const { method GenTypePointer (line 261) | std::string GenTypePointer(const Type& type) const { method GenTypeGet (line 276) | std::string GenTypeGet(const Type& type) const { method Type (line 285) | Type DestinationType(const Type& type, bool vectorelem) const { method GenOffsetType (line 304) | std::string GenOffsetType() const { return "int"; } method GenOffsetConstruct (line 306) | std::string GenOffsetConstruct(const std::string& variable_name) c... method GenVectorOffsetType (line 310) | std::string GenVectorOffsetType() const { return "int"; } method GenTypeNameDest (line 313) | std::string GenTypeNameDest(const Type& type) const { method DestinationMask (line 318) | std::string DestinationMask(const Type& type, bool vectorelem) con... method DestinationCast (line 335) | std::string DestinationCast(const Type& type) const { method SourceCast (line 349) | std::string SourceCast(const Type& type, bool castFromDest) const { method SourceCast (line 365) | std::string SourceCast(const Type& type) const { method SourceCastBasic (line 369) | std::string SourceCastBasic(const Type& type, bool castFromDest) c... method SourceCastBasic (line 373) | std::string SourceCastBasic(const Type& type) const { method GenEnumDefaultValue (line 377) | std::string GenEnumDefaultValue(const FieldDef& field) const { method GenDefaultValue (line 387) | std::string GenDefaultValue(const FieldDef& field) const { method GenDefaultValueBasic (line 414) | std::string GenDefaultValueBasic(const FieldDef& field) const { method GenEnum (line 422) | void GenEnum(EnumDef& enum_def, std::string& code) const { method GenGetter (line 494) | std::string GenGetter(const Type& type) const { method GenGetterForLookupByKey (line 519) | std::string GenGetterForLookupByKey(flatbuffers::FieldDef* key_field, method GenSetter (line 536) | std::string GenSetter(const Type& type) const { method GenMethod (line 549) | std::string GenMethod(const Type& type) const { method GenStructArgs (line 557) | void GenStructArgs(const StructDef& struct_def, std::string& code, method GenStructBody (line 587) | void GenStructBody(const StructDef& struct_def, std::string& code, method GenOffsetGetter (line 640) | std::string GenOffsetGetter(flatbuffers::FieldDef* key_field, method GenLookupKeyGetter (line 654) | std::string GenLookupKeyGetter(flatbuffers::FieldDef* key_field) c... method GenKeyGetter (line 673) | std::string GenKeyGetter(flatbuffers::FieldDef* key_field) const { method GenStruct (line 697) | void GenStruct(StructDef& struct_def, std::string& code, method GenOptionalScalarCheck (line 1319) | std::string GenOptionalScalarCheck(FieldDef& field) const { method GenVectorAccessObject (line 1326) | void GenVectorAccessObject(StructDef& struct_def, std::string& cod... method GenEnum_ObjectAPI (line 1385) | void GenEnum_ObjectAPI(EnumDef& enum_def, std::string& code) const { method GenUnionUnPack_ObjectAPI (line 1453) | void GenUnionUnPack_ObjectAPI(const EnumDef& enum_def, std::string... method GenPackUnPack_ObjectAPI (line 1507) | void GenPackUnPack_ObjectAPI( method GenStructPackDecl_ObjectAPI (line 1902) | void GenStructPackDecl_ObjectAPI(const StructDef& struct_def, method GenStructPackCall_ObjectAPI (line 1985) | void GenStructPackCall_ObjectAPI(const StructDef& struct_def, method ConvertPrimitiveTypeToObjectWrapper_ObjectAPI (line 2002) | std::string ConvertPrimitiveTypeToObjectWrapper_ObjectAPI( method GenTypeGet_ObjectAPI (line 2023) | std::string GenTypeGet_ObjectAPI(const flatbuffers::Type& type, method GenConcreteTypeGet_ObjectAPI (line 2077) | std::string GenConcreteTypeGet_ObjectAPI( method GenStruct_ObjectAPI (line 2119) | void GenStruct_ObjectAPI(const StructDef& struct_def, method Prefixed (line 2238) | std::string Prefixed(const std::string& str) const { function GenerateJava (line 2247) | static bool GenerateJava(const Parser& parser, const std::string& path, class JavaCodeGenerator (line 2256) | class JavaCodeGenerator : public CodeGenerator { method Status (line 2258) | Status GenerateCode(const Parser& parser, const std::string& path, method Status (line 2266) | Status GenerateCode(const uint8_t*, int64_t, const CodeGenOptions&) ... method Status (line 2270) | Status GenerateMakeRule(const Parser& parser, const std::string& path, method Status (line 2277) | Status GenerateGrpcCode(const Parser& parser, const std::string& path, method Status (line 2285) | Status GenerateRootFile(const Parser& parser, method IsSchemaOnly (line 2292) | bool IsSchemaOnly() const override { return true; } method SupportsBfbsGeneration (line 2294) | bool SupportsBfbsGeneration() const override { return false; } method SupportsRootFileGeneration (line 2296) | bool SupportsRootFileGeneration() const override { return false; } method Language (line 2298) | IDLOptions::Language Language() const override { return IDLOptions::... method LanguageName (line 2300) | std::string LanguageName() const override { return "Java"; } function NewJavaCodeGenerator (line 2304) | std::unique_ptr NewJavaCodeGenerator() { FILE: src/idl_gen_java.h function namespace (line 22) | namespace flatbuffers { FILE: src/idl_gen_json_schema.cpp type flatbuffers (line 27) | namespace flatbuffers { type jsons (line 29) | namespace jsons { function GenFullName (line 34) | static std::string GenFullName(const T* enum_def) { function GenTypeRef (line 45) | static std::string GenTypeRef(const T* enum_def) { function GenType (line 49) | static std::string GenType(const std::string& name) { function GenType (line 53) | static std::string GenType(BaseType type) { function GenBaseType (line 99) | static std::string GenBaseType(const Type& type) { function GenArrayType (line 109) | static std::string GenArrayType(const Type& type) { function GenType (line 122) | static std::string GenType(const Type& type) { class JsonSchemaGenerator (line 161) | class JsonSchemaGenerator : public BaseGenerator { method JsonSchemaGenerator (line 166) | JsonSchemaGenerator(const Parser& parser, const std::string& path, method JsonSchemaGenerator (line 170) | explicit JsonSchemaGenerator(const BaseGenerator& base_generator) method GeneratedFileName (line 173) | std::string GeneratedFileName(const std::string& path, method NewLine (line 182) | std::string NewLine() const { method Indent (line 186) | std::string Indent(int indent) const { method PrepareDescription (line 191) | std::string PrepareDescription( method generate (line 224) | bool generate() { method save (line 331) | bool save() const { method getJson (line 336) | const std::string getJson() { return code_; } function GenerateJsonSchema (line 340) | static bool GenerateJsonSchema(const Parser& parser, const std::string... class JsonSchemaCodeGenerator (line 351) | class JsonSchemaCodeGenerator : public CodeGenerator { method Status (line 353) | Status GenerateCode(const Parser& parser, const std::string& path, method Status (line 361) | Status GenerateCode(const uint8_t*, int64_t, const CodeGenOptions&) ... method Status (line 365) | Status GenerateMakeRule(const Parser& parser, const std::string& path, method Status (line 375) | Status GenerateGrpcCode(const Parser& parser, const std::string& path, method Status (line 383) | Status GenerateRootFile(const Parser& parser, method IsSchemaOnly (line 389) | bool IsSchemaOnly() const override { return true; } method SupportsBfbsGeneration (line 391) | bool SupportsBfbsGeneration() const override { return false; } method SupportsRootFileGeneration (line 393) | bool SupportsRootFileGeneration() const override { return false; } method Language (line 395) | IDLOptions::Language Language() const override { method LanguageName (line 399) | std::string LanguageName() const override { return "JsonSchema"; } function NewJsonSchemaCodeGenerator (line 403) | std::unique_ptr NewJsonSchemaCodeGenerator() { FILE: src/idl_gen_json_schema.h function namespace (line 25) | namespace flatbuffers { FILE: src/idl_gen_kotlin.cpp type flatbuffers (line 30) | namespace flatbuffers { type kotlin (line 32) | namespace kotlin { function KotlinKeywords (line 43) | static std::set KotlinKeywords() { function KotlinDefaultConfig (line 51) | static Namer::Config KotlinDefaultConfig() { class KotlinGenerator (line 76) | class KotlinGenerator : public BaseGenerator { method KotlinGenerator (line 78) | KotlinGenerator(const Parser& parser, const std::string& path, method SaveType (line 125) | bool SaveType(const std::string& defname, const Namespace& ns, method IsEnum (line 163) | static bool IsEnum(const Type& type) { method GenTypeBasic (line 167) | static std::string GenTypeBasic(const BaseType& type) { method GenTypePointer (line 180) | std::string GenTypePointer(const Type& type) const { method GetterReturnType (line 195) | std::string GetterReturnType(const FieldDef& field) const { method GenTypeGet (line 212) | std::string GenTypeGet(const Type& type) const { method GenEnumDefaultValue (line 217) | std::string GenEnumDefaultValue(const FieldDef& field) const { method GenFBBDefaultValue (line 231) | std::string GenFBBDefaultValue(const FieldDef& field) const { method GenFBBValueCast (line 261) | std::string GenFBBValueCast(const FieldDef& field) const { method GenDefaultValue (line 268) | std::string GenDefaultValue(const FieldDef& field, method GenEnum (line 296) | void GenEnum(EnumDef& enum_def, CodeWriter& writer) const { method ByteBufferGetter (line 363) | std::string ByteBufferGetter(const Type& type, method ByteBufferSetter (line 400) | std::string ByteBufferSetter(const Type& type) const { method GenLookupByKey (line 430) | std::string GenLookupByKey(flatbuffers::FieldDef* key_field, method GenMethod (line 439) | static std::string GenMethod(const Type& type) { method GenStructArgs (line 446) | void GenStructArgs(const StructDef& struct_def, CodeWriter& writer, method GenStructBody (line 469) | void GenStructBody(const StructDef& struct_def, CodeWriter& writer, method GenByteBufferLength (line 494) | std::string GenByteBufferLength(const char* bb_name) const { method GenOffsetGetter (line 500) | std::string GenOffsetGetter(flatbuffers::FieldDef* key_field, method GenStruct (line 514) | void GenStruct(StructDef& struct_def, CodeWriter& writer, method GenerateLookupByKey (line 607) | void GenerateLookupByKey(FieldDef* key_field, StructDef& struct_def, method GenerateFinishSizePrefixed (line 668) | void GenerateFinishSizePrefixed(StructDef& struct_def, method GenerateFinishStructBuffer (line 681) | void GenerateFinishStructBuffer(StructDef& struct_def, method GenerateEndStructMethod (line 695) | void GenerateEndStructMethod(StructDef& struct_def, CodeWriter& wr... method GenerateCreateVectorField (line 723) | void GenerateCreateVectorField(FieldDef& field, CodeWriter& writer, method GenerateStartVectorField (line 751) | void GenerateStartVectorField(FieldDef& field, CodeWriter& writer, method GenerateAddField (line 768) | void GenerateAddField(std::string field_pos, FieldDef& field, method ToSignedType (line 803) | static std::string ToSignedType(const Type& type) { method FlexBufferBuilderCast (line 822) | static std::string FlexBufferBuilderCast(const std::string& method, method GenerateStartStructMethod (line 847) | void GenerateStartStructMethod(StructDef& struct_def, CodeWriter& ... method GenerateTableCreator (line 859) | void GenerateTableCreator(StructDef& struct_def, CodeWriter& writer, method GenerateBufferHasIdentifier (line 937) | void GenerateBufferHasIdentifier(StructDef& struct_def, CodeWriter... method GenerateStructGetters (line 952) | void GenerateStructGetters(StructDef& struct_def, CodeWriter& writ... method CastToUsigned (line 1328) | static std::string CastToUsigned(const FieldDef& field) { method CastToUsigned (line 1332) | static std::string CastToUsigned(const Type type) { method CastToSigned (line 1350) | static std::string CastToSigned(const FieldDef& field) { method CastToSigned (line 1354) | static std::string CastToSigned(const Type type) { method LiteralSuffix (line 1372) | static std::string LiteralSuffix(const BaseType type) { method GenerateCompanionObject (line 1388) | void GenerateCompanionObject(CodeWriter& code, method GenerateComment (line 1398) | void GenerateComment(const std::vector& dc, CodeWrite... method GenerateGetRootAsAccessors (line 1420) | void GenerateGetRootAsAccessors(const std::string& struct_name, method GenerateStaticConstructor (line 1448) | void GenerateStaticConstructor(const StructDef& struct_def, CodeWr... method StructConstructorParams (line 1461) | std::string StructConstructorParams(const StructDef& struct_def, method GeneratePropertyOneLine (line 1486) | static void GeneratePropertyOneLine(CodeWriter& writer, method GenerateGetterOneLine (line 1498) | static void GenerateGetterOneLine(CodeWriter& writer, const std::s... method GenerateGetter (line 1510) | static void GenerateGetter(CodeWriter& writer, const std::string& ... method GenerateFun (line 1531) | static void GenerateFun(CodeWriter& writer, const std::string& name, method GenerateFunOneLine (line 1553) | static void GenerateFunOneLine(CodeWriter& writer, const std::stri... method GenerateOverrideFun (line 1570) | static void GenerateOverrideFun(CodeWriter& writer, const std::str... method GenerateOverrideFunOneLine (line 1581) | static void GenerateOverrideFunOneLine(CodeWriter& writer, method OffsetWrapperOneLine (line 1597) | static std::string OffsetWrapperOneLine(const std::string& offset, method OffsetWrapper (line 1604) | static void OffsetWrapper(CodeWriter& code, const std::string& off... method Indirect (line 1619) | static std::string Indirect(const std::string& index, bool fixed) { method NotFoundReturn (line 1625) | static std::string NotFoundReturn(BaseType el) { method GenerateJvmStaticAnnotation (line 1651) | static void GenerateJvmStaticAnnotation(CodeWriter& code, function GenerateKotlin (line 1662) | static bool GenerateKotlin(const Parser& parser, const std::string& path, class KotlinCodeGenerator (line 1670) | class KotlinCodeGenerator : public CodeGenerator { method Status (line 1672) | Status GenerateCode(const Parser& parser, const std::string& path, method Status (line 1680) | Status GenerateCode(const uint8_t*, int64_t, const CodeGenOptions&) ... method Status (line 1684) | Status GenerateMakeRule(const Parser& parser, const std::string& path, method Status (line 1694) | Status GenerateGrpcCode(const Parser& parser, const std::string& path, method Status (line 1702) | Status GenerateRootFile(const Parser& parser, method IsSchemaOnly (line 1708) | bool IsSchemaOnly() const override { return true; } method SupportsBfbsGeneration (line 1710) | bool SupportsBfbsGeneration() const override { return false; } method SupportsRootFileGeneration (line 1712) | bool SupportsRootFileGeneration() const override { return false; } method Language (line 1714) | IDLOptions::Language Language() const override { return IDLOptions::... method LanguageName (line 1716) | std::string LanguageName() const override { return "Kotlin"; } function NewKotlinCodeGenerator (line 1720) | std::unique_ptr NewKotlinCodeGenerator() { FILE: src/idl_gen_kotlin.h function namespace (line 22) | namespace flatbuffers { FILE: src/idl_gen_kotlin_kmp.cpp type flatbuffers (line 28) | namespace flatbuffers { type kotlin (line 30) | namespace kotlin { function KotlinKeywords (line 41) | static std::set KotlinKeywords() { function KotlinDefaultConfig (line 49) | static Namer::Config KotlinDefaultConfig() { class KotlinKMPGenerator (line 74) | class KotlinKMPGenerator : public BaseGenerator { method KotlinKMPGenerator (line 76) | KotlinKMPGenerator(const Parser& parser, const std::string& path, method TypeInNameSpace (line 130) | std::string TypeInNameSpace(const Namespace* ns, method TypeInNameSpace (line 136) | std::string TypeInNameSpace(const Definition& def, method SaveType (line 143) | bool SaveType(const std::string& defname, const Namespace& ns, method IsEnum (line 168) | static bool IsEnum(const Type& type) { method GenerateKotlinPrimiteArray (line 172) | std::string GenerateKotlinPrimiteArray(const Type& type) const { method GenerateKotlinOffsetArray (line 195) | std::string GenerateKotlinOffsetArray(const Type& type) const { method GenTypeBasic (line 218) | std::string GenTypeBasic(const BaseType& type) const { method GenType (line 260) | std::string GenType(const Type& type) const { method GenTypePointer (line 295) | std::string GenTypePointer(const Type& type) const { method GetterReturnType (line 310) | std::string GetterReturnType(const FieldDef& field) const { method GenTypeGet (line 326) | std::string GenTypeGet(const Type& type) const { method GenEnumDefaultValue (line 330) | std::string GenEnumDefaultValue(const FieldDef& field) const { method GenDefaultBufferValue (line 341) | std::string GenDefaultBufferValue(const FieldDef& field) const { method GenDefaultValue (line 373) | std::string GenDefaultValue(const FieldDef& field) const { method GenEnum (line 427) | void GenEnum(EnumDef& enum_def, CodeWriter& writer) const { method ByteBufferGetter (line 495) | std::string ByteBufferGetter(const Type& type, method GenLookupByKey (line 536) | std::string GenLookupByKey(flatbuffers::FieldDef* key_field, method GenMethod (line 545) | static std::string GenMethod(const Type& type) { method GenStructArgs (line 551) | void GenStructArgs(const StructDef& struct_def, CodeWriter& writer, method GenStructBody (line 574) | void GenStructBody(const StructDef& struct_def, CodeWriter& writer, method GenOffsetGetter (line 600) | std::string GenOffsetGetter(flatbuffers::FieldDef* key_field, method StructHasUnsignedField (line 613) | bool StructHasUnsignedField(StructDef& struct_def) { method GenStructOffsetAlias (line 630) | void GenStructOffsetAlias(StructDef& struct_def, CodeWriter& write... method GenEnumOffsetAlias (line 654) | void GenEnumOffsetAlias(EnumDef& enum_def, CodeWriter& writer) con... method GenStruct (line 662) | void GenStruct(StructDef& struct_def, CodeWriter& writer, method GenerateLookupByKey (line 761) | void GenerateLookupByKey(FieldDef* key_field, StructDef& struct_def, method GenerateFinishSizePrefixed (line 819) | void GenerateFinishSizePrefixed(StructDef& struct_def, method GenerateFinishStructBuffer (line 833) | void GenerateFinishStructBuffer(StructDef& struct_def, method GenerateEndStructMethod (line 848) | void GenerateEndStructMethod(StructDef& struct_def, CodeWriter& wr... method GenerateCreateVectorField (line 877) | void GenerateCreateVectorField(FieldDef& field, CodeWriter& writer, method GenerateStartVectorField (line 902) | void GenerateStartVectorField(FieldDef& field, CodeWriter& writer, method GenerateAddField (line 919) | void GenerateAddField(std::string field_pos, FieldDef& field, method GenerateStartStructMethod (line 962) | void GenerateStartStructMethod(StructDef& struct_def, CodeWriter& ... method GenerateTableCreator (line 974) | void GenerateTableCreator(StructDef& struct_def, CodeWriter& writer, method GenerateBufferHasIdentifier (line 1053) | void GenerateBufferHasIdentifier(StructDef& struct_def, CodeWriter... method GenerateStructGetters (line 1069) | void GenerateStructGetters(StructDef& struct_def, CodeWriter& writ... method LiteralSuffix (line 1344) | static std::string LiteralSuffix(const Type& type) { method WrapEnumValue (line 1361) | std::string WrapEnumValue(const Type& type, const std::string valu... method GenerateCompanionObject (line 1371) | void GenerateCompanionObject(CodeWriter& code, method GenerateComment (line 1381) | void GenerateComment(const std::vector& dc, CodeWrite... method GenerateGetRootAsAccessors (line 1403) | void GenerateGetRootAsAccessors(const std::string& struct_name, method GenerateStaticConstructor (line 1426) | void GenerateStaticConstructor(const StructDef& struct_def, CodeWr... method StructConstructorParams (line 1440) | std::string StructConstructorParams(const StructDef& struct_def, method GenerateVarGetterSetterOneLine (line 1465) | static void GenerateVarGetterSetterOneLine(CodeWriter& writer, method GeneratePropertyOneLine (line 1485) | static void GeneratePropertyOneLine(CodeWriter& writer, method GenerateGetterOneLine (line 1497) | static void GenerateGetterOneLine(CodeWriter& writer, const std::s... method GenerateGetter (line 1509) | static void GenerateGetter(CodeWriter& writer, const std::string& ... method GenerateFun (line 1530) | static void GenerateFun(CodeWriter& writer, const std::string& name, method GenerateFunOneLine (line 1552) | static void GenerateFunOneLine(CodeWriter& writer, const std::stri... method GenerateOverrideFun (line 1566) | static void GenerateOverrideFun(CodeWriter& writer, const std::str... method GenerateOverrideFunOneLine (line 1577) | static void GenerateOverrideFunOneLine(CodeWriter& writer, method LookupFieldOneLine (line 1593) | static std::string LookupFieldOneLine(const std::string& offset, method Indirect (line 1599) | static std::string Indirect(const std::string& index, bool fixed) { method NotFoundReturn (line 1605) | static std::string NotFoundReturn(BaseType el) { method GenerateJvmStaticAnnotation (line 1631) | static void GenerateJvmStaticAnnotation(CodeWriter& code, function GenerateKotlinKMP (line 1642) | static bool GenerateKotlinKMP(const Parser& parser, const std::string&... class KotlinKMPCodeGenerator (line 1650) | class KotlinKMPCodeGenerator : public CodeGenerator { method Status (line 1652) | Status GenerateCode(const Parser& parser, const std::string& path, method Status (line 1660) | Status GenerateCode(const uint8_t*, int64_t, const CodeGenOptions&) ... method Status (line 1664) | Status GenerateMakeRule(const Parser& parser, const std::string& path, method Status (line 1674) | Status GenerateGrpcCode(const Parser& parser, const std::string& path, method Status (line 1682) | Status GenerateRootFile(const Parser& parser, method IsSchemaOnly (line 1688) | bool IsSchemaOnly() const override { return true; } method SupportsBfbsGeneration (line 1690) | bool SupportsBfbsGeneration() const override { return false; } method SupportsRootFileGeneration (line 1692) | bool SupportsRootFileGeneration() const override { return false; } method Language (line 1694) | IDLOptions::Language Language() const override { method LanguageName (line 1698) | std::string LanguageName() const override { return "Kotlin"; } function NewKotlinKMPCodeGenerator (line 1702) | std::unique_ptr NewKotlinKMPCodeGenerator() { FILE: src/idl_gen_lobster.cpp type flatbuffers (line 27) | namespace flatbuffers { type lobster (line 28) | namespace lobster { class LobsterGenerator (line 30) | class LobsterGenerator : public BaseGenerator { method LobsterGenerator (line 32) | LobsterGenerator(const Parser& parser, const std::string& path, method EscapeKeyword (line 47) | std::string EscapeKeyword(const std::string& name) const { method NormalizedName (line 51) | std::string NormalizedName(const Definition& definition) const { method NormalizedName (line 55) | std::string NormalizedName(const EnumVal& ev) const { method NamespacedName (line 59) | std::string NamespacedName(const Definition& def) { method GenTypeName (line 63) | std::string GenTypeName(const Type& type) { method LobsterType (line 77) | std::string LobsterType(const Type& type) { method GenMethod (line 88) | std::string GenMethod(const Type& type) { method GenTypeBasic (line 95) | std::string GenTypeBasic(const Type& type) { method GenStructAccessor (line 109) | void GenStructAccessor(const StructDef& struct_def, const FieldDef... method GenTableBuilders (line 220) | void GenTableBuilders(const StructDef& struct_def, std::string* co... method GenStructPreDecl (line 270) | void GenStructPreDecl(const StructDef& struct_def, std::string* co... method GenStruct (line 278) | void GenStruct(const StructDef& struct_def, std::string* code_ptr) { method GenEnum (line 308) | void GenEnum(const EnumDef& enum_def, std::string* code_ptr) { method StructBuilderArgs (line 325) | void StructBuilderArgs(const StructDef& struct_def, const char* na... method StructBuilderBody (line 347) | void StructBuilderBody(const StructDef& struct_def, const char* na... method GenStructBuilder (line 369) | void GenStructBuilder(const StructDef& struct_def, std::string* co... method CheckNameSpace (line 379) | void CheckNameSpace(const Definition& def, std::string* code_ptr) { method generate (line 387) | bool generate() { function GenerateLobster (line 418) | static bool GenerateLobster(const Parser& parser, const std::string& p... class LobsterCodeGenerator (line 426) | class LobsterCodeGenerator : public CodeGenerator { method Status (line 428) | Status GenerateCode(const Parser& parser, const std::string& path, method Status (line 436) | Status GenerateCode(const uint8_t*, int64_t, const CodeGenOptions&) ... method Status (line 440) | Status GenerateMakeRule(const Parser& parser, const std::string& path, method Status (line 450) | Status GenerateGrpcCode(const Parser& parser, const std::string& path, method Status (line 458) | Status GenerateRootFile(const Parser& parser, method IsSchemaOnly (line 465) | bool IsSchemaOnly() const override { return true; } method SupportsBfbsGeneration (line 467) | bool SupportsBfbsGeneration() const override { return false; } method SupportsRootFileGeneration (line 469) | bool SupportsRootFileGeneration() const override { return false; } method Language (line 471) | IDLOptions::Language Language() const override { method LanguageName (line 475) | std::string LanguageName() const override { return "Lobster"; } function NewLobsterCodeGenerator (line 479) | std::unique_ptr NewLobsterCodeGenerator() { FILE: src/idl_gen_lobster.h function namespace (line 22) | namespace flatbuffers { FILE: src/idl_gen_php.cpp type flatbuffers (line 28) | namespace flatbuffers { type php (line 29) | namespace php { class PhpGenerator (line 32) | class PhpGenerator : public BaseGenerator { method PhpGenerator (line 34) | PhpGenerator(const Parser& parser, const std::string& path, method generate (line 37) | bool generate() { method GenerateEnums (line 44) | bool GenerateEnums() { method GenerateStructs (line 55) | bool GenerateStructs() { method BeginFile (line 67) | void BeginFile(const std::string& name_space_name, const bool need... method SaveType (line 87) | bool SaveType(const Definition& def, const std::string& classcode, method BeginClass (line 102) | static void BeginClass(const StructDef& struct_def, std::string* c... method EndClass (line 112) | static void EndClass(std::string* code_ptr) { method BeginEnum (line 118) | static void BeginEnum(const std::string& class_name, std::string* ... method EnumMember (line 124) | static void EnumMember(const EnumDef& enum_def, const EnumVal& ev, method EndEnum (line 134) | static void EndEnum(std::string* code_ptr) { method NewRootTypeFromBuffer (line 140) | static void NewRootTypeFromBuffer(const StructDef& struct_def, method InitializeExisting (line 161) | static void InitializeExisting(const StructDef& struct_def, method GetVectorLen (line 179) | static void GetVectorLen(const FieldDef& field, std::string* code_... method GetUByte (line 196) | static void GetUByte(const FieldDef& field, std::string* code_ptr) { method GetScalarFieldOfStruct (line 211) | static void GetScalarFieldOfStruct(const FieldDef& field, method GetScalarFieldOfTable (line 235) | void GetScalarFieldOfTable(const FieldDef& field, std::string* cod... method GetStructFieldOfStruct (line 257) | void GetStructFieldOfStruct(const FieldDef& field, std::string* co... method GetStructFieldOfTable (line 276) | void GetStructFieldOfTable(const FieldDef& field, std::string* cod... method GetStringField (line 300) | void GetStringField(const FieldDef& field, std::string* code_ptr) { method GetUnionField (line 315) | void GetUnionField(const FieldDef& field, std::string* code_ptr) { method GetMemberOfVectorOfStruct (line 332) | void GetMemberOfVectorOfStruct(const StructDef& struct_def, method GetMemberOfVectorOfNonStruct (line 394) | void GetMemberOfVectorOfNonStruct(const FieldDef& field, method GetMemberOfVectorOfUnion (line 427) | void GetMemberOfVectorOfUnion(const FieldDef& field, std::string* ... method StructBuilderArgs (line 449) | static void StructBuilderArgs(const StructDef& struct_def, method StructBuilderBody (line 471) | static void StructBuilderBody(const StructDef& struct_def, method GetStartOfTable (line 496) | static void GetStartOfTable(const StructDef& struct_def, method BuildFieldOfTable (line 560) | static void BuildFieldOfTable(const FieldDef& field, const size_t ... method BuildVectorOfTable (line 592) | static void BuildVectorOfTable(const FieldDef& field, std::string*... method GetEndOffsetOnTable (line 644) | void GetEndOffsetOnTable(const StructDef& struct_def, std::string*... method GenStructAccessor (line 684) | void GenStructAccessor(const StructDef& struct_def, const FieldDef... method GenTableBuilders (line 733) | void GenTableBuilders(const StructDef& struct_def, std::string* co... method GenStruct (line 763) | void GenStruct(const StructDef& struct_def, std::string* code_ptr) { method GenEnum (line 829) | static void GenEnum(const EnumDef& enum_def, std::string* code_ptr) { method GenGetter (line 861) | static std::string GenGetter(const Type& type) { method GenMethod (line 877) | static std::string GenMethod(const FieldDef& field) { method GenTypeBasic (line 883) | static std::string GenTypeBasic(const Type& type) { method GenDefaultValue (line 896) | std::string GenDefaultValue(const Value& value) { method GenTypePointer (line 923) | static std::string GenTypePointer(const Type& type) { method GenTypeGet (line 938) | static std::string GenTypeGet(const Type& type) { method GenStructBuilder (line 943) | static void GenStructBuilder(const StructDef& struct_def, function GeneratePhp (line 964) | static bool GeneratePhp(const Parser& parser, const std::string& path, class PhpCodeGenerator (line 972) | class PhpCodeGenerator : public CodeGenerator { method Status (line 974) | Status GenerateCode(const Parser& parser, const std::string& path, method Status (line 982) | Status GenerateCode(const uint8_t*, int64_t, const CodeGenOptions&) ... method Status (line 986) | Status GenerateMakeRule(const Parser& parser, const std::string& path, method Status (line 996) | Status GenerateGrpcCode(const Parser& parser, const std::string& path, method Status (line 1004) | Status GenerateRootFile(const Parser& parser, method IsSchemaOnly (line 1011) | bool IsSchemaOnly() const override { return true; } method SupportsBfbsGeneration (line 1013) | bool SupportsBfbsGeneration() const override { return false; } method SupportsRootFileGeneration (line 1015) | bool SupportsRootFileGeneration() const override { return false; } method Language (line 1017) | IDLOptions::Language Language() const override { return IDLOptions::... method LanguageName (line 1019) | std::string LanguageName() const override { return "Php"; } function NewPhpCodeGenerator (line 1023) | std::unique_ptr NewPhpCodeGenerator() { FILE: src/idl_gen_php.h function namespace (line 22) | namespace flatbuffers { FILE: src/idl_gen_python.cpp type flatbuffers (line 39) | namespace flatbuffers { type python (line 40) | namespace python { class PythonStubGenerator (line 51) | class PythonStubGenerator { method PythonStubGenerator (line 53) | PythonStubGenerator(const Parser& parser, const std::string& path, method Generate (line 60) | bool Generate() { method SaveFile (line 115) | bool SaveFile(const std::string& filename, const Imports& imports, method DeclareUOffset (line 126) | static void DeclareUOffset(std::stringstream& stub, Imports* impor... method ModuleForFile (line 134) | std::string ModuleForFile(const std::string& file) const { method ModuleFor (line 144) | std::string ModuleFor(const T* def) const { method StructDef (line 149) | const StructDef* GetNestedStruct(const FieldDef* field) const { method ScalarType (line 160) | static std::string ScalarType(BaseType type) { method UnionType (line 169) | std::string UnionType(const EnumDef& enum_def, Imports* imports, method UnionObjectType (line 197) | std::string UnionObjectType(const EnumDef& enum_def, Imports* impo... method UnionType (line 203) | std::string UnionType(const EnumDef& enum_def, Imports* imports) c... method EnumType (line 209) | std::string EnumType(const EnumDef& enum_def, Imports* imports) co... method TypeOf (line 222) | std::string TypeOf(const Type& type, Imports* imports) const { method GenerateObjectFieldStub (line 247) | std::string GenerateObjectFieldStub(const FieldDef* field, method GenerateObjectInitializerStub (line 290) | void GenerateObjectInitializerStub(std::stringstream& stub, method GenerateObjectStub (line 349) | void GenerateObjectStub(std::stringstream& stub, const StructDef* ... method GenerateStructStub (line 389) | void GenerateStructStub(std::stringstream& stub, const StructDef* ... method StructBuilderArgs (line 507) | void StructBuilderArgs(const StructDef& struct_def, const std::str... method GenerateStructBuilderStub (line 524) | void GenerateStructBuilderStub(std::stringstream& stub, method GenerateTableBuilderStub (line 541) | void GenerateTableBuilderStub(std::stringstream& stub, method GenerateEnumStub (line 620) | void GenerateEnumStub(std::stringstream& stub, const EnumDef* enum... method GenerateImports (line 649) | void GenerateImports(std::stringstream& ss, const Imports& imports) { class PythonGenerator (line 706) | class PythonGenerator : public BaseGenerator { method PythonGenerator (line 708) | PythonGenerator(const Parser& parser, const std::string& path, method OffsetPrefix (line 718) | std::string OffsetPrefix(const FieldDef& field, bool new_line = tr... method BeginClass (line 726) | void BeginClass(const StructDef& struct_def, std::string* code_ptr... method BeginEnum (line 734) | void BeginEnum(const EnumDef& enum_def, std::string* code_ptr) con... method GenIndents (line 740) | std::string GenIndents(int num) const { method EnumMember (line 745) | void EnumMember(const EnumDef& enum_def, const EnumVal& ev, method NewRootTypeFromBuffer (line 755) | void NewRootTypeFromBuffer(const StructDef& struct_def, method InitializeExisting (line 789) | void InitializeExisting(const StructDef& struct_def, method GetVectorLen (line 804) | void GetVectorLen(const StructDef& struct_def, const FieldDef& field, method GetVectorIsNone (line 825) | void GetVectorIsNone(const StructDef& struct_def, const FieldDef& ... method GetScalarFieldOfStruct (line 848) | void GetScalarFieldOfStruct(const StructDef& struct_def, method GetScalarFieldOfTable (line 861) | void GetScalarFieldOfTable(const StructDef& struct_def, const Fiel... method GetStructFieldOfStruct (line 890) | void GetStructFieldOfStruct(const StructDef& struct_def, method GetArrayOfStruct (line 903) | void GetArrayOfStruct(const StructDef& struct_def, const FieldDef&... method GetArrayOfNonStruct (line 939) | void GetArrayOfNonStruct(const StructDef& struct_def, const FieldD... method GetStructFieldOfTable (line 965) | void GetStructFieldOfTable(const StructDef& struct_def, const Fiel... method GetStringField (line 1002) | void GetStringField(const StructDef& struct_def, const FieldDef& f... method GetUnionField (line 1022) | void GetUnionField(const StructDef& struct_def, const FieldDef& fi... method ModuleFor (line 1059) | std::string ModuleFor(const T* def) const { method GenPackageReference (line 1077) | std::string GenPackageReference(const Type& type) const { method GetMemberOfVectorOfStruct (line 1084) | void GetMemberOfVectorOfStruct(const StructDef& struct_def, method GetMemberOfVectorOfNonStruct (line 1125) | void GetMemberOfVectorOfNonStruct(const StructDef& struct_def, method GetVectorOfNonStructAsNumpy (line 1155) | void GetVectorOfNonStructAsNumpy(const StructDef& struct_def, method NestedFlatbufferType (line 1194) | std::string NestedFlatbufferType(std::string unqualified_name) con... method GetVectorAsNestedFlatbuffer (line 1208) | void GetVectorAsNestedFlatbuffer(const StructDef& struct_def, method BeginBuilderArgs (line 1252) | void BeginBuilderArgs(const StructDef& struct_def, method StructBuilderArgs (line 1263) | void StructBuilderArgs(const StructDef& struct_def, method EndBuilderArgs (line 1296) | void EndBuilderArgs(std::string* code_ptr) const { method StructBuilderBody (line 1303) | void StructBuilderBody(const StructDef& struct_def, const char* na... method EndBuilderBody (line 1350) | void EndBuilderBody(std::string* code_ptr) const { method GetStartOfTable (line 1356) | void GetStartOfTable(const StructDef& struct_def, method BuildFieldOfTable (line 1389) | void BuildFieldOfTable(const StructDef& struct_def, const FieldDef... method BuildVectorOfTable (line 1444) | void BuildVectorOfTable(const StructDef& struct_def, const FieldDe... method BuildVectorCreationHelper (line 1482) | void BuildVectorCreationHelper(const StructDef& struct_def, method BuildVectorOfTableFromBytes (line 1538) | void BuildVectorOfTableFromBytes(const StructDef& struct_def, method GetEndOffsetOnTable (line 1574) | void GetEndOffsetOnTable(const StructDef& struct_def, method GenReceiver (line 1602) | void GenReceiver(const StructDef& struct_def, std::string* code_pt... method GenStructAccessor (line 1609) | void GenStructAccessor(const StructDef& struct_def, const FieldDef... method GenStructSizeOf (line 1670) | void GenStructSizeOf(const StructDef& struct_def, method GenTableBuilders (line 1685) | void GenTableBuilders(const StructDef& struct_def, std::string* co... method GenHasFileIdentifier (line 1707) | void GenHasFileIdentifier(const StructDef& struct_def, method GenStruct (line 1731) | void GenStruct(const StructDef& struct_def, std::string* code_ptr, method GenReceiverForObjectAPI (line 1769) | void GenReceiverForObjectAPI(const StructDef& struct_def, method BeginClassForObjectAPI (line 1776) | void BeginClassForObjectAPI(const StructDef& struct_def, method GetBasePythonTypeForScalarAndString (line 1786) | std::string GetBasePythonTypeForScalarAndString( method GetDefaultValue (line 1802) | std::string GetDefaultValue(const FieldDef& field) const { method GenUnionInit (line 1818) | void GenUnionInit(const FieldDef& field, std::string* field_types_... method GenStructInit (line 1866) | void GenStructInit(const FieldDef& field, std::string* out_ptr, method GenVectorInit (line 1883) | void GenVectorInit(const FieldDef& field, std::string* field_type_... method GenInitialize (line 1906) | void GenInitialize(const StructDef& struct_def, std::string* code_... method InitializeFromBuf (line 1996) | void InitializeFromBuf(const StructDef& struct_def, method InitializeFromPackedBuf (line 2010) | void InitializeFromPackedBuf(const StructDef& struct_def, method InitializeFromObjForObject (line 2024) | void InitializeFromObjForObject(const StructDef& struct_def, method GenCompareOperator (line 2038) | void GenCompareOperator(const StructDef& struct_def, method GenUnPackForStruct (line 2062) | void GenUnPackForStruct(const StructDef& struct_def, const FieldDe... method GenUnPackForUnion (line 2091) | void GenUnPackForUnion(const StructDef& struct_def, const FieldDef... method GenUnPackForStructVector (line 2108) | void GenUnPackForStructVector(const StructDef& struct_def, method GenUnpackForTableVector (line 2140) | void GenUnpackForTableVector(const StructDef& struct_def, method GenUnpackforScalarVectorHelper (line 2172) | void GenUnpackforScalarVectorHelper(const StructDef& struct_def, method GenUnPackForScalarVector (line 2188) | void GenUnPackForScalarVector(const StructDef& struct_def, method GenUnPackForString (line 2218) | void GenUnPackForString(const StructDef& struct_def, const FieldDe... method GenUnPackForScalar (line 2232) | void GenUnPackForScalar(const StructDef& struct_def, const FieldDe... method GenUnPack (line 2244) | void GenUnPack(const StructDef& struct_def, std::string* code_ptr)... method GenPackForStruct (line 2306) | void GenPackForStruct(const StructDef& struct_def, method GenPackForStructVectorField (line 2323) | void GenPackForStructVectorField(const StructDef& struct_def, method GenPackForScalarVectorFieldHelper (line 2367) | void GenPackForScalarVectorFieldHelper(const StructDef& struct_def, method GenPackForScalarVectorField (line 2428) | void GenPackForScalarVectorField(const StructDef& struct_def, method GenPackForStructField (line 2478) | void GenPackForStructField(const StructDef& struct_def, const Fiel... method GenPackForUnionField (line 2505) | void GenPackForUnionField(const StructDef& struct_def, const Field... method GenPackForTable (line 2523) | void GenPackForTable(const StructDef& struct_def, method GenStructForObjectAPI (line 2587) | void GenStructForObjectAPI(const StructDef& struct_def, method GenUnionCreatorForStruct (line 2627) | void GenUnionCreatorForStruct(const EnumDef& enum_def, const EnumV... method GenUnionCreatorForString (line 2645) | void GenUnionCreatorForString(const EnumDef& enum_def, const EnumV... method GenUnionCreator (line 2659) | void GenUnionCreator(const EnumDef& enum_def, std::string* code_pt... method GenEnum (line 2690) | void GenEnum(const EnumDef& enum_def, std::string* code_ptr) const { method GenGetter (line 2703) | std::string GenGetter(const Type& type) const { method GenFieldTy (line 2717) | std::string GenFieldTy(const FieldDef& field) const { method GenMethod (line 2743) | std::string GenMethod(const FieldDef& field) const { method GenTypeBasic (line 2749) | std::string GenTypeBasic(const Type& type) const { method GenTypePointer (line 2763) | std::string GenTypePointer(const Type& type) const { method GenTypeGet (line 2780) | std::string GenTypeGet(const Type& type) const { method TypeName (line 2784) | std::string TypeName(const FieldDef& field) const { method ReturnType (line 2788) | std::string ReturnType(const StructDef& struct_def, method GenStructBuilder (line 2816) | void GenStructBuilder(const StructDef& struct_def, method generate (line 2830) | bool generate() { method generateEnums (line 2848) | bool generateEnums(std::string* one_file_code) const { method generateStructs (line 2874) | bool generateStructs(std::string* one_file_code, method BeginFile (line 2907) | void BeginFile(const std::string& name_space_name, const bool need... method SaveType (line 2943) | bool SaveType(const std::string& defname, const Namespace& ns, class PythonCodeGenerator (line 2992) | class PythonCodeGenerator : public CodeGenerator { method Status (line 2994) | Status GenerateCode(const Parser& parser, const std::string& path, method Status (line 3004) | Status GenerateCode(const uint8_t*, int64_t, const CodeGenOptions&) ... method Status (line 3008) | Status GenerateMakeRule(const Parser& parser, const std::string& path, method Status (line 3018) | Status GenerateGrpcCode(const Parser& parser, const std::string& path, method Status (line 3027) | Status GenerateRootFile(const Parser& parser, method IsSchemaOnly (line 3034) | bool IsSchemaOnly() const override { return true; } method SupportsBfbsGeneration (line 3036) | bool SupportsBfbsGeneration() const override { return false; } method SupportsRootFileGeneration (line 3037) | bool SupportsRootFileGeneration() const override { return false; } method Language (line 3039) | IDLOptions::Language Language() const override { return IDLOptions::... method LanguageName (line 3041) | std::string LanguageName() const override { return "Python"; } function NewPythonCodeGenerator (line 3045) | std::unique_ptr NewPythonCodeGenerator() { FILE: src/idl_gen_python.h function namespace (line 22) | namespace flatbuffers { FILE: src/idl_gen_rust.cpp type flatbuffers (line 29) | namespace flatbuffers { function RustDefaultConfig (line 32) | static Namer::Config RustDefaultConfig() { function RustKeywords (line 60) | static std::set RustKeywords() { type FullType (line 149) | enum FullType { function FullType (line 180) | static FullType GetFullType(const Type& type) { function IsBitFlagsEnum (line 270) | static bool IsBitFlagsEnum(const EnumDef& enum_def) { function IsOptionalToBuilder (line 276) | static bool IsOptionalToBuilder(const FieldDef& field) { function GenerateRustModuleRootFile (line 281) | static bool GenerateRustModuleRootFile(const Parser& parser, type rust (line 346) | namespace rust { class RustGenerator (line 348) | class RustGenerator : public BaseGenerator { method RustGenerator (line 350) | RustGenerator(const Parser& parser, const std::string& path, method generate (line 360) | bool generate() { method GenerateSymbols (line 369) | bool GenerateSymbols(const SymbolTable& symbols, method GenerateIndividualFiles (line 398) | bool GenerateIndividualFiles() { method GenerateOneFile (line 423) | bool GenerateOneFile() { method Namespace (line 502) | const Namespace* CurrentNameSpace() const { return cur_name_space_; } method TableBuilderTypeNeedsLifetime (line 506) | bool TableBuilderTypeNeedsLifetime(const Type& type) const { method TableBuilderArgsNeedsLifetime (line 523) | bool TableBuilderArgsNeedsLifetime(const StructDef& struct_def) co... method NamespacedNativeName (line 541) | std::string NamespacedNativeName(const EnumDef& def) { method NamespacedNativeName (line 544) | std::string NamespacedNativeName(const StructDef& def) { method WrapInNameSpace (line 548) | std::string WrapInNameSpace(const Definition& def) const { method WrapInNameSpace (line 552) | std::string WrapInNameSpace(const Namespace* ns, method GetRelativeNamespaceTraversal (line 564) | std::string GetRelativeNamespaceTraversal(const Namespace* src, method GenComment (line 591) | void GenComment(const std::vector& dc, const char* pr... method GetTypeBasic (line 598) | std::string GetTypeBasic(const Type& type) const { method GetEnumTypeForDecl (line 630) | std::string GetEnumTypeForDecl(const Type& type) { method GetTypeGet (line 654) | std::string GetTypeGet(const Type& type) const { method GetEnumValue (line 681) | std::string GetEnumValue(const EnumDef& enum_def, method ForAllEnumValues1 (line 687) | void ForAllEnumValues1(const EnumDef& enum_def, method ForAllEnumValues (line 698) | void ForAllEnumValues(const EnumDef& enum_def, std::function NewRustCodeGenerator() { FILE: src/idl_gen_rust.h function namespace (line 22) | namespace flatbuffers { FILE: src/idl_gen_swift.cpp type flatbuffers (line 28) | namespace flatbuffers { type swift (line 30) | namespace swift { function SwiftDefaultConfig (line 34) | static Namer::Config SwiftDefaultConfig() { function SwiftKeywords (line 58) | static std::set SwiftKeywords() { function GenIndirect (line 142) | static std::string GenIndirect(const std::string& reading) { class SwiftGenerator (line 148) | class SwiftGenerator : public BaseGenerator { method SwiftGenerator (line 155) | SwiftGenerator(const Parser& parser, const std::string& path, method generate (line 164) | bool generate() { method GenerateCode (line 199) | void GenerateCode() { method mark (line 230) | void mark(const std::string& str) { method GenStructReader (line 238) | void GenStructReader(const StructDef& struct_def) { method GenMutableStructReader (line 388) | void GenMutableStructReader(const StructDef& struct_def) { method GenerateStructArgs (line 468) | void GenerateStructArgs(const StructDef& struct_def, std::string* ... method GenTable (line 506) | void GenTable(const StructDef& struct_def) { method GenTableAccessors (line 525) | void GenTableAccessors(const StructDef& struct_def) { method GenObjectHeader (line 546) | void GenObjectHeader(const StructDef& struct_def) { method GenTableWriter (line 587) | void GenTableWriter(const StructDef& struct_def) { method GenTableWriterFields (line 672) | void GenTableWriterFields(const FieldDef& field, method GenTableReader (line 780) | void GenTableReader(const StructDef& struct_def) { method GenTableReaderFields (line 789) | void GenTableReaderFields(const FieldDef& field) { method GenTableReaderVectorFields (line 895) | void GenTableReaderVectorFields(const FieldDef& field) { method GenUnsafeBufferPointer (line 961) | void GenUnsafeBufferPointer(const FieldDef& field) { method GenerateCodingKeys (line 973) | std::vector GenerateCodingKeys(const StructDef& struc... method GenerateEncoderUnionBody (line 985) | void GenerateEncoderUnionBody(const FieldDef& field) { method GenerateEncoderBody (line 1047) | void GenerateEncoderBody(const StructDef& struct_def) { method GenerateJSONEncodingAPIs (line 1100) | void GenerateJSONEncodingAPIs(const StructDef& struct_def) { method GenerateVerifier (line 1134) | void GenerateVerifier(const StructDef& struct_def) { method GenerateUnionTypeVerifier (line 1167) | void GenerateUnionTypeVerifier(const FieldDef& field) { method GenerateVerifierType (line 1214) | std::string GenerateVerifierType(const FieldDef& field) { method GenerateNestedVerifierTypes (line 1228) | std::string GenerateNestedVerifierTypes(const Type& type) { method GenByKeyFunctions (line 1246) | void GenByKeyFunctions(const FieldDef& key_field) { method GenEnum (line 1256) | void GenEnum(const EnumDef& enum_def) { method EnumEncoder (line 1326) | void EnumEncoder(const EnumDef& enum_def) { method GenerateObjectAPIExtensionHeader (line 1348) | void GenerateObjectAPIExtensionHeader(std::string type_name, method GenerateObjectAPIStructConstructor (line 1376) | void GenerateObjectAPIStructConstructor(const StructDef& struct_de... method GenObjectAPI (line 1409) | void GenObjectAPI(const StructDef& struct_def) { method GenerateObjectAPITableExtension (line 1437) | void GenerateObjectAPITableExtension(const StructDef& struct_def) { method GenerateVectorObjectAPITableExtension (line 1522) | void GenerateVectorObjectAPITableExtension(const FieldDef& field_d... method BuildingOptionalObjects (line 1585) | void BuildingOptionalObjects(const std::string& var, method BuildObjectConstructor (line 1600) | void BuildObjectConstructor(const std::vector& body, method BuildObjectAPIConstructorBody (line 1610) | void BuildObjectAPIConstructorBody( method BuildObjectAPIConstructorBodyVectors (line 1713) | void BuildObjectAPIConstructorBodyVectors( method BuildUnionEnumSwitchCaseWritter (line 1768) | void BuildUnionEnumSwitchCaseWritter(const EnumDef& ed) { method BuildUnionEnumSwitchCase (line 1788) | void BuildUnionEnumSwitchCase(const EnumDef& ed, const std::string... method AddMinOrMaxEnumValue (line 1842) | void AddMinOrMaxEnumValue(const std::string& str, const std::strin... method GenLookup (line 1849) | void GenLookup(const FieldDef& key_field, const std::string& struc... method GenPadding (line 1900) | inline void GenPadding(const FieldDef& field, int* id) { method GenComment (line 1913) | void GenComment(const std::vector& dc) { method GenOSVersionChecks (line 1923) | void GenOSVersionChecks() { method GenOffset (line 1929) | std::string GenOffset() { method GenReaderMainBody (line 1933) | std::string GenReaderMainBody(const std::string& optional = "") { method GenReader (line 1937) | std::string GenReader(const std::string& type, method GenConstructor (line 1942) | std::string GenConstructor(const std::string& offset) { method GenMutate (line 1946) | std::string GenMutate(const std::string& offset, method GenMutateArray (line 1954) | std::string GenMutateArray() { method GenEnumDefaultValue (line 1962) | std::string GenEnumDefaultValue(const FieldDef& field) { method SwiftConstant (line 1977) | std::string SwiftConstant(const FieldDef& field) { method GenEnumConstructor (line 1989) | std::string GenEnumConstructor(const std::string& at) { method ValidateFunc (line 1993) | std::string ValidateFunc() { method GenType (line 1997) | std::string GenType(const Type& type, method GenTypePointer (line 2004) | std::string GenTypePointer(const Type& type, method GenTypeBasic (line 2024) | std::string GenTypeBasic(const Type& type) const { method Indent (line 2028) | void Indent() { code_.IncrementIdentLevel(); } method Outdent (line 2030) | void Outdent() { code_.DecrementIdentLevel(); } method GenTypeBasic (line 2032) | std::string GenTypeBasic(const Type& type, bool can_override) const { method Mutable (line 2049) | std::string Mutable() const { return "_Mutable"; } function GenerateSwift (line 2055) | static bool GenerateSwift(const Parser& parser, const std::string& path, class SwiftCodeGenerator (line 2063) | class SwiftCodeGenerator : public CodeGenerator { method Status (line 2065) | Status GenerateCode(const Parser& parser, const std::string& path, method Status (line 2073) | Status GenerateCode(const uint8_t*, int64_t, const CodeGenOptions&) ... method Status (line 2077) | Status GenerateGrpcCode(const Parser& parser, const std::string& path, method Status (line 2085) | Status GenerateMakeRule(const Parser& parser, const std::string& path, method Status (line 2095) | Status GenerateRootFile(const Parser& parser, method IsSchemaOnly (line 2102) | bool IsSchemaOnly() const override { return true; } method SupportsBfbsGeneration (line 2104) | bool SupportsBfbsGeneration() const override { return false; } method SupportsRootFileGeneration (line 2106) | bool SupportsRootFileGeneration() const override { return false; } method Language (line 2108) | IDLOptions::Language Language() const override { return IDLOptions::... method LanguageName (line 2110) | std::string LanguageName() const override { return "Swift"; } function NewSwiftCodeGenerator (line 2114) | std::unique_ptr NewSwiftCodeGenerator() { FILE: src/idl_gen_swift.h function namespace (line 22) | namespace flatbuffers { FILE: src/idl_gen_text.cpp type flatbuffers (line 29) | namespace flatbuffers { type PrintScalarTag (line 31) | struct PrintScalarTag {} type PrintPointerTag (line 32) | struct PrintPointerTag {} type PrintTag (line 34) | struct PrintTag { type PrintTag (line 38) | struct PrintTag { type JsonPrinter (line 42) | struct JsonPrinter { method AddNewLine (line 45) | void AddNewLine() { method AddIndent (line 49) | void AddIndent(int ident) { text.append(ident, ' '); } method Indent (line 51) | int Indent() const { return std::max(opts.indent_step, 0); } method OutputIdentifier (line 54) | void OutputIdentifier(const std::string& name) { method PrintScalar (line 64) | void PrintScalar(T val, const Type& type, int /*indent*/) { method AddComma (line 105) | void AddComma() { method T (line 252) | static T GetFieldDefault(const FieldDef& fd) { method GenField (line 262) | void GenField(const FieldDef& fd, const Table* table, bool fixed, method JsonPrinter (line 374) | JsonPrinter(const Parser& parser, std::string& dest) function GenerateTextFromTable (line 395) | bool GenerateTextFromTable(const Parser& parser, const void* table, function TextFileName (line 427) | static std::string TextFileName(const std::string& path, function TextMakeRule (line 459) | static std::string TextMakeRule(const Parser& parser, const std::strin... class TextCodeGenerator (line 475) | class TextCodeGenerator : public CodeGenerator { method Status (line 477) | Status GenerateCode(const Parser& parser, const std::string& path, method Status (line 489) | Status GenerateCode(const uint8_t*, int64_t, const CodeGenOptions&) ... method Status (line 493) | Status GenerateMakeRule(const Parser& parser, const std::string& path, method Status (line 500) | Status GenerateGrpcCode(const Parser& parser, const std::string& path, method Status (line 508) | Status GenerateRootFile(const Parser& parser, method IsSchemaOnly (line 515) | bool IsSchemaOnly() const override { return false; } method SupportsBfbsGeneration (line 517) | bool SupportsBfbsGeneration() const override { return false; } method SupportsRootFileGeneration (line 519) | bool SupportsRootFileGeneration() const override { return false; } method Language (line 521) | IDLOptions::Language Language() const override { return IDLOptions::... method LanguageName (line 523) | std::string LanguageName() const override { return "text"; } function NewTextCodeGenerator (line 528) | std::unique_ptr NewTextCodeGenerator() { FILE: src/idl_gen_text.h function namespace (line 22) | namespace flatbuffers { FILE: src/idl_gen_ts.cpp type flatbuffers (line 33) | namespace flatbuffers { type ImportDefinition (line 35) | struct ImportDefinition { type NsDefinition (line 46) | struct NsDefinition { function TypeScriptDefaultConfig (line 54) | Namer::Config TypeScriptDefaultConfig() { function TypescriptKeywords (line 78) | std::set TypescriptKeywords() { type AnnotationType (line 94) | enum AnnotationType { kParam = 0, kType = 1, kReturns = 2 } type SupportsObjectAPI (line 97) | struct SupportsObjectAPI : std::false_type {} type SupportsObjectAPI (line 100) | struct SupportsObjectAPI : std::true_type {} type ts (line 104) | namespace ts { class TsGenerator (line 107) | class TsGenerator : public BaseGenerator { method TsGenerator (line 111) | TsGenerator(const Parser& parser, const std::string& path, method generate (line 119) | bool generate() { method GetTypeName (line 128) | std::string GetTypeName(const EnumDef& def, const bool = false, method GetTypeName (line 136) | std::string GetTypeName(const StructDef& def, const bool object_ap... method SaveType (line 155) | bool SaveType(const Definition& definition, const std::string& cla... method TrackNsDef (line 187) | void TrackNsDef(const Definition& definition, std::string type_nam... method generateEnums (line 224) | void generateEnums() { method generateStructs (line 240) | void generateStructs() { method generateEntry (line 256) | void generateEntry() { method GenDocComment (line 335) | static void GenDocComment(const std::vector& dc, method GenDocComment (line 359) | static void GenDocComment(std::string* code_ptr) { method GenEnum (line 364) | void GenEnum(EnumDef& enum_def, std::string* code_ptr, import_set&... method GenType (line 414) | static std::string GenType(const Type& type) { method GenGetter (line 450) | std::string GenGetter(const Type& type, const std::string& argumen... method GenBBAccess (line 473) | std::string GenBBAccess() const { return "this.bb!"; } method GenDefaultValue (line 475) | std::string GenDefaultValue(const FieldDef& field, import_set& imp... method GenTypeName (line 566) | std::string GenTypeName(import_set& imports, const Definition& owner, method Type (line 616) | static Type GetUnionUnderlyingType(const Type& type) { method Type (line 625) | static Type GetUnderlyingVectorType(const Type& vector_type) { method GenWriteMethod (line 632) | std::string GenWriteMethod(const Type& type) { method MaybeAdd (line 654) | static std::string MaybeAdd(T value) { method MaybeScale (line 659) | static std::string MaybeScale(T value) { method GenStructArgs (line 663) | void GenStructArgs(import_set& imports, const StructDef& struct_def, method GenStructBody (line 683) | void GenStructBody(const StructDef& struct_def, std::string* body, method GenerateNewExpression (line 788) | std::string GenerateNewExpression(const std::string& object_name) { method GenerateRootAccessor (line 792) | void GenerateRootAccessor(StructDef& struct_def, std::string* code... method GenerateFinisher (line 813) | void GenerateFinisher(StructDef& struct_def, std::string* code_ptr, method UnionHasStringType (line 837) | bool UnionHasStringType(const EnumDef& union_enum) { method GenUnionGenericTypeTS (line 844) | std::string GenUnionGenericTypeTS(const EnumDef& union_enum) { method GenUnionTypeTS (line 852) | std::string GenUnionTypeTS(const EnumDef& union_enum, import_set& ... method CheckIfNameClashes (line 881) | static bool CheckIfNameClashes(const import_set& imports, method GenSymbolExpression (line 892) | std::string GenSymbolExpression(const StructDef& struct_def, method GenSymbolExpression (line 920) | std::string GenSymbolExpression(const EnumDef& enum_def, method PathComponents (line 939) | std::vector PathComponents(const std::string& path) c... method RelativeDirectory (line 954) | std::string RelativeDirectory(const std::vector& from, method ImportDefinition (line 982) | ImportDefinition AddImport(import_set& imports, const Definition& ... method AddImport (line 1053) | void AddImport(import_set& imports, std::string import_name, method GenObjApiUnionTypeTS (line 1063) | std::string GenObjApiUnionTypeTS(import_set& imports, method GenUnionConvFuncName (line 1098) | std::string GenUnionConvFuncName(const EnumDef& enum_def) { method GenUnionListConvFuncName (line 1102) | std::string GenUnionListConvFuncName(const EnumDef& enum_def) { method GenUnionConvFunc (line 1106) | std::string GenUnionConvFunc(const Type& union_type, import_set& i... method GenUnionValTS (line 1172) | std::string GenUnionValTS(import_set& imports, const StructDef& de... method GenNullCheckConditional (line 1236) | std::string GenNullCheckConditional(const std::string& nullCheckVar, method GenStructMemberValueTS (line 1244) | std::string GenStructMemberValueTS(const StructDef& struct_def, method GenObjApi (line 1285) | void GenObjApi(const Parser& parser, StructDef& struct_def, method CanCreateFactoryMethod (line 1666) | static bool CanCreateFactoryMethod(const StructDef& struct_def) { method GenStruct (line 1680) | void GenStruct(const Parser& parser, StructDef& struct_def, method HasNullDefault (line 2343) | bool HasNullDefault(const FieldDef& field) { method HasDefaultValue (line 2347) | static bool HasDefaultValue(const FieldDef& field) { method GetArgType (line 2375) | std::string GetArgType(import_set& imports, const Definition& owner, method GetArgName (line 2381) | std::string GetArgName(const FieldDef& field) { method GetPrefixedName (line 2389) | std::string GetPrefixedName(const StructDef& struct_def, function GenerateTS (line 2396) | static bool GenerateTS(const Parser& parser, const std::string& path, function TSMakeRule (line 2402) | static std::string TSMakeRule(const Parser& parser, const std::string&... class TsCodeGenerator (line 2419) | class TsCodeGenerator : public CodeGenerator { method Status (line 2421) | Status GenerateCode(const Parser& parser, const std::string& path, method Status (line 2429) | Status GenerateCode(const uint8_t*, int64_t, const CodeGenOptions&) ... method Status (line 2433) | Status GenerateMakeRule(const Parser& parser, const std::string& path, method Status (line 2440) | Status GenerateGrpcCode(const Parser& parser, const std::string& path, method Status (line 2448) | Status GenerateRootFile(const Parser& parser, method IsSchemaOnly (line 2454) | bool IsSchemaOnly() const override { return true; } method SupportsBfbsGeneration (line 2456) | bool SupportsBfbsGeneration() const override { return false; } method SupportsRootFileGeneration (line 2457) | bool SupportsRootFileGeneration() const override { return false; } method Language (line 2459) | IDLOptions::Language Language() const override { return IDLOptions::... method LanguageName (line 2461) | std::string LanguageName() const override { return "TS"; } function NewTsCodeGenerator (line 2465) | std::unique_ptr NewTsCodeGenerator() { FILE: src/idl_gen_ts.h function namespace (line 25) | namespace flatbuffers { FILE: src/idl_parser.cpp type flatbuffers (line 30) | namespace flatbuffers { function ValidateUTF8 (line 66) | static bool ValidateUTF8(const std::string& str) { function IsLowerSnakeCase (line 77) | static bool IsLowerSnakeCase(const std::string& str) { function DeserializeDoc (line 87) | static void DeserializeDoc(std::vector& doc, function CheckedError (line 94) | static CheckedError NoError() { return CheckedError(false); } function TypeToIntervalString (line 97) | static std::string TypeToIntervalString() { function atot_scalar (line 104) | static bool atot_scalar(const char* s, T* val, bool_constant) { function atot_scalar (line 109) | static bool atot_scalar(const char* s, T* val, bool_constant) { function CheckedError (line 117) | static CheckedError atot(const char* s, Parser& parser, T* val) { function CheckedError (line 127) | CheckedError atot>(const char* s, Parser& parser, function CheckedError (line 135) | CheckedError atot>(const char* s, Parser& parser, function T (line 143) | static T* LookupTableByName(const SymbolTable& table, function TokenToString (line 185) | static std::string TokenToString(int t) { function IsIdentifierStart (line 205) | static bool IsIdentifierStart(char c) { return is_alpha(c) || (c == '_... function CompareSerializedScalars (line 207) | static bool CompareSerializedScalars(const uint8_t* a, const uint8_t* b, function CompareTablesByScalarKey (line 229) | static bool CompareTablesByScalarKey(const Offset* _a, function CompareTablesByStringKey (line 242) | static bool CompareTablesByStringKey(const Offset
* _a, function SwapSerializedTables (line 263) | static void SwapSerializedTables(Offset
* a, Offset
* b) { function SimpleQsort (line 276) | static void SimpleQsort(T* begin, T* end, size_t width, F comparator, function SingleValueRepack (line 296) | static inline void SingleValueRepack(Value& e, T val) { function SingleValueRepack (line 306) | static void SingleValueRepack(Value& e, float val) { function SingleValueRepack (line 309) | static void SingleValueRepack(Value& e, double val) { function EnumDistanceImpl (line 315) | static uint64_t EnumDistanceImpl(T e1, T e2) { function compareFieldDefs (line 324) | static bool compareFieldDefs(const FieldDef* a, const FieldDef* b) { function Namespace (line 330) | static Namespace* GetNamespace( function HashFile (line 359) | static uint64_t HashFile(const char* source_filename, const char* sour... function compareName (line 371) | static bool compareName(const T* a, const T* b) { function AssignIndices (line 377) | static void AssignIndices(const std::vector& defvec) { function CheckedError (line 409) | CheckedError Parser::Error(const std::string& msg) { function CheckedError (line 414) | CheckedError Parser::RecurseError() { class Parser::ParseDepthGuard (line 423) | class Parser::ParseDepthGuard { method ParseDepthGuard (line 425) | explicit ParseDepthGuard(Parser* parser_not_null) method CheckedError (line 434) | CheckedError Check() { function CheckedError (line 472) | CheckedError Parser::ParseHexNum(int nibbles, uint64_t* val) { function CheckedError (line 484) | CheckedError Parser::SkipByteOrderMark() { function CheckedError (line 496) | CheckedError Parser::Next() { function CheckedError (line 763) | CheckedError Parser::Expect(int t) { function CheckedError (line 772) | CheckedError Parser::ParseNamespacing(std::string* id, std::string* la... function EnumDef (line 783) | EnumDef* Parser::LookupEnum(const std::string& id) { function StructDef (line 788) | StructDef* Parser::LookupStruct(const std::string& id) const { function StructDef (line 794) | StructDef* Parser::LookupStructThruParentNamespaces( function CheckedError (line 801) | CheckedError Parser::ParseTypeIdent(Type& type) { function CheckedError (line 817) | CheckedError Parser::ParseType(Type& type) { function CheckedError (line 895) | CheckedError Parser::AddField(StructDef& struct_def, const std::string... function CheckedError (line 919) | CheckedError Parser::ParseField(StructDef& struct_def) { function CheckedError (line 1346) | CheckedError Parser::ParseString(Value& val, bool use_string_pooling) { function CheckedError (line 1357) | CheckedError Parser::ParseComma() { function CheckedError (line 1362) | CheckedError Parser::ParseAnyValue(Value& val, FieldDef* field, function CheckedError (line 1508) | CheckedError Parser::ParseTableDelimiters(size_t& fieldn, function CheckedError (line 1548) | CheckedError Parser::ParseTable(const StructDef& struct_def, std::stri... function CheckedError (line 1729) | CheckedError Parser::ParseVectorDelimiters(size_t& count, F body) { function CheckedError (line 1742) | CheckedError Parser::ParseAlignAttribute(const std::string& align_constant, function CheckedError (line 1759) | CheckedError Parser::ParseVector(const Type& vector_type, uoffset_t* ova... function CheckedError (line 1883) | CheckedError Parser::ParseArray(Value& array) { function CheckedError (line 1930) | CheckedError Parser::ParseNestedFlatbuffer(Value& val, FieldDef* field, function CheckedError (line 1977) | CheckedError Parser::ParseMetaData(SymbolTable* attributes) { function CheckedError (line 2005) | CheckedError Parser::ParseEnumFromString(const Type& type, function CheckedError (line 2037) | CheckedError Parser::ParseHash(Value& e, FieldDef* field) { function CheckedError (line 2084) | CheckedError Parser::TokenError() { function CheckedError (line 2088) | CheckedError Parser::ParseFunction(const std::string* name, Value& e) { function CheckedError (line 2131) | CheckedError Parser::TryTypedValue(const std::string* name, int dtoken, function CheckedError (line 2165) | CheckedError Parser::ParseSingleValue(const std::string* name, Value& e, function StructDef (line 2307) | StructDef* Parser::LookupCreateStruct(const std::string& name, function EnumVal (line 2355) | const EnumVal* EnumDef::MinValue() const { function EnumVal (line 2358) | const EnumVal* EnumDef::MaxValue() const { function EnumVal (line 2376) | EnumVal* EnumDef::ReverseLookup(int64_t enum_idx, function EnumVal (line 2387) | EnumVal* EnumDef::FindByValue(const std::string& constant) const { type EnumHelper (line 2448) | namespace EnumHelper { type EnumValType (line 2450) | struct EnumValType { type EnumValType (line 2454) | struct EnumValType { type EnumValBuilder (line 2459) | struct EnumValBuilder { method EnumVal (line 2460) | EnumVal* CreateEnumerator(const std::string& ev_name) { method EnumVal (line 2468) | EnumVal* CreateEnumerator(const std::string& ev_name, int64_t val) { method FLATBUFFERS_CHECKED_ERROR (line 2475) | FLATBUFFERS_CHECKED_ERROR AcceptEnumerator(const std::string& name) { method FLATBUFFERS_CHECKED_ERROR (line 2486) | FLATBUFFERS_CHECKED_ERROR AcceptEnumerator() { method FLATBUFFERS_CHECKED_ERROR (line 2490) | FLATBUFFERS_CHECKED_ERROR AssignEnumeratorValue(const std::string& val... method FLATBUFFERS_CHECKED_ERROR (line 2507) | inline FLATBUFFERS_CHECKED_ERROR ValidateImpl(int64_t* ev, int m) { method FLATBUFFERS_CHECKED_ERROR (line 2522) | FLATBUFFERS_CHECKED_ERROR ValidateValue(int64_t* ev, bool next) { method EnumValBuilder (line 2538) | EnumValBuilder(Parser& _parser, EnumDef& _enum_def) function CheckedError (line 2552) | CheckedError Parser::ParseEnum(const bool is_union, EnumDef** dest, function CheckedError (line 2713) | CheckedError Parser::StartStruct(const std::string& name, StructDef** de... function CheckedError (line 2729) | CheckedError Parser::CheckClash(std::vector& fields, function Namespace (line 2843) | Namespace* Parser::UniqueNamespace(Namespace* ns) { function CheckedError (line 2869) | CheckedError Parser::ParseDecl(const char* filename) { function CheckedError (line 2964) | CheckedError Parser::ParseService(const char* filename) { function CheckedError (line 3035) | CheckedError Parser::ParseNamespace() { function CheckedError (line 3056) | CheckedError Parser::ParseProtoDecl() { function CheckedError (line 3120) | CheckedError Parser::StartEnum(const std::string& name, bool is_union, function CheckedError (line 3138) | CheckedError Parser::ParseProtoFields(StructDef* struct_def, bool isextend, function CheckedError (line 3337) | CheckedError Parser::ParseProtoMapField(StructDef* struct_def) { function CheckedError (line 3378) | CheckedError Parser::ParseProtoKey() { function CheckedError (line 3394) | CheckedError Parser::ParseProtoCurliesOrIdent() { function CheckedError (line 3410) | CheckedError Parser::ParseProtoOption() { function CheckedError (line 3419) | CheckedError Parser::ParseTypeFromProtoType(Type* type) { function CheckedError (line 3453) | CheckedError Parser::SkipAnyJsonValue() { function CheckedError (line 3488) | CheckedError Parser::ParseFlexBufferNumericConstant( function CheckedError (line 3497) | CheckedError Parser::ParseFlexBufferValue(flexbuffers::Builder* builder) { function CheckedError (line 3615) | CheckedError Parser::StartParseFile(const char* source, function CheckedError (line 3627) | CheckedError Parser::ParseRoot(const char* source, const char** include_... function CheckedError (line 3718) | CheckedError Parser::CheckPrivateLeak() { function CheckedError (line 3764) | CheckedError Parser::CheckPrivatelyLeakedFields(const Definition& def, function CheckedError (line 3777) | CheckedError Parser::DoParse(const char* source, const char** include_pa... function CheckedError (line 3940) | CheckedError Parser::DoParseJson() { function SerializeAttributesCommon (line 3996) | static flatbuffers::Offset< function DeserializeAttributesCommon (line 4017) | static bool DeserializeAttributesCommon( FILE: src/reflection.cpp type flatbuffers (line 23) | namespace flatbuffers { function CopyInline (line 27) | static void CopyInline(FlatBufferBuilder& fbb, function VerifyStruct (line 35) | static bool VerifyStruct(flatbuffers::Verifier& v, function VerifyVectorOfStructs (line 49) | static bool VerifyVectorOfStructs(flatbuffers::Verifier& v, function VerifyUnion (line 68) | static bool VerifyUnion(flatbuffers::Verifier& v, function VerifyVector (line 94) | static bool VerifyVector(flatbuffers::Verifier& v, function VerifyObject (line 176) | static bool VerifyObject(flatbuffers::Verifier& v, function GetAnyValueI (line 275) | int64_t GetAnyValueI(reflection::BaseType type, const uint8_t* data) { function GetAnyValueF (line 302) | double GetAnyValueF(reflection::BaseType type, const uint8_t* data) { function GetAnyValueS (line 324) | std::string GetAnyValueS(reflection::BaseType type, const uint8_t* data, function ForAllFields (line 379) | void ForAllFields(const reflection::Object* object, bool reverse, function SetAnyValueI (line 396) | void SetAnyValueI(reflection::BaseType type, uint8_t* data, int64_t va... function SetAnyValueF (line 419) | void SetAnyValueF(reflection::BaseType type, uint8_t* data, double val) { function SetAnyValueS (line 434) | void SetAnyValueS(reflection::BaseType type, uint8_t* data, const char... class ResizeContext (line 458) | class ResizeContext { method ResizeContext (line 460) | ResizeContext(const reflection::Schema& schema, uoffset_t start, int... method Straddle (line 486) | void Straddle(const void* first, const void* second, void* offsetloc) { method ResizeTable (line 505) | void ResizeTable(const reflection::Object& objectdef, Table* table) { function SetString (line 592) | void SetString(const reflection::Schema& schema, const std::string& val, function CopyTable (line 659) | Offset CopyTable(FlatBufferBuilder& fbb, function Verify (line 786) | bool Verify(const reflection::Schema& schema, const reflection::Object... function VerifySizePrefixed (line 794) | bool VerifySizePrefixed(const reflection::Schema& schema, FILE: src/util.cpp type flatbuffers (line 57) | namespace flatbuffers { function FileExistsRaw (line 61) | static bool FileExistsRaw(const char* name) { function LoadFileRaw (line 66) | static bool LoadFileRaw(const char* name, bool binary, std::string* bu... function ToCamelCase (line 89) | static std::string ToCamelCase(const std::string& input, bool is_upper) { function ToSnakeCase (line 108) | static std::string ToSnakeCase(const std::string& input, bool screamin... function ToAll (line 130) | std::string ToAll(const std::string& input, function CamelToSnake (line 139) | std::string CamelToSnake(const std::string& input) { function DasherToSnake (line 161) | std::string DasherToSnake(const std::string& input) { function ToDasher (line 173) | std::string ToDasher(const std::string& input) { function SnakeToSnake2 (line 195) | std::string SnakeToSnake2(const std::string& s) { function LoadFile (line 217) | bool LoadFile(const char* name, bool binary, std::string* buf) { function FileExists (line 222) | bool FileExists(const char* name) { function DirExists (line 227) | bool DirExists(const char* name) { function LoadFileFunction (line 243) | LoadFileFunction SetLoadFileFunction(LoadFileFunction load_file_functi... function FileExistsFunction (line 249) | FileExistsFunction SetFileExistsFunction( function SaveFile (line 257) | bool SaveFile(const char* name, const char* buf, size_t len, bool bina... function StripExtension (line 271) | std::string StripExtension(const std::string& filepath) { function GetExtension (line 276) | std::string GetExtension(const std::string& filepath) { function StripPath (line 281) | std::string StripPath(const std::string& filepath) { function StripFileName (line 286) | std::string StripFileName(const std::string& filepath) { function StripPrefix (line 291) | std::string StripPrefix(const std::string& filepath, function ConCatPathFileName (line 300) | std::string ConCatPathFileName(const std::string& path, function PosixPath (line 319) | std::string PosixPath(const char* path) { function PosixPath (line 324) | std::string PosixPath(const std::string& path) { function EnsureDirExists (line 328) | void EnsureDirExists(const std::string& filepath) { function FilePath (line 341) | std::string FilePath(const std::string& project, const std::string& fi... function AbsolutePath (line 347) | std::string AbsolutePath(const std::string& filepath) { FILE: tests/64bit/offset64_test.cpp type flatbuffers (line 19) | namespace flatbuffers { type tests (line 20) | namespace tests { function Offset64Test (line 22) | void Offset64Test() { function Offset64SerializedFirst (line 100) | void Offset64SerializedFirst() { function Offset64NestedFlatBuffer (line 118) | void Offset64NestedFlatBuffer() { function Offset64CreateDirect (line 184) | void Offset64CreateDirect() { function Offset64Evolution (line 215) | void Offset64Evolution() { function Offset64VectorOfStructs (line 300) | void Offset64VectorOfStructs() { function Offset64SizePrefix (line 346) | void Offset64SizePrefix() { function Offset64ManyVectors (line 379) | void Offset64ManyVectors() { function Offset64ForceAlign (line 447) | void Offset64ForceAlign() { FILE: tests/64bit/offset64_test.h function namespace (line 4) | namespace flatbuffers { FILE: tests/DictionaryLookup/LongFloatEntry.java class LongFloatEntry (line 21) | @SuppressWarnings("unused") method ValidateVersion (line 23) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsLongFloatEntry (line 24) | public static LongFloatEntry getRootAsLongFloatEntry(ByteBuffer _bb) {... method getRootAsLongFloatEntry (line 25) | public static LongFloatEntry getRootAsLongFloatEntry(ByteBuffer _bb, L... method __init (line 26) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 27) | public LongFloatEntry __assign(int _i, ByteBuffer _bb) { __init(_i, _b... method key (line 29) | public long key() { int o = __offset(4); return o != 0 ? bb.getLong(o ... method value (line 30) | public float value() { int o = __offset(6); return o != 0 ? bb.getFloa... method createLongFloatEntry (line 32) | public static int createLongFloatEntry(FlatBufferBuilder builder, method startLongFloatEntry (line 41) | public static void startLongFloatEntry(FlatBufferBuilder builder) { bu... method addKey (line 42) | public static void addKey(FlatBufferBuilder builder, long key) { build... method addValue (line 43) | public static void addValue(FlatBufferBuilder builder, float value) { ... method endLongFloatEntry (line 44) | public static int endLongFloatEntry(FlatBufferBuilder builder) { method keysCompare (line 49) | @Override method __lookup_by_key (line 56) | public static LongFloatEntry __lookup_by_key(LongFloatEntry obj, int v... class Vector (line 77) | public static final class Vector extends BaseVector { method __assign (line 78) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 80) | public LongFloatEntry get(int j) { return get(new LongFloatEntry(), ... method get (line 81) | public LongFloatEntry get(LongFloatEntry obj, int j) { return obj._... method getByKey (line 82) | public LongFloatEntry getByKey(long key) { return __lookup_by_key(n... method getByKey (line 83) | public LongFloatEntry getByKey(LongFloatEntry obj, long key) { retu... FILE: tests/DictionaryLookup/LongFloatMap.java class LongFloatMap (line 21) | @SuppressWarnings("unused") method ValidateVersion (line 23) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsLongFloatMap (line 24) | public static LongFloatMap getRootAsLongFloatMap(ByteBuffer _bb) { ret... method getRootAsLongFloatMap (line 25) | public static LongFloatMap getRootAsLongFloatMap(ByteBuffer _bb, LongF... method __init (line 26) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 27) | public LongFloatMap __assign(int _i, ByteBuffer _bb) { __init(_i, _bb)... method entries (line 29) | public DictionaryLookup.LongFloatEntry entries(int j) { return entries... method entries (line 30) | public DictionaryLookup.LongFloatEntry entries(DictionaryLookup.LongFl... method entriesLength (line 31) | public int entriesLength() { int o = __offset(4); return o != 0 ? __ve... method entriesByKey (line 32) | public DictionaryLookup.LongFloatEntry entriesByKey(long key) { int o ... method entriesByKey (line 33) | public DictionaryLookup.LongFloatEntry entriesByKey(DictionaryLookup.L... method entriesVector (line 34) | public DictionaryLookup.LongFloatEntry.Vector entriesVector() { return... method entriesVector (line 35) | public DictionaryLookup.LongFloatEntry.Vector entriesVector(Dictionary... method createLongFloatMap (line 37) | public static int createLongFloatMap(FlatBufferBuilder builder, method startLongFloatMap (line 44) | public static void startLongFloatMap(FlatBufferBuilder builder) { buil... method addEntries (line 45) | public static void addEntries(FlatBufferBuilder builder, int entriesOf... method createEntriesVector (line 46) | public static int createEntriesVector(FlatBufferBuilder builder, int[]... method startEntriesVector (line 47) | public static void startEntriesVector(FlatBufferBuilder builder, int n... method endLongFloatMap (line 48) | public static int endLongFloatMap(FlatBufferBuilder builder) { method finishLongFloatMapBuffer (line 52) | public static void finishLongFloatMapBuffer(FlatBufferBuilder builder,... method finishSizePrefixedLongFloatMapBuffer (line 53) | public static void finishSizePrefixedLongFloatMapBuffer(FlatBufferBuil... class Vector (line 55) | public static final class Vector extends BaseVector { method __assign (line 56) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 58) | public LongFloatMap get(int j) { return get(new LongFloatMap(), j); } method get (line 59) | public LongFloatMap get(LongFloatMap obj, int j) { return obj.__ass... FILE: tests/FlatBuffers.Benchmarks/FlatBufferBuilderBenchmark.cs class FlatBufferBuilderBenchmark (line 23) | [MemoryDiagnoser] method BuildNestedMonster (line 28) | [Benchmark] method BuildMonster (line 63) | [Benchmark] method TestTables (line 85) | [Benchmark] FILE: tests/FlatBuffers.Benchmarks/Program.cs class Program (line 21) | public static class Program method Main (line 23) | public static void Main(string[] args) FILE: tests/FlatBuffers.Test/Assert.cs class AssertFailedException (line 25) | public class AssertFailedException : Exception method AssertFailedException (line 30) | public AssertFailedException(object expected, object actual) class AssertArrayFailedException (line 42) | public class AssertArrayFailedException : Exception method AssertArrayFailedException (line 48) | public AssertArrayFailedException(int index, object expected, object a... class AssertUnexpectedThrowException (line 61) | public class AssertUnexpectedThrowException : Exception method AssertUnexpectedThrowException (line 65) | public AssertUnexpectedThrowException(object expected) class Assert (line 76) | public static class Assert method AreEqual (line 78) | public static void AreEqual(T expected, T actual) method ArrayEqual (line 86) | public static void ArrayEqual(T[] expected, T[] actual) method ArrayEqual (line 102) | public static void ArrayEqual(ArraySegment expected, T[] actual) method IsTrue (line 122) | public static void IsTrue(bool value) method IsFalse (line 130) | public static void IsFalse(bool value) method Throws (line 138) | public static void Throws(Action action) where T : Exception FILE: tests/FlatBuffers.Test/ByteBufferTests.cs class ByteBufferTests (line 23) | [FlatBuffersTestClass] method ByteBuffer_Length_MatchesBufferLength (line 27) | [FlatBuffersTestMethod] method ByteBuffer_PutBytePopulatesBufferAtZeroOffset (line 35) | [FlatBuffersTestMethod] method ByteBuffer_PutByteCannotPutAtOffsetPastLength (line 46) | [FlatBuffersTestMethod] method ByteBuffer_PutShortPopulatesBufferCorrectly (line 54) | [FlatBuffersTestMethod] method ByteBuffer_PutShortCannotPutAtOffsetPastLength (line 67) | [FlatBuffersTestMethod] method ByteBuffer_PutShortChecksLength (line 76) | [FlatBuffersTestMethod] method ByteBuffer_PutShortChecksLengthAndOffset (line 83) | [FlatBuffersTestMethod] method ByteBuffer_PutIntPopulatesBufferCorrectly (line 91) | [FlatBuffersTestMethod] method ByteBuffer_PutIntCannotPutAtOffsetPastLength (line 106) | [FlatBuffersTestMethod] method ByteBuffer_PutIntChecksLength (line 113) | [FlatBuffersTestMethod] method ByteBuffer_PutIntChecksLengthAndOffset (line 120) | [FlatBuffersTestMethod] method ByteBuffer_PutLongPopulatesBufferCorrectly (line 128) | [FlatBuffersTestMethod] method ByteBuffer_PutLongCannotPutAtOffsetPastLength (line 147) | [FlatBuffersTestMethod] method ByteBuffer_PutLongChecksLength (line 154) | [FlatBuffersTestMethod] method ByteBuffer_PutLongChecksLengthAndOffset (line 161) | [FlatBuffersTestMethod] method ByteBuffer_GetByteReturnsCorrectData (line 169) | [FlatBuffersTestMethod] method ByteBuffer_GetByteChecksOffset (line 179) | [FlatBuffersTestMethod] method ByteBuffer_GetShortReturnsCorrectData (line 187) | [FlatBuffersTestMethod] method ByteBuffer_GetShortChecksOffset (line 198) | [FlatBuffersTestMethod] method ByteBuffer_GetShortChecksLength (line 205) | [FlatBuffersTestMethod] method ByteBuffer_GetIntReturnsCorrectData (line 213) | [FlatBuffersTestMethod] method ByteBuffer_GetIntChecksOffset (line 226) | [FlatBuffersTestMethod] method ByteBuffer_GetIntChecksLength (line 233) | [FlatBuffersTestMethod] method ByteBuffer_GetLongReturnsCorrectData (line 241) | [FlatBuffersTestMethod] method ByteBuffer_GetLongChecksOffset (line 258) | [FlatBuffersTestMethod] method ByteBuffer_GetLongChecksLength (line 265) | [FlatBuffersTestMethod] method ByteBuffer_ReverseBytesUshort (line 273) | [FlatBuffersTestMethod] method ByteBuffer_ReverseBytesUint (line 284) | [FlatBuffersTestMethod] method ByteBuffer_ReverseBytesUlong (line 295) | [FlatBuffersTestMethod] method ByteBuffer_ToFullArray_MatchesBuffer (line 306) | [FlatBuffersTestMethod] method ByteBuffer_ToSizedArray_MatchesBuffer (line 318) | [FlatBuffersTestMethod] method ByteBuffer_Duplicate_MatchesBuffer (line 330) | [FlatBuffersTestMethod] method ByteBuffer_To_Array_Float (line 350) | [FlatBuffersTestMethod] method ByteBuffer_Put_Array_Helper (line 395) | public void ByteBuffer_Put_Array_Helper(T[] data, int typeSize) method ByteBuffer_Put_ArraySegment_Helper (line 411) | public void ByteBuffer_Put_ArraySegment_Helper(ArraySegment data... method ByteBuffer_Put_IntPtr_Helper (line 427) | public unsafe void ByteBuffer_Put_IntPtr_Helper(T[] data, int typeS... method ByteBuffer_Put_ArrayTypes_Helper (line 454) | public void ByteBuffer_Put_ArrayTypes_Helper(T[] data, int typeSize) method ByteBuffer_Put_Array_Float (line 465) | [FlatBuffersTestMethod] method ByteBuffer_Put_Array_Double (line 485) | [FlatBuffersTestMethod] method ByteBuffer_Put_Array_Int (line 505) | [FlatBuffersTestMethod] method ByteBuffer_Put_Array_UInt (line 526) | [FlatBuffersTestMethod] method ByteBuffer_Put_Array_Bool (line 546) | [FlatBuffersTestMethod] method ByteBuffer_Put_Array_Long (line 566) | [FlatBuffersTestMethod] method ByteBuffer_Put_Array_Byte (line 586) | [FlatBuffersTestMethod] method ByteBuffer_Put_Array_SByte (line 606) | [FlatBuffersTestMethod] method CreateArraySegment (line 626) | private static ArraySegment CreateArraySegment(T[] data) method ByteBuffer_Put_Array_Null_Throws (line 635) | [FlatBuffersTestMethod] method ByteBuffer_Put_Array_Empty_Throws (line 653) | [FlatBuffersTestMethod] method ByteBuffer_Put_IntPtr_NegativeSize_Throws (line 674) | [FlatBuffersTestMethod] type dummyStruct (line 692) | private struct dummyStruct method ByteBuffer_Put_Array_IncorrectType_Throws (line 699) | [FlatBuffersTestMethod] method ByteBuffer_Get_Double (line 721) | [FlatBuffersTestMethod] method ByteBuffer_Get_Float (line 731) | [FlatBuffersTestMethod] FILE: tests/FlatBuffers.Test/FlatBufferBuilderTests.cs class FlatBufferBuilderTests (line 22) | [FlatBuffersTestClass] method CreateBuffer (line 25) | private FlatBufferBuilder CreateBuffer(bool forceDefaults = true) method FlatBufferBuilder_WithForceDefaults_WhenAddBool_AndDefaultValue_OffsetIncreasesBySize (line 32) | [FlatBuffersTestMethod] method FlatBufferBuilder_WithForceDefaults_WhenAddSByte_AndDefaultValue_OffsetIncreasesBySize (line 42) | [FlatBuffersTestMethod] method FlatBufferBuilder_WithForceDefaults_WhenAddByte_AndDefaultValue_OffsetIncreasesBySize (line 52) | [FlatBuffersTestMethod] method FlatBufferBuilder_WithForceDefaults_WhenAddShort_AndDefaultValue_OffsetIncreasesBySize (line 62) | [FlatBuffersTestMethod] method FlatBufferBuilder_WithForceDefaults_WhenAddUShort_AndDefaultValue_OffsetIncreasesBySize (line 72) | [FlatBuffersTestMethod] method FlatBufferBuilder_WithForceDefaults_WhenAddInt_AndDefaultValue_OffsetIncreasesBySize (line 82) | [FlatBuffersTestMethod] method FlatBufferBuilder_WithForceDefaults_WhenAddUInt_AndDefaultValue_OffsetIncreasesBySize (line 92) | [FlatBuffersTestMethod] method FlatBufferBuilder_WithForceDefaults_WhenAddLong_AndDefaultValue_OffsetIncreasesBySize (line 102) | [FlatBuffersTestMethod] method FlatBufferBuilder_WithForceDefaults_WhenAddULong_AndDefaultValue_OffsetIncreasesBySize (line 112) | [FlatBuffersTestMethod] method FlatBufferBuilder_WithForceDefaults_WhenAddFloat_AndDefaultValue_OffsetIncreasesBySize (line 122) | [FlatBuffersTestMethod] method FlatBufferBuilder_WithForceDefaults_WhenAddDouble_AndDefaultValue_OffsetIncreasesBySize (line 132) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddBool_AndDefaultValue_OffsetIsUnchanged (line 142) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddSByte_AndDefaultValue_OffsetIsUnchanged (line 152) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddByte_AndDefaultValue_OffsetIsUnchanged (line 162) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddShort_AndDefaultValue_OffsetIsUnchanged (line 172) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddUShort_AndDefaultValue_OffsetIsUnchanged (line 182) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddInt_AndDefaultValue_OffsetIsUnchanged (line 192) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddUInt_AndDefaultValue_OffsetIsUnchanged (line 202) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddLong_AndDefaultValue_OffsetIsUnchanged (line 212) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddULong_AndDefaultValue_OffsetIsUnchanged (line 222) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddFloat_AndDefaultValue_OffsetIsUnchanged (line 232) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddDouble_AndDefaultValue_OffsetIsUnchanged (line 242) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddNullableBool_OffsetIsUnchanged (line 252) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddNullableSbyte_OffsetIsUnchanged (line 262) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddNullableByte_OffsetIsUnchanged (line 272) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddNullableShort_OffsetIsUnchanged (line 282) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddNullableUShort_OffsetIsUnchanged (line 292) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddNullableInt_OffsetIsUnchanged (line 302) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddNullableUInt_OffsetIsUnchanged (line 312) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddNullableLong_OffsetIsUnchanged (line 322) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddNullableULong_OffsetIsUnchanged (line 332) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddNullableFloat_OffsetIsUnchanged (line 342) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddNullableDouble_OffsetIsUnchanged (line 352) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddNullableBool_OffsetIsChangedBySize (line 362) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddNullableSbyte_OffsetIsChangedBySize (line 372) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddNullableByte_OffsetIsChangedBySize (line 382) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddNullableShort_OffsetIsChangedBySize (line 392) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddNullableUShort_OffsetIsChangedBySize (line 402) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddNullableInt_OffsetIsChangedBySize (line 412) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddNullableUInt_OffsetIsChangedBySize (line 422) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddNullableLong_OffsetIsChangedBySize (line 432) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddNullableULong_OffsetIsChangedBySize (line 442) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddNullableFloat_OffsetIsChangedBySize (line 452) | [FlatBuffersTestMethod] method FlatBufferBuilder_WhenAddNullableDouble_OffsetIsChangedBySize (line 462) | [FlatBuffersTestMethod] method FlatBufferBuilder_Add_Array_Float (line 472) | [FlatBuffersTestMethod] method FlatBufferBuilder_Add_Array_Bool (line 497) | [FlatBuffersTestMethod] method FlatBufferBuilder_Add_Array_Double (line 522) | [FlatBuffersTestMethod] method FlatBufferBuilder_Add_Array_Null_Throws (line 547) | [FlatBuffersTestMethod] method FlatBufferBuilder_Add_Array_UnsupportedType_Throws (line 558) | [FlatBuffersTestMethod] method FlatBufferBuilder_Add_Array_Empty_Noop (line 570) | [FlatBuffersTestMethod] method FlatBufferBuilder_Add_ArraySegment_Default_Throws (line 587) | [FlatBuffersTestMethod] method FlatBufferBuilder_Add_ArraySegment_UnsupportedType_Throws (line 600) | [FlatBuffersTestMethod] method FlatBufferBuilder_Add_ArraySegment_Empty_Noop (line 613) | [FlatBuffersTestMethod] method FlatBufferBuilder_Add_IntPtr_Zero_Throws (line 631) | [FlatBuffersTestMethod] method FlatBufferBuilder_Add_IntPtr_SizeNegative_Throws (line 643) | [FlatBuffersTestMethod] method FlatBufferBuilder_Add_IntPtr_Zero_Empty_Noop (line 658) | [FlatBuffersTestMethod] method FlatBufferBuilder_Add_IntPtr_Empty_Noop (line 677) | [FlatBuffersTestMethod] method FlatBufferBuilder_Add_IntPtr_SizeInBytesNotMatchingDataType_Throws (line 699) | [FlatBuffersTestMethod] method FlatBufferBuilder_Add_IntPtr_UnsupportedType_Throws (line 719) | [FlatBuffersTestMethod] type DummyStruct (line 737) | private struct DummyStruct method FlatBufferBuilder_Add_null_String (line 742) | [FlatBuffersTestMethod] method FlatBufferBuilder_Empty_Builder (line 751) | [FlatBuffersTestMethod] FILE: tests/FlatBuffers.Test/FlatBuffersExampleTests.cs class FlatBuffersExampleTests (line 26) | [FlatBuffersTestClass] method RunTests (line 29) | public void RunTests() method CanCreateNewFlatBufferFromScratch (line 36) | [FlatBuffersTestMethod] method CanCreateNewFlatBufferFromScratch (line 43) | private void CanCreateNewFlatBufferFromScratch(bool sizePrefix) method TestBuffer (line 204) | private void TestBuffer(ByteBuffer bb) method CanReadCppGeneratedWireFile (line 302) | [FlatBuffersTestMethod] method CanReadJsonFile (line 311) | [FlatBuffersTestMethod] method TestEnums (line 321) | [FlatBuffersTestMethod] method TestVectorOfEnums (line 330) | [FlatBuffersTestMethod] method TestNestedFlatBuffer (line 351) | [FlatBuffersTestMethod] method TestFixedLenghtArrays (line 393) | [FlatBuffersTestMethod] method TestUnionVector (line 465) | [FlatBuffersTestMethod] method TestUnionUtility (line 510) | [FlatBuffersTestMethod] method AreEqual (line 530) | private void AreEqual(Monster a, MonsterT b) method AreEqual (line 616) | private void AreEqual(Monster a, Monster b) method TestObjectAPI (line 704) | private void TestObjectAPI(Monster a) method AreEqual (line 724) | private void AreEqual(ArrayTable a, ArrayTableT b) method AreEqual (line 766) | private void AreEqual(ArrayTable a, ArrayTable b) method TestObjectAPI (line 808) | private void TestObjectAPI(ArrayTable a) method AreEqual (line 828) | private void AreEqual(Movie a, MovieT b) method AreEqual (line 842) | private void AreEqual(Movie a, Movie b) method TestObjectAPI (line 856) | private void TestObjectAPI(Movie a) method KeepComparing (line 879) | static private void KeepComparing(Monster mon, int count, float floatV... method TestParallelAccess (line 891) | [FlatBuffersTestMethod] method TestScalarOptional_EmptyBuffer (line 935) | [FlatBuffersTestMethod] method TestScalarOptional_Construction (line 988) | [FlatBuffersTestMethod] method TestScalarOptional_Construction_CreatorMethod (line 1084) | [FlatBuffersTestMethod] method TestKeywordEscaping (line 1141) | [FlatBuffersTestMethod] method AddOptionalEnum_WhenPassNull_ShouldWorkProperly (line 1162) | [FlatBuffersTestMethod] method SortKey_WithDefaultedValue_IsFindable (line 1175) | [FlatBuffersTestMethod] method TestVerifyingUnions (line 1210) | [FlatBuffersTestMethod] FILE: tests/FlatBuffers.Test/FlatBuffersFixedLengthArrayTests.cs class FlatBuffersFixedLengthArrayTests (line 23) | [FlatBuffersTestClass] method FixedLengthArray_LengthConstantsMatchSchema_ReturnTrue (line 26) | [FlatBuffersTestMethod] method FixedLengthArray_GetBytesSpanLengthIsCorrect_ReturnTrue (line 43) | [FlatBuffersTestMethod] method FixedLengthArray_GetBytesArraySegmentLengthIsCorrect_ReturnTrue (line 70) | [FlatBuffersTestMethod] method FixedLengthArray_GetBytesSpanEquality_ReturnTrue (line 101) | [FlatBuffersTestMethod] method FixedLengthArray_GetBytesArraySegmentEquality_ReturnTrue (line 159) | [FlatBuffersTestMethod] FILE: tests/FlatBuffers.Test/FlatBuffersFuzzTests.cs class FlatBuffersFuzzTests (line 22) | [FlatBuffersTestClass] method TestObjects (line 27) | [FlatBuffersTestMethod] method TestNumbers (line 33) | [FlatBuffersTestMethod] method TestNumbers64 (line 54) | [FlatBuffersTestMethod] method TestVector_1xUInt8 (line 66) | [FlatBuffersTestMethod] method TestVector_2xUint8 (line 78) | [FlatBuffersTestMethod] method TestVector_1xUInt16 (line 92) | [FlatBuffersTestMethod] method TestVector_2xUInt16 (line 104) | [FlatBuffersTestMethod] method TestCreateAsciiString (line 118) | [FlatBuffersTestMethod] method TestCreateSharedAsciiString (line 139) | [FlatBuffersTestMethod] method TestCreateArbitarytring (line 150) | [FlatBuffersTestMethod] method TestEmptyVTable (line 174) | [FlatBuffersTestMethod] method TestVTableWithOneBool (line 189) | [FlatBuffersTestMethod] method TestVTableWithOneBool_DefaultValue (line 222) | [FlatBuffersTestMethod] method TestVTableWithOneInt16 (line 249) | [FlatBuffersTestMethod] method TestVTableWithTwoInt16 (line 282) | [FlatBuffersTestMethod] method TestVTableWithInt16AndBool (line 316) | [FlatBuffersTestMethod] method TestVTableWithEmptyVector (line 350) | [FlatBuffersTestMethod] method TestVTableWithEmptyVectorAndScalars (line 383) | [FlatBuffersTestMethod] method TestVTableWith_1xInt16_and_Vector_or_2xInt16 (line 419) | [FlatBuffersTestMethod] method TestVTableWithAStruct_of_int8_int16_int32 (line 459) | [FlatBuffersTestMethod] method TestVTableWithAVectorOf_2xStructOf_2xInt8 (line 498) | [FlatBuffersTestMethod] method TestVTableWithSomeElements (line 538) | [FlatBuffersTestMethod] method TestVTableWithStrings (line 580) | [FlatBuffersTestMethod] method TestVTableWithVectorOfStrings (line 624) | [FlatBuffersTestMethod] method TestTwoFinishTable (line 669) | [FlatBuffersTestMethod] method TestBunchOfBools (line 747) | [FlatBuffersTestMethod] method TestBunchOfBoolsSizePrefixed (line 805) | [FlatBuffersTestMethod] method TestWithFloat (line 853) | [FlatBuffersTestMethod] method CheckObjects (line 885) | private void CheckObjects(int fieldCount, int objectCount) FILE: tests/FlatBuffers.Test/FlatBuffersTestClassAttribute.cs class FlatBuffersTestClassAttribute (line 24) | [AttributeUsage(AttributeTargets.Class)] FILE: tests/FlatBuffers.Test/FlatBuffersTestMethodAttribute.cs class FlatBuffersTestMethodAttribute (line 21) | [AttributeUsage(AttributeTargets.Method)] FILE: tests/FlatBuffers.Test/FuzzTestData.cs class FuzzTestData (line 21) | internal static class FuzzTestData FILE: tests/FlatBuffers.Test/Lcg.cs class Lcg (line 22) | internal sealed class Lcg method Lcg (line 27) | public Lcg() method Next (line 32) | public uint Next() method Reset (line 37) | public void Reset() FILE: tests/FlatBuffers.Test/Program.cs class Program (line 24) | static class Program method Main (line 26) | public static int Main(string[] args) FILE: tests/FlatBuffers.Test/TestTable.cs type TestTable (line 22) | internal struct TestTable method TestTable (line 26) | public TestTable(ByteBuffer bb, int pos) method GetSlot (line 31) | public bool GetSlot(int slot, bool def) method GetSlot (line 42) | public sbyte GetSlot(int slot, sbyte def) method GetSlot (line 53) | public byte GetSlot(int slot, byte def) method GetSlot (line 64) | public short GetSlot(int slot, short def) method GetSlot (line 75) | public ushort GetSlot(int slot, ushort def) method GetSlot (line 86) | public int GetSlot(int slot, int def) method GetSlot (line 97) | public uint GetSlot(int slot, uint def) method GetSlot (line 108) | public long GetSlot(int slot, long def) method GetSlot (line 119) | public ulong GetSlot(int slot, ulong def) method GetSlot (line 130) | public float GetSlot(int slot, float def) method GetSlot (line 141) | public double GetSlot(int slot, double def) FILE: tests/KeywordTest/ABC.cs type ABC (line 8) | [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringE... FILE: tests/KeywordTest/KeywordsInTable.cs type KeywordsInTable (line 12) | public struct KeywordsInTable : IFlatbufferObject method ValidateVersion (line 16) | public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS... method GetRootAsKeywordsInTable (line 17) | public static KeywordsInTable GetRootAsKeywordsInTable(ByteBuffer _bb)... method GetRootAsKeywordsInTable (line 18) | public static KeywordsInTable GetRootAsKeywordsInTable(ByteBuffer _bb,... method __init (line 19) | public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } method __assign (line 20) | public KeywordsInTable __assign(int _i, ByteBuffer _bb) { __init(_i, _... method MutateIs (line 23) | public bool MutateIs(KeywordTest.ABC @is) { int o = __p.__offset(4); i... method MutatePrivate (line 25) | public bool MutatePrivate(KeywordTest.@public @private) { int o = __p.... method MutateType (line 27) | public bool MutateType(int type) { int o = __p.__offset(8); if (o != 0... method MutateDefault (line 29) | public bool MutateDefault(bool @default) { int o = __p.__offset(10); i... method CreateKeywordsInTable (line 31) | public static Offset CreateKeywordsInTabl... method StartKeywordsInTable (line 44) | public static void StartKeywordsInTable(FlatBufferBuilder builder) { b... method AddIs (line 45) | public static void AddIs(FlatBufferBuilder builder, KeywordTest.ABC @i... method AddPrivate (line 46) | public static void AddPrivate(FlatBufferBuilder builder, KeywordTest.@... method AddType (line 47) | public static void AddType(FlatBufferBuilder builder, int type) { buil... method AddDefault (line 48) | public static void AddDefault(FlatBufferBuilder builder, bool @default... method EndKeywordsInTable (line 49) | public static Offset EndKeywordsInTable(F... method UnPack (line 53) | public KeywordsInTableT UnPack() { method UnPackTo (line 58) | public void UnPackTo(KeywordsInTableT _o) { method Pack (line 64) | public static Offset Pack(FlatBufferBuild... class KeywordsInTableT (line 75) | public class KeywordsInTableT method KeywordsInTableT (line 86) | public KeywordsInTableT() { class KeywordsInTableVerify (line 95) | static public class KeywordsInTableVerify method Verify (line 97) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... FILE: tests/KeywordTest/KeywordsInUnion.cs type KeywordsInUnion (line 8) | [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringE... class KeywordsInUnionUnion (line 16) | public class KeywordsInUnionUnion { method KeywordsInUnionUnion (line 20) | public KeywordsInUnionUnion() { method As (line 25) | public T As() where T : class { return this.Value as T; } method Asstatic (line 26) | public KeywordTest.KeywordsInTableT Asstatic() { return this.As() where TTable : struct, IFlatbufferObject... method TypeAsstatic (line 24) | public KeywordTest.KeywordsInTable TypeAsstatic() { return Type CreateTable2(FlatBufferBuilde... method StartTable2 (line 36) | public static void StartTable2(FlatBufferBuilder builder) { builder.St... method AddTypeType (line 37) | public static void AddTypeType(FlatBufferBuilder builder, KeywordTest.... method AddType (line 38) | public static void AddType(FlatBufferBuilder builder, int typeOffset) ... method EndTable2 (line 39) | public static Offset EndTable2(FlatBufferBuilder b... method UnPack (line 43) | public Table2T UnPack() { method UnPackTo (line 48) | public void UnPackTo(Table2T _o) { method Pack (line 61) | public static Offset Pack(FlatBufferBuilder builde... class Table2T (line 72) | public class Table2T method Table2T (line 88) | public Table2T() { class Table2Verify (line 94) | static public class Table2Verify method Verify (line 96) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... FILE: tests/KeywordTest/public.cs type @public (line 8) | [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringE... FILE: tests/MyGame/Example/Ability.cs type Ability (line 12) | public struct Ability : IFlatbufferObject method __init (line 16) | public void __init(int _i, ByteBuffer _bb) { __p = new Struct(_i, _bb); } method __assign (line 17) | public Ability __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); ret... method MutateId (line 20) | public void MutateId(uint id) { __p.bb.PutUint(__p.bb_pos + 0, id); } method MutateDistance (line 22) | public void MutateDistance(uint distance) { __p.bb.PutUint(__p.bb_pos ... method CreateAbility (line 24) | public static Offset CreateAbility(FlatBufferB... method UnPack (line 30) | public AbilityT UnPack() { method UnPackTo (line 35) | public void UnPackTo(AbilityT _o) { method Pack (line 39) | public static Offset Pack(FlatBufferBuilder bu... class AbilityT (line 48) | public class AbilityT method AbilityT (line 55) | public AbilityT() { FILE: tests/MyGame/Example/Ability.go type AbilityT (line 9) | type AbilityT struct method Pack (line 14) | func (t *AbilityT) Pack(builder *flatbuffers.Builder) flatbuffers.UOff... type Ability (line 34) | type Ability struct method UnPackTo (line 20) | func (rcv *Ability) UnPackTo(t *AbilityT) { method UnPack (line 25) | func (rcv *Ability) UnPack() *AbilityT { method Init (line 38) | func (rcv *Ability) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 43) | func (rcv *Ability) Table() flatbuffers.Table { method Id (line 47) | func (rcv *Ability) Id() uint32 { method MutateId (line 50) | func (rcv *Ability) MutateId(n uint32) bool { method Distance (line 54) | func (rcv *Ability) Distance() uint32 { method MutateDistance (line 57) | func (rcv *Ability) MutateDistance(n uint32) bool { function CreateAbility (line 61) | func CreateAbility(builder *flatbuffers.Builder, id uint32, distance uin... FILE: tests/MyGame/Example/Ability.java class Ability (line 21) | @SuppressWarnings("unused") method __init (line 23) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 24) | public Ability __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); ret... method id (line 26) | public long id() { return (long)bb.getInt(bb_pos + 0) & 0xFFFFFFFFL; } method mutateId (line 27) | public void mutateId(long id) { bb.putInt(bb_pos + 0, (int) id); } method distance (line 28) | public long distance() { return (long)bb.getInt(bb_pos + 4) & 0xFFFFFF... method mutateDistance (line 29) | public void mutateDistance(long distance) { bb.putInt(bb_pos + 4, (int... method createAbility (line 31) | public static int createAbility(FlatBufferBuilder builder, long id, lo... class Vector (line 38) | public static final class Vector extends BaseVector { method __assign (line 39) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 41) | public Ability get(int j) { return get(new Ability(), j); } method get (line 42) | public Ability get(Ability obj, int j) { return obj.__assign(__elem... method unpack (line 44) | public AbilityT unpack() { method unpackTo (line 49) | public void unpackTo(AbilityT _o) { method pack (line 55) | public static int pack(FlatBufferBuilder builder, AbilityT _o) { FILE: tests/MyGame/Example/Ability.php class Ability (line 11) | class Ability extends Struct method init (line 18) | public function init($_i, ByteBuffer $_bb) method GetId (line 28) | public function GetId() method GetDistance (line 36) | public function GetDistance() method createAbility (line 45) | public static function createAbility(FlatBufferBuilder $builder, $id, ... FILE: tests/MyGame/Example/Ability.py class Ability (line 9) | class Ability(object): method SizeOf (line 13) | def SizeOf(cls): method Init (line 17) | def Init(self, buf, pos): method Id (line 21) | def Id(self): return self._tab.Get(flatbuffers.number_types.Uint32Flag... method Distance (line 23) | def Distance(self): return self._tab.Get(flatbuffers.number_types.Uint... function CreateAbility (line 25) | def CreateAbility(builder, id, distance): class AbilityT (line 32) | class AbilityT(object): method __init__ (line 35) | def __init__( method InitFromBuf (line 44) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 50) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 55) | def InitFromObj(cls, ability): method _UnPack (line 61) | def _UnPack(self, ability): method Pack (line 68) | def Pack(self, builder): FILE: tests/MyGame/Example/AbilityT.java class AbilityT (line 21) | public class AbilityT { method getId (line 25) | public long getId() { return id; } method setId (line 27) | public void setId(long id) { this.id = id; } method getDistance (line 29) | public long getDistance() { return distance; } method setDistance (line 31) | public void setDistance(long distance) { this.distance = distance; } method AbilityT (line 34) | public AbilityT() { FILE: tests/MyGame/Example/Any.cs type Any (line 8) | [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringE... class AnyUnion (line 17) | public class AnyUnion { method AnyUnion (line 21) | public AnyUnion() { method As (line 26) | public T As() where T : class { return this.Value as T; } method AsMonster (line 27) | public MyGame.Example.MonsterT AsMonster() { return this.As() where T : class { return this.Value as T; } method AsM1 (line 27) | public MyGame.Example.MonsterT AsM1() { return this.As() where T : class { return this.Value as T; } method AsM (line 27) | public MyGame.Example.MonsterT AsM() { return this.As GetBBytes() { return System.Runtime.InteropServices.M... method GetBBytes (line 26) | public ArraySegment? GetBBytes() { return __p.bb.ToArraySegment(... method MutateB (line 28) | public void MutateB(int j, int b) { __p.bb.PutInt(__p.bb_pos + 4 + j *... method MutateC (line 30) | public void MutateC(sbyte c) { __p.bb.PutSbyte(__p.bb_pos + 64, c); } method D (line 31) | public MyGame.Example.NestedStruct D(int j) { return (new MyGame.Examp... method MutateE (line 33) | public void MutateE(int e) { __p.bb.PutInt(__p.bb_pos + 136, e); } method F (line 34) | public long F(int j) { return __p.bb.GetLong(__p.bb_pos + 144 + j * 8); } method GetFBytes (line 37) | public Span GetFBytes() { return System.Runtime.InteropServices.... method GetFBytes (line 39) | public ArraySegment? GetFBytes() { return __p.bb.ToArraySegment(... method MutateF (line 41) | public void MutateF(int j, long f) { __p.bb.PutLong(__p.bb_pos + 144 +... method CreateArrayStruct (line 43) | public static Offset CreateArrayStruct(Fla... method UnPack (line 72) | public ArrayStructT UnPack() { method UnPackTo (line 77) | public void UnPackTo(ArrayStructT _o) { method Pack (line 88) | public static Offset Pack(FlatBufferBuilde... class ArrayStructT (line 114) | public class ArrayStructT method ArrayStructT (line 129) | public ArrayStructT() { FILE: tests/MyGame/Example/ArrayStruct.java class ArrayStruct (line 21) | @SuppressWarnings("unused") method __init (line 23) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 24) | public ArrayStruct __assign(int _i, ByteBuffer _bb) { __init(_i, _bb);... method a (line 26) | public float a() { return bb.getFloat(bb_pos + 0); } method mutateA (line 27) | public void mutateA(float a) { bb.putFloat(bb_pos + 0, a); } method b (line 28) | public int b(int j) { return bb.getInt(bb_pos + 4 + j * 4); } method mutateB (line 29) | public void mutateB(int j, int b) { bb.putInt(bb_pos + 4 + j * 4, b); } method c (line 30) | public byte c() { return bb.get(bb_pos + 64); } method mutateC (line 31) | public void mutateC(byte c) { bb.put(bb_pos + 64, c); } method d (line 32) | public MyGame.Example.NestedStruct d(int j) { return d(new MyGame.Exam... method d (line 33) | public MyGame.Example.NestedStruct d(MyGame.Example.NestedStruct obj, ... method e (line 34) | public int e() { return bb.getInt(bb_pos + 136); } method mutateE (line 35) | public void mutateE(int e) { bb.putInt(bb_pos + 136, e); } method f (line 36) | public long f(int j) { return bb.getLong(bb_pos + 144 + j * 8); } method mutateF (line 37) | public void mutateF(int j, long f) { bb.putLong(bb_pos + 144 + j * 8, ... method createArrayStruct (line 39) | public static int createArrayStruct(FlatBufferBuilder builder, float a... class Vector (line 69) | public static final class Vector extends BaseVector { method __assign (line 70) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 72) | public ArrayStruct get(int j) { return get(new ArrayStruct(), j); } method get (line 73) | public ArrayStruct get(ArrayStruct obj, int j) { return obj.__assig... method unpack (line 75) | public ArrayStructT unpack() { method unpackTo (line 80) | public void unpackTo(ArrayStructT _o) { method pack (line 94) | public static int pack(FlatBufferBuilder builder, ArrayStructT _o) { FILE: tests/MyGame/Example/ArrayStruct.py class ArrayStruct (line 11) | class ArrayStruct(object): method SizeOf (line 15) | def SizeOf(cls) -> int: method Init (line 19) | def Init(self, buf: bytes, pos: int): method A (line 23) | def A(self): return self._tab.Get(flatbuffers.number_types.Float32Flag... method B (line 25) | def B(self, j = None): method BAsNumpy (line 34) | def BAsNumpy(self): method BLength (line 38) | def BLength(self) -> int: method BIsNone (line 42) | def BIsNone(self) -> bool: method C (line 46) | def C(self): return self._tab.Get(flatbuffers.number_types.Int8Flags, ... method D (line 48) | def D(self, i: int) -> NestedStruct: method DLength (line 54) | def DLength(self) -> int: method DIsNone (line 58) | def DIsNone(self) -> bool: method E (line 62) | def E(self): return self._tab.Get(flatbuffers.number_types.Int32Flags,... method F (line 64) | def F(self, j = None): method FAsNumpy (line 73) | def FAsNumpy(self): method FLength (line 77) | def FLength(self) -> int: method FIsNone (line 81) | def FIsNone(self) -> bool: function CreateArrayStruct (line 85) | def CreateArrayStruct(builder, a, b, c, d_a, d_b, d_c, d_d, e, f): class ArrayStructT (line 114) | class ArrayStructT(object): method __init__ (line 117) | def __init__( method InitFromBuf (line 134) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 140) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 145) | def InitFromObj(cls, arrayStruct): method _UnPack (line 151) | def _UnPack(self, arrayStruct): method Pack (line 181) | def Pack(self, builder): FILE: tests/MyGame/Example/ArrayStruct.pyi class ArrayStruct (line 12) | class ArrayStruct(object): method SizeOf (line 14) | def SizeOf(cls) -> int: ... method Init (line 16) | def Init(self, buf: bytes, pos: int) -> None: ... method A (line 17) | def A(self) -> float: ... method B (line 18) | def B(self, i: int) -> typing.List[int]: ... method BAsNumpy (line 19) | def BAsNumpy(self) -> np.ndarray: ... method BLength (line 20) | def BLength(self) -> int: ... method BIsNone (line 21) | def BIsNone(self) -> bool: ... method C (line 22) | def C(self) -> int: ... method D (line 23) | def D(self, i: int) -> NestedStruct | None: ... method DLength (line 24) | def DLength(self) -> int: ... method DIsNone (line 25) | def DIsNone(self) -> bool: ... method E (line 26) | def E(self) -> int: ... method F (line 27) | def F(self, i: int) -> typing.List[int]: ... method FAsNumpy (line 28) | def FAsNumpy(self) -> np.ndarray: ... method FLength (line 29) | def FLength(self) -> int: ... method FIsNone (line 30) | def FIsNone(self) -> bool: ... class ArrayStructT (line 31) | class ArrayStructT(object): method __init__ (line 38) | def __init__( method InitFromBuf (line 48) | def InitFromBuf(cls, buf: bytes, pos: int) -> ArrayStructT: ... method InitFromPackedBuf (line 50) | def InitFromPackedBuf(cls, buf: bytes, pos: int = 0) -> ArrayStructT: ... method InitFromObj (line 52) | def InitFromObj(cls, arrayStruct: ArrayStruct) -> ArrayStructT: ... method _UnPack (line 53) | def _UnPack(self, arrayStruct: ArrayStruct) -> None: ... method Pack (line 54) | def Pack(self, builder: flatbuffers.Builder) -> None: ... function CreateArrayStruct (line 56) | def CreateArrayStruct(builder: flatbuffers.Builder, a: float, b: int, c:... FILE: tests/MyGame/Example/ArrayStructT.java class ArrayStructT (line 21) | public class ArrayStructT { method getA (line 29) | public float getA() { return a; } method setA (line 31) | public void setA(float a) { this.a = a; } method getB (line 33) | public int[] getB() { return b; } method setB (line 35) | public void setB(int[] b) { if (b != null && b.length == 15) this.b = ... method getC (line 37) | public byte getC() { return c; } method setC (line 39) | public void setC(byte c) { this.c = c; } method getD (line 41) | public MyGame.Example.NestedStructT[] getD() { return d; } method setD (line 43) | public void setD(MyGame.Example.NestedStructT[] d) { if (d != null && ... method getE (line 45) | public int getE() { return e; } method setE (line 47) | public void setE(int e) { this.e = e; } method getF (line 49) | public long[] getF() { return f; } method setF (line 51) | public void setF(long[] f) { if (f != null && f.length == 2) this.f = ... method ArrayStructT (line 54) | public ArrayStructT() { FILE: tests/MyGame/Example/ArrayTable.cs type ArrayTable (line 12) | public struct ArrayTable : IFlatbufferObject method ValidateVersion (line 16) | public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS... method GetRootAsArrayTable (line 17) | public static ArrayTable GetRootAsArrayTable(ByteBuffer _bb) { return ... method GetRootAsArrayTable (line 18) | public static ArrayTable GetRootAsArrayTable(ByteBuffer _bb, ArrayTabl... method ArrayTableBufferHasIdentifier (line 19) | public static bool ArrayTableBufferHasIdentifier(ByteBuffer _bb) { ret... method VerifyArrayTable (line 20) | public static bool VerifyArrayTable(ByteBuffer _bb) {Google.FlatBuffer... method __init (line 21) | public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } method __assign (line 22) | public ArrayTable __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); ... method StartArrayTable (line 26) | public static void StartArrayTable(FlatBufferBuilder builder) { builde... method AddA (line 27) | public static void AddA(FlatBufferBuilder builder, Offset EndArrayTable(FlatBuff... method FinishArrayTableBuffer (line 32) | public static void FinishArrayTableBuffer(FlatBufferBuilder builder, O... method FinishSizePrefixedArrayTableBuffer (line 33) | public static void FinishSizePrefixedArrayTableBuffer(FlatBufferBuilde... method UnPack (line 34) | public ArrayTableT UnPack() { method UnPackTo (line 39) | public void UnPackTo(ArrayTableT _o) { method Pack (line 42) | public static Offset Pack(FlatBufferBuilder... class ArrayTableT (line 50) | public class ArrayTableT method ArrayTableT (line 55) | public ArrayTableT() { method DeserializeFromJson (line 59) | public static ArrayTableT DeserializeFromJson(string jsonText) { method SerializeToJson (line 62) | public string SerializeToJson() { method DeserializeFromBinary (line 65) | public static ArrayTableT DeserializeFromBinary(byte[] fbBuffer) { method SerializeToBinary (line 68) | public byte[] SerializeToBinary() { class ArrayTableVerify (line 76) | static public class ArrayTableVerify method Verify (line 78) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... FILE: tests/MyGame/Example/ArrayTable.java class ArrayTable (line 21) | @SuppressWarnings("unused") method ValidateVersion (line 23) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsArrayTable (line 24) | public static ArrayTable getRootAsArrayTable(ByteBuffer _bb) { return ... method getRootAsArrayTable (line 25) | public static ArrayTable getRootAsArrayTable(ByteBuffer _bb, ArrayTabl... method ArrayTableBufferHasIdentifier (line 26) | public static boolean ArrayTableBufferHasIdentifier(ByteBuffer _bb) { ... method __init (line 27) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 28) | public ArrayTable __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); ... method a (line 30) | public MyGame.Example.ArrayStruct a() { return a(new MyGame.Example.Ar... method a (line 31) | public MyGame.Example.ArrayStruct a(MyGame.Example.ArrayStruct obj) { ... method startArrayTable (line 33) | public static void startArrayTable(FlatBufferBuilder builder) { builde... method addA (line 34) | public static void addA(FlatBufferBuilder builder, int aOffset) { buil... method endArrayTable (line 35) | public static int endArrayTable(FlatBufferBuilder builder) { method finishArrayTableBuffer (line 39) | public static void finishArrayTableBuffer(FlatBufferBuilder builder, i... method finishSizePrefixedArrayTableBuffer (line 40) | public static void finishSizePrefixedArrayTableBuffer(FlatBufferBuilde... class Vector (line 42) | public static final class Vector extends BaseVector { method __assign (line 43) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 45) | public ArrayTable get(int j) { return get(new ArrayTable(), j); } method get (line 46) | public ArrayTable get(ArrayTable obj, int j) { return obj.__assign(... method unpack (line 48) | public ArrayTableT unpack() { method unpackTo (line 53) | public void unpackTo(ArrayTableT _o) { method pack (line 57) | public static int pack(FlatBufferBuilder builder, ArrayTableT _o) { FILE: tests/MyGame/Example/ArrayTable.py class ArrayTable (line 12) | class ArrayTable(object): method GetRootAs (line 16) | def GetRootAs(cls, buf, offset: int = 0): method GetRootAsArrayTable (line 23) | def GetRootAsArrayTable(cls, buf, offset=0): method ArrayTableBufferHasIdentifier (line 27) | def ArrayTableBufferHasIdentifier(cls, buf, offset, size_prefixed=False): method Init (line 31) | def Init(self, buf: bytes, pos: int): method A (line 35) | def A(self) -> Optional[ArrayStruct]: function ArrayTableStart (line 44) | def ArrayTableStart(builder: flatbuffers.Builder): function Start (line 47) | def Start(builder: flatbuffers.Builder): function ArrayTableAddA (line 50) | def ArrayTableAddA(builder: flatbuffers.Builder, a: Any): function AddA (line 53) | def AddA(builder: flatbuffers.Builder, a: Any): function ArrayTableEnd (line 56) | def ArrayTableEnd(builder: flatbuffers.Builder) -> int: function End (line 59) | def End(builder: flatbuffers.Builder) -> int: class ArrayTableT (line 68) | class ArrayTableT(object): method __init__ (line 71) | def __init__( method InitFromBuf (line 78) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 84) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 89) | def InitFromObj(cls, arrayTable): method _UnPack (line 95) | def _UnPack(self, arrayTable): method Pack (line 102) | def Pack(self, builder): FILE: tests/MyGame/Example/ArrayTable.pyi class ArrayTable (line 11) | class ArrayTable(object): method GetRootAs (line 13) | def GetRootAs(cls, buf: bytes, offset: int) -> ArrayTable: ... method GetRootAsArrayTable (line 15) | def GetRootAsArrayTable(cls, buf: bytes, offset: int) -> ArrayTable: ... method ArrayTableBufferHasIdentifier (line 17) | def ArrayTableBufferHasIdentifier(cls, buf: bytes, offset: int, size_p... method Init (line 18) | def Init(self, buf: bytes, pos: int) -> None: ... method A (line 19) | def A(self) -> ArrayStruct | None: ... class ArrayTableT (line 20) | class ArrayTableT(object): method __init__ (line 22) | def __init__( method InitFromBuf (line 27) | def InitFromBuf(cls, buf: bytes, pos: int) -> ArrayTableT: ... method InitFromPackedBuf (line 29) | def InitFromPackedBuf(cls, buf: bytes, pos: int = 0) -> ArrayTableT: ... method InitFromObj (line 31) | def InitFromObj(cls, arrayTable: ArrayTable) -> ArrayTableT: ... method _UnPack (line 32) | def _UnPack(self, arrayTable: ArrayTable) -> None: ... method Pack (line 33) | def Pack(self, builder: flatbuffers.Builder) -> None: ... function ArrayTableStart (line 34) | def ArrayTableStart(builder: flatbuffers.Builder) -> None: ... function Start (line 35) | def Start(builder: flatbuffers.Builder) -> None: ... function ArrayTableAddA (line 36) | def ArrayTableAddA(builder: flatbuffers.Builder, a: uoffset) -> None: ... function ArrayTableEnd (line 37) | def ArrayTableEnd(builder: flatbuffers.Builder) -> uoffset: ... function End (line 38) | def End(builder: flatbuffers.Builder) -> uoffset: ... FILE: tests/MyGame/Example/ArrayTableT.java class ArrayTableT (line 21) | public class ArrayTableT { method getA (line 24) | public MyGame.Example.ArrayStructT getA() { return a; } method setA (line 26) | public void setA(MyGame.Example.ArrayStructT a) { this.a = a; } method ArrayTableT (line 29) | public ArrayTableT() { method deserializeFromBinary (line 32) | public static ArrayTableT deserializeFromBinary(byte[] fbBuffer) { method serializeToBinary (line 35) | public byte[] serializeToBinary() { FILE: tests/MyGame/Example/Color.cs type Color (line 9) | [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringE... FILE: tests/MyGame/Example/Color.go type Color (line 8) | type Color method String (line 31) | func (v Color) String() string { constant ColorRed (line 11) | ColorRed Color = 1 constant ColorGreen (line 14) | ColorGreen Color = 2 constant ColorBlue (line 16) | ColorBlue Color = 8 FILE: tests/MyGame/Example/Color.java class Color (line 8) | @SuppressWarnings("unused") method Color (line 10) | private Color() { } method name (line 24) | public static String name(int e) { return names[e - Red]; } FILE: tests/MyGame/Example/Color.php class Color (line 7) | class Color method Name (line 22) | public static function Name($e) FILE: tests/MyGame/Example/Color.py class Color (line 6) | class Color(object): FILE: tests/MyGame/Example/LargeArrayStruct.cs type LargeArrayStruct (line 12) | public struct LargeArrayStruct : IFlatbufferObject method __init (line 16) | public void __init(int _i, ByteBuffer _bb) { __p = new Struct(_i, _bb); } method __assign (line 17) | public LargeArrayStruct __assign(int _i, ByteBuffer _bb) { __init(_i, ... method D (line 19) | public byte D(int j) { return __p.bb.Get(__p.bb_pos + 0 + j * 1); } method GetDBytes (line 22) | public Span GetDBytes() { return __p.bb.ToSpan(__p.bb_pos + 0, 6... method GetDBytes (line 24) | public ArraySegment? GetDBytes() { return __p.bb.ToArraySegment(... method MutateD (line 26) | public void MutateD(int j, byte d) { __p.bb.Put(__p.bb_pos + 0 + j * 1... method E (line 27) | public float E(int j) { return __p.bb.GetFloat(__p.bb_pos + 64 + j * 4... method GetEBytes (line 30) | public Span GetEBytes() { return System.Runtime.InteropServices... method GetEBytes (line 32) | public ArraySegment? GetEBytes() { return __p.bb.ToArraySegment(... method MutateE (line 34) | public void MutateE(int j, float e) { __p.bb.PutFloat(__p.bb_pos + 64 ... method F (line 35) | public bool F(int j) { return 0!=__p.bb.Get(__p.bb_pos + 320 + j * 1); } method GetFBytes (line 38) | public Span GetFBytes() { return System.Runtime.InteropServices.... method GetFBytes (line 40) | public ArraySegment? GetFBytes() { return __p.bb.ToArraySegment(... method MutateF (line 42) | public void MutateF(int j, bool f) { __p.bb.Put(__p.bb_pos + 320 + j *... method G (line 43) | public MyGame.Example.NestedStruct G(int j) { return (new MyGame.Examp... method H (line 44) | public MyGame.Example.TestEnum H(int j) { return (MyGame.Example.TestE... method GetHBytes (line 47) | public Span GetHBytes() { return System.Runti... method GetHBytes (line 49) | public ArraySegment? GetHBytes() { return __p.bb.ToArraySegment(... method MutateH (line 51) | public void MutateH(int j, MyGame.Example.TestEnum h) { __p.bb.PutSbyt... method CreateLargeArrayStruct (line 53) | public static Offset CreateLargeArray... method UnPack (line 83) | public LargeArrayStructT UnPack() { method UnPackTo (line 88) | public void UnPackTo(LargeArrayStructT _o) { method Pack (line 100) | public static Offset Pack(FlatBufferB... class LargeArrayStructT (line 127) | public class LargeArrayStructT method LargeArrayStructT (line 140) | public LargeArrayStructT() { FILE: tests/MyGame/Example/LargeArrayStruct.java class LargeArrayStruct (line 21) | @SuppressWarnings("unused") method __init (line 23) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 24) | public LargeArrayStruct __assign(int _i, ByteBuffer _bb) { __init(_i, ... method d (line 26) | public int d(int j) { return bb.get(bb_pos + 0 + j * 1); } method mutateD (line 27) | public void mutateD(int j, int d) { bb.put(bb_pos + 0 + j * 1, (byte) ... method e (line 28) | public float e(int j) { return bb.getFloat(bb_pos + 64 + j * 4); } method mutateE (line 29) | public void mutateE(int j, float e) { bb.putFloat(bb_pos + 64 + j * 4,... method f (line 30) | public boolean f(int j) { return 0!=bb.get(bb_pos + 320 + j * 1); } method mutateF (line 31) | public void mutateF(int j, boolean f) { bb.put(bb_pos + 320 + j * 1, (... method g (line 32) | public MyGame.Example.NestedStruct g(int j) { return g(new MyGame.Exam... method g (line 33) | public MyGame.Example.NestedStruct g(MyGame.Example.NestedStruct obj, ... method h (line 34) | public byte h(int j) { return bb.get(bb_pos + 2432 + j * 1); } method mutateH (line 35) | public void mutateH(int j, byte h) { bb.put(bb_pos + 2432 + j * 1, h); } method createLargeArrayStruct (line 37) | public static int createLargeArrayStruct(FlatBufferBuilder builder, in... class Vector (line 68) | public static final class Vector extends BaseVector { method __assign (line 69) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 71) | public LargeArrayStruct get(int j) { return get(new LargeArrayStruct... method get (line 72) | public LargeArrayStruct get(LargeArrayStruct obj, int j) { return o... method unpack (line 74) | public LargeArrayStructT unpack() { method unpackTo (line 79) | public void unpackTo(LargeArrayStructT _o) { method pack (line 91) | public static int pack(FlatBufferBuilder builder, LargeArrayStructT _o) { FILE: tests/MyGame/Example/LargeArrayStruct.py class LargeArrayStruct (line 11) | class LargeArrayStruct(object): method SizeOf (line 15) | def SizeOf(cls) -> int: method Init (line 19) | def Init(self, buf: bytes, pos: int): method D (line 23) | def D(self, j = None): method DAsNumpy (line 32) | def DAsNumpy(self): method DLength (line 36) | def DLength(self) -> int: method DIsNone (line 40) | def DIsNone(self) -> bool: method E (line 44) | def E(self, j = None): method EAsNumpy (line 53) | def EAsNumpy(self): method ELength (line 57) | def ELength(self) -> int: method EIsNone (line 61) | def EIsNone(self) -> bool: method F (line 65) | def F(self, j = None): method FAsNumpy (line 74) | def FAsNumpy(self): method FLength (line 78) | def FLength(self) -> int: method FIsNone (line 82) | def FIsNone(self) -> bool: method G (line 86) | def G(self, i: int) -> NestedStruct: method GLength (line 92) | def GLength(self) -> int: method GIsNone (line 96) | def GIsNone(self) -> bool: method H (line 100) | def H(self, j = None): method HAsNumpy (line 109) | def HAsNumpy(self): method HLength (line 113) | def HLength(self) -> int: method HIsNone (line 117) | def HIsNone(self) -> bool: function CreateLargeArrayStruct (line 121) | def CreateLargeArrayStruct(builder, d, e, f, g_a, g_b, g_c, g_d, h): class LargeArrayStructT (line 149) | class LargeArrayStructT(object): method __init__ (line 152) | def __init__( method InitFromBuf (line 167) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 173) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 178) | def InitFromObj(cls, largeArrayStruct): method _UnPack (line 184) | def _UnPack(self, largeArrayStruct): method Pack (line 225) | def Pack(self, builder): FILE: tests/MyGame/Example/LargeArrayStruct.pyi class LargeArrayStruct (line 12) | class LargeArrayStruct(object): method SizeOf (line 14) | def SizeOf(cls) -> int: ... method Init (line 16) | def Init(self, buf: bytes, pos: int) -> None: ... method D (line 17) | def D(self, i: int) -> typing.List[int]: ... method DAsNumpy (line 18) | def DAsNumpy(self) -> np.ndarray: ... method DLength (line 19) | def DLength(self) -> int: ... method DIsNone (line 20) | def DIsNone(self) -> bool: ... method E (line 21) | def E(self, i: int) -> typing.List[float]: ... method EAsNumpy (line 22) | def EAsNumpy(self) -> np.ndarray: ... method ELength (line 23) | def ELength(self) -> int: ... method EIsNone (line 24) | def EIsNone(self) -> bool: ... method F (line 25) | def F(self, i: int) -> typing.List[bool]: ... method FAsNumpy (line 26) | def FAsNumpy(self) -> np.ndarray: ... method FLength (line 27) | def FLength(self) -> int: ... method FIsNone (line 28) | def FIsNone(self) -> bool: ... method G (line 29) | def G(self, i: int) -> NestedStruct | None: ... method GLength (line 30) | def GLength(self) -> int: ... method GIsNone (line 31) | def GIsNone(self) -> bool: ... method H (line 32) | def H(self, i: int) -> typing.Literal[TestEnum.A, TestEnum.B, TestEnum... method HAsNumpy (line 33) | def HAsNumpy(self) -> np.ndarray: ... method HLength (line 34) | def HLength(self) -> int: ... method HIsNone (line 35) | def HIsNone(self) -> bool: ... class LargeArrayStructT (line 36) | class LargeArrayStructT(object): method __init__ (line 42) | def __init__( method InitFromBuf (line 51) | def InitFromBuf(cls, buf: bytes, pos: int) -> LargeArrayStructT: ... method InitFromPackedBuf (line 53) | def InitFromPackedBuf(cls, buf: bytes, pos: int = 0) -> LargeArrayStru... method InitFromObj (line 55) | def InitFromObj(cls, largeArrayStruct: LargeArrayStruct) -> LargeArray... method _UnPack (line 56) | def _UnPack(self, largeArrayStruct: LargeArrayStruct) -> None: ... method Pack (line 57) | def Pack(self, builder: flatbuffers.Builder) -> None: ... function CreateLargeArrayStruct (line 59) | def CreateLargeArrayStruct(builder: flatbuffers.Builder, d: int, e: floa... FILE: tests/MyGame/Example/LargeArrayStructT.java class LargeArrayStructT (line 21) | public class LargeArrayStructT { method getD (line 28) | public int[] getD() { return d; } method setD (line 30) | public void setD(int[] d) { if (d != null && d.length == 64) this.d = ... method getE (line 32) | public float[] getE() { return e; } method setE (line 34) | public void setE(float[] e) { if (e != null && e.length == 64) this.e ... method getF (line 36) | public boolean[] getF() { return f; } method setF (line 38) | public void setF(boolean[] f) { if (f != null && f.length == 64) this.... method getG (line 40) | public MyGame.Example.NestedStructT[] getG() { return g; } method setG (line 42) | public void setG(MyGame.Example.NestedStructT[] g) { if (g != null && ... method getH (line 44) | public byte[] getH() { return h; } method setH (line 46) | public void setH(byte[] h) { if (h != null && h.length == 64) this.h =... method LargeArrayStructT (line 49) | public LargeArrayStructT() { FILE: tests/MyGame/Example/LongEnum.cs type LongEnum (line 8) | [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringE... FILE: tests/MyGame/Example/LongEnum.go type LongEnum (line 7) | type LongEnum method String (line 27) | func (v LongEnum) String() string { constant LongEnumLongOne (line 10) | LongEnumLongOne LongEnum = 2 constant LongEnumLongTwo (line 11) | LongEnumLongTwo LongEnum = 4 constant LongEnumLongBig (line 12) | LongEnumLongBig LongEnum = 1099511627776 FILE: tests/MyGame/Example/LongEnum.java class LongEnum (line 5) | @SuppressWarnings("unused") method LongEnum (line 7) | private LongEnum() { } FILE: tests/MyGame/Example/LongEnum.php class LongEnum (line 6) | class LongEnum method Name (line 18) | public static function Name($e) FILE: tests/MyGame/Example/LongEnum.py class LongEnum (line 5) | class LongEnum(object): FILE: tests/MyGame/Example/Monster.cs type Monster (line 13) | public struct Monster : IFlatbufferObject method ValidateVersion (line 17) | public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS... method GetRootAsMonster (line 18) | public static Monster GetRootAsMonster(ByteBuffer _bb) { return GetRoo... method GetRootAsMonster (line 19) | public static Monster GetRootAsMonster(ByteBuffer _bb, Monster obj) { ... method MonsterBufferHasIdentifier (line 20) | public static bool MonsterBufferHasIdentifier(ByteBuffer _bb) { return... method VerifyMonster (line 21) | public static bool VerifyMonster(ByteBuffer _bb) {Google.FlatBuffers.V... method __init (line 22) | public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } method __assign (line 23) | public Monster __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); ret... method MutateMana (line 27) | public bool MutateMana(short mana) { int o = __p.__offset(6); if (o !=... method MutateHp (line 29) | public bool MutateHp(short hp) { int o = __p.__offset(8); if (o != 0) ... method GetNameBytes (line 32) | public Span GetNameBytes() { return __p.__vector_as_span(1... method GetNameBytes (line 34) | public ArraySegment? GetNameBytes() { return __p.__vector_as_arr... method GetNameArray (line 36) | public byte[] GetNameArray() { return __p.__vector_as_array(10); } method Inventory (line 37) | public byte Inventory(int j) { int o = __p.__offset(14); return o != 0... method GetInventoryBytes (line 40) | public Span GetInventoryBytes() { return __p.__vector_as_span? GetInventoryBytes() { return __p.__vector_a... method GetInventoryArray (line 44) | public byte[] GetInventoryArray() { return __p.__vector_as_array... method MutateInventory (line 45) | public bool MutateInventory(int j, byte inventory) { int o = __p.__off... method MutateColor (line 47) | public bool MutateColor(MyGame.Example.Color color) { int o = __p.__of... method Test (line 49) | public TTable? Test() where TTable : struct, IFlatbufferObject... method TestAsMonster (line 50) | public MyGame.Example.Monster TestAsMonster() { return Test GetTestnestedflatbufferBytes() { return __p.__vector... method GetTestnestedflatbufferBytes (line 68) | public ArraySegment? GetTestnestedflatbufferBytes() { return __p... method GetTestnestedflatbufferArray (line 70) | public byte[] GetTestnestedflatbufferArray() { return __p.__vector_as_... method GetTestnestedflatbufferAsMonster (line 71) | public MyGame.Example.Monster? GetTestnestedflatbufferAsMonster() { in... method MutateTestnestedflatbuffer (line 72) | public bool MutateTestnestedflatbuffer(int j, byte testnestedflatbuffe... method MutateTestbool (line 75) | public bool MutateTestbool(bool testbool) { int o = __p.__offset(34); ... method MutateTesthashs32Fnv1 (line 77) | public bool MutateTesthashs32Fnv1(int testhashs32_fnv1) { int o = __p.... method MutateTesthashu32Fnv1 (line 79) | public bool MutateTesthashu32Fnv1(uint testhashu32_fnv1) { int o = __p... method MutateTesthashs64Fnv1 (line 81) | public bool MutateTesthashs64Fnv1(long testhashs64_fnv1) { int o = __p... method MutateTesthashu64Fnv1 (line 83) | public bool MutateTesthashu64Fnv1(ulong testhashu64_fnv1) { int o = __... method MutateTesthashs32Fnv1a (line 85) | public bool MutateTesthashs32Fnv1a(int testhashs32_fnv1a) { int o = __... method MutateTesthashu32Fnv1a (line 87) | public bool MutateTesthashu32Fnv1a(uint testhashu32_fnv1a) { int o = _... method MutateTesthashs64Fnv1a (line 89) | public bool MutateTesthashs64Fnv1a(long testhashs64_fnv1a) { int o = _... method MutateTesthashu64Fnv1a (line 91) | public bool MutateTesthashu64Fnv1a(ulong testhashu64_fnv1a) { int o = ... method Testarrayofbools (line 92) | public bool Testarrayofbools(int j) { int o = __p.__offset(52); return... method GetTestarrayofboolsBytes (line 95) | public Span GetTestarrayofboolsBytes() { return __p.__vector_as_... method GetTestarrayofboolsBytes (line 97) | public ArraySegment? GetTestarrayofboolsBytes() { return __p.__v... method GetTestarrayofboolsArray (line 99) | public bool[] GetTestarrayofboolsArray() { return __p.__vector_as_arra... method MutateTestarrayofbools (line 100) | public bool MutateTestarrayofbools(int j, bool testarrayofbools) { int... method MutateTestf (line 102) | public bool MutateTestf(float testf) { int o = __p.__offset(54); if (o... method MutateTestf2 (line 104) | public bool MutateTestf2(float testf2) { int o = __p.__offset(56); if ... method MutateTestf3 (line 106) | public bool MutateTestf3(float testf3) { int o = __p.__offset(58); if ... method Testarrayofstring2 (line 107) | public string Testarrayofstring2(int j) { int o = __p.__offset(60); re... method Testarrayofsortedstruct (line 109) | public MyGame.Example.Ability? Testarrayofsortedstruct(int j) { int o ... method Flex (line 111) | public byte Flex(int j) { int o = __p.__offset(64); return o != 0 ? __... method GetFlexBytes (line 114) | public Span GetFlexBytes() { return __p.__vector_as_span(6... method GetFlexBytes (line 116) | public ArraySegment? GetFlexBytes() { return __p.__vector_as_arr... method GetFlexArray (line 118) | public byte[] GetFlexArray() { return __p.__vector_as_array(64); } method MutateFlex (line 119) | public bool MutateFlex(int j, byte flex) { int o = __p.__offset(64); i... method Test5 (line 120) | public MyGame.Example.Test? Test5(int j) { int o = __p.__offset(66); r... method VectorOfLongs (line 122) | public long VectorOfLongs(int j) { int o = __p.__offset(68); return o ... method GetVectorOfLongsBytes (line 125) | public Span GetVectorOfLongsBytes() { return __p.__vector_as_spa... method GetVectorOfLongsBytes (line 127) | public ArraySegment? GetVectorOfLongsBytes() { return __p.__vect... method GetVectorOfLongsArray (line 129) | public long[] GetVectorOfLongsArray() { return __p.__vector_as_array GetVectorOfDoublesBytes() { return __p.__vector_as... method GetVectorOfDoublesBytes (line 136) | public ArraySegment? GetVectorOfDoublesBytes() { return __p.__ve... method GetVectorOfDoublesArray (line 138) | public double[] GetVectorOfDoublesArray() { return __p.__vector_as_arr... method MutateVectorOfDoubles (line 139) | public bool MutateVectorOfDoubles(int j, double vector_of_doubles) { i... method VectorOfReferrables (line 141) | public MyGame.Example.Referrable? VectorOfReferrables(int j) { int o =... method VectorOfReferrablesByKey (line 143) | public MyGame.Example.Referrable? VectorOfReferrablesByKey(ulong key) ... method MutateSingleWeakReference (line 145) | public bool MutateSingleWeakReference(ulong single_weak_reference) { i... method VectorOfWeakReferences (line 146) | public ulong VectorOfWeakReferences(int j) { int o = __p.__offset(78);... method GetVectorOfWeakReferencesBytes (line 149) | public Span GetVectorOfWeakReferencesBytes() { return __p.__vec... method GetVectorOfWeakReferencesBytes (line 151) | public ArraySegment? GetVectorOfWeakReferencesBytes() { return _... method GetVectorOfWeakReferencesArray (line 153) | public ulong[] GetVectorOfWeakReferencesArray() { return __p.__vector_... method MutateVectorOfWeakReferences (line 154) | public bool MutateVectorOfWeakReferences(int j, ulong vector_of_weak_r... method VectorOfStrongReferrables (line 155) | public MyGame.Example.Referrable? VectorOfStrongReferrables(int j) { i... method VectorOfStrongReferrablesByKey (line 157) | public MyGame.Example.Referrable? VectorOfStrongReferrablesByKey(ulong... method MutateCoOwningReference (line 159) | public bool MutateCoOwningReference(ulong co_owning_reference) { int o... method VectorOfCoOwningReferences (line 160) | public ulong VectorOfCoOwningReferences(int j) { int o = __p.__offset(... method GetVectorOfCoOwningReferencesBytes (line 163) | public Span GetVectorOfCoOwningReferencesBytes() { return __p._... method GetVectorOfCoOwningReferencesBytes (line 165) | public ArraySegment? GetVectorOfCoOwningReferencesBytes() { retu... method GetVectorOfCoOwningReferencesArray (line 167) | public ulong[] GetVectorOfCoOwningReferencesArray() { return __p.__vec... method MutateVectorOfCoOwningReferences (line 168) | public bool MutateVectorOfCoOwningReferences(int j, ulong vector_of_co... method MutateNonOwningReference (line 170) | public bool MutateNonOwningReference(ulong non_owning_reference) { int... method VectorOfNonOwningReferences (line 171) | public ulong VectorOfNonOwningReferences(int j) { int o = __p.__offset... method GetVectorOfNonOwningReferencesBytes (line 174) | public Span GetVectorOfNonOwningReferencesBytes() { return __p.... method GetVectorOfNonOwningReferencesBytes (line 176) | public ArraySegment? GetVectorOfNonOwningReferencesBytes() { ret... method GetVectorOfNonOwningReferencesArray (line 178) | public ulong[] GetVectorOfNonOwningReferencesArray() { return __p.__ve... method MutateVectorOfNonOwningReferences (line 179) | public bool MutateVectorOfNonOwningReferences(int j, ulong vector_of_n... method AnyUnique (line 181) | public TTable? AnyUnique() where TTable : struct, IFlatbufferO... method AnyUniqueAsM (line 182) | public MyGame.Example.Monster AnyUniqueAsM() { return AnyUnique() where TTable : struct, IFlatbuff... method AnyAmbiguousAsM1 (line 187) | public MyGame.Example.Monster AnyAmbiguousAsM1() { return AnyAmbiguous... method AnyAmbiguousAsM2 (line 188) | public MyGame.Example.Monster AnyAmbiguousAsM2() { return AnyAmbiguous... method AnyAmbiguousAsM3 (line 189) | public MyGame.Example.Monster AnyAmbiguousAsM3() { return AnyAmbiguous... method VectorOfEnums (line 190) | public MyGame.Example.Color VectorOfEnums(int j) { int o = __p.__offse... method GetVectorOfEnumsBytes (line 193) | public Span GetVectorOfEnumsBytes() { return __p... method GetVectorOfEnumsBytes (line 195) | public ArraySegment? GetVectorOfEnumsBytes() { return __p.__vect... method GetVectorOfEnumsArray (line 197) | public MyGame.Example.Color[] GetVectorOfEnumsArray() { int o = __p.__... method MutateVectorOfEnums (line 198) | public bool MutateVectorOfEnums(int j, MyGame.Example.Color vector_of_... method MutateSignedEnum (line 200) | public bool MutateSignedEnum(MyGame.Example.Race signed_enum) { int o ... method Testrequirednestedflatbuffer (line 201) | public byte Testrequirednestedflatbuffer(int j) { int o = __p.__offset... method GetTestrequirednestedflatbufferBytes (line 204) | public Span GetTestrequirednestedflatbufferBytes() { return __p.... method GetTestrequirednestedflatbufferBytes (line 206) | public ArraySegment? GetTestrequirednestedflatbufferBytes() { re... method GetTestrequirednestedflatbufferArray (line 208) | public byte[] GetTestrequirednestedflatbufferArray() { return __p.__ve... method GetTestrequirednestedflatbufferAsMonster (line 209) | public MyGame.Example.Monster? GetTestrequirednestedflatbufferAsMonste... method MutateTestrequirednestedflatbuffer (line 210) | public bool MutateTestrequirednestedflatbuffer(int j, byte testrequire... method ScalarKeySortedTables (line 211) | public MyGame.Example.Stat? ScalarKeySortedTables(int j) { int o = __p... method ScalarKeySortedTablesByKey (line 213) | public MyGame.Example.Stat? ScalarKeySortedTablesByKey(ushort key) { i... method MutateLongEnumNonEnumDefault (line 216) | public bool MutateLongEnumNonEnumDefault(MyGame.Example.LongEnum long_... method MutateLongEnumNormalDefault (line 218) | public bool MutateLongEnumNormalDefault(MyGame.Example.LongEnum long_e... method MutateNanDefault (line 220) | public bool MutateNanDefault(float nan_default) { int o = __p.__offset... method MutateInfDefault (line 222) | public bool MutateInfDefault(float inf_default) { int o = __p.__offset... method MutatePositiveInfDefault (line 224) | public bool MutatePositiveInfDefault(float positive_inf_default) { int... method MutateInfinityDefault (line 226) | public bool MutateInfinityDefault(float infinity_default) { int o = __... method MutatePositiveInfinityDefault (line 228) | public bool MutatePositiveInfinityDefault(float positive_infinity_defa... method MutateNegativeInfDefault (line 230) | public bool MutateNegativeInfDefault(float negative_inf_default) { int... method MutateNegativeInfinityDefault (line 232) | public bool MutateNegativeInfinityDefault(float negative_infinity_defa... method MutateDoubleInfDefault (line 234) | public bool MutateDoubleInfDefault(double double_inf_default) { int o ... method CreateMonster (line 236) | public static Offset CreateMonster(FlatBufferB... method StartMonster (line 363) | public static void StartMonster(FlatBufferBuilder builder) { builder.S... method AddPos (line 364) | public static void AddPos(FlatBufferBuilder builder, Offset EndMonster(FlatBufferBuil... method FinishMonsterBuffer (line 518) | public static void FinishMonsterBuffer(FlatBufferBuilder builder, Offs... method FinishSizePrefixedMonsterBuffer (line 519) | public static void FinishSizePrefixedMonsterBuffer(FlatBufferBuilder b... method CreateSortedVectorOfMonster (line 521) | public static VectorOffset CreateSortedVectorOfMonster(FlatBufferBuild... method __lookup_by_key (line 528) | public static Monster? __lookup_by_key(int vectorLocation, string key,... method UnPack (line 549) | public MonsterT UnPack() { method UnPackTo (line 554) | public void UnPackTo(MonsterT _o) { method Pack (line 673) | public static Offset Pack(FlatBufferBuilder bu... class MonsterT (line 860) | public class MonsterT method MonsterT (line 1026) | public MonsterT() { method DeserializeFromJson (line 1087) | public static MonsterT DeserializeFromJson(string jsonText) { method SerializeToJson (line 1090) | public string SerializeToJson() { method DeserializeFromBinary (line 1093) | public static MonsterT DeserializeFromBinary(byte[] fbBuffer) { method SerializeToBinary (line 1096) | public byte[] SerializeToBinary() { class MonsterVerify (line 1104) | static public class MonsterVerify method Verify (line 1106) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... FILE: tests/MyGame/Example/Monster.go type MonsterT (line 14) | type MonsterT struct method Pack (line 75) | func (t *MonsterT) Pack(builder *flatbuffers.Builder) flatbuffers.UOff... type Monster (line 503) | type Monster struct method UnPackTo (line 346) | func (rcv *Monster) UnPackTo(t *MonsterT) { method UnPack (line 494) | func (rcv *Monster) UnPack() *MonsterT { method Init (line 541) | func (rcv *Monster) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 546) | func (rcv *Monster) Table() flatbuffers.Table { method Pos (line 550) | func (rcv *Monster) Pos(obj *Vec3) *Vec3 { method Mana (line 563) | func (rcv *Monster) Mana() int16 { method MutateMana (line 571) | func (rcv *Monster) MutateMana(n int16) bool { method Hp (line 575) | func (rcv *Monster) Hp() int16 { method MutateHp (line 583) | func (rcv *Monster) MutateHp(n int16) bool { method Name (line 587) | func (rcv *Monster) Name() []byte { method LookupByKey (line 603) | func (rcv *Monster) LookupByKey(key string, vectorLocation flatbuffers... method Inventory (line 627) | func (rcv *Monster) Inventory(j int) byte { method InventoryLength (line 636) | func (rcv *Monster) InventoryLength() int { method InventoryBytes (line 644) | func (rcv *Monster) InventoryBytes() []byte { method MutateInventory (line 652) | func (rcv *Monster) MutateInventory(j int, n byte) bool { method Color (line 661) | func (rcv *Monster) Color() Color { method MutateColor (line 669) | func (rcv *Monster) MutateColor(n Color) bool { method TestType (line 673) | func (rcv *Monster) TestType() Any { method MutateTestType (line 681) | func (rcv *Monster) MutateTestType(n Any) bool { method Test (line 685) | func (rcv *Monster) Test(obj *flatbuffers.Table) bool { method Test4 (line 694) | func (rcv *Monster) Test4(obj *Test, j int) bool { method Test4Length (line 705) | func (rcv *Monster) Test4Length() int { method Testarrayofstring (line 713) | func (rcv *Monster) Testarrayofstring(j int) []byte { method TestarrayofstringLength (line 722) | func (rcv *Monster) TestarrayofstringLength() int { method Testarrayoftables (line 732) | func (rcv *Monster) Testarrayoftables(obj *Monster, j int) bool { method TestarrayoftablesByKey (line 744) | func (rcv *Monster) TestarrayoftablesByKey(obj *Monster, key string) b... method TestarrayoftablesLength (line 753) | func (rcv *Monster) TestarrayoftablesLength() int { method Enemy (line 763) | func (rcv *Monster) Enemy(obj *Monster) *Monster { method Testnestedflatbuffer (line 776) | func (rcv *Monster) Testnestedflatbuffer(j int) byte { method TestnestedflatbufferLength (line 785) | func (rcv *Monster) TestnestedflatbufferLength() int { method TestnestedflatbufferBytes (line 793) | func (rcv *Monster) TestnestedflatbufferBytes() []byte { method MutateTestnestedflatbuffer (line 801) | func (rcv *Monster) MutateTestnestedflatbuffer(j int, n byte) bool { method Testempty (line 810) | func (rcv *Monster) Testempty(obj *Stat) *Stat { method Testbool (line 823) | func (rcv *Monster) Testbool() bool { method MutateTestbool (line 831) | func (rcv *Monster) MutateTestbool(n bool) bool { method Testhashs32Fnv1 (line 835) | func (rcv *Monster) Testhashs32Fnv1() int32 { method MutateTesthashs32Fnv1 (line 843) | func (rcv *Monster) MutateTesthashs32Fnv1(n int32) bool { method Testhashu32Fnv1 (line 847) | func (rcv *Monster) Testhashu32Fnv1() uint32 { method MutateTesthashu32Fnv1 (line 855) | func (rcv *Monster) MutateTesthashu32Fnv1(n uint32) bool { method Testhashs64Fnv1 (line 859) | func (rcv *Monster) Testhashs64Fnv1() int64 { method MutateTesthashs64Fnv1 (line 867) | func (rcv *Monster) MutateTesthashs64Fnv1(n int64) bool { method Testhashu64Fnv1 (line 871) | func (rcv *Monster) Testhashu64Fnv1() uint64 { method MutateTesthashu64Fnv1 (line 879) | func (rcv *Monster) MutateTesthashu64Fnv1(n uint64) bool { method Testhashs32Fnv1a (line 883) | func (rcv *Monster) Testhashs32Fnv1a() int32 { method MutateTesthashs32Fnv1a (line 891) | func (rcv *Monster) MutateTesthashs32Fnv1a(n int32) bool { method Testhashu32Fnv1a (line 895) | func (rcv *Monster) Testhashu32Fnv1a() uint32 { method MutateTesthashu32Fnv1a (line 903) | func (rcv *Monster) MutateTesthashu32Fnv1a(n uint32) bool { method Testhashs64Fnv1a (line 907) | func (rcv *Monster) Testhashs64Fnv1a() int64 { method MutateTesthashs64Fnv1a (line 915) | func (rcv *Monster) MutateTesthashs64Fnv1a(n int64) bool { method Testhashu64Fnv1a (line 919) | func (rcv *Monster) Testhashu64Fnv1a() uint64 { method MutateTesthashu64Fnv1a (line 927) | func (rcv *Monster) MutateTesthashu64Fnv1a(n uint64) bool { method Testarrayofbools (line 931) | func (rcv *Monster) Testarrayofbools(j int) bool { method TestarrayofboolsLength (line 940) | func (rcv *Monster) TestarrayofboolsLength() int { method MutateTestarrayofbools (line 948) | func (rcv *Monster) MutateTestarrayofbools(j int, n bool) bool { method Testf (line 957) | func (rcv *Monster) Testf() float32 { method MutateTestf (line 965) | func (rcv *Monster) MutateTestf(n float32) bool { method Testf2 (line 969) | func (rcv *Monster) Testf2() float32 { method MutateTestf2 (line 977) | func (rcv *Monster) MutateTestf2(n float32) bool { method Testf3 (line 981) | func (rcv *Monster) Testf3() float32 { method MutateTestf3 (line 989) | func (rcv *Monster) MutateTestf3(n float32) bool { method Testarrayofstring2 (line 993) | func (rcv *Monster) Testarrayofstring2(j int) []byte { method Testarrayofstring2Length (line 1002) | func (rcv *Monster) Testarrayofstring2Length() int { method Testarrayofsortedstruct (line 1010) | func (rcv *Monster) Testarrayofsortedstruct(obj *Ability, j int) bool { method TestarrayofsortedstructLength (line 1021) | func (rcv *Monster) TestarrayofsortedstructLength() int { method Flex (line 1029) | func (rcv *Monster) Flex(j int) byte { method FlexLength (line 1038) | func (rcv *Monster) FlexLength() int { method FlexBytes (line 1046) | func (rcv *Monster) FlexBytes() []byte { method MutateFlex (line 1054) | func (rcv *Monster) MutateFlex(j int, n byte) bool { method Test5 (line 1063) | func (rcv *Monster) Test5(obj *Test, j int) bool { method Test5Length (line 1074) | func (rcv *Monster) Test5Length() int { method VectorOfLongs (line 1082) | func (rcv *Monster) VectorOfLongs(j int) int64 { method VectorOfLongsLength (line 1091) | func (rcv *Monster) VectorOfLongsLength() int { method MutateVectorOfLongs (line 1099) | func (rcv *Monster) MutateVectorOfLongs(j int, n int64) bool { method VectorOfDoubles (line 1108) | func (rcv *Monster) VectorOfDoubles(j int) float64 { method VectorOfDoublesLength (line 1117) | func (rcv *Monster) VectorOfDoublesLength() int { method MutateVectorOfDoubles (line 1125) | func (rcv *Monster) MutateVectorOfDoubles(j int, n float64) bool { method ParentNamespaceTest (line 1134) | func (rcv *Monster) ParentNamespaceTest(obj *MyGame.InParentNamespace)... method VectorOfReferrables (line 1147) | func (rcv *Monster) VectorOfReferrables(obj *Referrable, j int) bool { method VectorOfReferrablesByKey (line 1159) | func (rcv *Monster) VectorOfReferrablesByKey(obj *Referrable, key uint... method VectorOfReferrablesLength (line 1168) | func (rcv *Monster) VectorOfReferrablesLength() int { method SingleWeakReference (line 1176) | func (rcv *Monster) SingleWeakReference() uint64 { method MutateSingleWeakReference (line 1184) | func (rcv *Monster) MutateSingleWeakReference(n uint64) bool { method VectorOfWeakReferences (line 1188) | func (rcv *Monster) VectorOfWeakReferences(j int) uint64 { method VectorOfWeakReferencesLength (line 1197) | func (rcv *Monster) VectorOfWeakReferencesLength() int { method MutateVectorOfWeakReferences (line 1205) | func (rcv *Monster) MutateVectorOfWeakReferences(j int, n uint64) bool { method VectorOfStrongReferrables (line 1214) | func (rcv *Monster) VectorOfStrongReferrables(obj *Referrable, j int) ... method VectorOfStrongReferrablesByKey (line 1226) | func (rcv *Monster) VectorOfStrongReferrablesByKey(obj *Referrable, ke... method VectorOfStrongReferrablesLength (line 1235) | func (rcv *Monster) VectorOfStrongReferrablesLength() int { method CoOwningReference (line 1243) | func (rcv *Monster) CoOwningReference() uint64 { method MutateCoOwningReference (line 1251) | func (rcv *Monster) MutateCoOwningReference(n uint64) bool { method VectorOfCoOwningReferences (line 1255) | func (rcv *Monster) VectorOfCoOwningReferences(j int) uint64 { method VectorOfCoOwningReferencesLength (line 1264) | func (rcv *Monster) VectorOfCoOwningReferencesLength() int { method MutateVectorOfCoOwningReferences (line 1272) | func (rcv *Monster) MutateVectorOfCoOwningReferences(j int, n uint64) ... method NonOwningReference (line 1281) | func (rcv *Monster) NonOwningReference() uint64 { method MutateNonOwningReference (line 1289) | func (rcv *Monster) MutateNonOwningReference(n uint64) bool { method VectorOfNonOwningReferences (line 1293) | func (rcv *Monster) VectorOfNonOwningReferences(j int) uint64 { method VectorOfNonOwningReferencesLength (line 1302) | func (rcv *Monster) VectorOfNonOwningReferencesLength() int { method MutateVectorOfNonOwningReferences (line 1310) | func (rcv *Monster) MutateVectorOfNonOwningReferences(j int, n uint64)... method AnyUniqueType (line 1319) | func (rcv *Monster) AnyUniqueType() AnyUniqueAliases { method MutateAnyUniqueType (line 1327) | func (rcv *Monster) MutateAnyUniqueType(n AnyUniqueAliases) bool { method AnyUnique (line 1331) | func (rcv *Monster) AnyUnique(obj *flatbuffers.Table) bool { method AnyAmbiguousType (line 1340) | func (rcv *Monster) AnyAmbiguousType() AnyAmbiguousAliases { method MutateAnyAmbiguousType (line 1348) | func (rcv *Monster) MutateAnyAmbiguousType(n AnyAmbiguousAliases) bool { method AnyAmbiguous (line 1352) | func (rcv *Monster) AnyAmbiguous(obj *flatbuffers.Table) bool { method VectorOfEnums (line 1361) | func (rcv *Monster) VectorOfEnums(j int) Color { method VectorOfEnumsLength (line 1370) | func (rcv *Monster) VectorOfEnumsLength() int { method VectorOfEnumsBytes (line 1378) | func (rcv *Monster) VectorOfEnumsBytes() []byte { method MutateVectorOfEnums (line 1386) | func (rcv *Monster) MutateVectorOfEnums(j int, n Color) bool { method SignedEnum (line 1395) | func (rcv *Monster) SignedEnum() Race { method MutateSignedEnum (line 1403) | func (rcv *Monster) MutateSignedEnum(n Race) bool { method Testrequirednestedflatbuffer (line 1407) | func (rcv *Monster) Testrequirednestedflatbuffer(j int) byte { method TestrequirednestedflatbufferLength (line 1416) | func (rcv *Monster) TestrequirednestedflatbufferLength() int { method TestrequirednestedflatbufferBytes (line 1424) | func (rcv *Monster) TestrequirednestedflatbufferBytes() []byte { method MutateTestrequirednestedflatbuffer (line 1432) | func (rcv *Monster) MutateTestrequirednestedflatbuffer(j int, n byte) ... method ScalarKeySortedTables (line 1441) | func (rcv *Monster) ScalarKeySortedTables(obj *Stat, j int) bool { method ScalarKeySortedTablesByKey (line 1453) | func (rcv *Monster) ScalarKeySortedTablesByKey(obj *Stat, key uint16) ... method ScalarKeySortedTablesLength (line 1462) | func (rcv *Monster) ScalarKeySortedTablesLength() int { method NativeInline (line 1470) | func (rcv *Monster) NativeInline(obj *Test) *Test { method LongEnumNonEnumDefault (line 1483) | func (rcv *Monster) LongEnumNonEnumDefault() LongEnum { method MutateLongEnumNonEnumDefault (line 1491) | func (rcv *Monster) MutateLongEnumNonEnumDefault(n LongEnum) bool { method LongEnumNormalDefault (line 1495) | func (rcv *Monster) LongEnumNormalDefault() LongEnum { method MutateLongEnumNormalDefault (line 1503) | func (rcv *Monster) MutateLongEnumNormalDefault(n LongEnum) bool { method NanDefault (line 1507) | func (rcv *Monster) NanDefault() float32 { method MutateNanDefault (line 1515) | func (rcv *Monster) MutateNanDefault(n float32) bool { method InfDefault (line 1519) | func (rcv *Monster) InfDefault() float32 { method MutateInfDefault (line 1527) | func (rcv *Monster) MutateInfDefault(n float32) bool { method PositiveInfDefault (line 1531) | func (rcv *Monster) PositiveInfDefault() float32 { method MutatePositiveInfDefault (line 1539) | func (rcv *Monster) MutatePositiveInfDefault(n float32) bool { method InfinityDefault (line 1543) | func (rcv *Monster) InfinityDefault() float32 { method MutateInfinityDefault (line 1551) | func (rcv *Monster) MutateInfinityDefault(n float32) bool { method PositiveInfinityDefault (line 1555) | func (rcv *Monster) PositiveInfinityDefault() float32 { method MutatePositiveInfinityDefault (line 1563) | func (rcv *Monster) MutatePositiveInfinityDefault(n float32) bool { method NegativeInfDefault (line 1567) | func (rcv *Monster) NegativeInfDefault() float32 { method MutateNegativeInfDefault (line 1575) | func (rcv *Monster) MutateNegativeInfDefault(n float32) bool { method NegativeInfinityDefault (line 1579) | func (rcv *Monster) NegativeInfinityDefault() float32 { method MutateNegativeInfinityDefault (line 1587) | func (rcv *Monster) MutateNegativeInfinityDefault(n float32) bool { method DoubleInfDefault (line 1591) | func (rcv *Monster) DoubleInfDefault() float64 { method MutateDoubleInfDefault (line 1599) | func (rcv *Monster) MutateDoubleInfDefault(n float64) bool { constant MonsterIdentifier (line 507) | MonsterIdentifier = "MONS" function GetRootAsMonster (line 509) | func GetRootAsMonster(buf []byte, offset flatbuffers.UOffsetT) *Monster { function FinishMonsterBuffer (line 516) | func FinishMonsterBuffer(builder *flatbuffers.Builder, offset flatbuffer... function MonsterBufferHasIdentifier (line 521) | func MonsterBufferHasIdentifier(buf []byte) bool { function GetSizePrefixedRootAsMonster (line 525) | func GetSizePrefixedRootAsMonster(buf []byte, offset flatbuffers.UOffset... function FinishSizePrefixedMonsterBuffer (line 532) | func FinishSizePrefixedMonsterBuffer(builder *flatbuffers.Builder, offse... function SizePrefixedMonsterBufferHasIdentifier (line 537) | func SizePrefixedMonsterBufferHasIdentifier(buf []byte) bool { function MonsterKeyCompare (line 595) | func MonsterKeyCompare(o1, o2 flatbuffers.UOffsetT, buf []byte) bool { function MonsterStart (line 1603) | func MonsterStart(builder *flatbuffers.Builder) { function MonsterAddPos (line 1606) | func MonsterAddPos(builder *flatbuffers.Builder, pos flatbuffers.UOffset... function MonsterAddMana (line 1609) | func MonsterAddMana(builder *flatbuffers.Builder, mana int16) { function MonsterAddHp (line 1612) | func MonsterAddHp(builder *flatbuffers.Builder, hp int16) { function MonsterAddName (line 1615) | func MonsterAddName(builder *flatbuffers.Builder, name flatbuffers.UOffs... function MonsterAddInventory (line 1618) | func MonsterAddInventory(builder *flatbuffers.Builder, inventory flatbuf... function MonsterStartInventoryVector (line 1621) | func MonsterStartInventoryVector(builder *flatbuffers.Builder, numElems ... function MonsterAddColor (line 1624) | func MonsterAddColor(builder *flatbuffers.Builder, color Color) { function MonsterAddTestType (line 1627) | func MonsterAddTestType(builder *flatbuffers.Builder, testType Any) { function MonsterAddTest (line 1630) | func MonsterAddTest(builder *flatbuffers.Builder, test flatbuffers.UOffs... function MonsterAddTest4 (line 1633) | func MonsterAddTest4(builder *flatbuffers.Builder, test4 flatbuffers.UOf... function MonsterStartTest4Vector (line 1636) | func MonsterStartTest4Vector(builder *flatbuffers.Builder, numElems int)... function MonsterAddTestarrayofstring (line 1639) | func MonsterAddTestarrayofstring(builder *flatbuffers.Builder, testarray... function MonsterStartTestarrayofstringVector (line 1642) | func MonsterStartTestarrayofstringVector(builder *flatbuffers.Builder, n... function MonsterAddTestarrayoftables (line 1645) | func MonsterAddTestarrayoftables(builder *flatbuffers.Builder, testarray... function MonsterStartTestarrayoftablesVector (line 1648) | func MonsterStartTestarrayoftablesVector(builder *flatbuffers.Builder, n... function MonsterAddEnemy (line 1651) | func MonsterAddEnemy(builder *flatbuffers.Builder, enemy flatbuffers.UOf... function MonsterAddTestnestedflatbuffer (line 1654) | func MonsterAddTestnestedflatbuffer(builder *flatbuffers.Builder, testne... function MonsterStartTestnestedflatbufferVector (line 1657) | func MonsterStartTestnestedflatbufferVector(builder *flatbuffers.Builder... function MonsterAddTestempty (line 1660) | func MonsterAddTestempty(builder *flatbuffers.Builder, testempty flatbuf... function MonsterAddTestbool (line 1663) | func MonsterAddTestbool(builder *flatbuffers.Builder, testbool bool) { function MonsterAddTesthashs32Fnv1 (line 1666) | func MonsterAddTesthashs32Fnv1(builder *flatbuffers.Builder, testhashs32... function MonsterAddTesthashu32Fnv1 (line 1669) | func MonsterAddTesthashu32Fnv1(builder *flatbuffers.Builder, testhashu32... function MonsterAddTesthashs64Fnv1 (line 1672) | func MonsterAddTesthashs64Fnv1(builder *flatbuffers.Builder, testhashs64... function MonsterAddTesthashu64Fnv1 (line 1675) | func MonsterAddTesthashu64Fnv1(builder *flatbuffers.Builder, testhashu64... function MonsterAddTesthashs32Fnv1a (line 1678) | func MonsterAddTesthashs32Fnv1a(builder *flatbuffers.Builder, testhashs3... function MonsterAddTesthashu32Fnv1a (line 1681) | func MonsterAddTesthashu32Fnv1a(builder *flatbuffers.Builder, testhashu3... function MonsterAddTesthashs64Fnv1a (line 1684) | func MonsterAddTesthashs64Fnv1a(builder *flatbuffers.Builder, testhashs6... function MonsterAddTesthashu64Fnv1a (line 1687) | func MonsterAddTesthashu64Fnv1a(builder *flatbuffers.Builder, testhashu6... function MonsterAddTestarrayofbools (line 1690) | func MonsterAddTestarrayofbools(builder *flatbuffers.Builder, testarrayo... function MonsterStartTestarrayofboolsVector (line 1693) | func MonsterStartTestarrayofboolsVector(builder *flatbuffers.Builder, nu... function MonsterAddTestf (line 1696) | func MonsterAddTestf(builder *flatbuffers.Builder, testf float32) { function MonsterAddTestf2 (line 1699) | func MonsterAddTestf2(builder *flatbuffers.Builder, testf2 float32) { function MonsterAddTestf3 (line 1702) | func MonsterAddTestf3(builder *flatbuffers.Builder, testf3 float32) { function MonsterAddTestarrayofstring2 (line 1705) | func MonsterAddTestarrayofstring2(builder *flatbuffers.Builder, testarra... function MonsterStartTestarrayofstring2Vector (line 1708) | func MonsterStartTestarrayofstring2Vector(builder *flatbuffers.Builder, ... function MonsterAddTestarrayofsortedstruct (line 1711) | func MonsterAddTestarrayofsortedstruct(builder *flatbuffers.Builder, tes... function MonsterStartTestarrayofsortedstructVector (line 1714) | func MonsterStartTestarrayofsortedstructVector(builder *flatbuffers.Buil... function MonsterAddFlex (line 1717) | func MonsterAddFlex(builder *flatbuffers.Builder, flex flatbuffers.UOffs... function MonsterStartFlexVector (line 1720) | func MonsterStartFlexVector(builder *flatbuffers.Builder, numElems int) ... function MonsterAddTest5 (line 1723) | func MonsterAddTest5(builder *flatbuffers.Builder, test5 flatbuffers.UOf... function MonsterStartTest5Vector (line 1726) | func MonsterStartTest5Vector(builder *flatbuffers.Builder, numElems int)... function MonsterAddVectorOfLongs (line 1729) | func MonsterAddVectorOfLongs(builder *flatbuffers.Builder, vectorOfLongs... function MonsterStartVectorOfLongsVector (line 1732) | func MonsterStartVectorOfLongsVector(builder *flatbuffers.Builder, numEl... function MonsterAddVectorOfDoubles (line 1735) | func MonsterAddVectorOfDoubles(builder *flatbuffers.Builder, vectorOfDou... function MonsterStartVectorOfDoublesVector (line 1738) | func MonsterStartVectorOfDoublesVector(builder *flatbuffers.Builder, num... function MonsterAddParentNamespaceTest (line 1741) | func MonsterAddParentNamespaceTest(builder *flatbuffers.Builder, parentN... function MonsterAddVectorOfReferrables (line 1744) | func MonsterAddVectorOfReferrables(builder *flatbuffers.Builder, vectorO... function MonsterStartVectorOfReferrablesVector (line 1747) | func MonsterStartVectorOfReferrablesVector(builder *flatbuffers.Builder,... function MonsterAddSingleWeakReference (line 1750) | func MonsterAddSingleWeakReference(builder *flatbuffers.Builder, singleW... function MonsterAddVectorOfWeakReferences (line 1753) | func MonsterAddVectorOfWeakReferences(builder *flatbuffers.Builder, vect... function MonsterStartVectorOfWeakReferencesVector (line 1756) | func MonsterStartVectorOfWeakReferencesVector(builder *flatbuffers.Build... function MonsterAddVectorOfStrongReferrables (line 1759) | func MonsterAddVectorOfStrongReferrables(builder *flatbuffers.Builder, v... function MonsterStartVectorOfStrongReferrablesVector (line 1762) | func MonsterStartVectorOfStrongReferrablesVector(builder *flatbuffers.Bu... function MonsterAddCoOwningReference (line 1765) | func MonsterAddCoOwningReference(builder *flatbuffers.Builder, coOwningR... function MonsterAddVectorOfCoOwningReferences (line 1768) | func MonsterAddVectorOfCoOwningReferences(builder *flatbuffers.Builder, ... function MonsterStartVectorOfCoOwningReferencesVector (line 1771) | func MonsterStartVectorOfCoOwningReferencesVector(builder *flatbuffers.B... function MonsterAddNonOwningReference (line 1774) | func MonsterAddNonOwningReference(builder *flatbuffers.Builder, nonOwnin... function MonsterAddVectorOfNonOwningReferences (line 1777) | func MonsterAddVectorOfNonOwningReferences(builder *flatbuffers.Builder,... function MonsterStartVectorOfNonOwningReferencesVector (line 1780) | func MonsterStartVectorOfNonOwningReferencesVector(builder *flatbuffers.... function MonsterAddAnyUniqueType (line 1783) | func MonsterAddAnyUniqueType(builder *flatbuffers.Builder, anyUniqueType... function MonsterAddAnyUnique (line 1786) | func MonsterAddAnyUnique(builder *flatbuffers.Builder, anyUnique flatbuf... function MonsterAddAnyAmbiguousType (line 1789) | func MonsterAddAnyAmbiguousType(builder *flatbuffers.Builder, anyAmbiguo... function MonsterAddAnyAmbiguous (line 1792) | func MonsterAddAnyAmbiguous(builder *flatbuffers.Builder, anyAmbiguous f... function MonsterAddVectorOfEnums (line 1795) | func MonsterAddVectorOfEnums(builder *flatbuffers.Builder, vectorOfEnums... function MonsterStartVectorOfEnumsVector (line 1798) | func MonsterStartVectorOfEnumsVector(builder *flatbuffers.Builder, numEl... function MonsterAddSignedEnum (line 1801) | func MonsterAddSignedEnum(builder *flatbuffers.Builder, signedEnum Race) { function MonsterAddTestrequirednestedflatbuffer (line 1804) | func MonsterAddTestrequirednestedflatbuffer(builder *flatbuffers.Builder... function MonsterStartTestrequirednestedflatbufferVector (line 1807) | func MonsterStartTestrequirednestedflatbufferVector(builder *flatbuffers... function MonsterAddScalarKeySortedTables (line 1810) | func MonsterAddScalarKeySortedTables(builder *flatbuffers.Builder, scala... function MonsterStartScalarKeySortedTablesVector (line 1813) | func MonsterStartScalarKeySortedTablesVector(builder *flatbuffers.Builde... function MonsterAddNativeInline (line 1816) | func MonsterAddNativeInline(builder *flatbuffers.Builder, nativeInline f... function MonsterAddLongEnumNonEnumDefault (line 1819) | func MonsterAddLongEnumNonEnumDefault(builder *flatbuffers.Builder, long... function MonsterAddLongEnumNormalDefault (line 1822) | func MonsterAddLongEnumNormalDefault(builder *flatbuffers.Builder, longE... function MonsterAddNanDefault (line 1825) | func MonsterAddNanDefault(builder *flatbuffers.Builder, nanDefault float... function MonsterAddInfDefault (line 1828) | func MonsterAddInfDefault(builder *flatbuffers.Builder, infDefault float... function MonsterAddPositiveInfDefault (line 1831) | func MonsterAddPositiveInfDefault(builder *flatbuffers.Builder, positive... function MonsterAddInfinityDefault (line 1834) | func MonsterAddInfinityDefault(builder *flatbuffers.Builder, infinityDef... function MonsterAddPositiveInfinityDefault (line 1837) | func MonsterAddPositiveInfinityDefault(builder *flatbuffers.Builder, pos... function MonsterAddNegativeInfDefault (line 1840) | func MonsterAddNegativeInfDefault(builder *flatbuffers.Builder, negative... function MonsterAddNegativeInfinityDefault (line 1843) | func MonsterAddNegativeInfinityDefault(builder *flatbuffers.Builder, neg... function MonsterAddDoubleInfDefault (line 1846) | func MonsterAddDoubleInfDefault(builder *flatbuffers.Builder, doubleInfD... function MonsterEnd (line 1849) | func MonsterEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { FILE: tests/MyGame/Example/Monster.java class Monster (line 24) | @SuppressWarnings("unused") method ValidateVersion (line 26) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsMonster (line 27) | public static Monster getRootAsMonster(ByteBuffer _bb) { return getRoo... method getRootAsMonster (line 28) | public static Monster getRootAsMonster(ByteBuffer _bb, Monster obj) { ... method MonsterBufferHasIdentifier (line 29) | public static boolean MonsterBufferHasIdentifier(ByteBuffer _bb) { ret... method __init (line 30) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 31) | public Monster __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); ret... method pos (line 33) | public MyGame.Example.Vec3 pos() { return pos(new MyGame.Example.Vec3(... method pos (line 34) | public MyGame.Example.Vec3 pos(MyGame.Example.Vec3 obj) { int o = __of... method mana (line 35) | public short mana() { int o = __offset(6); return o != 0 ? bb.getShort... method mutateMana (line 36) | public boolean mutateMana(short mana) { int o = __offset(6); if (o != ... method hp (line 37) | public short hp() { int o = __offset(8); return o != 0 ? bb.getShort(o... method mutateHp (line 38) | public boolean mutateHp(short hp) { int o = __offset(8); if (o != 0) {... method name (line 39) | public String name() { int o = __offset(10); return o != 0 ? __string(... method nameAsByteBuffer (line 40) | public ByteBuffer nameAsByteBuffer() { return __vector_as_bytebuffer(1... method nameInByteBuffer (line 41) | public ByteBuffer nameInByteBuffer(ByteBuffer _bb) { return __vector_i... method inventory (line 42) | public int inventory(int j) { int o = __offset(14); return o != 0 ? bb... method inventoryLength (line 43) | public int inventoryLength() { int o = __offset(14); return o != 0 ? _... method inventoryVector (line 44) | public ByteVector inventoryVector() { return inventoryVector(new ByteV... method inventoryVector (line 45) | public ByteVector inventoryVector(ByteVector obj) { int o = __offset(1... method inventoryAsByteBuffer (line 46) | public ByteBuffer inventoryAsByteBuffer() { return __vector_as_bytebuf... method inventoryInByteBuffer (line 47) | public ByteBuffer inventoryInByteBuffer(ByteBuffer _bb) { return __vec... method mutateInventory (line 48) | public boolean mutateInventory(int j, int inventory) { int o = __offse... method color (line 49) | public int color() { int o = __offset(16); return o != 0 ? bb.get(o + ... method mutateColor (line 50) | public boolean mutateColor(int color) { int o = __offset(16); if (o !=... method testType (line 51) | public byte testType() { int o = __offset(18); return o != 0 ? bb.get(... method test (line 52) | public com.google.flatbuffers.Table test(com.google.flatbuffers.Table ... method test4 (line 53) | public MyGame.Example.Test test4(int j) { return test4(new MyGame.Exam... method test4 (line 54) | public MyGame.Example.Test test4(MyGame.Example.Test obj, int j) { int... method test4Length (line 55) | public int test4Length() { int o = __offset(22); return o != 0 ? __vec... method test4Vector (line 56) | public MyGame.Example.Test.Vector test4Vector() { return test4Vector(n... method test4Vector (line 57) | public MyGame.Example.Test.Vector test4Vector(MyGame.Example.Test.Vect... method testarrayofstring (line 58) | public String testarrayofstring(int j) { int o = __offset(24); return ... method testarrayofstringLength (line 59) | public int testarrayofstringLength() { int o = __offset(24); return o ... method testarrayofstringVector (line 60) | public StringVector testarrayofstringVector() { return testarrayofstri... method testarrayofstringVector (line 61) | public StringVector testarrayofstringVector(StringVector obj) { int o ... method testarrayoftables (line 66) | public MyGame.Example.Monster testarrayoftables(int j) { return testar... method testarrayoftables (line 67) | public MyGame.Example.Monster testarrayoftables(MyGame.Example.Monster... method testarrayoftablesLength (line 68) | public int testarrayoftablesLength() { int o = __offset(26); return o ... method testarrayoftablesByKey (line 69) | public MyGame.Example.Monster testarrayoftablesByKey(String key) { int... method testarrayoftablesByKey (line 70) | public MyGame.Example.Monster testarrayoftablesByKey(MyGame.Example.Mo... method testarrayoftablesVector (line 71) | public MyGame.Example.Monster.Vector testarrayoftablesVector() { retur... method testarrayoftablesVector (line 72) | public MyGame.Example.Monster.Vector testarrayoftablesVector(MyGame.Ex... method enemy (line 73) | public MyGame.Example.Monster enemy() { return enemy(new MyGame.Exampl... method enemy (line 74) | public MyGame.Example.Monster enemy(MyGame.Example.Monster obj) { int ... method testnestedflatbuffer (line 75) | public int testnestedflatbuffer(int j) { int o = __offset(30); return ... method testnestedflatbufferLength (line 76) | public int testnestedflatbufferLength() { int o = __offset(30); return... method testnestedflatbufferVector (line 77) | public ByteVector testnestedflatbufferVector() { return testnestedflat... method testnestedflatbufferVector (line 78) | public ByteVector testnestedflatbufferVector(ByteVector obj) { int o =... method testnestedflatbufferAsByteBuffer (line 79) | public ByteBuffer testnestedflatbufferAsByteBuffer() { return __vector... method testnestedflatbufferInByteBuffer (line 80) | public ByteBuffer testnestedflatbufferInByteBuffer(ByteBuffer _bb) { r... method testnestedflatbufferAsMonster (line 81) | public MyGame.Example.Monster testnestedflatbufferAsMonster() { return... method testnestedflatbufferAsMonster (line 82) | public MyGame.Example.Monster testnestedflatbufferAsMonster(MyGame.Exa... method mutateTestnestedflatbuffer (line 83) | public boolean mutateTestnestedflatbuffer(int j, int testnestedflatbuf... method testempty (line 84) | public MyGame.Example.Stat testempty() { return testempty(new MyGame.E... method testempty (line 85) | public MyGame.Example.Stat testempty(MyGame.Example.Stat obj) { int o ... method testbool (line 86) | public boolean testbool() { int o = __offset(34); return o != 0 ? 0!=b... method mutateTestbool (line 87) | public boolean mutateTestbool(boolean testbool) { int o = __offset(34)... method testhashs32Fnv1 (line 88) | public int testhashs32Fnv1() { int o = __offset(36); return o != 0 ? b... method mutateTesthashs32Fnv1 (line 89) | public boolean mutateTesthashs32Fnv1(int testhashs32_fnv1) { int o = _... method testhashu32Fnv1 (line 90) | public long testhashu32Fnv1() { int o = __offset(38); return o != 0 ? ... method mutateTesthashu32Fnv1 (line 91) | public boolean mutateTesthashu32Fnv1(long testhashu32_fnv1) { int o = ... method testhashs64Fnv1 (line 92) | public long testhashs64Fnv1() { int o = __offset(40); return o != 0 ? ... method mutateTesthashs64Fnv1 (line 93) | public boolean mutateTesthashs64Fnv1(long testhashs64_fnv1) { int o = ... method testhashu64Fnv1 (line 94) | public long testhashu64Fnv1() { int o = __offset(42); return o != 0 ? ... method mutateTesthashu64Fnv1 (line 95) | public boolean mutateTesthashu64Fnv1(long testhashu64_fnv1) { int o = ... method testhashs32Fnv1a (line 96) | public int testhashs32Fnv1a() { int o = __offset(44); return o != 0 ? ... method mutateTesthashs32Fnv1a (line 97) | public boolean mutateTesthashs32Fnv1a(int testhashs32_fnv1a) { int o =... method testhashu32Fnv1a (line 98) | public long testhashu32Fnv1a() { int o = __offset(46); return o != 0 ?... method mutateTesthashu32Fnv1a (line 99) | public boolean mutateTesthashu32Fnv1a(long testhashu32_fnv1a) { int o ... method testhashs64Fnv1a (line 100) | public long testhashs64Fnv1a() { int o = __offset(48); return o != 0 ?... method mutateTesthashs64Fnv1a (line 101) | public boolean mutateTesthashs64Fnv1a(long testhashs64_fnv1a) { int o ... method testhashu64Fnv1a (line 102) | public long testhashu64Fnv1a() { int o = __offset(50); return o != 0 ?... method mutateTesthashu64Fnv1a (line 103) | public boolean mutateTesthashu64Fnv1a(long testhashu64_fnv1a) { int o ... method testarrayofbools (line 104) | public boolean testarrayofbools(int j) { int o = __offset(52); return ... method testarrayofboolsLength (line 105) | public int testarrayofboolsLength() { int o = __offset(52); return o !... method testarrayofboolsVector (line 106) | public BooleanVector testarrayofboolsVector() { return testarrayofbool... method testarrayofboolsVector (line 107) | public BooleanVector testarrayofboolsVector(BooleanVector obj) { int o... method testarrayofboolsAsByteBuffer (line 108) | public ByteBuffer testarrayofboolsAsByteBuffer() { return __vector_as_... method testarrayofboolsInByteBuffer (line 109) | public ByteBuffer testarrayofboolsInByteBuffer(ByteBuffer _bb) { retur... method mutateTestarrayofbools (line 110) | public boolean mutateTestarrayofbools(int j, boolean testarrayofbools)... method testf (line 111) | public float testf() { int o = __offset(54); return o != 0 ? bb.getFlo... method mutateTestf (line 112) | public boolean mutateTestf(float testf) { int o = __offset(54); if (o ... method testf2 (line 113) | public float testf2() { int o = __offset(56); return o != 0 ? bb.getFl... method mutateTestf2 (line 114) | public boolean mutateTestf2(float testf2) { int o = __offset(56); if (... method testf3 (line 115) | public float testf3() { int o = __offset(58); return o != 0 ? bb.getFl... method mutateTestf3 (line 116) | public boolean mutateTestf3(float testf3) { int o = __offset(58); if (... method testarrayofstring2 (line 117) | public String testarrayofstring2(int j) { int o = __offset(60); return... method testarrayofstring2Length (line 118) | public int testarrayofstring2Length() { int o = __offset(60); return o... method testarrayofstring2Vector (line 119) | public StringVector testarrayofstring2Vector() { return testarrayofstr... method testarrayofstring2Vector (line 120) | public StringVector testarrayofstring2Vector(StringVector obj) { int o... method testarrayofsortedstruct (line 121) | public MyGame.Example.Ability testarrayofsortedstruct(int j) { return ... method testarrayofsortedstruct (line 122) | public MyGame.Example.Ability testarrayofsortedstruct(MyGame.Example.A... method testarrayofsortedstructLength (line 123) | public int testarrayofsortedstructLength() { int o = __offset(62); ret... method testarrayofsortedstructVector (line 124) | public MyGame.Example.Ability.Vector testarrayofsortedstructVector() {... method testarrayofsortedstructVector (line 125) | public MyGame.Example.Ability.Vector testarrayofsortedstructVector(MyG... method flex (line 126) | public int flex(int j) { int o = __offset(64); return o != 0 ? bb.get(... method flexLength (line 127) | public int flexLength() { int o = __offset(64); return o != 0 ? __vect... method flexVector (line 128) | public ByteVector flexVector() { return flexVector(new ByteVector()); } method flexVector (line 129) | public ByteVector flexVector(ByteVector obj) { int o = __offset(64); r... method flexAsByteBuffer (line 130) | public ByteBuffer flexAsByteBuffer() { return __vector_as_bytebuffer(6... method flexInByteBuffer (line 131) | public ByteBuffer flexInByteBuffer(ByteBuffer _bb) { return __vector_i... method mutateFlex (line 132) | public boolean mutateFlex(int j, int flex) { int o = __offset(64); if ... method test5 (line 133) | public MyGame.Example.Test test5(int j) { return test5(new MyGame.Exam... method test5 (line 134) | public MyGame.Example.Test test5(MyGame.Example.Test obj, int j) { int... method test5Length (line 135) | public int test5Length() { int o = __offset(66); return o != 0 ? __vec... method test5Vector (line 136) | public MyGame.Example.Test.Vector test5Vector() { return test5Vector(n... method test5Vector (line 137) | public MyGame.Example.Test.Vector test5Vector(MyGame.Example.Test.Vect... method vectorOfLongs (line 138) | public long vectorOfLongs(int j) { int o = __offset(68); return o != 0... method vectorOfLongsLength (line 139) | public int vectorOfLongsLength() { int o = __offset(68); return o != 0... method vectorOfLongsVector (line 140) | public LongVector vectorOfLongsVector() { return vectorOfLongsVector(n... method vectorOfLongsVector (line 141) | public LongVector vectorOfLongsVector(LongVector obj) { int o = __offs... method vectorOfLongsAsByteBuffer (line 142) | public ByteBuffer vectorOfLongsAsByteBuffer() { return __vector_as_byt... method vectorOfLongsInByteBuffer (line 143) | public ByteBuffer vectorOfLongsInByteBuffer(ByteBuffer _bb) { return _... method mutateVectorOfLongs (line 144) | public boolean mutateVectorOfLongs(int j, long vector_of_longs) { int ... method vectorOfDoubles (line 145) | public double vectorOfDoubles(int j) { int o = __offset(70); return o ... method vectorOfDoublesLength (line 146) | public int vectorOfDoublesLength() { int o = __offset(70); return o !=... method vectorOfDoublesVector (line 147) | public DoubleVector vectorOfDoublesVector() { return vectorOfDoublesVe... method vectorOfDoublesVector (line 148) | public DoubleVector vectorOfDoublesVector(DoubleVector obj) { int o = ... method vectorOfDoublesAsByteBuffer (line 149) | public ByteBuffer vectorOfDoublesAsByteBuffer() { return __vector_as_b... method vectorOfDoublesInByteBuffer (line 150) | public ByteBuffer vectorOfDoublesInByteBuffer(ByteBuffer _bb) { return... method mutateVectorOfDoubles (line 151) | public boolean mutateVectorOfDoubles(int j, double vector_of_doubles) ... method parentNamespaceTest (line 152) | public MyGame.InParentNamespace parentNamespaceTest() { return parentN... method parentNamespaceTest (line 153) | public MyGame.InParentNamespace parentNamespaceTest(MyGame.InParentNam... method vectorOfReferrables (line 154) | public MyGame.Example.Referrable vectorOfReferrables(int j) { return v... method vectorOfReferrables (line 155) | public MyGame.Example.Referrable vectorOfReferrables(MyGame.Example.Re... method vectorOfReferrablesLength (line 156) | public int vectorOfReferrablesLength() { int o = __offset(74); return ... method vectorOfReferrablesByKey (line 157) | public MyGame.Example.Referrable vectorOfReferrablesByKey(long key) { ... method vectorOfReferrablesByKey (line 158) | public MyGame.Example.Referrable vectorOfReferrablesByKey(MyGame.Examp... method vectorOfReferrablesVector (line 159) | public MyGame.Example.Referrable.Vector vectorOfReferrablesVector() { ... method vectorOfReferrablesVector (line 160) | public MyGame.Example.Referrable.Vector vectorOfReferrablesVector(MyGa... method singleWeakReference (line 161) | public long singleWeakReference() { int o = __offset(76); return o != ... method mutateSingleWeakReference (line 162) | public boolean mutateSingleWeakReference(long single_weak_reference) {... method vectorOfWeakReferences (line 163) | public long vectorOfWeakReferences(int j) { int o = __offset(78); retu... method vectorOfWeakReferencesLength (line 164) | public int vectorOfWeakReferencesLength() { int o = __offset(78); retu... method vectorOfWeakReferencesVector (line 165) | public LongVector vectorOfWeakReferencesVector() { return vectorOfWeak... method vectorOfWeakReferencesVector (line 166) | public LongVector vectorOfWeakReferencesVector(LongVector obj) { int o... method vectorOfWeakReferencesAsByteBuffer (line 167) | public ByteBuffer vectorOfWeakReferencesAsByteBuffer() { return __vect... method vectorOfWeakReferencesInByteBuffer (line 168) | public ByteBuffer vectorOfWeakReferencesInByteBuffer(ByteBuffer _bb) {... method mutateVectorOfWeakReferences (line 169) | public boolean mutateVectorOfWeakReferences(int j, long vector_of_weak... method vectorOfStrongReferrables (line 170) | public MyGame.Example.Referrable vectorOfStrongReferrables(int j) { re... method vectorOfStrongReferrables (line 171) | public MyGame.Example.Referrable vectorOfStrongReferrables(MyGame.Exam... method vectorOfStrongReferrablesLength (line 172) | public int vectorOfStrongReferrablesLength() { int o = __offset(80); r... method vectorOfStrongReferrablesByKey (line 173) | public MyGame.Example.Referrable vectorOfStrongReferrablesByKey(long k... method vectorOfStrongReferrablesByKey (line 174) | public MyGame.Example.Referrable vectorOfStrongReferrablesByKey(MyGame... method vectorOfStrongReferrablesVector (line 175) | public MyGame.Example.Referrable.Vector vectorOfStrongReferrablesVecto... method vectorOfStrongReferrablesVector (line 176) | public MyGame.Example.Referrable.Vector vectorOfStrongReferrablesVecto... method coOwningReference (line 177) | public long coOwningReference() { int o = __offset(82); return o != 0 ... method mutateCoOwningReference (line 178) | public boolean mutateCoOwningReference(long co_owning_reference) { int... method vectorOfCoOwningReferences (line 179) | public long vectorOfCoOwningReferences(int j) { int o = __offset(84); ... method vectorOfCoOwningReferencesLength (line 180) | public int vectorOfCoOwningReferencesLength() { int o = __offset(84); ... method vectorOfCoOwningReferencesVector (line 181) | public LongVector vectorOfCoOwningReferencesVector() { return vectorOf... method vectorOfCoOwningReferencesVector (line 182) | public LongVector vectorOfCoOwningReferencesVector(LongVector obj) { i... method vectorOfCoOwningReferencesAsByteBuffer (line 183) | public ByteBuffer vectorOfCoOwningReferencesAsByteBuffer() { return __... method vectorOfCoOwningReferencesInByteBuffer (line 184) | public ByteBuffer vectorOfCoOwningReferencesInByteBuffer(ByteBuffer _b... method mutateVectorOfCoOwningReferences (line 185) | public boolean mutateVectorOfCoOwningReferences(int j, long vector_of_... method nonOwningReference (line 186) | public long nonOwningReference() { int o = __offset(86); return o != 0... method mutateNonOwningReference (line 187) | public boolean mutateNonOwningReference(long non_owning_reference) { i... method vectorOfNonOwningReferences (line 188) | public long vectorOfNonOwningReferences(int j) { int o = __offset(88);... method vectorOfNonOwningReferencesLength (line 189) | public int vectorOfNonOwningReferencesLength() { int o = __offset(88);... method vectorOfNonOwningReferencesVector (line 190) | public LongVector vectorOfNonOwningReferencesVector() { return vectorO... method vectorOfNonOwningReferencesVector (line 191) | public LongVector vectorOfNonOwningReferencesVector(LongVector obj) { ... method vectorOfNonOwningReferencesAsByteBuffer (line 192) | public ByteBuffer vectorOfNonOwningReferencesAsByteBuffer() { return _... method vectorOfNonOwningReferencesInByteBuffer (line 193) | public ByteBuffer vectorOfNonOwningReferencesInByteBuffer(ByteBuffer _... method mutateVectorOfNonOwningReferences (line 194) | public boolean mutateVectorOfNonOwningReferences(int j, long vector_of... method anyUniqueType (line 195) | public byte anyUniqueType() { int o = __offset(90); return o != 0 ? bb... method anyUnique (line 196) | public com.google.flatbuffers.Table anyUnique(com.google.flatbuffers.T... method anyAmbiguousType (line 197) | public byte anyAmbiguousType() { int o = __offset(94); return o != 0 ?... method anyAmbiguous (line 198) | public com.google.flatbuffers.Table anyAmbiguous(com.google.flatbuffer... method vectorOfEnums (line 199) | public int vectorOfEnums(int j) { int o = __offset(98); return o != 0 ... method vectorOfEnumsLength (line 200) | public int vectorOfEnumsLength() { int o = __offset(98); return o != 0... method vectorOfEnumsVector (line 201) | public ByteVector vectorOfEnumsVector() { return vectorOfEnumsVector(n... method vectorOfEnumsVector (line 202) | public ByteVector vectorOfEnumsVector(ByteVector obj) { int o = __offs... method vectorOfEnumsAsByteBuffer (line 203) | public ByteBuffer vectorOfEnumsAsByteBuffer() { return __vector_as_byt... method vectorOfEnumsInByteBuffer (line 204) | public ByteBuffer vectorOfEnumsInByteBuffer(ByteBuffer _bb) { return _... method mutateVectorOfEnums (line 205) | public boolean mutateVectorOfEnums(int j, int vector_of_enums) { int o... method signedEnum (line 206) | public byte signedEnum() { int o = __offset(100); return o != 0 ? bb.g... method mutateSignedEnum (line 207) | public boolean mutateSignedEnum(byte signed_enum) { int o = __offset(1... method testrequirednestedflatbuffer (line 208) | public int testrequirednestedflatbuffer(int j) { int o = __offset(102)... method testrequirednestedflatbufferLength (line 209) | public int testrequirednestedflatbufferLength() { int o = __offset(102... method testrequirednestedflatbufferVector (line 210) | public ByteVector testrequirednestedflatbufferVector() { return testre... method testrequirednestedflatbufferVector (line 211) | public ByteVector testrequirednestedflatbufferVector(ByteVector obj) {... method testrequirednestedflatbufferAsByteBuffer (line 212) | public ByteBuffer testrequirednestedflatbufferAsByteBuffer() { return ... method testrequirednestedflatbufferInByteBuffer (line 213) | public ByteBuffer testrequirednestedflatbufferInByteBuffer(ByteBuffer ... method testrequirednestedflatbufferAsMonster (line 214) | public MyGame.Example.Monster testrequirednestedflatbufferAsMonster() ... method testrequirednestedflatbufferAsMonster (line 215) | public MyGame.Example.Monster testrequirednestedflatbufferAsMonster(My... method mutateTestrequirednestedflatbuffer (line 216) | public boolean mutateTestrequirednestedflatbuffer(int j, int testrequi... method scalarKeySortedTables (line 217) | public MyGame.Example.Stat scalarKeySortedTables(int j) { return scala... method scalarKeySortedTables (line 218) | public MyGame.Example.Stat scalarKeySortedTables(MyGame.Example.Stat o... method scalarKeySortedTablesLength (line 219) | public int scalarKeySortedTablesLength() { int o = __offset(104); retu... method scalarKeySortedTablesByKey (line 220) | public MyGame.Example.Stat scalarKeySortedTablesByKey(int key) { int o... method scalarKeySortedTablesByKey (line 221) | public MyGame.Example.Stat scalarKeySortedTablesByKey(MyGame.Example.S... method scalarKeySortedTablesVector (line 222) | public MyGame.Example.Stat.Vector scalarKeySortedTablesVector() { retu... method scalarKeySortedTablesVector (line 223) | public MyGame.Example.Stat.Vector scalarKeySortedTablesVector(MyGame.E... method nativeInline (line 224) | public MyGame.Example.Test nativeInline() { return nativeInline(new My... method nativeInline (line 225) | public MyGame.Example.Test nativeInline(MyGame.Example.Test obj) { int... method longEnumNonEnumDefault (line 226) | public long longEnumNonEnumDefault() { int o = __offset(108); return o... method mutateLongEnumNonEnumDefault (line 227) | public boolean mutateLongEnumNonEnumDefault(long long_enum_non_enum_de... method longEnumNormalDefault (line 228) | public long longEnumNormalDefault() { int o = __offset(110); return o ... method mutateLongEnumNormalDefault (line 229) | public boolean mutateLongEnumNormalDefault(long long_enum_normal_defau... method nanDefault (line 230) | public float nanDefault() { int o = __offset(112); return o != 0 ? bb.... method mutateNanDefault (line 231) | public boolean mutateNanDefault(float nan_default) { int o = __offset(... method infDefault (line 232) | public float infDefault() { int o = __offset(114); return o != 0 ? bb.... method mutateInfDefault (line 233) | public boolean mutateInfDefault(float inf_default) { int o = __offset(... method positiveInfDefault (line 234) | public float positiveInfDefault() { int o = __offset(116); return o !=... method mutatePositiveInfDefault (line 235) | public boolean mutatePositiveInfDefault(float positive_inf_default) { ... method infinityDefault (line 236) | public float infinityDefault() { int o = __offset(118); return o != 0 ... method mutateInfinityDefault (line 237) | public boolean mutateInfinityDefault(float infinity_default) { int o =... method positiveInfinityDefault (line 238) | public float positiveInfinityDefault() { int o = __offset(120); return... method mutatePositiveInfinityDefault (line 239) | public boolean mutatePositiveInfinityDefault(float positive_infinity_d... method negativeInfDefault (line 240) | public float negativeInfDefault() { int o = __offset(122); return o !=... method mutateNegativeInfDefault (line 241) | public boolean mutateNegativeInfDefault(float negative_inf_default) { ... method negativeInfinityDefault (line 242) | public float negativeInfinityDefault() { int o = __offset(124); return... method mutateNegativeInfinityDefault (line 243) | public boolean mutateNegativeInfinityDefault(float negative_infinity_d... method doubleInfDefault (line 244) | public double doubleInfDefault() { int o = __offset(126); return o != ... method mutateDoubleInfDefault (line 245) | public boolean mutateDoubleInfDefault(double double_inf_default) { int... method startMonster (line 247) | public static void startMonster(FlatBufferBuilder builder) { builder.s... method addPos (line 248) | public static void addPos(FlatBufferBuilder builder, int posOffset) { ... method addMana (line 249) | public static void addMana(FlatBufferBuilder builder, short mana) { bu... method addHp (line 250) | public static void addHp(FlatBufferBuilder builder, short hp) { builde... method addName (line 251) | public static void addName(FlatBufferBuilder builder, int nameOffset) ... method addInventory (line 252) | public static void addInventory(FlatBufferBuilder builder, int invento... method createInventoryVector (line 253) | public static int createInventoryVector(FlatBufferBuilder builder, byt... method createInventoryVector (line 254) | public static int createInventoryVector(FlatBufferBuilder builder, Byt... method startInventoryVector (line 255) | public static void startInventoryVector(FlatBufferBuilder builder, int... method addColor (line 256) | public static void addColor(FlatBufferBuilder builder, int color) { bu... method addTestType (line 257) | public static void addTestType(FlatBufferBuilder builder, byte testTyp... method addTest (line 258) | public static void addTest(FlatBufferBuilder builder, int testOffset) ... method addTest4 (line 259) | public static void addTest4(FlatBufferBuilder builder, int test4Offset... method startTest4Vector (line 260) | public static void startTest4Vector(FlatBufferBuilder builder, int num... method addTestarrayofstring (line 261) | public static void addTestarrayofstring(FlatBufferBuilder builder, int... method createTestarrayofstringVector (line 262) | public static int createTestarrayofstringVector(FlatBufferBuilder buil... method startTestarrayofstringVector (line 263) | public static void startTestarrayofstringVector(FlatBufferBuilder buil... method addTestarrayoftables (line 264) | public static void addTestarrayoftables(FlatBufferBuilder builder, int... method createTestarrayoftablesVector (line 265) | public static int createTestarrayoftablesVector(FlatBufferBuilder buil... method startTestarrayoftablesVector (line 266) | public static void startTestarrayoftablesVector(FlatBufferBuilder buil... method addEnemy (line 267) | public static void addEnemy(FlatBufferBuilder builder, int enemyOffset... method addTestnestedflatbuffer (line 268) | public static void addTestnestedflatbuffer(FlatBufferBuilder builder, ... method createTestnestedflatbufferVector (line 269) | public static int createTestnestedflatbufferVector(FlatBufferBuilder b... method createTestnestedflatbufferVector (line 270) | public static int createTestnestedflatbufferVector(FlatBufferBuilder b... method startTestnestedflatbufferVector (line 271) | public static void startTestnestedflatbufferVector(FlatBufferBuilder b... method addTestempty (line 272) | public static void addTestempty(FlatBufferBuilder builder, int testemp... method addTestbool (line 273) | public static void addTestbool(FlatBufferBuilder builder, boolean test... method addTesthashs32Fnv1 (line 274) | public static void addTesthashs32Fnv1(FlatBufferBuilder builder, int t... method addTesthashu32Fnv1 (line 275) | public static void addTesthashu32Fnv1(FlatBufferBuilder builder, long ... method addTesthashs64Fnv1 (line 276) | public static void addTesthashs64Fnv1(FlatBufferBuilder builder, long ... method addTesthashu64Fnv1 (line 277) | public static void addTesthashu64Fnv1(FlatBufferBuilder builder, long ... method addTesthashs32Fnv1a (line 278) | public static void addTesthashs32Fnv1a(FlatBufferBuilder builder, int ... method addTesthashu32Fnv1a (line 279) | public static void addTesthashu32Fnv1a(FlatBufferBuilder builder, long... method addTesthashs64Fnv1a (line 280) | public static void addTesthashs64Fnv1a(FlatBufferBuilder builder, long... method addTesthashu64Fnv1a (line 281) | public static void addTesthashu64Fnv1a(FlatBufferBuilder builder, long... method addTestarrayofbools (line 282) | public static void addTestarrayofbools(FlatBufferBuilder builder, int ... method createTestarrayofboolsVector (line 283) | public static int createTestarrayofboolsVector(FlatBufferBuilder build... method startTestarrayofboolsVector (line 284) | public static void startTestarrayofboolsVector(FlatBufferBuilder build... method addTestf (line 285) | public static void addTestf(FlatBufferBuilder builder, float testf) { ... method addTestf2 (line 286) | public static void addTestf2(FlatBufferBuilder builder, float testf2) ... method addTestf3 (line 287) | public static void addTestf3(FlatBufferBuilder builder, float testf3) ... method addTestarrayofstring2 (line 288) | public static void addTestarrayofstring2(FlatBufferBuilder builder, in... method createTestarrayofstring2Vector (line 289) | public static int createTestarrayofstring2Vector(FlatBufferBuilder bui... method startTestarrayofstring2Vector (line 290) | public static void startTestarrayofstring2Vector(FlatBufferBuilder bui... method addTestarrayofsortedstruct (line 291) | public static void addTestarrayofsortedstruct(FlatBufferBuilder builde... method startTestarrayofsortedstructVector (line 292) | public static void startTestarrayofsortedstructVector(FlatBufferBuilde... method addFlex (line 293) | public static void addFlex(FlatBufferBuilder builder, int flexOffset) ... method createFlexVector (line 294) | public static int createFlexVector(FlatBufferBuilder builder, byte[] d... method createFlexVector (line 295) | public static int createFlexVector(FlatBufferBuilder builder, ByteBuff... method startFlexVector (line 296) | public static void startFlexVector(FlatBufferBuilder builder, int numE... method addTest5 (line 297) | public static void addTest5(FlatBufferBuilder builder, int test5Offset... method startTest5Vector (line 298) | public static void startTest5Vector(FlatBufferBuilder builder, int num... method addVectorOfLongs (line 299) | public static void addVectorOfLongs(FlatBufferBuilder builder, int vec... method createVectorOfLongsVector (line 300) | public static int createVectorOfLongsVector(FlatBufferBuilder builder,... method startVectorOfLongsVector (line 301) | public static void startVectorOfLongsVector(FlatBufferBuilder builder,... method addVectorOfDoubles (line 302) | public static void addVectorOfDoubles(FlatBufferBuilder builder, int v... method createVectorOfDoublesVector (line 303) | public static int createVectorOfDoublesVector(FlatBufferBuilder builde... method startVectorOfDoublesVector (line 304) | public static void startVectorOfDoublesVector(FlatBufferBuilder builde... method addParentNamespaceTest (line 305) | public static void addParentNamespaceTest(FlatBufferBuilder builder, i... method addVectorOfReferrables (line 306) | public static void addVectorOfReferrables(FlatBufferBuilder builder, i... method createVectorOfReferrablesVector (line 307) | public static int createVectorOfReferrablesVector(FlatBufferBuilder bu... method startVectorOfReferrablesVector (line 308) | public static void startVectorOfReferrablesVector(FlatBufferBuilder bu... method addSingleWeakReference (line 309) | public static void addSingleWeakReference(FlatBufferBuilder builder, l... method addVectorOfWeakReferences (line 310) | public static void addVectorOfWeakReferences(FlatBufferBuilder builder... method createVectorOfWeakReferencesVector (line 311) | public static int createVectorOfWeakReferencesVector(FlatBufferBuilder... method startVectorOfWeakReferencesVector (line 312) | public static void startVectorOfWeakReferencesVector(FlatBufferBuilder... method addVectorOfStrongReferrables (line 313) | public static void addVectorOfStrongReferrables(FlatBufferBuilder buil... method createVectorOfStrongReferrablesVector (line 314) | public static int createVectorOfStrongReferrablesVector(FlatBufferBuil... method startVectorOfStrongReferrablesVector (line 315) | public static void startVectorOfStrongReferrablesVector(FlatBufferBuil... method addCoOwningReference (line 316) | public static void addCoOwningReference(FlatBufferBuilder builder, lon... method addVectorOfCoOwningReferences (line 317) | public static void addVectorOfCoOwningReferences(FlatBufferBuilder bui... method createVectorOfCoOwningReferencesVector (line 318) | public static int createVectorOfCoOwningReferencesVector(FlatBufferBui... method startVectorOfCoOwningReferencesVector (line 319) | public static void startVectorOfCoOwningReferencesVector(FlatBufferBui... method addNonOwningReference (line 320) | public static void addNonOwningReference(FlatBufferBuilder builder, lo... method addVectorOfNonOwningReferences (line 321) | public static void addVectorOfNonOwningReferences(FlatBufferBuilder bu... method createVectorOfNonOwningReferencesVector (line 322) | public static int createVectorOfNonOwningReferencesVector(FlatBufferBu... method startVectorOfNonOwningReferencesVector (line 323) | public static void startVectorOfNonOwningReferencesVector(FlatBufferBu... method addAnyUniqueType (line 324) | public static void addAnyUniqueType(FlatBufferBuilder builder, byte an... method addAnyUnique (line 325) | public static void addAnyUnique(FlatBufferBuilder builder, int anyUniq... method addAnyAmbiguousType (line 326) | public static void addAnyAmbiguousType(FlatBufferBuilder builder, byte... method addAnyAmbiguous (line 327) | public static void addAnyAmbiguous(FlatBufferBuilder builder, int anyA... method addVectorOfEnums (line 328) | public static void addVectorOfEnums(FlatBufferBuilder builder, int vec... method createVectorOfEnumsVector (line 329) | public static int createVectorOfEnumsVector(FlatBufferBuilder builder,... method createVectorOfEnumsVector (line 330) | public static int createVectorOfEnumsVector(FlatBufferBuilder builder,... method startVectorOfEnumsVector (line 331) | public static void startVectorOfEnumsVector(FlatBufferBuilder builder,... method addSignedEnum (line 332) | public static void addSignedEnum(FlatBufferBuilder builder, byte signe... method addTestrequirednestedflatbuffer (line 333) | public static void addTestrequirednestedflatbuffer(FlatBufferBuilder b... method createTestrequirednestedflatbufferVector (line 334) | public static int createTestrequirednestedflatbufferVector(FlatBufferB... method createTestrequirednestedflatbufferVector (line 335) | public static int createTestrequirednestedflatbufferVector(FlatBufferB... method startTestrequirednestedflatbufferVector (line 336) | public static void startTestrequirednestedflatbufferVector(FlatBufferB... method addScalarKeySortedTables (line 337) | public static void addScalarKeySortedTables(FlatBufferBuilder builder,... method createScalarKeySortedTablesVector (line 338) | public static int createScalarKeySortedTablesVector(FlatBufferBuilder ... method startScalarKeySortedTablesVector (line 339) | public static void startScalarKeySortedTablesVector(FlatBufferBuilder ... method addNativeInline (line 340) | public static void addNativeInline(FlatBufferBuilder builder, int nati... method addLongEnumNonEnumDefault (line 341) | public static void addLongEnumNonEnumDefault(FlatBufferBuilder builder... method addLongEnumNormalDefault (line 342) | public static void addLongEnumNormalDefault(FlatBufferBuilder builder,... method addNanDefault (line 343) | public static void addNanDefault(FlatBufferBuilder builder, float nanD... method addInfDefault (line 344) | public static void addInfDefault(FlatBufferBuilder builder, float infD... method addPositiveInfDefault (line 345) | public static void addPositiveInfDefault(FlatBufferBuilder builder, fl... method addInfinityDefault (line 346) | public static void addInfinityDefault(FlatBufferBuilder builder, float... method addPositiveInfinityDefault (line 347) | public static void addPositiveInfinityDefault(FlatBufferBuilder builde... method addNegativeInfDefault (line 348) | public static void addNegativeInfDefault(FlatBufferBuilder builder, fl... method addNegativeInfinityDefault (line 349) | public static void addNegativeInfinityDefault(FlatBufferBuilder builde... method addDoubleInfDefault (line 350) | public static void addDoubleInfDefault(FlatBufferBuilder builder, doub... method endMonster (line 351) | public static int endMonster(FlatBufferBuilder builder) { method finishMonsterBuffer (line 356) | public static void finishMonsterBuffer(FlatBufferBuilder builder, int ... method finishSizePrefixedMonsterBuffer (line 357) | public static void finishSizePrefixedMonsterBuffer(FlatBufferBuilder b... method keysCompare (line 359) | @Override method __lookup_by_key (line 362) | public static Monster __lookup_by_key(Monster obj, int vectorLocation,... class Vector (line 383) | public static final class Vector extends BaseVector { method __assign (line 384) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 386) | public Monster get(int j) { return get(new Monster(), j); } method get (line 387) | public Monster get(Monster obj, int j) { return obj.__assign(__indi... method getByKey (line 388) | public Monster getByKey(String key) { return __lookup_by_key(null, ... method getByKey (line 389) | public Monster getByKey(Monster obj, String key) { return __lookup_... method unpack (line 391) | public MonsterT unpack() { method unpackTo (line 396) | public void unpackTo(MonsterT _o) { method pack (line 588) | public static int pack(FlatBufferBuilder builder, MonsterT _o) { FILE: tests/MyGame/Example/Monster.php class Monster (line 12) | class Monster extends Table method getRootAsMonster (line 18) | public static function getRootAsMonster(ByteBuffer $bb) method MonsterIdentifier (line 24) | public static function MonsterIdentifier() method MonsterBufferHasIdentifier (line 29) | public static function MonsterBufferHasIdentifier(ByteBuffer $buf) method MonsterExtension (line 34) | public static function MonsterExtension() method init (line 44) | public function init($_i, ByteBuffer $_bb) method getPos (line 51) | public function getPos() method getMana (line 61) | public function getMana() method getHp (line 70) | public function getHp() method getName (line 76) | public function getName() method getInventory (line 86) | public function getInventory($j) method getInventoryLength (line 95) | public function getInventoryLength() method getInventoryBytes (line 104) | public function getInventoryBytes() method getColor (line 112) | public function getColor() method getTestType (line 121) | public function getTestType() method getTest (line 130) | public function getTest($obj) method getTest4 (line 139) | public function getTest4($j) method getTest4Length (line 149) | public function getTest4Length() method getTestarrayofstring (line 159) | public function getTestarrayofstring($j) method getTestarrayofstringLength (line 168) | public function getTestarrayofstringLength() method getTestarrayoftables (line 179) | public function getTestarrayoftables($j) method getTestarrayoftablesLength (line 189) | public function getTestarrayoftablesLength() method getEnemy (line 195) | public function getEnemy() method getTestnestedflatbuffer (line 206) | public function getTestnestedflatbuffer($j) method getTestnestedflatbufferLength (line 215) | public function getTestnestedflatbufferLength() method getTestnestedflatbufferBytes (line 224) | public function getTestnestedflatbufferBytes() method getTestempty (line 229) | public function getTestempty() method getTestbool (line 239) | public function getTestbool() method getTesthashs32Fnv1 (line 248) | public function getTesthashs32Fnv1() method getTesthashu32Fnv1 (line 257) | public function getTesthashu32Fnv1() method getTesthashs64Fnv1 (line 266) | public function getTesthashs64Fnv1() method getTesthashu64Fnv1 (line 275) | public function getTesthashu64Fnv1() method getTesthashs32Fnv1a (line 284) | public function getTesthashs32Fnv1a() method getTesthashu32Fnv1a (line 293) | public function getTesthashu32Fnv1a() method getTesthashs64Fnv1a (line 302) | public function getTesthashs64Fnv1a() method getTesthashu64Fnv1a (line 311) | public function getTesthashu64Fnv1a() method getTestarrayofbools (line 321) | public function getTestarrayofbools($j) method getTestarrayofboolsLength (line 330) | public function getTestarrayofboolsLength() method getTestf (line 339) | public function getTestf() method getTestf2 (line 348) | public function getTestf2() method getTestf3 (line 357) | public function getTestf3() method getTestarrayofstring2 (line 367) | public function getTestarrayofstring2($j) method getTestarrayofstring2Length (line 376) | public function getTestarrayofstring2Length() method getTestarrayofsortedstruct (line 385) | public function getTestarrayofsortedstruct($j) method getTestarrayofsortedstructLength (line 395) | public function getTestarrayofsortedstructLength() method getFlex (line 405) | public function getFlex($j) method getFlexLength (line 414) | public function getFlexLength() method getFlexBytes (line 423) | public function getFlexBytes() method getTest5 (line 431) | public function getTest5($j) method getTest5Length (line 441) | public function getTest5Length() method getVectorOfLongs (line 451) | public function getVectorOfLongs($j) method getVectorOfLongsLength (line 460) | public function getVectorOfLongsLength() method getVectorOfDoubles (line 470) | public function getVectorOfDoubles($j) method getVectorOfDoublesLength (line 479) | public function getVectorOfDoublesLength() method getParentNamespaceTest (line 485) | public function getParentNamespaceTest() method getVectorOfReferrables (line 495) | public function getVectorOfReferrables($j) method getVectorOfReferrablesLength (line 505) | public function getVectorOfReferrablesLength() method getSingleWeakReference (line 514) | public function getSingleWeakReference() method getVectorOfWeakReferences (line 524) | public function getVectorOfWeakReferences($j) method getVectorOfWeakReferencesLength (line 533) | public function getVectorOfWeakReferencesLength() method getVectorOfStrongReferrables (line 542) | public function getVectorOfStrongReferrables($j) method getVectorOfStrongReferrablesLength (line 552) | public function getVectorOfStrongReferrablesLength() method getCoOwningReference (line 561) | public function getCoOwningReference() method getVectorOfCoOwningReferences (line 571) | public function getVectorOfCoOwningReferences($j) method getVectorOfCoOwningReferencesLength (line 580) | public function getVectorOfCoOwningReferencesLength() method getNonOwningReference (line 589) | public function getNonOwningReference() method getVectorOfNonOwningReferences (line 599) | public function getVectorOfNonOwningReferences($j) method getVectorOfNonOwningReferencesLength (line 608) | public function getVectorOfNonOwningReferencesLength() method getAnyUniqueType (line 617) | public function getAnyUniqueType() method getAnyUnique (line 626) | public function getAnyUnique($obj) method getAnyAmbiguousType (line 635) | public function getAnyAmbiguousType() method getAnyAmbiguous (line 644) | public function getAnyAmbiguous($obj) method getVectorOfEnums (line 654) | public function getVectorOfEnums($j) method getVectorOfEnumsLength (line 663) | public function getVectorOfEnumsLength() method getVectorOfEnumsBytes (line 672) | public function getVectorOfEnumsBytes() method getSignedEnum (line 680) | public function getSignedEnum() method getTestrequirednestedflatbuffer (line 690) | public function getTestrequirednestedflatbuffer($j) method getTestrequirednestedflatbufferLength (line 699) | public function getTestrequirednestedflatbufferLength() method getTestrequirednestedflatbufferBytes (line 708) | public function getTestrequirednestedflatbufferBytes() method getScalarKeySortedTables (line 716) | public function getScalarKeySortedTables($j) method getScalarKeySortedTablesLength (line 726) | public function getScalarKeySortedTablesLength() method getNativeInline (line 732) | public function getNativeInline() method getLongEnumNonEnumDefault (line 742) | public function getLongEnumNonEnumDefault() method getLongEnumNormalDefault (line 751) | public function getLongEnumNormalDefault() method getNanDefault (line 760) | public function getNanDefault() method getInfDefault (line 769) | public function getInfDefault() method getPositiveInfDefault (line 778) | public function getPositiveInfDefault() method getInfinityDefault (line 787) | public function getInfinityDefault() method getPositiveInfinityDefault (line 796) | public function getPositiveInfinityDefault() method getNegativeInfDefault (line 805) | public function getNegativeInfDefault() method getNegativeInfinityDefault (line 814) | public function getNegativeInfinityDefault() method getDoubleInfDefault (line 823) | public function getDoubleInfDefault() method startMonster (line 833) | public static function startMonster(FlatBufferBuilder $builder) method createMonster (line 842) | public static function createMonster(FlatBufferBuilder $builder, $pos,... method addPos (line 916) | public static function addPos(FlatBufferBuilder $builder, $pos) method addMana (line 926) | public static function addMana(FlatBufferBuilder $builder, $mana) method addHp (line 936) | public static function addHp(FlatBufferBuilder $builder, $hp) method addName (line 946) | public static function addName(FlatBufferBuilder $builder, $name) method addInventory (line 956) | public static function addInventory(FlatBufferBuilder $builder, $inven... method createInventoryVector (line 966) | public static function createInventoryVector(FlatBufferBuilder $builde... method startInventoryVector (line 980) | public static function startInventoryVector(FlatBufferBuilder $builder... method addColor (line 990) | public static function addColor(FlatBufferBuilder $builder, $color) method addTestType (line 1000) | public static function addTestType(FlatBufferBuilder $builder, $testType) method addTest (line 1005) | public static function addTest(FlatBufferBuilder $builder, $offset) method addTest4 (line 1015) | public static function addTest4(FlatBufferBuilder $builder, $test4) method createTest4Vector (line 1025) | public static function createTest4Vector(FlatBufferBuilder $builder, a... method startTest4Vector (line 1039) | public static function startTest4Vector(FlatBufferBuilder $builder, $n... method addTestarrayofstring (line 1049) | public static function addTestarrayofstring(FlatBufferBuilder $builder... method createTestarrayofstringVector (line 1059) | public static function createTestarrayofstringVector(FlatBufferBuilder... method startTestarrayofstringVector (line 1073) | public static function startTestarrayofstringVector(FlatBufferBuilder ... method addTestarrayoftables (line 1083) | public static function addTestarrayoftables(FlatBufferBuilder $builder... method createTestarrayoftablesVector (line 1093) | public static function createTestarrayoftablesVector(FlatBufferBuilder... method startTestarrayoftablesVector (line 1107) | public static function startTestarrayoftablesVector(FlatBufferBuilder ... method addEnemy (line 1117) | public static function addEnemy(FlatBufferBuilder $builder, $enemy) method addTestnestedflatbuffer (line 1127) | public static function addTestnestedflatbuffer(FlatBufferBuilder $buil... method createTestnestedflatbufferVector (line 1137) | public static function createTestnestedflatbufferVector(FlatBufferBuil... method startTestnestedflatbufferVector (line 1151) | public static function startTestnestedflatbufferVector(FlatBufferBuild... method addTestempty (line 1161) | public static function addTestempty(FlatBufferBuilder $builder, $teste... method addTestbool (line 1171) | public static function addTestbool(FlatBufferBuilder $builder, $testbool) method addTesthashs32Fnv1 (line 1181) | public static function addTesthashs32Fnv1(FlatBufferBuilder $builder, ... method addTesthashu32Fnv1 (line 1191) | public static function addTesthashu32Fnv1(FlatBufferBuilder $builder, ... method addTesthashs64Fnv1 (line 1201) | public static function addTesthashs64Fnv1(FlatBufferBuilder $builder, ... method addTesthashu64Fnv1 (line 1211) | public static function addTesthashu64Fnv1(FlatBufferBuilder $builder, ... method addTesthashs32Fnv1a (line 1221) | public static function addTesthashs32Fnv1a(FlatBufferBuilder $builder,... method addTesthashu32Fnv1a (line 1231) | public static function addTesthashu32Fnv1a(FlatBufferBuilder $builder,... method addTesthashs64Fnv1a (line 1241) | public static function addTesthashs64Fnv1a(FlatBufferBuilder $builder,... method addTesthashu64Fnv1a (line 1251) | public static function addTesthashu64Fnv1a(FlatBufferBuilder $builder,... method addTestarrayofbools (line 1261) | public static function addTestarrayofbools(FlatBufferBuilder $builder,... method createTestarrayofboolsVector (line 1271) | public static function createTestarrayofboolsVector(FlatBufferBuilder ... method startTestarrayofboolsVector (line 1285) | public static function startTestarrayofboolsVector(FlatBufferBuilder $... method addTestf (line 1295) | public static function addTestf(FlatBufferBuilder $builder, $testf) method addTestf2 (line 1305) | public static function addTestf2(FlatBufferBuilder $builder, $testf2) method addTestf3 (line 1315) | public static function addTestf3(FlatBufferBuilder $builder, $testf3) method addTestarrayofstring2 (line 1325) | public static function addTestarrayofstring2(FlatBufferBuilder $builde... method createTestarrayofstring2Vector (line 1335) | public static function createTestarrayofstring2Vector(FlatBufferBuilde... method startTestarrayofstring2Vector (line 1349) | public static function startTestarrayofstring2Vector(FlatBufferBuilder... method addTestarrayofsortedstruct (line 1359) | public static function addTestarrayofsortedstruct(FlatBufferBuilder $b... method createTestarrayofsortedstructVector (line 1369) | public static function createTestarrayofsortedstructVector(FlatBufferB... method startTestarrayofsortedstructVector (line 1383) | public static function startTestarrayofsortedstructVector(FlatBufferBu... method addFlex (line 1393) | public static function addFlex(FlatBufferBuilder $builder, $flex) method createFlexVector (line 1403) | public static function createFlexVector(FlatBufferBuilder $builder, ar... method startFlexVector (line 1417) | public static function startFlexVector(FlatBufferBuilder $builder, $nu... method addTest5 (line 1427) | public static function addTest5(FlatBufferBuilder $builder, $test5) method createTest5Vector (line 1437) | public static function createTest5Vector(FlatBufferBuilder $builder, a... method startTest5Vector (line 1451) | public static function startTest5Vector(FlatBufferBuilder $builder, $n... method addVectorOfLongs (line 1461) | public static function addVectorOfLongs(FlatBufferBuilder $builder, $v... method createVectorOfLongsVector (line 1471) | public static function createVectorOfLongsVector(FlatBufferBuilder $bu... method startVectorOfLongsVector (line 1485) | public static function startVectorOfLongsVector(FlatBufferBuilder $bui... method addVectorOfDoubles (line 1495) | public static function addVectorOfDoubles(FlatBufferBuilder $builder, ... method createVectorOfDoublesVector (line 1505) | public static function createVectorOfDoublesVector(FlatBufferBuilder $... method startVectorOfDoublesVector (line 1519) | public static function startVectorOfDoublesVector(FlatBufferBuilder $b... method addParentNamespaceTest (line 1529) | public static function addParentNamespaceTest(FlatBufferBuilder $build... method addVectorOfReferrables (line 1539) | public static function addVectorOfReferrables(FlatBufferBuilder $build... method createVectorOfReferrablesVector (line 1549) | public static function createVectorOfReferrablesVector(FlatBufferBuild... method startVectorOfReferrablesVector (line 1563) | public static function startVectorOfReferrablesVector(FlatBufferBuilde... method addSingleWeakReference (line 1573) | public static function addSingleWeakReference(FlatBufferBuilder $build... method addVectorOfWeakReferences (line 1583) | public static function addVectorOfWeakReferences(FlatBufferBuilder $bu... method createVectorOfWeakReferencesVector (line 1593) | public static function createVectorOfWeakReferencesVector(FlatBufferBu... method startVectorOfWeakReferencesVector (line 1607) | public static function startVectorOfWeakReferencesVector(FlatBufferBui... method addVectorOfStrongReferrables (line 1617) | public static function addVectorOfStrongReferrables(FlatBufferBuilder ... method createVectorOfStrongReferrablesVector (line 1627) | public static function createVectorOfStrongReferrablesVector(FlatBuffe... method startVectorOfStrongReferrablesVector (line 1641) | public static function startVectorOfStrongReferrablesVector(FlatBuffer... method addCoOwningReference (line 1651) | public static function addCoOwningReference(FlatBufferBuilder $builder... method addVectorOfCoOwningReferences (line 1661) | public static function addVectorOfCoOwningReferences(FlatBufferBuilder... method createVectorOfCoOwningReferencesVector (line 1671) | public static function createVectorOfCoOwningReferencesVector(FlatBuff... method startVectorOfCoOwningReferencesVector (line 1685) | public static function startVectorOfCoOwningReferencesVector(FlatBuffe... method addNonOwningReference (line 1695) | public static function addNonOwningReference(FlatBufferBuilder $builde... method addVectorOfNonOwningReferences (line 1705) | public static function addVectorOfNonOwningReferences(FlatBufferBuilde... method createVectorOfNonOwningReferencesVector (line 1715) | public static function createVectorOfNonOwningReferencesVector(FlatBuf... method startVectorOfNonOwningReferencesVector (line 1729) | public static function startVectorOfNonOwningReferencesVector(FlatBuff... method addAnyUniqueType (line 1739) | public static function addAnyUniqueType(FlatBufferBuilder $builder, $a... method addAnyUnique (line 1744) | public static function addAnyUnique(FlatBufferBuilder $builder, $offset) method addAnyAmbiguousType (line 1754) | public static function addAnyAmbiguousType(FlatBufferBuilder $builder,... method addAnyAmbiguous (line 1759) | public static function addAnyAmbiguous(FlatBufferBuilder $builder, $of... method addVectorOfEnums (line 1769) | public static function addVectorOfEnums(FlatBufferBuilder $builder, $v... method createVectorOfEnumsVector (line 1779) | public static function createVectorOfEnumsVector(FlatBufferBuilder $bu... method startVectorOfEnumsVector (line 1793) | public static function startVectorOfEnumsVector(FlatBufferBuilder $bui... method addSignedEnum (line 1803) | public static function addSignedEnum(FlatBufferBuilder $builder, $sign... method addTestrequirednestedflatbuffer (line 1813) | public static function addTestrequirednestedflatbuffer(FlatBufferBuild... method createTestrequirednestedflatbufferVector (line 1823) | public static function createTestrequirednestedflatbufferVector(FlatBu... method startTestrequirednestedflatbufferVector (line 1837) | public static function startTestrequirednestedflatbufferVector(FlatBuf... method addScalarKeySortedTables (line 1847) | public static function addScalarKeySortedTables(FlatBufferBuilder $bui... method createScalarKeySortedTablesVector (line 1857) | public static function createScalarKeySortedTablesVector(FlatBufferBui... method startScalarKeySortedTablesVector (line 1871) | public static function startScalarKeySortedTablesVector(FlatBufferBuil... method addNativeInline (line 1881) | public static function addNativeInline(FlatBufferBuilder $builder, $na... method addLongEnumNonEnumDefault (line 1891) | public static function addLongEnumNonEnumDefault(FlatBufferBuilder $bu... method addLongEnumNormalDefault (line 1901) | public static function addLongEnumNormalDefault(FlatBufferBuilder $bui... method addNanDefault (line 1911) | public static function addNanDefault(FlatBufferBuilder $builder, $nanD... method addInfDefault (line 1921) | public static function addInfDefault(FlatBufferBuilder $builder, $infD... method addPositiveInfDefault (line 1931) | public static function addPositiveInfDefault(FlatBufferBuilder $builde... method addInfinityDefault (line 1941) | public static function addInfinityDefault(FlatBufferBuilder $builder, ... method addPositiveInfinityDefault (line 1951) | public static function addPositiveInfinityDefault(FlatBufferBuilder $b... method addNegativeInfDefault (line 1961) | public static function addNegativeInfDefault(FlatBufferBuilder $builde... method addNegativeInfinityDefault (line 1971) | public static function addNegativeInfinityDefault(FlatBufferBuilder $b... method addDoubleInfDefault (line 1981) | public static function addDoubleInfDefault(FlatBufferBuilder $builder,... method endMonster (line 1990) | public static function endMonster(FlatBufferBuilder $builder) method finishMonsterBuffer (line 1997) | public static function finishMonsterBuffer(FlatBufferBuilder $builder,... FILE: tests/MyGame/Example/Monster.py class Monster (line 10) | class Monster(object): method GetRootAs (line 14) | def GetRootAs(cls, buf, offset=0): method GetRootAsMonster (line 21) | def GetRootAsMonster(cls, buf, offset=0): method MonsterBufferHasIdentifier (line 25) | def MonsterBufferHasIdentifier(cls, buf, offset, size_prefixed=False): method Init (line 29) | def Init(self, buf, pos): method Pos (line 33) | def Pos(self): method Mana (line 44) | def Mana(self): method Hp (line 51) | def Hp(self): method Name (line 58) | def Name(self): method Inventory (line 65) | def Inventory(self, j): method InventoryAsNumpy (line 73) | def InventoryAsNumpy(self): method InventoryLength (line 80) | def InventoryLength(self): method InventoryIsNone (line 87) | def InventoryIsNone(self): method Color (line 92) | def Color(self): method TestType (line 99) | def TestType(self): method Test (line 106) | def Test(self): method Test4 (line 116) | def Test4(self, j): method Test4Length (line 128) | def Test4Length(self): method Test4IsNone (line 135) | def Test4IsNone(self): method Testarrayofstring (line 140) | def Testarrayofstring(self, j): method TestarrayofstringLength (line 148) | def TestarrayofstringLength(self): method TestarrayofstringIsNone (line 155) | def TestarrayofstringIsNone(self): method Testarrayoftables (line 162) | def Testarrayoftables(self, j): method TestarrayoftablesLength (line 175) | def TestarrayoftablesLength(self): method TestarrayoftablesIsNone (line 182) | def TestarrayoftablesIsNone(self): method Enemy (line 187) | def Enemy(self): method Testnestedflatbuffer (line 198) | def Testnestedflatbuffer(self, j): method TestnestedflatbufferAsNumpy (line 206) | def TestnestedflatbufferAsNumpy(self): method TestnestedflatbufferNestedRoot (line 213) | def TestnestedflatbufferNestedRoot(self): method TestnestedflatbufferLength (line 221) | def TestnestedflatbufferLength(self): method TestnestedflatbufferIsNone (line 228) | def TestnestedflatbufferIsNone(self): method Testempty (line 233) | def Testempty(self): method Testbool (line 244) | def Testbool(self): method Testhashs32Fnv1 (line 251) | def Testhashs32Fnv1(self): method Testhashu32Fnv1 (line 258) | def Testhashu32Fnv1(self): method Testhashs64Fnv1 (line 265) | def Testhashs64Fnv1(self): method Testhashu64Fnv1 (line 272) | def Testhashu64Fnv1(self): method Testhashs32Fnv1a (line 279) | def Testhashs32Fnv1a(self): method Testhashu32Fnv1a (line 286) | def Testhashu32Fnv1a(self): method Testhashs64Fnv1a (line 293) | def Testhashs64Fnv1a(self): method Testhashu64Fnv1a (line 300) | def Testhashu64Fnv1a(self): method Testarrayofbools (line 307) | def Testarrayofbools(self, j): method TestarrayofboolsAsNumpy (line 315) | def TestarrayofboolsAsNumpy(self): method TestarrayofboolsLength (line 322) | def TestarrayofboolsLength(self): method TestarrayofboolsIsNone (line 329) | def TestarrayofboolsIsNone(self): method Testf (line 334) | def Testf(self): method Testf2 (line 341) | def Testf2(self): method Testf3 (line 348) | def Testf3(self): method Testarrayofstring2 (line 355) | def Testarrayofstring2(self, j): method Testarrayofstring2Length (line 363) | def Testarrayofstring2Length(self): method Testarrayofstring2IsNone (line 370) | def Testarrayofstring2IsNone(self): method Testarrayofsortedstruct (line 375) | def Testarrayofsortedstruct(self, j): method TestarrayofsortedstructLength (line 387) | def TestarrayofsortedstructLength(self): method TestarrayofsortedstructIsNone (line 394) | def TestarrayofsortedstructIsNone(self): method Flex (line 399) | def Flex(self, j): method FlexAsNumpy (line 407) | def FlexAsNumpy(self): method FlexLength (line 414) | def FlexLength(self): method FlexIsNone (line 421) | def FlexIsNone(self): method Test5 (line 426) | def Test5(self, j): method Test5Length (line 438) | def Test5Length(self): method Test5IsNone (line 445) | def Test5IsNone(self): method VectorOfLongs (line 450) | def VectorOfLongs(self, j): method VectorOfLongsAsNumpy (line 458) | def VectorOfLongsAsNumpy(self): method VectorOfLongsLength (line 465) | def VectorOfLongsLength(self): method VectorOfLongsIsNone (line 472) | def VectorOfLongsIsNone(self): method VectorOfDoubles (line 477) | def VectorOfDoubles(self, j): method VectorOfDoublesAsNumpy (line 485) | def VectorOfDoublesAsNumpy(self): method VectorOfDoublesLength (line 492) | def VectorOfDoublesLength(self): method VectorOfDoublesIsNone (line 499) | def VectorOfDoublesIsNone(self): method ParentNamespaceTest (line 504) | def ParentNamespaceTest(self): method VectorOfReferrables (line 515) | def VectorOfReferrables(self, j): method VectorOfReferrablesLength (line 528) | def VectorOfReferrablesLength(self): method VectorOfReferrablesIsNone (line 535) | def VectorOfReferrablesIsNone(self): method SingleWeakReference (line 540) | def SingleWeakReference(self): method VectorOfWeakReferences (line 547) | def VectorOfWeakReferences(self, j): method VectorOfWeakReferencesAsNumpy (line 555) | def VectorOfWeakReferencesAsNumpy(self): method VectorOfWeakReferencesLength (line 562) | def VectorOfWeakReferencesLength(self): method VectorOfWeakReferencesIsNone (line 569) | def VectorOfWeakReferencesIsNone(self): method VectorOfStrongReferrables (line 574) | def VectorOfStrongReferrables(self, j): method VectorOfStrongReferrablesLength (line 587) | def VectorOfStrongReferrablesLength(self): method VectorOfStrongReferrablesIsNone (line 594) | def VectorOfStrongReferrablesIsNone(self): method CoOwningReference (line 599) | def CoOwningReference(self): method VectorOfCoOwningReferences (line 606) | def VectorOfCoOwningReferences(self, j): method VectorOfCoOwningReferencesAsNumpy (line 614) | def VectorOfCoOwningReferencesAsNumpy(self): method VectorOfCoOwningReferencesLength (line 621) | def VectorOfCoOwningReferencesLength(self): method VectorOfCoOwningReferencesIsNone (line 628) | def VectorOfCoOwningReferencesIsNone(self): method NonOwningReference (line 633) | def NonOwningReference(self): method VectorOfNonOwningReferences (line 640) | def VectorOfNonOwningReferences(self, j): method VectorOfNonOwningReferencesAsNumpy (line 648) | def VectorOfNonOwningReferencesAsNumpy(self): method VectorOfNonOwningReferencesLength (line 655) | def VectorOfNonOwningReferencesLength(self): method VectorOfNonOwningReferencesIsNone (line 662) | def VectorOfNonOwningReferencesIsNone(self): method AnyUniqueType (line 667) | def AnyUniqueType(self): method AnyUnique (line 674) | def AnyUnique(self): method AnyAmbiguousType (line 684) | def AnyAmbiguousType(self): method AnyAmbiguous (line 691) | def AnyAmbiguous(self): method VectorOfEnums (line 701) | def VectorOfEnums(self, j): method VectorOfEnumsAsNumpy (line 709) | def VectorOfEnumsAsNumpy(self): method VectorOfEnumsLength (line 716) | def VectorOfEnumsLength(self): method VectorOfEnumsIsNone (line 723) | def VectorOfEnumsIsNone(self): method SignedEnum (line 728) | def SignedEnum(self): method Testrequirednestedflatbuffer (line 735) | def Testrequirednestedflatbuffer(self, j): method TestrequirednestedflatbufferAsNumpy (line 743) | def TestrequirednestedflatbufferAsNumpy(self): method TestrequirednestedflatbufferNestedRoot (line 750) | def TestrequirednestedflatbufferNestedRoot(self): method TestrequirednestedflatbufferLength (line 758) | def TestrequirednestedflatbufferLength(self): method TestrequirednestedflatbufferIsNone (line 765) | def TestrequirednestedflatbufferIsNone(self): method ScalarKeySortedTables (line 770) | def ScalarKeySortedTables(self, j): method ScalarKeySortedTablesLength (line 783) | def ScalarKeySortedTablesLength(self): method ScalarKeySortedTablesIsNone (line 790) | def ScalarKeySortedTablesIsNone(self): method NativeInline (line 795) | def NativeInline(self): method LongEnumNonEnumDefault (line 806) | def LongEnumNonEnumDefault(self): method LongEnumNormalDefault (line 813) | def LongEnumNormalDefault(self): method NanDefault (line 820) | def NanDefault(self): method InfDefault (line 827) | def InfDefault(self): method PositiveInfDefault (line 834) | def PositiveInfDefault(self): method InfinityDefault (line 841) | def InfinityDefault(self): method PositiveInfinityDefault (line 848) | def PositiveInfinityDefault(self): method NegativeInfDefault (line 855) | def NegativeInfDefault(self): method NegativeInfinityDefault (line 862) | def NegativeInfinityDefault(self): method DoubleInfDefault (line 869) | def DoubleInfDefault(self): function MonsterStart (line 875) | def MonsterStart(builder): function Start (line 878) | def Start(builder): function MonsterAddPos (line 881) | def MonsterAddPos(builder, pos): function AddPos (line 884) | def AddPos(builder, pos): function MonsterAddMana (line 887) | def MonsterAddMana(builder, mana): function AddMana (line 890) | def AddMana(builder, mana): function MonsterAddHp (line 893) | def MonsterAddHp(builder, hp): function AddHp (line 896) | def AddHp(builder, hp): function MonsterAddName (line 899) | def MonsterAddName(builder, name): function AddName (line 902) | def AddName(builder, name): function MonsterAddInventory (line 905) | def MonsterAddInventory(builder, inventory): function AddInventory (line 908) | def AddInventory(builder, inventory): function MonsterStartInventoryVector (line 911) | def MonsterStartInventoryVector(builder, numElems): function StartInventoryVector (line 914) | def StartInventoryVector(builder, numElems): function MonsterCreateInventoryVector (line 917) | def MonsterCreateInventoryVector(builder, data): function CreateInventoryVector (line 924) | def CreateInventoryVector(builder, data): function MonsterAddColor (line 927) | def MonsterAddColor(builder, color): function AddColor (line 930) | def AddColor(builder, color): function MonsterAddTestType (line 933) | def MonsterAddTestType(builder, testType): function AddTestType (line 936) | def AddTestType(builder, testType): function MonsterAddTest (line 939) | def MonsterAddTest(builder, test): function AddTest (line 942) | def AddTest(builder, test): function MonsterAddTest4 (line 945) | def MonsterAddTest4(builder, test4): function AddTest4 (line 948) | def AddTest4(builder, test4): function MonsterStartTest4Vector (line 951) | def MonsterStartTest4Vector(builder, numElems): function StartTest4Vector (line 954) | def StartTest4Vector(builder, numElems): function MonsterCreateTest4Vector (line 957) | def MonsterCreateTest4Vector(builder, data): function CreateTest4Vector (line 964) | def CreateTest4Vector(builder, data): function MonsterAddTestarrayofstring (line 967) | def MonsterAddTestarrayofstring(builder, testarrayofstring): function AddTestarrayofstring (line 970) | def AddTestarrayofstring(builder, testarrayofstring): function MonsterStartTestarrayofstringVector (line 973) | def MonsterStartTestarrayofstringVector(builder, numElems): function StartTestarrayofstringVector (line 976) | def StartTestarrayofstringVector(builder, numElems): function MonsterCreateTestarrayofstringVector (line 979) | def MonsterCreateTestarrayofstringVector(builder, data): function CreateTestarrayofstringVector (line 982) | def CreateTestarrayofstringVector(builder, data): function MonsterAddTestarrayoftables (line 985) | def MonsterAddTestarrayoftables(builder, testarrayoftables): function AddTestarrayoftables (line 988) | def AddTestarrayoftables(builder, testarrayoftables): function MonsterStartTestarrayoftablesVector (line 991) | def MonsterStartTestarrayoftablesVector(builder, numElems): function StartTestarrayoftablesVector (line 994) | def StartTestarrayoftablesVector(builder, numElems): function MonsterCreateTestarrayoftablesVector (line 997) | def MonsterCreateTestarrayoftablesVector(builder, data): function CreateTestarrayoftablesVector (line 1000) | def CreateTestarrayoftablesVector(builder, data): function MonsterAddEnemy (line 1003) | def MonsterAddEnemy(builder, enemy): function AddEnemy (line 1006) | def AddEnemy(builder, enemy): function MonsterAddTestnestedflatbuffer (line 1009) | def MonsterAddTestnestedflatbuffer(builder, testnestedflatbuffer): function AddTestnestedflatbuffer (line 1012) | def AddTestnestedflatbuffer(builder, testnestedflatbuffer): function MonsterStartTestnestedflatbufferVector (line 1015) | def MonsterStartTestnestedflatbufferVector(builder, numElems): function StartTestnestedflatbufferVector (line 1018) | def StartTestnestedflatbufferVector(builder, numElems): function MonsterCreateTestnestedflatbufferVector (line 1021) | def MonsterCreateTestnestedflatbufferVector(builder, data): function CreateTestnestedflatbufferVector (line 1028) | def CreateTestnestedflatbufferVector(builder, data): function MonsterMakeTestnestedflatbufferVectorFromBytes (line 1031) | def MonsterMakeTestnestedflatbufferVectorFromBytes(builder, bytes): function MakeTestnestedflatbufferVectorFromBytes (line 1036) | def MakeTestnestedflatbufferVectorFromBytes(builder, bytes): function MonsterAddTestempty (line 1038) | def MonsterAddTestempty(builder, testempty): function AddTestempty (line 1041) | def AddTestempty(builder, testempty): function MonsterAddTestbool (line 1044) | def MonsterAddTestbool(builder, testbool): function AddTestbool (line 1047) | def AddTestbool(builder, testbool): function MonsterAddTesthashs32Fnv1 (line 1050) | def MonsterAddTesthashs32Fnv1(builder, testhashs32Fnv1): function AddTesthashs32Fnv1 (line 1053) | def AddTesthashs32Fnv1(builder, testhashs32Fnv1): function MonsterAddTesthashu32Fnv1 (line 1056) | def MonsterAddTesthashu32Fnv1(builder, testhashu32Fnv1): function AddTesthashu32Fnv1 (line 1059) | def AddTesthashu32Fnv1(builder, testhashu32Fnv1): function MonsterAddTesthashs64Fnv1 (line 1062) | def MonsterAddTesthashs64Fnv1(builder, testhashs64Fnv1): function AddTesthashs64Fnv1 (line 1065) | def AddTesthashs64Fnv1(builder, testhashs64Fnv1): function MonsterAddTesthashu64Fnv1 (line 1068) | def MonsterAddTesthashu64Fnv1(builder, testhashu64Fnv1): function AddTesthashu64Fnv1 (line 1071) | def AddTesthashu64Fnv1(builder, testhashu64Fnv1): function MonsterAddTesthashs32Fnv1a (line 1074) | def MonsterAddTesthashs32Fnv1a(builder, testhashs32Fnv1a): function AddTesthashs32Fnv1a (line 1077) | def AddTesthashs32Fnv1a(builder, testhashs32Fnv1a): function MonsterAddTesthashu32Fnv1a (line 1080) | def MonsterAddTesthashu32Fnv1a(builder, testhashu32Fnv1a): function AddTesthashu32Fnv1a (line 1083) | def AddTesthashu32Fnv1a(builder, testhashu32Fnv1a): function MonsterAddTesthashs64Fnv1a (line 1086) | def MonsterAddTesthashs64Fnv1a(builder, testhashs64Fnv1a): function AddTesthashs64Fnv1a (line 1089) | def AddTesthashs64Fnv1a(builder, testhashs64Fnv1a): function MonsterAddTesthashu64Fnv1a (line 1092) | def MonsterAddTesthashu64Fnv1a(builder, testhashu64Fnv1a): function AddTesthashu64Fnv1a (line 1095) | def AddTesthashu64Fnv1a(builder, testhashu64Fnv1a): function MonsterAddTestarrayofbools (line 1098) | def MonsterAddTestarrayofbools(builder, testarrayofbools): function AddTestarrayofbools (line 1101) | def AddTestarrayofbools(builder, testarrayofbools): function MonsterStartTestarrayofboolsVector (line 1104) | def MonsterStartTestarrayofboolsVector(builder, numElems): function StartTestarrayofboolsVector (line 1107) | def StartTestarrayofboolsVector(builder, numElems): function MonsterCreateTestarrayofboolsVector (line 1110) | def MonsterCreateTestarrayofboolsVector(builder, data): function CreateTestarrayofboolsVector (line 1117) | def CreateTestarrayofboolsVector(builder, data): function MonsterAddTestf (line 1120) | def MonsterAddTestf(builder, testf): function AddTestf (line 1123) | def AddTestf(builder, testf): function MonsterAddTestf2 (line 1126) | def MonsterAddTestf2(builder, testf2): function AddTestf2 (line 1129) | def AddTestf2(builder, testf2): function MonsterAddTestf3 (line 1132) | def MonsterAddTestf3(builder, testf3): function AddTestf3 (line 1135) | def AddTestf3(builder, testf3): function MonsterAddTestarrayofstring2 (line 1138) | def MonsterAddTestarrayofstring2(builder, testarrayofstring2): function AddTestarrayofstring2 (line 1141) | def AddTestarrayofstring2(builder, testarrayofstring2): function MonsterStartTestarrayofstring2Vector (line 1144) | def MonsterStartTestarrayofstring2Vector(builder, numElems): function StartTestarrayofstring2Vector (line 1147) | def StartTestarrayofstring2Vector(builder, numElems): function MonsterCreateTestarrayofstring2Vector (line 1150) | def MonsterCreateTestarrayofstring2Vector(builder, data): function CreateTestarrayofstring2Vector (line 1153) | def CreateTestarrayofstring2Vector(builder, data): function MonsterAddTestarrayofsortedstruct (line 1156) | def MonsterAddTestarrayofsortedstruct(builder, testarrayofsortedstruct): function AddTestarrayofsortedstruct (line 1159) | def AddTestarrayofsortedstruct(builder, testarrayofsortedstruct): function MonsterStartTestarrayofsortedstructVector (line 1162) | def MonsterStartTestarrayofsortedstructVector(builder, numElems): function StartTestarrayofsortedstructVector (line 1165) | def StartTestarrayofsortedstructVector(builder, numElems): function MonsterCreateTestarrayofsortedstructVector (line 1168) | def MonsterCreateTestarrayofsortedstructVector(builder, data): function CreateTestarrayofsortedstructVector (line 1175) | def CreateTestarrayofsortedstructVector(builder, data): function MonsterAddFlex (line 1178) | def MonsterAddFlex(builder, flex): function AddFlex (line 1181) | def AddFlex(builder, flex): function MonsterStartFlexVector (line 1184) | def MonsterStartFlexVector(builder, numElems): function StartFlexVector (line 1187) | def StartFlexVector(builder, numElems): function MonsterCreateFlexVector (line 1190) | def MonsterCreateFlexVector(builder, data): function CreateFlexVector (line 1197) | def CreateFlexVector(builder, data): function MonsterAddTest5 (line 1200) | def MonsterAddTest5(builder, test5): function AddTest5 (line 1203) | def AddTest5(builder, test5): function MonsterStartTest5Vector (line 1206) | def MonsterStartTest5Vector(builder, numElems): function StartTest5Vector (line 1209) | def StartTest5Vector(builder, numElems): function MonsterCreateTest5Vector (line 1212) | def MonsterCreateTest5Vector(builder, data): function CreateTest5Vector (line 1219) | def CreateTest5Vector(builder, data): function MonsterAddVectorOfLongs (line 1222) | def MonsterAddVectorOfLongs(builder, vectorOfLongs): function AddVectorOfLongs (line 1225) | def AddVectorOfLongs(builder, vectorOfLongs): function MonsterStartVectorOfLongsVector (line 1228) | def MonsterStartVectorOfLongsVector(builder, numElems): function StartVectorOfLongsVector (line 1231) | def StartVectorOfLongsVector(builder, numElems): function MonsterCreateVectorOfLongsVector (line 1234) | def MonsterCreateVectorOfLongsVector(builder, data): function CreateVectorOfLongsVector (line 1241) | def CreateVectorOfLongsVector(builder, data): function MonsterAddVectorOfDoubles (line 1244) | def MonsterAddVectorOfDoubles(builder, vectorOfDoubles): function AddVectorOfDoubles (line 1247) | def AddVectorOfDoubles(builder, vectorOfDoubles): function MonsterStartVectorOfDoublesVector (line 1250) | def MonsterStartVectorOfDoublesVector(builder, numElems): function StartVectorOfDoublesVector (line 1253) | def StartVectorOfDoublesVector(builder, numElems): function MonsterCreateVectorOfDoublesVector (line 1256) | def MonsterCreateVectorOfDoublesVector(builder, data): function CreateVectorOfDoublesVector (line 1263) | def CreateVectorOfDoublesVector(builder, data): function MonsterAddParentNamespaceTest (line 1266) | def MonsterAddParentNamespaceTest(builder, parentNamespaceTest): function AddParentNamespaceTest (line 1269) | def AddParentNamespaceTest(builder, parentNamespaceTest): function MonsterAddVectorOfReferrables (line 1272) | def MonsterAddVectorOfReferrables(builder, vectorOfReferrables): function AddVectorOfReferrables (line 1275) | def AddVectorOfReferrables(builder, vectorOfReferrables): function MonsterStartVectorOfReferrablesVector (line 1278) | def MonsterStartVectorOfReferrablesVector(builder, numElems): function StartVectorOfReferrablesVector (line 1281) | def StartVectorOfReferrablesVector(builder, numElems): function MonsterCreateVectorOfReferrablesVector (line 1284) | def MonsterCreateVectorOfReferrablesVector(builder, data): function CreateVectorOfReferrablesVector (line 1287) | def CreateVectorOfReferrablesVector(builder, data): function MonsterAddSingleWeakReference (line 1290) | def MonsterAddSingleWeakReference(builder, singleWeakReference): function AddSingleWeakReference (line 1293) | def AddSingleWeakReference(builder, singleWeakReference): function MonsterAddVectorOfWeakReferences (line 1296) | def MonsterAddVectorOfWeakReferences(builder, vectorOfWeakReferences): function AddVectorOfWeakReferences (line 1299) | def AddVectorOfWeakReferences(builder, vectorOfWeakReferences): function MonsterStartVectorOfWeakReferencesVector (line 1302) | def MonsterStartVectorOfWeakReferencesVector(builder, numElems): function StartVectorOfWeakReferencesVector (line 1305) | def StartVectorOfWeakReferencesVector(builder, numElems): function MonsterCreateVectorOfWeakReferencesVector (line 1308) | def MonsterCreateVectorOfWeakReferencesVector(builder, data): function CreateVectorOfWeakReferencesVector (line 1315) | def CreateVectorOfWeakReferencesVector(builder, data): function MonsterAddVectorOfStrongReferrables (line 1318) | def MonsterAddVectorOfStrongReferrables(builder, vectorOfStrongReferrabl... function AddVectorOfStrongReferrables (line 1321) | def AddVectorOfStrongReferrables(builder, vectorOfStrongReferrables): function MonsterStartVectorOfStrongReferrablesVector (line 1324) | def MonsterStartVectorOfStrongReferrablesVector(builder, numElems): function StartVectorOfStrongReferrablesVector (line 1327) | def StartVectorOfStrongReferrablesVector(builder, numElems): function MonsterCreateVectorOfStrongReferrablesVector (line 1330) | def MonsterCreateVectorOfStrongReferrablesVector(builder, data): function CreateVectorOfStrongReferrablesVector (line 1333) | def CreateVectorOfStrongReferrablesVector(builder, data): function MonsterAddCoOwningReference (line 1336) | def MonsterAddCoOwningReference(builder, coOwningReference): function AddCoOwningReference (line 1339) | def AddCoOwningReference(builder, coOwningReference): function MonsterAddVectorOfCoOwningReferences (line 1342) | def MonsterAddVectorOfCoOwningReferences(builder, vectorOfCoOwningRefere... function AddVectorOfCoOwningReferences (line 1345) | def AddVectorOfCoOwningReferences(builder, vectorOfCoOwningReferences): function MonsterStartVectorOfCoOwningReferencesVector (line 1348) | def MonsterStartVectorOfCoOwningReferencesVector(builder, numElems): function StartVectorOfCoOwningReferencesVector (line 1351) | def StartVectorOfCoOwningReferencesVector(builder, numElems): function MonsterCreateVectorOfCoOwningReferencesVector (line 1354) | def MonsterCreateVectorOfCoOwningReferencesVector(builder, data): function CreateVectorOfCoOwningReferencesVector (line 1361) | def CreateVectorOfCoOwningReferencesVector(builder, data): function MonsterAddNonOwningReference (line 1364) | def MonsterAddNonOwningReference(builder, nonOwningReference): function AddNonOwningReference (line 1367) | def AddNonOwningReference(builder, nonOwningReference): function MonsterAddVectorOfNonOwningReferences (line 1370) | def MonsterAddVectorOfNonOwningReferences(builder, vectorOfNonOwningRefe... function AddVectorOfNonOwningReferences (line 1373) | def AddVectorOfNonOwningReferences(builder, vectorOfNonOwningReferences): function MonsterStartVectorOfNonOwningReferencesVector (line 1376) | def MonsterStartVectorOfNonOwningReferencesVector(builder, numElems): function StartVectorOfNonOwningReferencesVector (line 1379) | def StartVectorOfNonOwningReferencesVector(builder, numElems): function MonsterCreateVectorOfNonOwningReferencesVector (line 1382) | def MonsterCreateVectorOfNonOwningReferencesVector(builder, data): function CreateVectorOfNonOwningReferencesVector (line 1389) | def CreateVectorOfNonOwningReferencesVector(builder, data): function MonsterAddAnyUniqueType (line 1392) | def MonsterAddAnyUniqueType(builder, anyUniqueType): function AddAnyUniqueType (line 1395) | def AddAnyUniqueType(builder, anyUniqueType): function MonsterAddAnyUnique (line 1398) | def MonsterAddAnyUnique(builder, anyUnique): function AddAnyUnique (line 1401) | def AddAnyUnique(builder, anyUnique): function MonsterAddAnyAmbiguousType (line 1404) | def MonsterAddAnyAmbiguousType(builder, anyAmbiguousType): function AddAnyAmbiguousType (line 1407) | def AddAnyAmbiguousType(builder, anyAmbiguousType): function MonsterAddAnyAmbiguous (line 1410) | def MonsterAddAnyAmbiguous(builder, anyAmbiguous): function AddAnyAmbiguous (line 1413) | def AddAnyAmbiguous(builder, anyAmbiguous): function MonsterAddVectorOfEnums (line 1416) | def MonsterAddVectorOfEnums(builder, vectorOfEnums): function AddVectorOfEnums (line 1419) | def AddVectorOfEnums(builder, vectorOfEnums): function MonsterStartVectorOfEnumsVector (line 1422) | def MonsterStartVectorOfEnumsVector(builder, numElems): function StartVectorOfEnumsVector (line 1425) | def StartVectorOfEnumsVector(builder, numElems): function MonsterCreateVectorOfEnumsVector (line 1428) | def MonsterCreateVectorOfEnumsVector(builder, data): function CreateVectorOfEnumsVector (line 1435) | def CreateVectorOfEnumsVector(builder, data): function MonsterAddSignedEnum (line 1438) | def MonsterAddSignedEnum(builder, signedEnum): function AddSignedEnum (line 1441) | def AddSignedEnum(builder, signedEnum): function MonsterAddTestrequirednestedflatbuffer (line 1444) | def MonsterAddTestrequirednestedflatbuffer(builder, testrequirednestedfl... function AddTestrequirednestedflatbuffer (line 1447) | def AddTestrequirednestedflatbuffer(builder, testrequirednestedflatbuffer): function MonsterStartTestrequirednestedflatbufferVector (line 1450) | def MonsterStartTestrequirednestedflatbufferVector(builder, numElems): function StartTestrequirednestedflatbufferVector (line 1453) | def StartTestrequirednestedflatbufferVector(builder, numElems): function MonsterCreateTestrequirednestedflatbufferVector (line 1456) | def MonsterCreateTestrequirednestedflatbufferVector(builder, data): function CreateTestrequirednestedflatbufferVector (line 1463) | def CreateTestrequirednestedflatbufferVector(builder, data): function MonsterMakeTestrequirednestedflatbufferVectorFromBytes (line 1466) | def MonsterMakeTestrequirednestedflatbufferVectorFromBytes(builder, bytes): function MakeTestrequirednestedflatbufferVectorFromBytes (line 1471) | def MakeTestrequirednestedflatbufferVectorFromBytes(builder, bytes): function MonsterAddScalarKeySortedTables (line 1473) | def MonsterAddScalarKeySortedTables(builder, scalarKeySortedTables): function AddScalarKeySortedTables (line 1476) | def AddScalarKeySortedTables(builder, scalarKeySortedTables): function MonsterStartScalarKeySortedTablesVector (line 1479) | def MonsterStartScalarKeySortedTablesVector(builder, numElems): function StartScalarKeySortedTablesVector (line 1482) | def StartScalarKeySortedTablesVector(builder, numElems): function MonsterCreateScalarKeySortedTablesVector (line 1485) | def MonsterCreateScalarKeySortedTablesVector(builder, data): function CreateScalarKeySortedTablesVector (line 1488) | def CreateScalarKeySortedTablesVector(builder, data): function MonsterAddNativeInline (line 1491) | def MonsterAddNativeInline(builder, nativeInline): function AddNativeInline (line 1494) | def AddNativeInline(builder, nativeInline): function MonsterAddLongEnumNonEnumDefault (line 1497) | def MonsterAddLongEnumNonEnumDefault(builder, longEnumNonEnumDefault): function AddLongEnumNonEnumDefault (line 1500) | def AddLongEnumNonEnumDefault(builder, longEnumNonEnumDefault): function MonsterAddLongEnumNormalDefault (line 1503) | def MonsterAddLongEnumNormalDefault(builder, longEnumNormalDefault): function AddLongEnumNormalDefault (line 1506) | def AddLongEnumNormalDefault(builder, longEnumNormalDefault): function MonsterAddNanDefault (line 1509) | def MonsterAddNanDefault(builder, nanDefault): function AddNanDefault (line 1512) | def AddNanDefault(builder, nanDefault): function MonsterAddInfDefault (line 1515) | def MonsterAddInfDefault(builder, infDefault): function AddInfDefault (line 1518) | def AddInfDefault(builder, infDefault): function MonsterAddPositiveInfDefault (line 1521) | def MonsterAddPositiveInfDefault(builder, positiveInfDefault): function AddPositiveInfDefault (line 1524) | def AddPositiveInfDefault(builder, positiveInfDefault): function MonsterAddInfinityDefault (line 1527) | def MonsterAddInfinityDefault(builder, infinityDefault): function AddInfinityDefault (line 1530) | def AddInfinityDefault(builder, infinityDefault): function MonsterAddPositiveInfinityDefault (line 1533) | def MonsterAddPositiveInfinityDefault(builder, positiveInfinityDefault): function AddPositiveInfinityDefault (line 1536) | def AddPositiveInfinityDefault(builder, positiveInfinityDefault): function MonsterAddNegativeInfDefault (line 1539) | def MonsterAddNegativeInfDefault(builder, negativeInfDefault): function AddNegativeInfDefault (line 1542) | def AddNegativeInfDefault(builder, negativeInfDefault): function MonsterAddNegativeInfinityDefault (line 1545) | def MonsterAddNegativeInfinityDefault(builder, negativeInfinityDefault): function AddNegativeInfinityDefault (line 1548) | def AddNegativeInfinityDefault(builder, negativeInfinityDefault): function MonsterAddDoubleInfDefault (line 1551) | def MonsterAddDoubleInfDefault(builder, doubleInfDefault): function AddDoubleInfDefault (line 1554) | def AddDoubleInfDefault(builder, doubleInfDefault): function MonsterEnd (line 1557) | def MonsterEnd(builder): function End (line 1560) | def End(builder): class MonsterT (line 1579) | class MonsterT(object): method __init__ (line 1582) | def __init__( method InitFromBuf (line 1709) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 1715) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 1720) | def InitFromObj(cls, monster): method _UnPack (line 1726) | def _UnPack(self, monster): method Pack (line 1918) | def Pack(self, builder): FILE: tests/MyGame/Example/MonsterStorageGrpc.java class MonsterStorageGrpc (line 26) | @javax.annotation.Generated(value = "by gRPC proto compiler", comments =... method MonsterStorageGrpc (line 29) | private MonsterStorageGrpc() {} method getExtractorOfMonster (line 44) | private static FlatbuffersUtils.FBExtactor get... method getExtractorOfStat (line 60) | private static FlatbuffersUtils.FBExtactor getExt... method getStoreMethod (line 74) | @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/1901") method getRetrieveMethod (line 110) | @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/1901") method getGetMaxHitPointMethod (line 146) | @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/1901") method getGetMinMaxHitPointsMethod (line 182) | @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/1901") method newStub (line 214) | public static MonsterStorageStub newStub(io.grpc.Channel channel) { method newBlockingStub (line 221) | public static MonsterStorageBlockingStub newBlockingStub(io.grpc.Chann... method newFutureStub (line 226) | public static MonsterStorageFutureStub newFutureStub(io.grpc.Channel c... class MonsterStorageImplBase (line 231) | public abstract static class MonsterStorageImplBase implements io.grpc... method store (line 234) | public void store( method retrieve (line 241) | public void retrieve( method getMaxHitPoint (line 248) | public io.grpc.stub.StreamObserver getMaxHit... method getMinMaxHitPoints (line 254) | public io.grpc.stub.StreamObserver getMinMax... method bindService (line 259) | @java.lang.Override class MonsterStorageStub (line 287) | public static final class MonsterStorageStub method MonsterStorageStub (line 289) | private MonsterStorageStub(io.grpc.Channel channel) { method MonsterStorageStub (line 293) | private MonsterStorageStub(io.grpc.Channel channel, io.grpc.CallOpti... method build (line 297) | @java.lang.Override method store (line 303) | public void store( method retrieve (line 311) | public void retrieve( method getMaxHitPoint (line 319) | public io.grpc.stub.StreamObserver getMaxHit... method getMinMaxHitPoints (line 326) | public io.grpc.stub.StreamObserver getMinMax... class MonsterStorageBlockingStub (line 334) | public static final class MonsterStorageBlockingStub method MonsterStorageBlockingStub (line 336) | private MonsterStorageBlockingStub(io.grpc.Channel channel) { method MonsterStorageBlockingStub (line 340) | private MonsterStorageBlockingStub(io.grpc.Channel channel, io.grpc.... method build (line 344) | @java.lang.Override method store (line 351) | public MyGame.Example.Stat store(MyGame.Example.Monster request) { method retrieve (line 356) | public java.util.Iterator retrieve(MyGame.Ex... class MonsterStorageFutureStub (line 363) | public static final class MonsterStorageFutureStub method MonsterStorageFutureStub (line 365) | private MonsterStorageFutureStub(io.grpc.Channel channel) { method MonsterStorageFutureStub (line 369) | private MonsterStorageFutureStub(io.grpc.Channel channel, io.grpc.Ca... method build (line 373) | @java.lang.Override method store (line 380) | public com.google.common.util.concurrent.ListenableFuture method MethodHandlers (line 399) | MethodHandlers(MonsterStorageImplBase serviceImpl, int methodId) { method invoke (line 404) | @java.lang.Override method invoke (line 423) | @java.lang.Override method getServiceDescriptor (line 444) | public static io.grpc.ServiceDescriptor getServiceDescriptor() { FILE: tests/MyGame/Example/MonsterStorage_grpc.go type MonsterStorageClient (line 16) | type MonsterStorageClient interface type monsterStorageClient (line 27) | type monsterStorageClient struct method Store (line 35) | func (c *monsterStorageClient) Store(ctx context.Context, in *flatbuff... method Retrieve (line 45) | func (c *monsterStorageClient) Retrieve(ctx context.Context, in *flatb... method GetMaxHitPoint (line 78) | func (c *monsterStorageClient) GetMaxHitPoint(ctx context.Context, method GetMinMaxHitPoints (line 113) | func (c *monsterStorageClient) GetMinMaxHitPoints(ctx context.Context, function NewMonsterStorageClient (line 31) | func NewMonsterStorageClient(cc grpc.ClientConnInterface) MonsterStorage... type MonsterStorage_RetrieveClient (line 61) | type MonsterStorage_RetrieveClient interface type monsterStorageRetrieveClient (line 66) | type monsterStorageRetrieveClient struct method Recv (line 70) | func (x *monsterStorageRetrieveClient) Recv() (*Monster, error) { type MonsterStorage_GetMaxHitPointClient (line 88) | type MonsterStorage_GetMaxHitPointClient interface type monsterStorageGetMaxHitPointClient (line 94) | type monsterStorageGetMaxHitPointClient struct method Send (line 98) | func (x *monsterStorageGetMaxHitPointClient) Send(m *flatbuffers.Build... method CloseAndRecv (line 102) | func (x *monsterStorageGetMaxHitPointClient) CloseAndRecv() (*Stat, er... type MonsterStorage_GetMinMaxHitPointsClient (line 123) | type MonsterStorage_GetMinMaxHitPointsClient interface type monsterStorageGetMinMaxHitPointsClient (line 129) | type monsterStorageGetMinMaxHitPointsClient struct method Send (line 133) | func (x *monsterStorageGetMinMaxHitPointsClient) Send(m *flatbuffers.B... method Recv (line 137) | func (x *monsterStorageGetMinMaxHitPointsClient) Recv() (*Stat, error) { type MonsterStorageServer (line 146) | type MonsterStorageServer interface type UnimplementedMonsterStorageServer (line 154) | type UnimplementedMonsterStorageServer struct method Store (line 157) | func (UnimplementedMonsterStorageServer) Store(context.Context, *Monst... method Retrieve (line 161) | func (UnimplementedMonsterStorageServer) Retrieve(*Stat, MonsterStorag... method GetMaxHitPoint (line 165) | func (UnimplementedMonsterStorageServer) GetMaxHitPoint(MonsterStorage... method GetMinMaxHitPoints (line 169) | func (UnimplementedMonsterStorageServer) GetMinMaxHitPoints(MonsterSto... method mustEmbedUnimplementedMonsterStorageServer (line 173) | func (UnimplementedMonsterStorageServer) mustEmbedUnimplementedMonster... type UnsafeMonsterStorageServer (line 175) | type UnsafeMonsterStorageServer interface function RegisterMonsterStorageServer (line 179) | func RegisterMonsterStorageServer(s grpc.ServiceRegistrar, srv MonsterSt... function _MonsterStorage_Store_Handler (line 183) | func _MonsterStorage_Store_Handler(srv interface{}, ctx context.Context, function _MonsterStorage_Retrieve_Handler (line 202) | func _MonsterStorage_Retrieve_Handler(srv interface{}, stream grpc.Serve... type MonsterStorage_RetrieveServer (line 210) | type MonsterStorage_RetrieveServer interface type monsterStorageRetrieveServer (line 215) | type monsterStorageRetrieveServer struct method Send (line 219) | func (x *monsterStorageRetrieveServer) Send(m *flatbuffers.Builder) er... function _MonsterStorage_GetMaxHitPoint_Handler (line 223) | func _MonsterStorage_GetMaxHitPoint_Handler(srv interface{}, stream grpc... type MonsterStorage_GetMaxHitPointServer (line 227) | type MonsterStorage_GetMaxHitPointServer interface type monsterStorageGetMaxHitPointServer (line 233) | type monsterStorageGetMaxHitPointServer struct method Recv (line 237) | func (x *monsterStorageGetMaxHitPointServer) Recv() (*Monster, error) { method SendAndClose (line 245) | func (x *monsterStorageGetMaxHitPointServer) SendAndClose(m *flatbuffe... function _MonsterStorage_GetMinMaxHitPoints_Handler (line 249) | func _MonsterStorage_GetMinMaxHitPoints_Handler(srv interface{}, stream ... type MonsterStorage_GetMinMaxHitPointsServer (line 253) | type MonsterStorage_GetMinMaxHitPointsServer interface type monsterStorageGetMinMaxHitPointsServer (line 259) | type monsterStorageGetMinMaxHitPointsServer struct method Send (line 263) | func (x *monsterStorageGetMinMaxHitPointsServer) Send(m *flatbuffers.B... method Recv (line 267) | func (x *monsterStorageGetMinMaxHitPointsServer) Recv() (*Monster, err... FILE: tests/MyGame/Example/MonsterT.java class MonsterT (line 21) | public class MonsterT { method getPos (line 81) | public MyGame.Example.Vec3T getPos() { return pos; } method setPos (line 83) | public void setPos(MyGame.Example.Vec3T pos) { this.pos = pos; } method getMana (line 85) | public short getMana() { return mana; } method setMana (line 87) | public void setMana(short mana) { this.mana = mana; } method getHp (line 89) | public short getHp() { return hp; } method setHp (line 91) | public void setHp(short hp) { this.hp = hp; } method getName (line 93) | public String getName() { return name; } method setName (line 95) | public void setName(String name) { this.name = name; } method getInventory (line 97) | public int[] getInventory() { return inventory; } method setInventory (line 99) | public void setInventory(int[] inventory) { this.inventory = inventory; } method getColor (line 101) | public int getColor() { return color; } method setColor (line 103) | public void setColor(int color) { this.color = color; } method getTest (line 105) | public MyGame.Example.AnyUnion getTest() { return test; } method setTest (line 107) | public void setTest(MyGame.Example.AnyUnion test) { this.test = test; } method getTest4 (line 109) | public MyGame.Example.TestT[] getTest4() { return test4; } method setTest4 (line 111) | public void setTest4(MyGame.Example.TestT[] test4) { this.test4 = test... method getTestarrayofstring (line 113) | public String[] getTestarrayofstring() { return testarrayofstring; } method setTestarrayofstring (line 115) | public void setTestarrayofstring(String[] testarrayofstring) { this.te... method getTestarrayoftables (line 117) | public MyGame.Example.MonsterT[] getTestarrayoftables() { return testa... method setTestarrayoftables (line 119) | public void setTestarrayoftables(MyGame.Example.MonsterT[] testarrayof... method getEnemy (line 121) | public MyGame.Example.MonsterT getEnemy() { return enemy; } method setEnemy (line 123) | public void setEnemy(MyGame.Example.MonsterT enemy) { this.enemy = ene... method getTestnestedflatbuffer (line 125) | public int[] getTestnestedflatbuffer() { return testnestedflatbuffer; } method setTestnestedflatbuffer (line 127) | public void setTestnestedflatbuffer(int[] testnestedflatbuffer) { this... method getTestempty (line 129) | public MyGame.Example.StatT getTestempty() { return testempty; } method setTestempty (line 131) | public void setTestempty(MyGame.Example.StatT testempty) { this.testem... method getTestbool (line 133) | public boolean getTestbool() { return testbool; } method setTestbool (line 135) | public void setTestbool(boolean testbool) { this.testbool = testbool; } method getTesthashs32Fnv1 (line 137) | public int getTesthashs32Fnv1() { return testhashs32Fnv1; } method setTesthashs32Fnv1 (line 139) | public void setTesthashs32Fnv1(int testhashs32Fnv1) { this.testhashs32... method getTesthashu32Fnv1 (line 141) | public long getTesthashu32Fnv1() { return testhashu32Fnv1; } method setTesthashu32Fnv1 (line 143) | public void setTesthashu32Fnv1(long testhashu32Fnv1) { this.testhashu3... method getTesthashs64Fnv1 (line 145) | public long getTesthashs64Fnv1() { return testhashs64Fnv1; } method setTesthashs64Fnv1 (line 147) | public void setTesthashs64Fnv1(long testhashs64Fnv1) { this.testhashs6... method getTesthashu64Fnv1 (line 149) | public long getTesthashu64Fnv1() { return testhashu64Fnv1; } method setTesthashu64Fnv1 (line 151) | public void setTesthashu64Fnv1(long testhashu64Fnv1) { this.testhashu6... method getTesthashs32Fnv1a (line 153) | public int getTesthashs32Fnv1a() { return testhashs32Fnv1a; } method setTesthashs32Fnv1a (line 155) | public void setTesthashs32Fnv1a(int testhashs32Fnv1a) { this.testhashs... method getTesthashu32Fnv1a (line 157) | public long getTesthashu32Fnv1a() { return testhashu32Fnv1a; } method setTesthashu32Fnv1a (line 159) | public void setTesthashu32Fnv1a(long testhashu32Fnv1a) { this.testhash... method getTesthashs64Fnv1a (line 161) | public long getTesthashs64Fnv1a() { return testhashs64Fnv1a; } method setTesthashs64Fnv1a (line 163) | public void setTesthashs64Fnv1a(long testhashs64Fnv1a) { this.testhash... method getTesthashu64Fnv1a (line 165) | public long getTesthashu64Fnv1a() { return testhashu64Fnv1a; } method setTesthashu64Fnv1a (line 167) | public void setTesthashu64Fnv1a(long testhashu64Fnv1a) { this.testhash... method getTestarrayofbools (line 169) | public boolean[] getTestarrayofbools() { return testarrayofbools; } method setTestarrayofbools (line 171) | public void setTestarrayofbools(boolean[] testarrayofbools) { this.tes... method getTestf (line 173) | public float getTestf() { return testf; } method setTestf (line 175) | public void setTestf(float testf) { this.testf = testf; } method getTestf2 (line 177) | public float getTestf2() { return testf2; } method setTestf2 (line 179) | public void setTestf2(float testf2) { this.testf2 = testf2; } method getTestf3 (line 181) | public float getTestf3() { return testf3; } method setTestf3 (line 183) | public void setTestf3(float testf3) { this.testf3 = testf3; } method getTestarrayofstring2 (line 185) | public String[] getTestarrayofstring2() { return testarrayofstring2; } method setTestarrayofstring2 (line 187) | public void setTestarrayofstring2(String[] testarrayofstring2) { this.... method getTestarrayofsortedstruct (line 189) | public MyGame.Example.AbilityT[] getTestarrayofsortedstruct() { return... method setTestarrayofsortedstruct (line 191) | public void setTestarrayofsortedstruct(MyGame.Example.AbilityT[] testa... method getFlex (line 193) | public int[] getFlex() { return flex; } method setFlex (line 195) | public void setFlex(int[] flex) { this.flex = flex; } method getTest5 (line 197) | public MyGame.Example.TestT[] getTest5() { return test5; } method setTest5 (line 199) | public void setTest5(MyGame.Example.TestT[] test5) { this.test5 = test... method getVectorOfLongs (line 201) | public long[] getVectorOfLongs() { return vectorOfLongs; } method setVectorOfLongs (line 203) | public void setVectorOfLongs(long[] vectorOfLongs) { this.vectorOfLong... method getVectorOfDoubles (line 205) | public double[] getVectorOfDoubles() { return vectorOfDoubles; } method setVectorOfDoubles (line 207) | public void setVectorOfDoubles(double[] vectorOfDoubles) { this.vector... method getParentNamespaceTest (line 209) | public MyGame.InParentNamespaceT getParentNamespaceTest() { return par... method setParentNamespaceTest (line 211) | public void setParentNamespaceTest(MyGame.InParentNamespaceT parentNam... method getVectorOfReferrables (line 213) | public MyGame.Example.ReferrableT[] getVectorOfReferrables() { return ... method setVectorOfReferrables (line 215) | public void setVectorOfReferrables(MyGame.Example.ReferrableT[] vector... method getSingleWeakReference (line 217) | public long getSingleWeakReference() { return singleWeakReference; } method setSingleWeakReference (line 219) | public void setSingleWeakReference(long singleWeakReference) { this.si... method getVectorOfWeakReferences (line 221) | public long[] getVectorOfWeakReferences() { return vectorOfWeakReferen... method setVectorOfWeakReferences (line 223) | public void setVectorOfWeakReferences(long[] vectorOfWeakReferences) {... method getVectorOfStrongReferrables (line 225) | public MyGame.Example.ReferrableT[] getVectorOfStrongReferrables() { r... method setVectorOfStrongReferrables (line 227) | public void setVectorOfStrongReferrables(MyGame.Example.ReferrableT[] ... method getCoOwningReference (line 229) | public long getCoOwningReference() { return coOwningReference; } method setCoOwningReference (line 231) | public void setCoOwningReference(long coOwningReference) { this.coOwni... method getVectorOfCoOwningReferences (line 233) | public long[] getVectorOfCoOwningReferences() { return vectorOfCoOwnin... method setVectorOfCoOwningReferences (line 235) | public void setVectorOfCoOwningReferences(long[] vectorOfCoOwningRefer... method getNonOwningReference (line 237) | public long getNonOwningReference() { return nonOwningReference; } method setNonOwningReference (line 239) | public void setNonOwningReference(long nonOwningReference) { this.nonO... method getVectorOfNonOwningReferences (line 241) | public long[] getVectorOfNonOwningReferences() { return vectorOfNonOwn... method setVectorOfNonOwningReferences (line 243) | public void setVectorOfNonOwningReferences(long[] vectorOfNonOwningRef... method getAnyUnique (line 245) | public MyGame.Example.AnyUniqueAliasesUnion getAnyUnique() { return an... method setAnyUnique (line 247) | public void setAnyUnique(MyGame.Example.AnyUniqueAliasesUnion anyUniqu... method getAnyAmbiguous (line 249) | public MyGame.Example.AnyAmbiguousAliasesUnion getAnyAmbiguous() { ret... method setAnyAmbiguous (line 251) | public void setAnyAmbiguous(MyGame.Example.AnyAmbiguousAliasesUnion an... method getVectorOfEnums (line 253) | public int[] getVectorOfEnums() { return vectorOfEnums; } method setVectorOfEnums (line 255) | public void setVectorOfEnums(int[] vectorOfEnums) { this.vectorOfEnums... method getSignedEnum (line 257) | public byte getSignedEnum() { return signedEnum; } method setSignedEnum (line 259) | public void setSignedEnum(byte signedEnum) { this.signedEnum = signedE... method getTestrequirednestedflatbuffer (line 261) | public int[] getTestrequirednestedflatbuffer() { return testrequiredne... method setTestrequirednestedflatbuffer (line 263) | public void setTestrequirednestedflatbuffer(int[] testrequirednestedfl... method getScalarKeySortedTables (line 265) | public MyGame.Example.StatT[] getScalarKeySortedTables() { return scal... method setScalarKeySortedTables (line 267) | public void setScalarKeySortedTables(MyGame.Example.StatT[] scalarKeyS... method getNativeInline (line 269) | public MyGame.Example.TestT getNativeInline() { return nativeInline; } method setNativeInline (line 271) | public void setNativeInline(MyGame.Example.TestT nativeInline) { this.... method getLongEnumNonEnumDefault (line 273) | public long getLongEnumNonEnumDefault() { return longEnumNonEnumDefaul... method setLongEnumNonEnumDefault (line 275) | public void setLongEnumNonEnumDefault(long longEnumNonEnumDefault) { t... method getLongEnumNormalDefault (line 277) | public long getLongEnumNormalDefault() { return longEnumNormalDefault; } method setLongEnumNormalDefault (line 279) | public void setLongEnumNormalDefault(long longEnumNormalDefault) { thi... method getNanDefault (line 281) | public float getNanDefault() { return nanDefault; } method setNanDefault (line 283) | public void setNanDefault(float nanDefault) { this.nanDefault = nanDef... method getInfDefault (line 285) | public float getInfDefault() { return infDefault; } method setInfDefault (line 287) | public void setInfDefault(float infDefault) { this.infDefault = infDef... method getPositiveInfDefault (line 289) | public float getPositiveInfDefault() { return positiveInfDefault; } method setPositiveInfDefault (line 291) | public void setPositiveInfDefault(float positiveInfDefault) { this.pos... method getInfinityDefault (line 293) | public float getInfinityDefault() { return infinityDefault; } method setInfinityDefault (line 295) | public void setInfinityDefault(float infinityDefault) { this.infinityD... method getPositiveInfinityDefault (line 297) | public float getPositiveInfinityDefault() { return positiveInfinityDef... method setPositiveInfinityDefault (line 299) | public void setPositiveInfinityDefault(float positiveInfinityDefault) ... method getNegativeInfDefault (line 301) | public float getNegativeInfDefault() { return negativeInfDefault; } method setNegativeInfDefault (line 303) | public void setNegativeInfDefault(float negativeInfDefault) { this.neg... method getNegativeInfinityDefault (line 305) | public float getNegativeInfinityDefault() { return negativeInfinityDef... method setNegativeInfinityDefault (line 307) | public void setNegativeInfinityDefault(float negativeInfinityDefault) ... method getDoubleInfDefault (line 309) | public double getDoubleInfDefault() { return doubleInfDefault; } method setDoubleInfDefault (line 311) | public void setDoubleInfDefault(double doubleInfDefault) { this.double... method MonsterT (line 314) | public MonsterT() { method deserializeFromBinary (line 374) | public static MonsterT deserializeFromBinary(byte[] fbBuffer) { method serializeToBinary (line 377) | public byte[] serializeToBinary() { FILE: tests/MyGame/Example/NestedStruct.cs type NestedStruct (line 12) | public struct NestedStruct : IFlatbufferObject method __init (line 16) | public void __init(int _i, ByteBuffer _bb) { __p = new Struct(_i, _bb); } method __assign (line 17) | public NestedStruct __assign(int _i, ByteBuffer _bb) { __init(_i, _bb)... method A (line 19) | public int A(int j) { return __p.bb.GetInt(__p.bb_pos + 0 + j * 4); } method GetABytes (line 22) | public Span GetABytes() { return System.Runtime.InteropServices.M... method GetABytes (line 24) | public ArraySegment? GetABytes() { return __p.bb.ToArraySegment(... method MutateA (line 26) | public void MutateA(int j, int a) { __p.bb.PutInt(__p.bb_pos + 0 + j *... method MutateB (line 28) | public void MutateB(MyGame.Example.TestEnum b) { __p.bb.PutSbyte(__p.b... method C (line 29) | public MyGame.Example.TestEnum C(int j) { return (MyGame.Example.TestE... method GetCBytes (line 32) | public Span GetCBytes() { return System.Runti... method GetCBytes (line 34) | public ArraySegment? GetCBytes() { return __p.bb.ToArraySegment(... method MutateC (line 36) | public void MutateC(int j, MyGame.Example.TestEnum c) { __p.bb.PutSbyt... method D (line 37) | public long D(int j) { return __p.bb.GetLong(__p.bb_pos + 16 + j * 8); } method GetDBytes (line 40) | public Span GetDBytes() { return System.Runtime.InteropServices.... method GetDBytes (line 42) | public ArraySegment? GetDBytes() { return __p.bb.ToArraySegment(... method MutateD (line 44) | public void MutateD(int j, long d) { __p.bb.PutLong(__p.bb_pos + 16 + ... method CreateNestedStruct (line 46) | public static Offset CreateNestedStruct(F... method UnPack (line 61) | public NestedStructT UnPack() { method UnPackTo (line 66) | public void UnPackTo(NestedStructT _o) { method Pack (line 75) | public static Offset Pack(FlatBufferBuild... class NestedStructT (line 89) | public class NestedStructT method NestedStructT (line 100) | public NestedStructT() { FILE: tests/MyGame/Example/NestedStruct.java class NestedStruct (line 21) | @SuppressWarnings("unused") method __init (line 23) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 24) | public NestedStruct __assign(int _i, ByteBuffer _bb) { __init(_i, _bb)... method a (line 26) | public int a(int j) { return bb.getInt(bb_pos + 0 + j * 4); } method mutateA (line 27) | public void mutateA(int j, int a) { bb.putInt(bb_pos + 0 + j * 4, a); } method b (line 28) | public byte b() { return bb.get(bb_pos + 8); } method mutateB (line 29) | public void mutateB(byte b) { bb.put(bb_pos + 8, b); } method c (line 30) | public byte c(int j) { return bb.get(bb_pos + 9 + j * 1); } method mutateC (line 31) | public void mutateC(int j, byte c) { bb.put(bb_pos + 9 + j * 1, c); } method d (line 32) | public long d(int j) { return bb.getLong(bb_pos + 16 + j * 8); } method mutateD (line 33) | public void mutateD(int j, long d) { bb.putLong(bb_pos + 16 + j * 8, d... method createNestedStruct (line 35) | public static int createNestedStruct(FlatBufferBuilder builder, int[] ... class Vector (line 51) | public static final class Vector extends BaseVector { method __assign (line 52) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 54) | public NestedStruct get(int j) { return get(new NestedStruct(), j); } method get (line 55) | public NestedStruct get(NestedStruct obj, int j) { return obj.__ass... method unpack (line 57) | public NestedStructT unpack() { method unpackTo (line 62) | public void unpackTo(NestedStructT _o) { method pack (line 72) | public static int pack(FlatBufferBuilder builder, NestedStructT _o) { FILE: tests/MyGame/Example/NestedStruct.py class NestedStruct (line 10) | class NestedStruct(object): method SizeOf (line 14) | def SizeOf(cls) -> int: method Init (line 18) | def Init(self, buf: bytes, pos: int): method A (line 22) | def A(self, j = None): method AAsNumpy (line 31) | def AAsNumpy(self): method ALength (line 35) | def ALength(self) -> int: method AIsNone (line 39) | def AIsNone(self) -> bool: method B (line 43) | def B(self): return self._tab.Get(flatbuffers.number_types.Int8Flags, ... method C (line 45) | def C(self, j = None): method CAsNumpy (line 54) | def CAsNumpy(self): method CLength (line 58) | def CLength(self) -> int: method CIsNone (line 62) | def CIsNone(self) -> bool: method D (line 66) | def D(self, j = None): method DAsNumpy (line 75) | def DAsNumpy(self): method DLength (line 79) | def DLength(self) -> int: method DIsNone (line 83) | def DIsNone(self) -> bool: function CreateNestedStruct (line 87) | def CreateNestedStruct(builder, a, b, c, d): class NestedStructT (line 104) | class NestedStructT(object): method __init__ (line 107) | def __init__( method InitFromBuf (line 120) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 126) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 131) | def InitFromObj(cls, nestedStruct): method _UnPack (line 137) | def _UnPack(self, nestedStruct): method Pack (line 164) | def Pack(self, builder): FILE: tests/MyGame/Example/NestedStruct.pyi class NestedStruct (line 11) | class NestedStruct(object): method SizeOf (line 13) | def SizeOf(cls) -> int: ... method Init (line 15) | def Init(self, buf: bytes, pos: int) -> None: ... method A (line 16) | def A(self, i: int) -> typing.List[int]: ... method AAsNumpy (line 17) | def AAsNumpy(self) -> np.ndarray: ... method ALength (line 18) | def ALength(self) -> int: ... method AIsNone (line 19) | def AIsNone(self) -> bool: ... method B (line 20) | def B(self) -> typing.Literal[TestEnum.A, TestEnum.B, TestEnum.C]: ... method C (line 21) | def C(self, i: int) -> typing.Literal[TestEnum.A, TestEnum.B, TestEnum... method CAsNumpy (line 22) | def CAsNumpy(self) -> np.ndarray: ... method CLength (line 23) | def CLength(self) -> int: ... method CIsNone (line 24) | def CIsNone(self) -> bool: ... method D (line 25) | def D(self, i: int) -> typing.List[int]: ... method DAsNumpy (line 26) | def DAsNumpy(self) -> np.ndarray: ... method DLength (line 27) | def DLength(self) -> int: ... method DIsNone (line 28) | def DIsNone(self) -> bool: ... class NestedStructT (line 29) | class NestedStructT(object): method __init__ (line 34) | def __init__( method InitFromBuf (line 42) | def InitFromBuf(cls, buf: bytes, pos: int) -> NestedStructT: ... method InitFromPackedBuf (line 44) | def InitFromPackedBuf(cls, buf: bytes, pos: int = 0) -> NestedStructT:... method InitFromObj (line 46) | def InitFromObj(cls, nestedStruct: NestedStruct) -> NestedStructT: ... method _UnPack (line 47) | def _UnPack(self, nestedStruct: NestedStruct) -> None: ... method Pack (line 48) | def Pack(self, builder: flatbuffers.Builder) -> None: ... function CreateNestedStruct (line 50) | def CreateNestedStruct(builder: flatbuffers.Builder, a: int, b: typing.L... FILE: tests/MyGame/Example/NestedStructT.java class NestedStructT (line 21) | public class NestedStructT { method getA (line 27) | public int[] getA() { return a; } method setA (line 29) | public void setA(int[] a) { if (a != null && a.length == 2) this.a = a; } method getB (line 31) | public byte getB() { return b; } method setB (line 33) | public void setB(byte b) { this.b = b; } method getC (line 35) | public byte[] getC() { return c; } method setC (line 37) | public void setC(byte[] c) { if (c != null && c.length == 2) this.c = ... method getD (line 39) | public long[] getD() { return d; } method setD (line 41) | public void setD(long[] d) { if (d != null && d.length == 2) this.d = ... method NestedStructT (line 44) | public NestedStructT() { FILE: tests/MyGame/Example/NestedUnion/Any.py class Any (line 5) | class Any(object): function AnyCreator (line 10) | def AnyCreator(unionType, table): FILE: tests/MyGame/Example/NestedUnion/Any.pyi class Any (line 14) | class Any(object): function AnyCreator (line 18) | def AnyCreator(union_type: typing.Literal[Any.NONE, Any.Vec3, Any.TestSi... FILE: tests/MyGame/Example/NestedUnion/Color.py class Color (line 6) | class Color(object): FILE: tests/MyGame/Example/NestedUnion/Color.pyi class Color (line 11) | class Color(object): FILE: tests/MyGame/Example/NestedUnion/NestedUnionTest.py class NestedUnionTest (line 12) | class NestedUnionTest(object): method GetRootAs (line 16) | def GetRootAs(cls, buf, offset: int = 0): method GetRootAsNestedUnionTest (line 23) | def GetRootAsNestedUnionTest(cls, buf, offset=0): method Init (line 27) | def Init(self, buf: bytes, pos: int): method Name (line 31) | def Name(self) -> Optional[str]: method DataType (line 38) | def DataType(self): method Data (line 45) | def Data(self) -> Optional[flatbuffers.table.Table]: method Id (line 54) | def Id(self): function NestedUnionTestStart (line 60) | def NestedUnionTestStart(builder: flatbuffers.Builder): function Start (line 63) | def Start(builder: flatbuffers.Builder): function NestedUnionTestAddName (line 66) | def NestedUnionTestAddName(builder: flatbuffers.Builder, name: int): function AddName (line 69) | def AddName(builder: flatbuffers.Builder, name: int): function NestedUnionTestAddDataType (line 72) | def NestedUnionTestAddDataType(builder: flatbuffers.Builder, dataType: i... function AddDataType (line 75) | def AddDataType(builder: flatbuffers.Builder, dataType: int): function NestedUnionTestAddData (line 78) | def NestedUnionTestAddData(builder: flatbuffers.Builder, data: int): function AddData (line 81) | def AddData(builder: flatbuffers.Builder, data: int): function NestedUnionTestAddId (line 84) | def NestedUnionTestAddId(builder: flatbuffers.Builder, id: int): function AddId (line 87) | def AddId(builder: flatbuffers.Builder, id: int): function NestedUnionTestEnd (line 90) | def NestedUnionTestEnd(builder: flatbuffers.Builder) -> int: function End (line 93) | def End(builder: flatbuffers.Builder) -> int: class NestedUnionTestT (line 104) | class NestedUnionTestT(object): method __init__ (line 107) | def __init__( method InitFromBuf (line 120) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 126) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 131) | def InitFromObj(cls, nestedUnionTest): method _UnPack (line 137) | def _UnPack(self, nestedUnionTest): method Pack (line 148) | def Pack(self, builder): FILE: tests/MyGame/Example/NestedUnion/NestedUnionTest.pyi class NestedUnionTest (line 14) | class NestedUnionTest(object): method GetRootAs (line 16) | def GetRootAs(cls, buf: bytes, offset: int) -> NestedUnionTest: ... method GetRootAsNestedUnionTest (line 18) | def GetRootAsNestedUnionTest(cls, buf: bytes, offset: int) -> NestedUn... method Init (line 19) | def Init(self, buf: bytes, pos: int) -> None: ... method Name (line 20) | def Name(self) -> str | None: ... method DataType (line 21) | def DataType(self) -> typing.Literal[Any.NONE, Any.Vec3, Any.TestSimpl... method Data (line 22) | def Data(self) -> table.Table | None: ... method Id (line 23) | def Id(self) -> int: ... class NestedUnionTestT (line 24) | class NestedUnionTestT(object): method __init__ (line 29) | def __init__( method InitFromBuf (line 37) | def InitFromBuf(cls, buf: bytes, pos: int) -> NestedUnionTestT: ... method InitFromPackedBuf (line 39) | def InitFromPackedBuf(cls, buf: bytes, pos: int = 0) -> NestedUnionTes... method InitFromObj (line 41) | def InitFromObj(cls, nestedUnionTest: NestedUnionTest) -> NestedUnionT... method _UnPack (line 42) | def _UnPack(self, nestedUnionTest: NestedUnionTest) -> None: ... method Pack (line 43) | def Pack(self, builder: flatbuffers.Builder) -> None: ... function NestedUnionTestStart (line 44) | def NestedUnionTestStart(builder: flatbuffers.Builder) -> None: ... function Start (line 45) | def Start(builder: flatbuffers.Builder) -> None: ... function NestedUnionTestAddName (line 46) | def NestedUnionTestAddName(builder: flatbuffers.Builder, name: uoffset) ... function NestedUnionTestAddDataType (line 47) | def NestedUnionTestAddDataType(builder: flatbuffers.Builder, dataType: t... function NestedUnionTestAddData (line 48) | def NestedUnionTestAddData(builder: flatbuffers.Builder, data: uoffset) ... function NestedUnionTestAddId (line 49) | def NestedUnionTestAddId(builder: flatbuffers.Builder, id: int) -> None:... function NestedUnionTestEnd (line 50) | def NestedUnionTestEnd(builder: flatbuffers.Builder) -> uoffset: ... function End (line 51) | def End(builder: flatbuffers.Builder) -> uoffset: ... FILE: tests/MyGame/Example/NestedUnion/Test.py class Test (line 10) | class Test(object): method SizeOf (line 14) | def SizeOf(cls) -> int: method Init (line 18) | def Init(self, buf: bytes, pos: int): method A (line 22) | def A(self): return self._tab.Get(flatbuffers.number_types.Int16Flags,... method B (line 24) | def B(self): return self._tab.Get(flatbuffers.number_types.Int8Flags, ... function CreateTest (line 26) | def CreateTest(builder, a, b): class TestT (line 34) | class TestT(object): method __init__ (line 37) | def __init__( method InitFromBuf (line 46) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 52) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 57) | def InitFromObj(cls, test): method _UnPack (line 63) | def _UnPack(self, test): method Pack (line 70) | def Pack(self, builder): FILE: tests/MyGame/Example/NestedUnion/Test.pyi class Test (line 10) | class Test(object): method SizeOf (line 12) | def SizeOf(cls) -> int: ... method Init (line 14) | def Init(self, buf: bytes, pos: int) -> None: ... method A (line 15) | def A(self) -> int: ... method B (line 16) | def B(self) -> int: ... class TestT (line 17) | class TestT(object): method __init__ (line 20) | def __init__( method InitFromBuf (line 26) | def InitFromBuf(cls, buf: bytes, pos: int) -> TestT: ... method InitFromPackedBuf (line 28) | def InitFromPackedBuf(cls, buf: bytes, pos: int = 0) -> TestT: ... method InitFromObj (line 30) | def InitFromObj(cls, test: Test) -> TestT: ... method _UnPack (line 31) | def _UnPack(self, test: Test) -> None: ... method Pack (line 32) | def Pack(self, builder: flatbuffers.Builder) -> None: ... function CreateTest (line 34) | def CreateTest(builder: flatbuffers.Builder, a: int, b: int) -> uoffset:... FILE: tests/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.py class TestSimpleTableWithEnum (line 10) | class TestSimpleTableWithEnum(object): method GetRootAs (line 14) | def GetRootAs(cls, buf, offset: int = 0): method GetRootAsTestSimpleTableWithEnum (line 21) | def GetRootAsTestSimpleTableWithEnum(cls, buf, offset=0): method Init (line 25) | def Init(self, buf: bytes, pos: int): method Color (line 29) | def Color(self): function TestSimpleTableWithEnumStart (line 35) | def TestSimpleTableWithEnumStart(builder: flatbuffers.Builder): function Start (line 38) | def Start(builder: flatbuffers.Builder): function TestSimpleTableWithEnumAddColor (line 41) | def TestSimpleTableWithEnumAddColor(builder: flatbuffers.Builder, color:... function AddColor (line 44) | def AddColor(builder: flatbuffers.Builder, color: int): function TestSimpleTableWithEnumEnd (line 47) | def TestSimpleTableWithEnumEnd(builder: flatbuffers.Builder) -> int: function End (line 50) | def End(builder: flatbuffers.Builder) -> int: class TestSimpleTableWithEnumT (line 54) | class TestSimpleTableWithEnumT(object): method __init__ (line 57) | def __init__( method InitFromBuf (line 64) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 70) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 75) | def InitFromObj(cls, testSimpleTableWithEnum): method _UnPack (line 81) | def _UnPack(self, testSimpleTableWithEnum): method Pack (line 87) | def Pack(self, builder): FILE: tests/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.pyi class TestSimpleTableWithEnum (line 11) | class TestSimpleTableWithEnum(object): method GetRootAs (line 13) | def GetRootAs(cls, buf: bytes, offset: int) -> TestSimpleTableWithEnum... method GetRootAsTestSimpleTableWithEnum (line 15) | def GetRootAsTestSimpleTableWithEnum(cls, buf: bytes, offset: int) -> ... method Init (line 16) | def Init(self, buf: bytes, pos: int) -> None: ... method Color (line 17) | def Color(self) -> typing.Literal[Color.Red, Color.Green, Color.Blue]:... class TestSimpleTableWithEnumT (line 18) | class TestSimpleTableWithEnumT(object): method __init__ (line 20) | def __init__( method InitFromBuf (line 25) | def InitFromBuf(cls, buf: bytes, pos: int) -> TestSimpleTableWithEnumT... method InitFromPackedBuf (line 27) | def InitFromPackedBuf(cls, buf: bytes, pos: int = 0) -> TestSimpleTabl... method InitFromObj (line 29) | def InitFromObj(cls, testSimpleTableWithEnum: TestSimpleTableWithEnum)... method _UnPack (line 30) | def _UnPack(self, testSimpleTableWithEnum: TestSimpleTableWithEnum) ->... method Pack (line 31) | def Pack(self, builder: flatbuffers.Builder) -> None: ... function TestSimpleTableWithEnumStart (line 32) | def TestSimpleTableWithEnumStart(builder: flatbuffers.Builder) -> None: ... function Start (line 33) | def Start(builder: flatbuffers.Builder) -> None: ... function TestSimpleTableWithEnumAddColor (line 34) | def TestSimpleTableWithEnumAddColor(builder: flatbuffers.Builder, color:... function TestSimpleTableWithEnumEnd (line 35) | def TestSimpleTableWithEnumEnd(builder: flatbuffers.Builder) -> uoffset:... function End (line 36) | def End(builder: flatbuffers.Builder) -> uoffset: ... FILE: tests/MyGame/Example/NestedUnion/Vec3.py class Vec3 (line 12) | class Vec3(object): method GetRootAs (line 16) | def GetRootAs(cls, buf, offset: int = 0): method GetRootAsVec3 (line 23) | def GetRootAsVec3(cls, buf, offset=0): method Init (line 27) | def Init(self, buf: bytes, pos: int): method X (line 31) | def X(self): method Y (line 38) | def Y(self): method Z (line 45) | def Z(self): method Test1 (line 52) | def Test1(self): method Test2 (line 59) | def Test2(self): method Test3 (line 66) | def Test3(self) -> Optional[Test]: function Vec3Start (line 75) | def Vec3Start(builder: flatbuffers.Builder): function Start (line 78) | def Start(builder: flatbuffers.Builder): function Vec3AddX (line 81) | def Vec3AddX(builder: flatbuffers.Builder, x: float): function AddX (line 84) | def AddX(builder: flatbuffers.Builder, x: float): function Vec3AddY (line 87) | def Vec3AddY(builder: flatbuffers.Builder, y: float): function AddY (line 90) | def AddY(builder: flatbuffers.Builder, y: float): function Vec3AddZ (line 93) | def Vec3AddZ(builder: flatbuffers.Builder, z: float): function AddZ (line 96) | def AddZ(builder: flatbuffers.Builder, z: float): function Vec3AddTest1 (line 99) | def Vec3AddTest1(builder: flatbuffers.Builder, test1: float): function AddTest1 (line 102) | def AddTest1(builder: flatbuffers.Builder, test1: float): function Vec3AddTest2 (line 105) | def Vec3AddTest2(builder: flatbuffers.Builder, test2: int): function AddTest2 (line 108) | def AddTest2(builder: flatbuffers.Builder, test2: int): function Vec3AddTest3 (line 111) | def Vec3AddTest3(builder: flatbuffers.Builder, test3: Any): function AddTest3 (line 114) | def AddTest3(builder: flatbuffers.Builder, test3: Any): function Vec3End (line 117) | def Vec3End(builder: flatbuffers.Builder) -> int: function End (line 120) | def End(builder: flatbuffers.Builder) -> int: class Vec3T (line 129) | class Vec3T(object): method __init__ (line 132) | def __init__( method InitFromBuf (line 149) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 155) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 160) | def InitFromObj(cls, vec3): method _UnPack (line 166) | def _UnPack(self, vec3): method Pack (line 178) | def Pack(self, builder): FILE: tests/MyGame/Example/NestedUnion/Vec3.pyi class Vec3 (line 12) | class Vec3(object): method GetRootAs (line 14) | def GetRootAs(cls, buf: bytes, offset: int) -> Vec3: ... method GetRootAsVec3 (line 16) | def GetRootAsVec3(cls, buf: bytes, offset: int) -> Vec3: ... method Init (line 17) | def Init(self, buf: bytes, pos: int) -> None: ... method X (line 18) | def X(self) -> float: ... method Y (line 19) | def Y(self) -> float: ... method Z (line 20) | def Z(self) -> float: ... method Test1 (line 21) | def Test1(self) -> float: ... method Test2 (line 22) | def Test2(self) -> typing.Literal[Color.Red, Color.Green, Color.Blue]:... method Test3 (line 23) | def Test3(self) -> Test | None: ... class Vec3T (line 24) | class Vec3T(object): method __init__ (line 31) | def __init__( method InitFromBuf (line 41) | def InitFromBuf(cls, buf: bytes, pos: int) -> Vec3T: ... method InitFromPackedBuf (line 43) | def InitFromPackedBuf(cls, buf: bytes, pos: int = 0) -> Vec3T: ... method InitFromObj (line 45) | def InitFromObj(cls, vec3: Vec3) -> Vec3T: ... method _UnPack (line 46) | def _UnPack(self, vec3: Vec3) -> None: ... method Pack (line 47) | def Pack(self, builder: flatbuffers.Builder) -> None: ... function Vec3Start (line 48) | def Vec3Start(builder: flatbuffers.Builder) -> None: ... function Start (line 49) | def Start(builder: flatbuffers.Builder) -> None: ... function Vec3AddX (line 50) | def Vec3AddX(builder: flatbuffers.Builder, x: float) -> None: ... function Vec3AddY (line 51) | def Vec3AddY(builder: flatbuffers.Builder, y: float) -> None: ... function Vec3AddZ (line 52) | def Vec3AddZ(builder: flatbuffers.Builder, z: float) -> None: ... function Vec3AddTest1 (line 53) | def Vec3AddTest1(builder: flatbuffers.Builder, test1: float) -> None: ... function Vec3AddTest2 (line 54) | def Vec3AddTest2(builder: flatbuffers.Builder, test2: typing.Literal[Col... function Vec3AddTest3 (line 55) | def Vec3AddTest3(builder: flatbuffers.Builder, test3: uoffset) -> None: ... function Vec3End (line 56) | def Vec3End(builder: flatbuffers.Builder) -> uoffset: ... function End (line 57) | def End(builder: flatbuffers.Builder) -> uoffset: ... FILE: tests/MyGame/Example/Race.cs type Race (line 8) | [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringE... FILE: tests/MyGame/Example/Race.go type Race (line 7) | type Race method String (line 30) | func (v Race) String() string { constant RaceNone (line 10) | RaceNone Race = -1 constant RaceHuman (line 11) | RaceHuman Race = 0 constant RaceDwarf (line 12) | RaceDwarf Race = 1 constant RaceElf (line 13) | RaceElf Race = 2 FILE: tests/MyGame/Example/Race.java class Race (line 5) | @SuppressWarnings("unused") method Race (line 7) | private Race() { } method name (line 15) | public static String name(int e) { return names[e - None]; } FILE: tests/MyGame/Example/Race.php class Race (line 6) | class Race method Name (line 20) | public static function Name($e) FILE: tests/MyGame/Example/Race.py class Race (line 5) | class Race(object): FILE: tests/MyGame/Example/Referrable.cs type Referrable (line 12) | public struct Referrable : IFlatbufferObject method ValidateVersion (line 16) | public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS... method GetRootAsReferrable (line 17) | public static Referrable GetRootAsReferrable(ByteBuffer _bb) { return ... method GetRootAsReferrable (line 18) | public static Referrable GetRootAsReferrable(ByteBuffer _bb, Referrabl... method __init (line 19) | public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } method __assign (line 20) | public Referrable __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); ... method MutateId (line 23) | public bool MutateId(ulong id) { int o = __p.__offset(4); if (o != 0) ... method CreateReferrable (line 25) | public static Offset CreateReferrable(FlatB... method StartReferrable (line 32) | public static void StartReferrable(FlatBufferBuilder builder) { builde... method AddId (line 33) | public static void AddId(FlatBufferBuilder builder, ulong id) { builde... method EndReferrable (line 34) | public static Offset EndReferrable(FlatBuff... method CreateSortedVectorOfReferrable (line 39) | public static VectorOffset CreateSortedVectorOfReferrable(FlatBufferBu... method __lookup_by_key (line 46) | public static Referrable? __lookup_by_key(int vectorLocation, ulong ke... method UnPack (line 67) | public ReferrableT UnPack() { method UnPackTo (line 72) | public void UnPackTo(ReferrableT _o) { method Pack (line 75) | public static Offset Pack(FlatBufferBuilder... class ReferrableT (line 83) | public class ReferrableT method ReferrableT (line 89) | public ReferrableT() { class ReferrableVerify (line 95) | static public class ReferrableVerify method Verify (line 97) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... FILE: tests/MyGame/Example/Referrable.go type ReferrableT (line 9) | type ReferrableT struct method Pack (line 13) | func (t *ReferrableT) Pack(builder *flatbuffers.Builder) flatbuffers.U... type Referrable (line 35) | type Referrable struct method UnPackTo (line 22) | func (rcv *Referrable) UnPackTo(t *ReferrableT) { method UnPack (line 26) | func (rcv *Referrable) UnPack() *ReferrableT { method Init (line 61) | func (rcv *Referrable) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 66) | func (rcv *Referrable) Table() flatbuffers.Table { method Id (line 70) | func (rcv *Referrable) Id() uint64 { method MutateId (line 78) | func (rcv *Referrable) MutateId(n uint64) bool { method LookupByKey (line 90) | func (rcv *Referrable) LookupByKey(key uint64, vectorLocation flatbuff... function GetRootAsReferrable (line 39) | func GetRootAsReferrable(buf []byte, offset flatbuffers.UOffsetT) *Refer... function FinishReferrableBuffer (line 46) | func FinishReferrableBuffer(builder *flatbuffers.Builder, offset flatbuf... function GetSizePrefixedRootAsReferrable (line 50) | func GetSizePrefixedRootAsReferrable(buf []byte, offset flatbuffers.UOff... function FinishSizePrefixedReferrableBuffer (line 57) | func FinishSizePrefixedReferrableBuffer(builder *flatbuffers.Builder, of... function ReferrableKeyCompare (line 82) | func ReferrableKeyCompare(o1, o2 flatbuffers.UOffsetT, buf []byte) bool { function ReferrableStart (line 119) | func ReferrableStart(builder *flatbuffers.Builder) { function ReferrableAddId (line 122) | func ReferrableAddId(builder *flatbuffers.Builder, id uint64) { function ReferrableEnd (line 125) | func ReferrableEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { FILE: tests/MyGame/Example/Referrable.java class Referrable (line 21) | @SuppressWarnings("unused") method ValidateVersion (line 23) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsReferrable (line 24) | public static Referrable getRootAsReferrable(ByteBuffer _bb) { return ... method getRootAsReferrable (line 25) | public static Referrable getRootAsReferrable(ByteBuffer _bb, Referrabl... method __init (line 26) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 27) | public Referrable __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); ... method id (line 29) | public long id() { int o = __offset(4); return o != 0 ? bb.getLong(o +... method mutateId (line 30) | public boolean mutateId(long id) { int o = __offset(4); if (o != 0) { ... method createReferrable (line 32) | public static int createReferrable(FlatBufferBuilder builder, method startReferrable (line 39) | public static void startReferrable(FlatBufferBuilder builder) { builde... method addId (line 40) | public static void addId(FlatBufferBuilder builder, long id) { builder... method endReferrable (line 41) | public static int endReferrable(FlatBufferBuilder builder) { method keysCompare (line 46) | @Override method __lookup_by_key (line 53) | public static Referrable __lookup_by_key(Referrable obj, int vectorLoc... class Vector (line 74) | public static final class Vector extends BaseVector { method __assign (line 75) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 77) | public Referrable get(int j) { return get(new Referrable(), j); } method get (line 78) | public Referrable get(Referrable obj, int j) { return obj.__assign(... method getByKey (line 79) | public Referrable getByKey(long key) { return __lookup_by_key(null,... method getByKey (line 80) | public Referrable getByKey(Referrable obj, long key) { return __loo... method unpack (line 82) | public ReferrableT unpack() { method unpackTo (line 87) | public void unpackTo(ReferrableT _o) { method pack (line 91) | public static int pack(FlatBufferBuilder builder, ReferrableT _o) { FILE: tests/MyGame/Example/Referrable.php class Referrable (line 11) | class Referrable extends Table method getRootAsReferrable (line 17) | public static function getRootAsReferrable(ByteBuffer $bb) method ReferrableIdentifier (line 23) | public static function ReferrableIdentifier() method ReferrableBufferHasIdentifier (line 28) | public static function ReferrableBufferHasIdentifier(ByteBuffer $buf) method ReferrableExtension (line 33) | public static function ReferrableExtension() method init (line 43) | public function init($_i, ByteBuffer $_bb) method getId (line 53) | public function getId() method startReferrable (line 63) | public static function startReferrable(FlatBufferBuilder $builder) method createReferrable (line 72) | public static function createReferrable(FlatBufferBuilder $builder, $id) method addId (line 85) | public static function addId(FlatBufferBuilder $builder, $id) method endReferrable (line 94) | public static function endReferrable(FlatBufferBuilder $builder) FILE: tests/MyGame/Example/Referrable.py class Referrable (line 9) | class Referrable(object): method GetRootAs (line 13) | def GetRootAs(cls, buf, offset=0): method GetRootAsReferrable (line 20) | def GetRootAsReferrable(cls, buf, offset=0): method ReferrableBufferHasIdentifier (line 24) | def ReferrableBufferHasIdentifier(cls, buf, offset, size_prefixed=False): method Init (line 28) | def Init(self, buf, pos): method Id (line 32) | def Id(self): function ReferrableStart (line 38) | def ReferrableStart(builder): function Start (line 41) | def Start(builder): function ReferrableAddId (line 44) | def ReferrableAddId(builder, id): function AddId (line 47) | def AddId(builder, id): function ReferrableEnd (line 50) | def ReferrableEnd(builder): function End (line 53) | def End(builder): class ReferrableT (line 57) | class ReferrableT(object): method __init__ (line 60) | def __init__( method InitFromBuf (line 67) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 73) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 78) | def InitFromObj(cls, referrable): method _UnPack (line 84) | def _UnPack(self, referrable): method Pack (line 90) | def Pack(self, builder): FILE: tests/MyGame/Example/ReferrableT.java class ReferrableT (line 21) | public class ReferrableT { method getId (line 24) | public long getId() { return id; } method setId (line 26) | public void setId(long id) { this.id = id; } method ReferrableT (line 29) | public ReferrableT() { FILE: tests/MyGame/Example/Stat.cs type Stat (line 12) | public struct Stat : IFlatbufferObject method ValidateVersion (line 16) | public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS... method GetRootAsStat (line 17) | public static Stat GetRootAsStat(ByteBuffer _bb) { return GetRootAsSta... method GetRootAsStat (line 18) | public static Stat GetRootAsStat(ByteBuffer _bb, Stat obj) { return (o... method __init (line 19) | public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } method __assign (line 20) | public Stat __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return... method GetIdBytes (line 24) | public Span GetIdBytes() { return __p.__vector_as_span(4, ... method GetIdBytes (line 26) | public ArraySegment? GetIdBytes() { return __p.__vector_as_array... method GetIdArray (line 28) | public byte[] GetIdArray() { return __p.__vector_as_array(4); } method MutateVal (line 30) | public bool MutateVal(long val) { int o = __p.__offset(6); if (o != 0)... method MutateCount (line 32) | public bool MutateCount(ushort count) { int o = __p.__offset(8); if (o... method CreateStat (line 34) | public static Offset CreateStat(FlatBufferBuilder... method StartStat (line 45) | public static void StartStat(FlatBufferBuilder builder) { builder.Star... method AddId (line 46) | public static void AddId(FlatBufferBuilder builder, StringOffset idOff... method AddVal (line 47) | public static void AddVal(FlatBufferBuilder builder, long val) { build... method AddCount (line 48) | public static void AddCount(FlatBufferBuilder builder, ushort count) {... method EndStat (line 49) | public static Offset EndStat(FlatBufferBuilder bu... method CreateSortedVectorOfStat (line 54) | public static VectorOffset CreateSortedVectorOfStat(FlatBufferBuilder ... method __lookup_by_key (line 61) | public static Stat? __lookup_by_key(int vectorLocation, ushort key, By... method UnPack (line 82) | public StatT UnPack() { method UnPackTo (line 87) | public void UnPackTo(StatT _o) { method Pack (line 92) | public static Offset Pack(FlatBufferBuilder build... class StatT (line 103) | public class StatT method StatT (line 112) | public StatT() { class StatVerify (line 120) | static public class StatVerify method Verify (line 122) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... FILE: tests/MyGame/Example/Stat.go type StatT (line 9) | type StatT struct method Pack (line 15) | func (t *StatT) Pack(builder *flatbuffers.Builder) flatbuffers.UOffsetT { type Stat (line 45) | type Stat struct method UnPackTo (line 30) | func (rcv *Stat) UnPackTo(t *StatT) { method UnPack (line 36) | func (rcv *Stat) UnPack() *StatT { method Init (line 71) | func (rcv *Stat) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 76) | func (rcv *Stat) Table() flatbuffers.Table { method Id (line 80) | func (rcv *Stat) Id() []byte { method Val (line 88) | func (rcv *Stat) Val() int64 { method MutateVal (line 96) | func (rcv *Stat) MutateVal(n int64) bool { method Count (line 100) | func (rcv *Stat) Count() uint16 { method MutateCount (line 108) | func (rcv *Stat) MutateCount(n uint16) bool { method LookupByKey (line 120) | func (rcv *Stat) LookupByKey(key uint16, vectorLocation flatbuffers.UO... function GetRootAsStat (line 49) | func GetRootAsStat(buf []byte, offset flatbuffers.UOffsetT) *Stat { function FinishStatBuffer (line 56) | func FinishStatBuffer(builder *flatbuffers.Builder, offset flatbuffers.U... function GetSizePrefixedRootAsStat (line 60) | func GetSizePrefixedRootAsStat(buf []byte, offset flatbuffers.UOffsetT) ... function FinishSizePrefixedStatBuffer (line 67) | func FinishSizePrefixedStatBuffer(builder *flatbuffers.Builder, offset f... function StatKeyCompare (line 112) | func StatKeyCompare(o1, o2 flatbuffers.UOffsetT, buf []byte) bool { function StatStart (line 149) | func StatStart(builder *flatbuffers.Builder) { function StatAddId (line 152) | func StatAddId(builder *flatbuffers.Builder, id flatbuffers.UOffsetT) { function StatAddVal (line 155) | func StatAddVal(builder *flatbuffers.Builder, val int64) { function StatAddCount (line 158) | func StatAddCount(builder *flatbuffers.Builder, count uint16) { function StatEnd (line 161) | func StatEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { FILE: tests/MyGame/Example/Stat.java class Stat (line 21) | @SuppressWarnings("unused") method ValidateVersion (line 23) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsStat (line 24) | public static Stat getRootAsStat(ByteBuffer _bb) { return getRootAsSta... method getRootAsStat (line 25) | public static Stat getRootAsStat(ByteBuffer _bb, Stat obj) { _bb.order... method __init (line 26) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 27) | public Stat __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return... method id (line 29) | public String id() { int o = __offset(4); return o != 0 ? __string(o +... method idAsByteBuffer (line 30) | public ByteBuffer idAsByteBuffer() { return __vector_as_bytebuffer(4, ... method idInByteBuffer (line 31) | public ByteBuffer idInByteBuffer(ByteBuffer _bb) { return __vector_in_... method val (line 32) | public long val() { int o = __offset(6); return o != 0 ? bb.getLong(o ... method mutateVal (line 33) | public boolean mutateVal(long val) { int o = __offset(6); if (o != 0) ... method count (line 34) | public int count() { int o = __offset(8); return o != 0 ? bb.getShort(... method mutateCount (line 35) | public boolean mutateCount(int count) { int o = __offset(8); if (o != ... method createStat (line 37) | public static int createStat(FlatBufferBuilder builder, method startStat (line 48) | public static void startStat(FlatBufferBuilder builder) { builder.star... method addId (line 49) | public static void addId(FlatBufferBuilder builder, int idOffset) { bu... method addVal (line 50) | public static void addVal(FlatBufferBuilder builder, long val) { build... method addCount (line 51) | public static void addCount(FlatBufferBuilder builder, int count) { bu... method endStat (line 52) | public static int endStat(FlatBufferBuilder builder) { method keysCompare (line 57) | @Override method __lookup_by_key (line 64) | public static Stat __lookup_by_key(Stat obj, int vectorLocation, int k... class Vector (line 85) | public static final class Vector extends BaseVector { method __assign (line 86) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 88) | public Stat get(int j) { return get(new Stat(), j); } method get (line 89) | public Stat get(Stat obj, int j) { return obj.__assign(__indirect(_... method getByKey (line 90) | public Stat getByKey(int key) { return __lookup_by_key(null, __vect... method getByKey (line 91) | public Stat getByKey(Stat obj, int key) { return __lookup_by_key(ob... method unpack (line 93) | public StatT unpack() { method unpackTo (line 98) | public void unpackTo(StatT _o) { method pack (line 106) | public static int pack(FlatBufferBuilder builder, StatT _o) { FILE: tests/MyGame/Example/Stat.php class Stat (line 11) | class Stat extends Table method getRootAsStat (line 17) | public static function getRootAsStat(ByteBuffer $bb) method StatIdentifier (line 23) | public static function StatIdentifier() method StatBufferHasIdentifier (line 28) | public static function StatBufferHasIdentifier(ByteBuffer $buf) method StatExtension (line 33) | public static function StatExtension() method init (line 43) | public function init($_i, ByteBuffer $_bb) method getId (line 50) | public function getId() method getVal (line 59) | public function getVal() method getCount (line 68) | public function getCount() method startStat (line 78) | public static function startStat(FlatBufferBuilder $builder) method createStat (line 87) | public static function createStat(FlatBufferBuilder $builder, $id, $va... method addId (line 102) | public static function addId(FlatBufferBuilder $builder, $id) method addVal (line 112) | public static function addVal(FlatBufferBuilder $builder, $val) method addCount (line 122) | public static function addCount(FlatBufferBuilder $builder, $count) method endStat (line 131) | public static function endStat(FlatBufferBuilder $builder) FILE: tests/MyGame/Example/Stat.py class Stat (line 9) | class Stat(object): method GetRootAs (line 13) | def GetRootAs(cls, buf, offset=0): method GetRootAsStat (line 20) | def GetRootAsStat(cls, buf, offset=0): method StatBufferHasIdentifier (line 24) | def StatBufferHasIdentifier(cls, buf, offset, size_prefixed=False): method Init (line 28) | def Init(self, buf, pos): method Id (line 32) | def Id(self): method Val (line 39) | def Val(self): method Count (line 46) | def Count(self): function StatStart (line 52) | def StatStart(builder): function Start (line 55) | def Start(builder): function StatAddId (line 58) | def StatAddId(builder, id): function AddId (line 61) | def AddId(builder, id): function StatAddVal (line 64) | def StatAddVal(builder, val): function AddVal (line 67) | def AddVal(builder, val): function StatAddCount (line 70) | def StatAddCount(builder, count): function AddCount (line 73) | def AddCount(builder, count): function StatEnd (line 76) | def StatEnd(builder): function End (line 79) | def End(builder): class StatT (line 83) | class StatT(object): method __init__ (line 86) | def __init__( method InitFromBuf (line 97) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 103) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 108) | def InitFromObj(cls, stat): method _UnPack (line 114) | def _UnPack(self, stat): method Pack (line 122) | def Pack(self, builder): FILE: tests/MyGame/Example/StatT.java class StatT (line 21) | public class StatT { method getId (line 26) | public String getId() { return id; } method setId (line 28) | public void setId(String id) { this.id = id; } method getVal (line 30) | public long getVal() { return val; } method setVal (line 32) | public void setVal(long val) { this.val = val; } method getCount (line 34) | public int getCount() { return count; } method setCount (line 36) | public void setCount(int count) { this.count = count; } method StatT (line 39) | public StatT() { FILE: tests/MyGame/Example/StructOfStructs.cs type StructOfStructs (line 12) | public struct StructOfStructs : IFlatbufferObject method __init (line 16) | public void __init(int _i, ByteBuffer _bb) { __p = new Struct(_i, _bb); } method __assign (line 17) | public StructOfStructs __assign(int _i, ByteBuffer _bb) { __init(_i, _... method CreateStructOfStructs (line 23) | public static Offset CreateStructOfStr... method UnPack (line 37) | public StructOfStructsT UnPack() { method UnPackTo (line 42) | public void UnPackTo(StructOfStructsT _o) { method Pack (line 47) | public static Offset Pack(FlatBufferBu... class StructOfStructsT (line 66) | public class StructOfStructsT method StructOfStructsT (line 75) | public StructOfStructsT() { FILE: tests/MyGame/Example/StructOfStructs.go type StructOfStructsT (line 9) | type StructOfStructsT struct method Pack (line 15) | func (t *StructOfStructsT) Pack(builder *flatbuffers.Builder) flatbuff... type StructOfStructs (line 36) | type StructOfStructs struct method UnPackTo (line 21) | func (rcv *StructOfStructs) UnPackTo(t *StructOfStructsT) { method UnPack (line 27) | func (rcv *StructOfStructs) UnPack() *StructOfStructsT { method Init (line 40) | func (rcv *StructOfStructs) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 45) | func (rcv *StructOfStructs) Table() flatbuffers.Table { method A (line 49) | func (rcv *StructOfStructs) A(obj *Ability) *Ability { method B (line 56) | func (rcv *StructOfStructs) B(obj *Test) *Test { method C (line 63) | func (rcv *StructOfStructs) C(obj *Ability) *Ability { function CreateStructOfStructs (line 71) | func CreateStructOfStructs(builder *flatbuffers.Builder, a_id uint32, a_... FILE: tests/MyGame/Example/StructOfStructs.java class StructOfStructs (line 21) | @SuppressWarnings("unused") method __init (line 23) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 24) | public StructOfStructs __assign(int _i, ByteBuffer _bb) { __init(_i, _... method a (line 26) | public MyGame.Example.Ability a() { return a(new MyGame.Example.Abilit... method a (line 27) | public MyGame.Example.Ability a(MyGame.Example.Ability obj) { return o... method b (line 28) | public MyGame.Example.Test b() { return b(new MyGame.Example.Test()); } method b (line 29) | public MyGame.Example.Test b(MyGame.Example.Test obj) { return obj.__a... method c (line 30) | public MyGame.Example.Ability c() { return c(new MyGame.Example.Abilit... method c (line 31) | public MyGame.Example.Ability c(MyGame.Example.Ability obj) { return o... method createStructOfStructs (line 33) | public static int createStructOfStructs(FlatBufferBuilder builder, lon... class Vector (line 48) | public static final class Vector extends BaseVector { method __assign (line 49) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 51) | public StructOfStructs get(int j) { return get(new StructOfStructs()... method get (line 52) | public StructOfStructs get(StructOfStructs obj, int j) { return obj... method unpack (line 54) | public StructOfStructsT unpack() { method unpackTo (line 59) | public void unpackTo(StructOfStructsT _o) { method pack (line 64) | public static int pack(FlatBufferBuilder builder, StructOfStructsT _o) { FILE: tests/MyGame/Example/StructOfStructs.php class StructOfStructs (line 11) | class StructOfStructs extends Struct method init (line 18) | public function init($_i, ByteBuffer $_bb) method getA (line 28) | public function getA() method getB (line 38) | public function getB() method getC (line 48) | public function getC() method createStructOfStructs (line 59) | public static function createStructOfStructs(FlatBufferBuilder $builde... FILE: tests/MyGame/Example/StructOfStructs.py class StructOfStructs (line 9) | class StructOfStructs(object): method SizeOf (line 13) | def SizeOf(cls): method Init (line 17) | def Init(self, buf, pos): method A (line 21) | def A(self, obj): method B (line 26) | def B(self, obj): method C (line 31) | def C(self, obj): function CreateStructOfStructs (line 36) | def CreateStructOfStructs(builder, a_id, a_distance, b_a, b_b, c_id, c_d... class StructOfStructsT (line 57) | class StructOfStructsT(object): method __init__ (line 60) | def __init__( method InitFromBuf (line 71) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 77) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 82) | def InitFromObj(cls, structOfStructs): method _UnPack (line 88) | def _UnPack(self, structOfStructs): method Pack (line 99) | def Pack(self, builder): FILE: tests/MyGame/Example/StructOfStructsOfStructs.cs type StructOfStructsOfStructs (line 12) | public struct StructOfStructsOfStructs : IFlatbufferObject method __init (line 16) | public void __init(int _i, ByteBuffer _bb) { __p = new Struct(_i, _bb); } method __assign (line 17) | public StructOfStructsOfStructs __assign(int _i, ByteBuffer _bb) { __i... method CreateStructOfStructsOfStructs (line 21) | public static Offset CreateSt... method UnPack (line 36) | public StructOfStructsOfStructsT UnPack() { method UnPackTo (line 41) | public void UnPackTo(StructOfStructsOfStructsT _o) { method Pack (line 44) | public static Offset Pack(Fla... class StructOfStructsOfStructsT (line 63) | public class StructOfStructsOfStructsT method StructOfStructsOfStructsT (line 68) | public StructOfStructsOfStructsT() { FILE: tests/MyGame/Example/StructOfStructsOfStructs.go type StructOfStructsOfStructsT (line 9) | type StructOfStructsOfStructsT struct method Pack (line 13) | func (t *StructOfStructsOfStructsT) Pack(builder *flatbuffers.Builder)... type StructOfStructsOfStructs (line 32) | type StructOfStructsOfStructs struct method UnPackTo (line 19) | func (rcv *StructOfStructsOfStructs) UnPackTo(t *StructOfStructsOfStru... method UnPack (line 23) | func (rcv *StructOfStructsOfStructs) UnPack() *StructOfStructsOfStruct... method Init (line 36) | func (rcv *StructOfStructsOfStructs) Init(buf []byte, i flatbuffers.UO... method Table (line 41) | func (rcv *StructOfStructsOfStructs) Table() flatbuffers.Table { method A (line 45) | func (rcv *StructOfStructsOfStructs) A(obj *StructOfStructs) *StructOf... function CreateStructOfStructsOfStructs (line 53) | func CreateStructOfStructsOfStructs(builder *flatbuffers.Builder, a_a_id... FILE: tests/MyGame/Example/StructOfStructsOfStructs.java class StructOfStructsOfStructs (line 21) | @SuppressWarnings("unused") method __init (line 23) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 24) | public StructOfStructsOfStructs __assign(int _i, ByteBuffer _bb) { __i... method a (line 26) | public MyGame.Example.StructOfStructs a() { return a(new MyGame.Exampl... method a (line 27) | public MyGame.Example.StructOfStructs a(MyGame.Example.StructOfStructs... method createStructOfStructsOfStructs (line 29) | public static int createStructOfStructsOfStructs(FlatBufferBuilder bui... class Vector (line 45) | public static final class Vector extends BaseVector { method __assign (line 46) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 48) | public StructOfStructsOfStructs get(int j) { return get(new StructOf... method get (line 49) | public StructOfStructsOfStructs get(StructOfStructsOfStructs obj, in... method unpack (line 51) | public StructOfStructsOfStructsT unpack() { method unpackTo (line 56) | public void unpackTo(StructOfStructsOfStructsT _o) { method pack (line 59) | public static int pack(FlatBufferBuilder builder, StructOfStructsOfStr... FILE: tests/MyGame/Example/StructOfStructsOfStructs.php class StructOfStructsOfStructs (line 11) | class StructOfStructsOfStructs extends Struct method init (line 18) | public function init($_i, ByteBuffer $_bb) method getA (line 28) | public function getA() method createStructOfStructsOfStructs (line 39) | public static function createStructOfStructsOfStructs(FlatBufferBuilde... FILE: tests/MyGame/Example/StructOfStructsOfStructs.py class StructOfStructsOfStructs (line 9) | class StructOfStructsOfStructs(object): method SizeOf (line 13) | def SizeOf(cls): method Init (line 17) | def Init(self, buf, pos): method A (line 21) | def A(self, obj): function CreateStructOfStructsOfStructs (line 26) | def CreateStructOfStructsOfStructs(builder, a_a_id, a_a_distance, a_b_a,... class StructOfStructsOfStructsT (line 47) | class StructOfStructsOfStructsT(object): method __init__ (line 50) | def __init__( method InitFromBuf (line 57) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 63) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 68) | def InitFromObj(cls, structOfStructsOfStructs): method _UnPack (line 74) | def _UnPack(self, structOfStructsOfStructs): method Pack (line 81) | def Pack(self, builder): FILE: tests/MyGame/Example/StructOfStructsOfStructsT.java class StructOfStructsOfStructsT (line 21) | public class StructOfStructsOfStructsT { method getA (line 24) | public MyGame.Example.StructOfStructsT getA() { return a; } method setA (line 26) | public void setA(MyGame.Example.StructOfStructsT a) { this.a = a; } method StructOfStructsOfStructsT (line 29) | public StructOfStructsOfStructsT() { FILE: tests/MyGame/Example/StructOfStructsT.java class StructOfStructsT (line 21) | public class StructOfStructsT { method getA (line 26) | public MyGame.Example.AbilityT getA() { return a; } method setA (line 28) | public void setA(MyGame.Example.AbilityT a) { this.a = a; } method getB (line 30) | public MyGame.Example.TestT getB() { return b; } method setB (line 32) | public void setB(MyGame.Example.TestT b) { this.b = b; } method getC (line 34) | public MyGame.Example.AbilityT getC() { return c; } method setC (line 36) | public void setC(MyGame.Example.AbilityT c) { this.c = c; } method StructOfStructsT (line 39) | public StructOfStructsT() { FILE: tests/MyGame/Example/Test.cs type Test (line 12) | public struct Test : IFlatbufferObject method __init (line 16) | public void __init(int _i, ByteBuffer _bb) { __p = new Struct(_i, _bb); } method __assign (line 17) | public Test __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return... method MutateA (line 20) | public void MutateA(short a) { __p.bb.PutShort(__p.bb_pos + 0, a); } method MutateB (line 22) | public void MutateB(sbyte b) { __p.bb.PutSbyte(__p.bb_pos + 2, b); } method CreateTest (line 24) | public static Offset CreateTest(FlatBufferBuilder... method UnPack (line 31) | public TestT UnPack() { method UnPackTo (line 36) | public void UnPackTo(TestT _o) { method Pack (line 40) | public static Offset Pack(FlatBufferBuilder build... class TestT (line 49) | public class TestT method TestT (line 56) | public TestT() { FILE: tests/MyGame/Example/Test.go type TestT (line 9) | type TestT struct method Pack (line 14) | func (t *TestT) Pack(builder *flatbuffers.Builder) flatbuffers.UOffsetT { type Test (line 34) | type Test struct method UnPackTo (line 20) | func (rcv *Test) UnPackTo(t *TestT) { method UnPack (line 25) | func (rcv *Test) UnPack() *TestT { method Init (line 38) | func (rcv *Test) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 43) | func (rcv *Test) Table() flatbuffers.Table { method A (line 47) | func (rcv *Test) A() int16 { method MutateA (line 50) | func (rcv *Test) MutateA(n int16) bool { method B (line 54) | func (rcv *Test) B() int8 { method MutateB (line 57) | func (rcv *Test) MutateB(n int8) bool { function CreateTest (line 61) | func CreateTest(builder *flatbuffers.Builder, a int16, b int8) flatbuffe... FILE: tests/MyGame/Example/Test.java class Test (line 21) | @SuppressWarnings("unused") method __init (line 23) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 24) | public Test __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return... method a (line 26) | public short a() { return bb.getShort(bb_pos + 0); } method mutateA (line 27) | public void mutateA(short a) { bb.putShort(bb_pos + 0, a); } method b (line 28) | public byte b() { return bb.get(bb_pos + 2); } method mutateB (line 29) | public void mutateB(byte b) { bb.put(bb_pos + 2, b); } method createTest (line 31) | public static int createTest(FlatBufferBuilder builder, short a, byte ... class Vector (line 39) | public static final class Vector extends BaseVector { method __assign (line 40) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 42) | public Test get(int j) { return get(new Test(), j); } method get (line 43) | public Test get(Test obj, int j) { return obj.__assign(__element(j)... method unpack (line 45) | public TestT unpack() { method unpackTo (line 50) | public void unpackTo(TestT _o) { method pack (line 56) | public static int pack(FlatBufferBuilder builder, TestT _o) { FILE: tests/MyGame/Example/Test.php class Test (line 11) | class Test extends Struct method init (line 18) | public function init($_i, ByteBuffer $_bb) method GetA (line 28) | public function GetA() method GetB (line 36) | public function GetB() method createTest (line 45) | public static function createTest(FlatBufferBuilder $builder, $a, $b) FILE: tests/MyGame/Example/Test.py class Test (line 9) | class Test(object): method SizeOf (line 13) | def SizeOf(cls): method Init (line 17) | def Init(self, buf, pos): method A (line 21) | def A(self): return self._tab.Get(flatbuffers.number_types.Int16Flags,... method B (line 23) | def B(self): return self._tab.Get(flatbuffers.number_types.Int8Flags, ... function CreateTest (line 25) | def CreateTest(builder, a, b): class TestT (line 33) | class TestT(object): method __init__ (line 36) | def __init__( method InitFromBuf (line 45) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 51) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 56) | def InitFromObj(cls, test): method _UnPack (line 62) | def _UnPack(self, test): method Pack (line 69) | def Pack(self, builder): FILE: tests/MyGame/Example/TestEnum.cs type TestEnum (line 8) | [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringE... FILE: tests/MyGame/Example/TestEnum.java class TestEnum (line 5) | @SuppressWarnings("unused") method TestEnum (line 7) | private TestEnum() { } method name (line 14) | public static String name(int e) { return names[e]; } FILE: tests/MyGame/Example/TestEnum.py class TestEnum (line 5) | class TestEnum(object): FILE: tests/MyGame/Example/TestEnum.pyi class TestEnum (line 11) | class TestEnum(object): FILE: tests/MyGame/Example/TestSimpleTableWithEnum.cs type TestSimpleTableWithEnum (line 12) | internal partial struct TestSimpleTableWithEnum : IFlatbufferObject method ValidateVersion (line 16) | public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS... method GetRootAsTestSimpleTableWithEnum (line 17) | public static TestSimpleTableWithEnum GetRootAsTestSimpleTableWithEnum... method GetRootAsTestSimpleTableWithEnum (line 18) | public static TestSimpleTableWithEnum GetRootAsTestSimpleTableWithEnum... method __init (line 19) | public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } method __assign (line 20) | public TestSimpleTableWithEnum __assign(int _i, ByteBuffer _bb) { __in... method MutateColor (line 23) | public bool MutateColor(MyGame.Example.Color color) { int o = __p.__of... method CreateTestSimpleTableWithEnum (line 25) | public static Offset CreateTes... method StartTestSimpleTableWithEnum (line 32) | public static void StartTestSimpleTableWithEnum(FlatBufferBuilder buil... method AddColor (line 33) | public static void AddColor(FlatBufferBuilder builder, MyGame.Example.... method EndTestSimpleTableWithEnum (line 34) | public static Offset EndTestSi... method UnPack (line 38) | public TestSimpleTableWithEnumT UnPack() { method UnPackTo (line 43) | public void UnPackTo(TestSimpleTableWithEnumT _o) { method Pack (line 46) | public static Offset Pack(Flat... class TestSimpleTableWithEnumT (line 54) | internal partial class TestSimpleTableWithEnumT method TestSimpleTableWithEnumT (line 59) | public TestSimpleTableWithEnumT() { class TestSimpleTableWithEnumVerify (line 65) | static public class TestSimpleTableWithEnumVerify method Verify (line 67) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... FILE: tests/MyGame/Example/TestSimpleTableWithEnum.go type TestSimpleTableWithEnumT (line 9) | type TestSimpleTableWithEnumT struct method Pack (line 13) | func (t *TestSimpleTableWithEnumT) Pack(builder *flatbuffers.Builder) ... type TestSimpleTableWithEnum (line 35) | type TestSimpleTableWithEnum struct method UnPackTo (line 22) | func (rcv *TestSimpleTableWithEnum) UnPackTo(t *TestSimpleTableWithEnu... method UnPack (line 26) | func (rcv *TestSimpleTableWithEnum) UnPack() *TestSimpleTableWithEnumT { method Init (line 61) | func (rcv *TestSimpleTableWithEnum) Init(buf []byte, i flatbuffers.UOf... method Table (line 66) | func (rcv *TestSimpleTableWithEnum) Table() flatbuffers.Table { method Color (line 70) | func (rcv *TestSimpleTableWithEnum) Color() Color { method MutateColor (line 78) | func (rcv *TestSimpleTableWithEnum) MutateColor(n Color) bool { function GetRootAsTestSimpleTableWithEnum (line 39) | func GetRootAsTestSimpleTableWithEnum(buf []byte, offset flatbuffers.UOf... function FinishTestSimpleTableWithEnumBuffer (line 46) | func FinishTestSimpleTableWithEnumBuffer(builder *flatbuffers.Builder, o... function GetSizePrefixedRootAsTestSimpleTableWithEnum (line 50) | func GetSizePrefixedRootAsTestSimpleTableWithEnum(buf []byte, offset fla... function FinishSizePrefixedTestSimpleTableWithEnumBuffer (line 57) | func FinishSizePrefixedTestSimpleTableWithEnumBuffer(builder *flatbuffer... function TestSimpleTableWithEnumStart (line 82) | func TestSimpleTableWithEnumStart(builder *flatbuffers.Builder) { function TestSimpleTableWithEnumAddColor (line 85) | func TestSimpleTableWithEnumAddColor(builder *flatbuffers.Builder, color... function TestSimpleTableWithEnumEnd (line 88) | func TestSimpleTableWithEnumEnd(builder *flatbuffers.Builder) flatbuffer... FILE: tests/MyGame/Example/TestSimpleTableWithEnum.java class TestSimpleTableWithEnum (line 21) | @SuppressWarnings("unused") method ValidateVersion (line 23) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsTestSimpleTableWithEnum (line 24) | public static TestSimpleTableWithEnum getRootAsTestSimpleTableWithEnum... method getRootAsTestSimpleTableWithEnum (line 25) | public static TestSimpleTableWithEnum getRootAsTestSimpleTableWithEnum... method __init (line 26) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 27) | public TestSimpleTableWithEnum __assign(int _i, ByteBuffer _bb) { __in... method color (line 29) | public int color() { int o = __offset(4); return o != 0 ? bb.get(o + b... method mutateColor (line 30) | public boolean mutateColor(int color) { int o = __offset(4); if (o != ... method createTestSimpleTableWithEnum (line 32) | public static int createTestSimpleTableWithEnum(FlatBufferBuilder buil... method startTestSimpleTableWithEnum (line 39) | public static void startTestSimpleTableWithEnum(FlatBufferBuilder buil... method addColor (line 40) | public static void addColor(FlatBufferBuilder builder, int color) { bu... method endTestSimpleTableWithEnum (line 41) | public static int endTestSimpleTableWithEnum(FlatBufferBuilder builder) { class Vector (line 46) | static final class Vector extends BaseVector { method __assign (line 47) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 49) | public TestSimpleTableWithEnum get(int j) { return get(new TestSimpl... method get (line 50) | public TestSimpleTableWithEnum get(TestSimpleTableWithEnum obj, int ... method unpack (line 52) | public TestSimpleTableWithEnumT unpack() { method unpackTo (line 57) | public void unpackTo(TestSimpleTableWithEnumT _o) { method pack (line 61) | public static int pack(FlatBufferBuilder builder, TestSimpleTableWithE... FILE: tests/MyGame/Example/TestSimpleTableWithEnum.php class TestSimpleTableWithEnum (line 11) | class TestSimpleTableWithEnum extends Table method getRootAsTestSimpleTableWithEnum (line 17) | public static function getRootAsTestSimpleTableWithEnum(ByteBuffer $bb) method TestSimpleTableWithEnumIdentifier (line 23) | public static function TestSimpleTableWithEnumIdentifier() method TestSimpleTableWithEnumBufferHasIdentifier (line 28) | public static function TestSimpleTableWithEnumBufferHasIdentifier(Byte... method TestSimpleTableWithEnumExtension (line 33) | public static function TestSimpleTableWithEnumExtension() method init (line 43) | public function init($_i, ByteBuffer $_bb) method getColor (line 53) | public function getColor() method startTestSimpleTableWithEnum (line 63) | public static function startTestSimpleTableWithEnum(FlatBufferBuilder ... method createTestSimpleTableWithEnum (line 72) | public static function createTestSimpleTableWithEnum(FlatBufferBuilder... method addColor (line 85) | public static function addColor(FlatBufferBuilder $builder, $color) method endTestSimpleTableWithEnum (line 94) | public static function endTestSimpleTableWithEnum(FlatBufferBuilder $b... FILE: tests/MyGame/Example/TestSimpleTableWithEnum.py class TestSimpleTableWithEnum (line 9) | class TestSimpleTableWithEnum(object): method GetRootAs (line 13) | def GetRootAs(cls, buf, offset=0): method GetRootAsTestSimpleTableWithEnum (line 20) | def GetRootAsTestSimpleTableWithEnum(cls, buf, offset=0): method TestSimpleTableWithEnumBufferHasIdentifier (line 24) | def TestSimpleTableWithEnumBufferHasIdentifier(cls, buf, offset, size_... method Init (line 28) | def Init(self, buf, pos): method Color (line 32) | def Color(self): function TestSimpleTableWithEnumStart (line 38) | def TestSimpleTableWithEnumStart(builder): function Start (line 41) | def Start(builder): function TestSimpleTableWithEnumAddColor (line 44) | def TestSimpleTableWithEnumAddColor(builder, color): function AddColor (line 47) | def AddColor(builder, color): function TestSimpleTableWithEnumEnd (line 50) | def TestSimpleTableWithEnumEnd(builder): function End (line 53) | def End(builder): class TestSimpleTableWithEnumT (line 57) | class TestSimpleTableWithEnumT(object): method __init__ (line 60) | def __init__( method InitFromBuf (line 67) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 73) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 78) | def InitFromObj(cls, testSimpleTableWithEnum): method _UnPack (line 84) | def _UnPack(self, testSimpleTableWithEnum): method Pack (line 90) | def Pack(self, builder): FILE: tests/MyGame/Example/TestSimpleTableWithEnumT.java class TestSimpleTableWithEnumT (line 21) | class TestSimpleTableWithEnumT { method getColor (line 24) | public int getColor() { return color; } method setColor (line 26) | public void setColor(int color) { this.color = color; } method TestSimpleTableWithEnumT (line 29) | public TestSimpleTableWithEnumT() { FILE: tests/MyGame/Example/TestT.java class TestT (line 21) | public class TestT { method getA (line 25) | public short getA() { return a; } method setA (line 27) | public void setA(short a) { this.a = a; } method getB (line 29) | public byte getB() { return b; } method setB (line 31) | public void setB(byte b) { this.b = b; } method TestT (line 34) | public TestT() { FILE: tests/MyGame/Example/TypeAliases.cs type TypeAliases (line 12) | public struct TypeAliases : IFlatbufferObject method ValidateVersion (line 16) | public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS... method GetRootAsTypeAliases (line 17) | public static TypeAliases GetRootAsTypeAliases(ByteBuffer _bb) { retur... method GetRootAsTypeAliases (line 18) | public static TypeAliases GetRootAsTypeAliases(ByteBuffer _bb, TypeAli... method __init (line 19) | public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } method __assign (line 20) | public TypeAliases __assign(int _i, ByteBuffer _bb) { __init(_i, _bb);... method MutateI8 (line 23) | public bool MutateI8(sbyte i8) { int o = __p.__offset(4); if (o != 0) ... method MutateU8 (line 25) | public bool MutateU8(byte u8) { int o = __p.__offset(6); if (o != 0) {... method MutateI16 (line 27) | public bool MutateI16(short i16) { int o = __p.__offset(8); if (o != 0... method MutateU16 (line 29) | public bool MutateU16(ushort u16) { int o = __p.__offset(10); if (o !=... method MutateI32 (line 31) | public bool MutateI32(int i32) { int o = __p.__offset(12); if (o != 0)... method MutateU32 (line 33) | public bool MutateU32(uint u32) { int o = __p.__offset(14); if (o != 0... method MutateI64 (line 35) | public bool MutateI64(long i64) { int o = __p.__offset(16); if (o != 0... method MutateU64 (line 37) | public bool MutateU64(ulong u64) { int o = __p.__offset(18); if (o != ... method MutateF32 (line 39) | public bool MutateF32(float f32) { int o = __p.__offset(20); if (o != ... method MutateF64 (line 41) | public bool MutateF64(double f64) { int o = __p.__offset(22); if (o !=... method V8 (line 42) | public sbyte V8(int j) { int o = __p.__offset(24); return o != 0 ? __p... method GetV8Bytes (line 45) | public Span GetV8Bytes() { return __p.__vector_as_span(2... method GetV8Bytes (line 47) | public ArraySegment? GetV8Bytes() { return __p.__vector_as_array... method GetV8Array (line 49) | public sbyte[] GetV8Array() { return __p.__vector_as_array(24); } method MutateV8 (line 50) | public bool MutateV8(int j, sbyte v8) { int o = __p.__offset(24); if (... method Vf64 (line 51) | public double Vf64(int j) { int o = __p.__offset(26); return o != 0 ? ... method GetVf64Bytes (line 54) | public Span GetVf64Bytes() { return __p.__vector_as_span? GetVf64Bytes() { return __p.__vector_as_arr... method GetVf64Array (line 58) | public double[] GetVf64Array() { return __p.__vector_as_array(... method MutateVf64 (line 59) | public bool MutateVf64(int j, double vf64) { int o = __p.__offset(26);... method CreateTypeAliases (line 61) | public static Offset CreateTypeAliases(Fla... method StartTypeAliases (line 90) | public static void StartTypeAliases(FlatBufferBuilder builder) { build... method AddI8 (line 91) | public static void AddI8(FlatBufferBuilder builder, sbyte i8) { builde... method AddU8 (line 92) | public static void AddU8(FlatBufferBuilder builder, byte u8) { builder... method AddI16 (line 93) | public static void AddI16(FlatBufferBuilder builder, short i16) { buil... method AddU16 (line 94) | public static void AddU16(FlatBufferBuilder builder, ushort u16) { bui... method AddI32 (line 95) | public static void AddI32(FlatBufferBuilder builder, int i32) { builde... method AddU32 (line 96) | public static void AddU32(FlatBufferBuilder builder, uint u32) { build... method AddI64 (line 97) | public static void AddI64(FlatBufferBuilder builder, long i64) { build... method AddU64 (line 98) | public static void AddU64(FlatBufferBuilder builder, ulong u64) { buil... method AddF32 (line 99) | public static void AddF32(FlatBufferBuilder builder, float f32) { buil... method AddF64 (line 100) | public static void AddF64(FlatBufferBuilder builder, double f64) { bui... method AddV8 (line 101) | public static void AddV8(FlatBufferBuilder builder, VectorOffset v8Off... method CreateV8Vector (line 102) | public static VectorOffset CreateV8Vector(FlatBufferBuilder builder, s... method CreateV8VectorBlock (line 103) | public static VectorOffset CreateV8VectorBlock(FlatBufferBuilder build... method CreateV8VectorBlock (line 104) | public static VectorOffset CreateV8VectorBlock(FlatBufferBuilder build... method CreateV8VectorBlock (line 105) | public static VectorOffset CreateV8VectorBlock(FlatBufferBuilder build... method StartV8Vector (line 106) | public static void StartV8Vector(FlatBufferBuilder builder, int numEle... method AddVf64 (line 107) | public static void AddVf64(FlatBufferBuilder builder, VectorOffset vf6... method CreateVf64Vector (line 108) | public static VectorOffset CreateVf64Vector(FlatBufferBuilder builder,... method CreateVf64VectorBlock (line 109) | public static VectorOffset CreateVf64VectorBlock(FlatBufferBuilder bui... method CreateVf64VectorBlock (line 110) | public static VectorOffset CreateVf64VectorBlock(FlatBufferBuilder bui... method CreateVf64VectorBlock (line 111) | public static VectorOffset CreateVf64VectorBlock(FlatBufferBuilder bui... method StartVf64Vector (line 112) | public static void StartVf64Vector(FlatBufferBuilder builder, int numE... method EndTypeAliases (line 113) | public static Offset EndTypeAliases(FlatBu... method UnPack (line 117) | public TypeAliasesT UnPack() { method UnPackTo (line 122) | public void UnPackTo(TypeAliasesT _o) { method Pack (line 138) | public static Offset Pack(FlatBufferBuilde... class TypeAliasesT (line 167) | public class TypeAliasesT method TypeAliasesT (line 194) | public TypeAliasesT() { class TypeAliasesVerify (line 211) | static public class TypeAliasesVerify method Verify (line 213) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... FILE: tests/MyGame/Example/TypeAliases.go type TypeAliasesT (line 9) | type TypeAliasesT struct method Pack (line 24) | func (t *TypeAliasesT) Pack(builder *flatbuffers.Builder) flatbuffers.... type TypeAliases (line 94) | type TypeAliases struct method UnPackTo (line 62) | func (rcv *TypeAliases) UnPackTo(t *TypeAliasesT) { method UnPack (line 85) | func (rcv *TypeAliases) UnPack() *TypeAliasesT { method Init (line 120) | func (rcv *TypeAliases) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 125) | func (rcv *TypeAliases) Table() flatbuffers.Table { method I8 (line 129) | func (rcv *TypeAliases) I8() int8 { method MutateI8 (line 137) | func (rcv *TypeAliases) MutateI8(n int8) bool { method U8 (line 141) | func (rcv *TypeAliases) U8() byte { method MutateU8 (line 149) | func (rcv *TypeAliases) MutateU8(n byte) bool { method I16 (line 153) | func (rcv *TypeAliases) I16() int16 { method MutateI16 (line 161) | func (rcv *TypeAliases) MutateI16(n int16) bool { method U16 (line 165) | func (rcv *TypeAliases) U16() uint16 { method MutateU16 (line 173) | func (rcv *TypeAliases) MutateU16(n uint16) bool { method I32 (line 177) | func (rcv *TypeAliases) I32() int32 { method MutateI32 (line 185) | func (rcv *TypeAliases) MutateI32(n int32) bool { method U32 (line 189) | func (rcv *TypeAliases) U32() uint32 { method MutateU32 (line 197) | func (rcv *TypeAliases) MutateU32(n uint32) bool { method I64 (line 201) | func (rcv *TypeAliases) I64() int64 { method MutateI64 (line 209) | func (rcv *TypeAliases) MutateI64(n int64) bool { method U64 (line 213) | func (rcv *TypeAliases) U64() uint64 { method MutateU64 (line 221) | func (rcv *TypeAliases) MutateU64(n uint64) bool { method F32 (line 225) | func (rcv *TypeAliases) F32() float32 { method MutateF32 (line 233) | func (rcv *TypeAliases) MutateF32(n float32) bool { method F64 (line 237) | func (rcv *TypeAliases) F64() float64 { method MutateF64 (line 245) | func (rcv *TypeAliases) MutateF64(n float64) bool { method V8 (line 249) | func (rcv *TypeAliases) V8(j int) int8 { method V8Length (line 258) | func (rcv *TypeAliases) V8Length() int { method MutateV8 (line 266) | func (rcv *TypeAliases) MutateV8(j int, n int8) bool { method Vf64 (line 275) | func (rcv *TypeAliases) Vf64(j int) float64 { method Vf64Length (line 284) | func (rcv *TypeAliases) Vf64Length() int { method MutateVf64 (line 292) | func (rcv *TypeAliases) MutateVf64(j int, n float64) bool { function GetRootAsTypeAliases (line 98) | func GetRootAsTypeAliases(buf []byte, offset flatbuffers.UOffsetT) *Type... function FinishTypeAliasesBuffer (line 105) | func FinishTypeAliasesBuffer(builder *flatbuffers.Builder, offset flatbu... function GetSizePrefixedRootAsTypeAliases (line 109) | func GetSizePrefixedRootAsTypeAliases(buf []byte, offset flatbuffers.UOf... function FinishSizePrefixedTypeAliasesBuffer (line 116) | func FinishSizePrefixedTypeAliasesBuffer(builder *flatbuffers.Builder, o... function TypeAliasesStart (line 301) | func TypeAliasesStart(builder *flatbuffers.Builder) { function TypeAliasesAddI8 (line 304) | func TypeAliasesAddI8(builder *flatbuffers.Builder, i8 int8) { function TypeAliasesAddU8 (line 307) | func TypeAliasesAddU8(builder *flatbuffers.Builder, u8 byte) { function TypeAliasesAddI16 (line 310) | func TypeAliasesAddI16(builder *flatbuffers.Builder, i16 int16) { function TypeAliasesAddU16 (line 313) | func TypeAliasesAddU16(builder *flatbuffers.Builder, u16 uint16) { function TypeAliasesAddI32 (line 316) | func TypeAliasesAddI32(builder *flatbuffers.Builder, i32 int32) { function TypeAliasesAddU32 (line 319) | func TypeAliasesAddU32(builder *flatbuffers.Builder, u32 uint32) { function TypeAliasesAddI64 (line 322) | func TypeAliasesAddI64(builder *flatbuffers.Builder, i64 int64) { function TypeAliasesAddU64 (line 325) | func TypeAliasesAddU64(builder *flatbuffers.Builder, u64 uint64) { function TypeAliasesAddF32 (line 328) | func TypeAliasesAddF32(builder *flatbuffers.Builder, f32 float32) { function TypeAliasesAddF64 (line 331) | func TypeAliasesAddF64(builder *flatbuffers.Builder, f64 float64) { function TypeAliasesAddV8 (line 334) | func TypeAliasesAddV8(builder *flatbuffers.Builder, v8 flatbuffers.UOffs... function TypeAliasesStartV8Vector (line 337) | func TypeAliasesStartV8Vector(builder *flatbuffers.Builder, numElems int... function TypeAliasesAddVf64 (line 340) | func TypeAliasesAddVf64(builder *flatbuffers.Builder, vf64 flatbuffers.U... function TypeAliasesStartVf64Vector (line 343) | func TypeAliasesStartVf64Vector(builder *flatbuffers.Builder, numElems i... function TypeAliasesEnd (line 346) | func TypeAliasesEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { FILE: tests/MyGame/Example/TypeAliases.java class TypeAliases (line 21) | @SuppressWarnings("unused") method ValidateVersion (line 23) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsTypeAliases (line 24) | public static TypeAliases getRootAsTypeAliases(ByteBuffer _bb) { retur... method getRootAsTypeAliases (line 25) | public static TypeAliases getRootAsTypeAliases(ByteBuffer _bb, TypeAli... method __init (line 26) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 27) | public TypeAliases __assign(int _i, ByteBuffer _bb) { __init(_i, _bb);... method i8 (line 29) | public byte i8() { int o = __offset(4); return o != 0 ? bb.get(o + bb_... method mutateI8 (line 30) | public boolean mutateI8(byte i8) { int o = __offset(4); if (o != 0) { ... method u8 (line 31) | public int u8() { int o = __offset(6); return o != 0 ? bb.get(o + bb_p... method mutateU8 (line 32) | public boolean mutateU8(int u8) { int o = __offset(6); if (o != 0) { b... method i16 (line 33) | public short i16() { int o = __offset(8); return o != 0 ? bb.getShort(... method mutateI16 (line 34) | public boolean mutateI16(short i16) { int o = __offset(8); if (o != 0)... method u16 (line 35) | public int u16() { int o = __offset(10); return o != 0 ? bb.getShort(o... method mutateU16 (line 36) | public boolean mutateU16(int u16) { int o = __offset(10); if (o != 0) ... method i32 (line 37) | public int i32() { int o = __offset(12); return o != 0 ? bb.getInt(o +... method mutateI32 (line 38) | public boolean mutateI32(int i32) { int o = __offset(12); if (o != 0) ... method u32 (line 39) | public long u32() { int o = __offset(14); return o != 0 ? (long)bb.get... method mutateU32 (line 40) | public boolean mutateU32(long u32) { int o = __offset(14); if (o != 0)... method i64 (line 41) | public long i64() { int o = __offset(16); return o != 0 ? bb.getLong(o... method mutateI64 (line 42) | public boolean mutateI64(long i64) { int o = __offset(16); if (o != 0)... method u64 (line 43) | public long u64() { int o = __offset(18); return o != 0 ? bb.getLong(o... method mutateU64 (line 44) | public boolean mutateU64(long u64) { int o = __offset(18); if (o != 0)... method f32 (line 45) | public float f32() { int o = __offset(20); return o != 0 ? bb.getFloat... method mutateF32 (line 46) | public boolean mutateF32(float f32) { int o = __offset(20); if (o != 0... method f64 (line 47) | public double f64() { int o = __offset(22); return o != 0 ? bb.getDoub... method mutateF64 (line 48) | public boolean mutateF64(double f64) { int o = __offset(22); if (o != ... method v8 (line 49) | public byte v8(int j) { int o = __offset(24); return o != 0 ? bb.get(_... method v8Length (line 50) | public int v8Length() { int o = __offset(24); return o != 0 ? __vector... method v8Vector (line 51) | public ByteVector v8Vector() { return v8Vector(new ByteVector()); } method v8Vector (line 52) | public ByteVector v8Vector(ByteVector obj) { int o = __offset(24); ret... method v8AsByteBuffer (line 53) | public ByteBuffer v8AsByteBuffer() { return __vector_as_bytebuffer(24,... method v8InByteBuffer (line 54) | public ByteBuffer v8InByteBuffer(ByteBuffer _bb) { return __vector_in_... method mutateV8 (line 55) | public boolean mutateV8(int j, byte v8) { int o = __offset(24); if (o ... method vf64 (line 56) | public double vf64(int j) { int o = __offset(26); return o != 0 ? bb.g... method vf64Length (line 57) | public int vf64Length() { int o = __offset(26); return o != 0 ? __vect... method vf64Vector (line 58) | public DoubleVector vf64Vector() { return vf64Vector(new DoubleVector(... method vf64Vector (line 59) | public DoubleVector vf64Vector(DoubleVector obj) { int o = __offset(26... method vf64AsByteBuffer (line 60) | public ByteBuffer vf64AsByteBuffer() { return __vector_as_bytebuffer(2... method vf64InByteBuffer (line 61) | public ByteBuffer vf64InByteBuffer(ByteBuffer _bb) { return __vector_i... method mutateVf64 (line 62) | public boolean mutateVf64(int j, double vf64) { int o = __offset(26); ... method createTypeAliases (line 64) | public static int createTypeAliases(FlatBufferBuilder builder, method startTypeAliases (line 93) | public static void startTypeAliases(FlatBufferBuilder builder) { build... method addI8 (line 94) | public static void addI8(FlatBufferBuilder builder, byte i8) { builder... method addU8 (line 95) | public static void addU8(FlatBufferBuilder builder, int u8) { builder.... method addI16 (line 96) | public static void addI16(FlatBufferBuilder builder, short i16) { buil... method addU16 (line 97) | public static void addU16(FlatBufferBuilder builder, int u16) { builde... method addI32 (line 98) | public static void addI32(FlatBufferBuilder builder, int i32) { builde... method addU32 (line 99) | public static void addU32(FlatBufferBuilder builder, long u32) { build... method addI64 (line 100) | public static void addI64(FlatBufferBuilder builder, long i64) { build... method addU64 (line 101) | public static void addU64(FlatBufferBuilder builder, long u64) { build... method addF32 (line 102) | public static void addF32(FlatBufferBuilder builder, float f32) { buil... method addF64 (line 103) | public static void addF64(FlatBufferBuilder builder, double f64) { bui... method addV8 (line 104) | public static void addV8(FlatBufferBuilder builder, int v8Offset) { bu... method createV8Vector (line 105) | public static int createV8Vector(FlatBufferBuilder builder, byte[] dat... method createV8Vector (line 106) | public static int createV8Vector(FlatBufferBuilder builder, ByteBuffer... method startV8Vector (line 107) | public static void startV8Vector(FlatBufferBuilder builder, int numEle... method addVf64 (line 108) | public static void addVf64(FlatBufferBuilder builder, int vf64Offset) ... method createVf64Vector (line 109) | public static int createVf64Vector(FlatBufferBuilder builder, double[]... method startVf64Vector (line 110) | public static void startVf64Vector(FlatBufferBuilder builder, int numE... method endTypeAliases (line 111) | public static int endTypeAliases(FlatBufferBuilder builder) { class Vector (line 116) | public static final class Vector extends BaseVector { method __assign (line 117) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 119) | public TypeAliases get(int j) { return get(new TypeAliases(), j); } method get (line 120) | public TypeAliases get(TypeAliases obj, int j) { return obj.__assig... method unpack (line 122) | public TypeAliasesT unpack() { method unpackTo (line 127) | public void unpackTo(TypeAliasesT _o) { method pack (line 155) | public static int pack(FlatBufferBuilder builder, TypeAliasesT _o) { FILE: tests/MyGame/Example/TypeAliases.php class TypeAliases (line 11) | class TypeAliases extends Table method getRootAsTypeAliases (line 17) | public static function getRootAsTypeAliases(ByteBuffer $bb) method TypeAliasesIdentifier (line 23) | public static function TypeAliasesIdentifier() method TypeAliasesBufferHasIdentifier (line 28) | public static function TypeAliasesBufferHasIdentifier(ByteBuffer $buf) method TypeAliasesExtension (line 33) | public static function TypeAliasesExtension() method init (line 43) | public function init($_i, ByteBuffer $_bb) method getI8 (line 53) | public function getI8() method getU8 (line 62) | public function getU8() method getI16 (line 71) | public function getI16() method getU16 (line 80) | public function getU16() method getI32 (line 89) | public function getI32() method getU32 (line 98) | public function getU32() method getI64 (line 107) | public function getI64() method getU64 (line 116) | public function getU64() method getF32 (line 125) | public function getF32() method getF64 (line 134) | public function getF64() method getV8 (line 144) | public function getV8($j) method getV8Length (line 153) | public function getV8Length() method getVf64 (line 163) | public function getVf64($j) method getVf64Length (line 172) | public function getVf64Length() method startTypeAliases (line 182) | public static function startTypeAliases(FlatBufferBuilder $builder) method createTypeAliases (line 191) | public static function createTypeAliases(FlatBufferBuilder $builder, $... method addI8 (line 215) | public static function addI8(FlatBufferBuilder $builder, $i8) method addU8 (line 225) | public static function addU8(FlatBufferBuilder $builder, $u8) method addI16 (line 235) | public static function addI16(FlatBufferBuilder $builder, $i16) method addU16 (line 245) | public static function addU16(FlatBufferBuilder $builder, $u16) method addI32 (line 255) | public static function addI32(FlatBufferBuilder $builder, $i32) method addU32 (line 265) | public static function addU32(FlatBufferBuilder $builder, $u32) method addI64 (line 275) | public static function addI64(FlatBufferBuilder $builder, $i64) method addU64 (line 285) | public static function addU64(FlatBufferBuilder $builder, $u64) method addF32 (line 295) | public static function addF32(FlatBufferBuilder $builder, $f32) method addF64 (line 305) | public static function addF64(FlatBufferBuilder $builder, $f64) method addV8 (line 315) | public static function addV8(FlatBufferBuilder $builder, $v8) method createV8Vector (line 325) | public static function createV8Vector(FlatBufferBuilder $builder, arra... method startV8Vector (line 339) | public static function startV8Vector(FlatBufferBuilder $builder, $numE... method addVf64 (line 349) | public static function addVf64(FlatBufferBuilder $builder, $vf64) method createVf64Vector (line 359) | public static function createVf64Vector(FlatBufferBuilder $builder, ar... method startVf64Vector (line 373) | public static function startVf64Vector(FlatBufferBuilder $builder, $nu... method endTypeAliases (line 382) | public static function endTypeAliases(FlatBufferBuilder $builder) FILE: tests/MyGame/Example/TypeAliases.py class TypeAliases (line 9) | class TypeAliases(object): method GetRootAs (line 13) | def GetRootAs(cls, buf, offset=0): method GetRootAsTypeAliases (line 20) | def GetRootAsTypeAliases(cls, buf, offset=0): method TypeAliasesBufferHasIdentifier (line 24) | def TypeAliasesBufferHasIdentifier(cls, buf, offset, size_prefixed=Fal... method Init (line 28) | def Init(self, buf, pos): method I8 (line 32) | def I8(self): method U8 (line 39) | def U8(self): method I16 (line 46) | def I16(self): method U16 (line 53) | def U16(self): method I32 (line 60) | def I32(self): method U32 (line 67) | def U32(self): method I64 (line 74) | def I64(self): method U64 (line 81) | def U64(self): method F32 (line 88) | def F32(self): method F64 (line 95) | def F64(self): method V8 (line 102) | def V8(self, j): method V8AsNumpy (line 110) | def V8AsNumpy(self): method V8Length (line 117) | def V8Length(self): method V8IsNone (line 124) | def V8IsNone(self): method Vf64 (line 129) | def Vf64(self, j): method Vf64AsNumpy (line 137) | def Vf64AsNumpy(self): method Vf64Length (line 144) | def Vf64Length(self): method Vf64IsNone (line 151) | def Vf64IsNone(self): function TypeAliasesStart (line 155) | def TypeAliasesStart(builder): function Start (line 158) | def Start(builder): function TypeAliasesAddI8 (line 161) | def TypeAliasesAddI8(builder, i8): function AddI8 (line 164) | def AddI8(builder, i8): function TypeAliasesAddU8 (line 167) | def TypeAliasesAddU8(builder, u8): function AddU8 (line 170) | def AddU8(builder, u8): function TypeAliasesAddI16 (line 173) | def TypeAliasesAddI16(builder, i16): function AddI16 (line 176) | def AddI16(builder, i16): function TypeAliasesAddU16 (line 179) | def TypeAliasesAddU16(builder, u16): function AddU16 (line 182) | def AddU16(builder, u16): function TypeAliasesAddI32 (line 185) | def TypeAliasesAddI32(builder, i32): function AddI32 (line 188) | def AddI32(builder, i32): function TypeAliasesAddU32 (line 191) | def TypeAliasesAddU32(builder, u32): function AddU32 (line 194) | def AddU32(builder, u32): function TypeAliasesAddI64 (line 197) | def TypeAliasesAddI64(builder, i64): function AddI64 (line 200) | def AddI64(builder, i64): function TypeAliasesAddU64 (line 203) | def TypeAliasesAddU64(builder, u64): function AddU64 (line 206) | def AddU64(builder, u64): function TypeAliasesAddF32 (line 209) | def TypeAliasesAddF32(builder, f32): function AddF32 (line 212) | def AddF32(builder, f32): function TypeAliasesAddF64 (line 215) | def TypeAliasesAddF64(builder, f64): function AddF64 (line 218) | def AddF64(builder, f64): function TypeAliasesAddV8 (line 221) | def TypeAliasesAddV8(builder, v8): function AddV8 (line 224) | def AddV8(builder, v8): function TypeAliasesStartV8Vector (line 227) | def TypeAliasesStartV8Vector(builder, numElems): function StartV8Vector (line 230) | def StartV8Vector(builder, numElems): function TypeAliasesCreateV8Vector (line 233) | def TypeAliasesCreateV8Vector(builder, data): function CreateV8Vector (line 240) | def CreateV8Vector(builder, data): function TypeAliasesAddVf64 (line 243) | def TypeAliasesAddVf64(builder, vf64): function AddVf64 (line 246) | def AddVf64(builder, vf64): function TypeAliasesStartVf64Vector (line 249) | def TypeAliasesStartVf64Vector(builder, numElems): function StartVf64Vector (line 252) | def StartVf64Vector(builder, numElems): function TypeAliasesCreateVf64Vector (line 255) | def TypeAliasesCreateVf64Vector(builder, data): function CreateVf64Vector (line 262) | def CreateVf64Vector(builder, data): function TypeAliasesEnd (line 265) | def TypeAliasesEnd(builder): function End (line 268) | def End(builder): class TypeAliasesT (line 276) | class TypeAliasesT(object): method __init__ (line 279) | def __init__( method InitFromBuf (line 308) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 314) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 319) | def InitFromObj(cls, typeAliases): method _UnPack (line 325) | def _UnPack(self, typeAliases): method Pack (line 354) | def Pack(self, builder): FILE: tests/MyGame/Example/TypeAliasesT.java class TypeAliasesT (line 21) | public class TypeAliasesT { method getI8 (line 35) | public byte getI8() { return i8; } method setI8 (line 37) | public void setI8(byte i8) { this.i8 = i8; } method getU8 (line 39) | public int getU8() { return u8; } method setU8 (line 41) | public void setU8(int u8) { this.u8 = u8; } method getI16 (line 43) | public short getI16() { return i16; } method setI16 (line 45) | public void setI16(short i16) { this.i16 = i16; } method getU16 (line 47) | public int getU16() { return u16; } method setU16 (line 49) | public void setU16(int u16) { this.u16 = u16; } method getI32 (line 51) | public int getI32() { return i32; } method setI32 (line 53) | public void setI32(int i32) { this.i32 = i32; } method getU32 (line 55) | public long getU32() { return u32; } method setU32 (line 57) | public void setU32(long u32) { this.u32 = u32; } method getI64 (line 59) | public long getI64() { return i64; } method setI64 (line 61) | public void setI64(long i64) { this.i64 = i64; } method getU64 (line 63) | public long getU64() { return u64; } method setU64 (line 65) | public void setU64(long u64) { this.u64 = u64; } method getF32 (line 67) | public float getF32() { return f32; } method setF32 (line 69) | public void setF32(float f32) { this.f32 = f32; } method getF64 (line 71) | public double getF64() { return f64; } method setF64 (line 73) | public void setF64(double f64) { this.f64 = f64; } method getV8 (line 75) | public byte[] getV8() { return v8; } method setV8 (line 77) | public void setV8(byte[] v8) { this.v8 = v8; } method getVf64 (line 79) | public double[] getVf64() { return vf64; } method setVf64 (line 81) | public void setVf64(double[] vf64) { this.vf64 = vf64; } method TypeAliasesT (line 84) | public TypeAliasesT() { FILE: tests/MyGame/Example/Vec3.cs type Vec3 (line 12) | public struct Vec3 : IFlatbufferObject method __init (line 16) | public void __init(int _i, ByteBuffer _bb) { __p = new Struct(_i, _bb); } method __assign (line 17) | public Vec3 __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return... method MutateX (line 20) | public void MutateX(float x) { __p.bb.PutFloat(__p.bb_pos + 0, x); } method MutateY (line 22) | public void MutateY(float y) { __p.bb.PutFloat(__p.bb_pos + 4, y); } method MutateZ (line 24) | public void MutateZ(float z) { __p.bb.PutFloat(__p.bb_pos + 8, z); } method MutateTest1 (line 26) | public void MutateTest1(double test1) { __p.bb.PutDouble(__p.bb_pos + ... method MutateTest2 (line 28) | public void MutateTest2(MyGame.Example.Color test2) { __p.bb.Put(__p.b... method CreateVec3 (line 31) | public static Offset CreateVec3(FlatBufferBuilder... method UnPack (line 47) | public Vec3T UnPack() { method UnPackTo (line 52) | public void UnPackTo(Vec3T _o) { method Pack (line 60) | public static Offset Pack(FlatBufferBuilder build... class Vec3T (line 76) | public class Vec3T method Vec3T (line 91) | public Vec3T() { FILE: tests/MyGame/Example/Vec3.go type Vec3T (line 9) | type Vec3T struct method Pack (line 18) | func (t *Vec3T) Pack(builder *flatbuffers.Builder) flatbuffers.UOffsetT { type Vec3 (line 42) | type Vec3 struct method UnPackTo (line 24) | func (rcv *Vec3) UnPackTo(t *Vec3T) { method UnPack (line 33) | func (rcv *Vec3) UnPack() *Vec3T { method Init (line 46) | func (rcv *Vec3) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 51) | func (rcv *Vec3) Table() flatbuffers.Table { method X (line 55) | func (rcv *Vec3) X() float32 { method MutateX (line 58) | func (rcv *Vec3) MutateX(n float32) bool { method Y (line 62) | func (rcv *Vec3) Y() float32 { method MutateY (line 65) | func (rcv *Vec3) MutateY(n float32) bool { method Z (line 69) | func (rcv *Vec3) Z() float32 { method MutateZ (line 72) | func (rcv *Vec3) MutateZ(n float32) bool { method Test1 (line 76) | func (rcv *Vec3) Test1() float64 { method MutateTest1 (line 79) | func (rcv *Vec3) MutateTest1(n float64) bool { method Test2 (line 83) | func (rcv *Vec3) Test2() Color { method MutateTest2 (line 86) | func (rcv *Vec3) MutateTest2(n Color) bool { method Test3 (line 90) | func (rcv *Vec3) Test3(obj *Test) *Test { function CreateVec3 (line 98) | func CreateVec3(builder *flatbuffers.Builder, x float32, y float32, z fl... FILE: tests/MyGame/Example/Vec3.java class Vec3 (line 21) | @SuppressWarnings("unused") method __init (line 23) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 24) | public Vec3 __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return... method x (line 26) | public float x() { return bb.getFloat(bb_pos + 0); } method mutateX (line 27) | public void mutateX(float x) { bb.putFloat(bb_pos + 0, x); } method y (line 28) | public float y() { return bb.getFloat(bb_pos + 4); } method mutateY (line 29) | public void mutateY(float y) { bb.putFloat(bb_pos + 4, y); } method z (line 30) | public float z() { return bb.getFloat(bb_pos + 8); } method mutateZ (line 31) | public void mutateZ(float z) { bb.putFloat(bb_pos + 8, z); } method test1 (line 32) | public double test1() { return bb.getDouble(bb_pos + 16); } method mutateTest1 (line 33) | public void mutateTest1(double test1) { bb.putDouble(bb_pos + 16, test... method test2 (line 34) | public int test2() { return bb.get(bb_pos + 24) & 0xFF; } method mutateTest2 (line 35) | public void mutateTest2(int test2) { bb.put(bb_pos + 24, (byte) test2); } method test3 (line 36) | public MyGame.Example.Test test3() { return test3(new MyGame.Example.T... method test3 (line 37) | public MyGame.Example.Test test3(MyGame.Example.Test obj) { return obj... method createVec3 (line 39) | public static int createVec3(FlatBufferBuilder builder, float x, float... class Vector (line 56) | public static final class Vector extends BaseVector { method __assign (line 57) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 59) | public Vec3 get(int j) { return get(new Vec3(), j); } method get (line 60) | public Vec3 get(Vec3 obj, int j) { return obj.__assign(__element(j)... method unpack (line 62) | public Vec3T unpack() { method unpackTo (line 67) | public void unpackTo(Vec3T _o) { method pack (line 80) | public static int pack(FlatBufferBuilder builder, Vec3T _o) { FILE: tests/MyGame/Example/Vec3.php class Vec3 (line 11) | class Vec3 extends Struct method init (line 18) | public function init($_i, ByteBuffer $_bb) method GetX (line 28) | public function GetX() method GetY (line 36) | public function GetY() method GetZ (line 44) | public function GetZ() method GetTest1 (line 52) | public function GetTest1() method GetTest2 (line 60) | public function GetTest2() method getTest3 (line 68) | public function getTest3() method createVec3 (line 79) | public static function createVec3(FlatBufferBuilder $builder, $x, $y, ... FILE: tests/MyGame/Example/Vec3.py class Vec3 (line 9) | class Vec3(object): method SizeOf (line 13) | def SizeOf(cls): method Init (line 17) | def Init(self, buf, pos): method X (line 21) | def X(self): return self._tab.Get(flatbuffers.number_types.Float32Flag... method Y (line 23) | def Y(self): return self._tab.Get(flatbuffers.number_types.Float32Flag... method Z (line 25) | def Z(self): return self._tab.Get(flatbuffers.number_types.Float32Flag... method Test1 (line 27) | def Test1(self): return self._tab.Get(flatbuffers.number_types.Float64... method Test2 (line 29) | def Test2(self): return self._tab.Get(flatbuffers.number_types.Uint8Fl... method Test3 (line 31) | def Test3(self, obj): function CreateVec3 (line 36) | def CreateVec3(builder, x, y, z, test1, test2, test3_a, test3_b): class Vec3T (line 58) | class Vec3T(object): method __init__ (line 61) | def __init__( method InitFromBuf (line 78) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 84) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 89) | def InitFromObj(cls, vec3): method _UnPack (line 95) | def _UnPack(self, vec3): method Pack (line 107) | def Pack(self, builder): FILE: tests/MyGame/Example/Vec3T.java class Vec3T (line 21) | public class Vec3T { method getX (line 29) | public float getX() { return x; } method setX (line 31) | public void setX(float x) { this.x = x; } method getY (line 33) | public float getY() { return y; } method setY (line 35) | public void setY(float y) { this.y = y; } method getZ (line 37) | public float getZ() { return z; } method setZ (line 39) | public void setZ(float z) { this.z = z; } method getTest1 (line 41) | public double getTest1() { return test1; } method setTest1 (line 43) | public void setTest1(double test1) { this.test1 = test1; } method getTest2 (line 45) | public int getTest2() { return test2; } method setTest2 (line 47) | public void setTest2(int test2) { this.test2 = test2; } method getTest3 (line 49) | public MyGame.Example.TestT getTest3() { return test3; } method setTest3 (line 51) | public void setTest3(MyGame.Example.TestT test3) { this.test3 = test3; } method Vec3T (line 54) | public Vec3T() { FILE: tests/MyGame/Example/monster_test_grpc_fb.py class MonsterStorageStub (line 5) | class MonsterStorageStub(object): method __init__ (line 7) | def __init__(self, channel): method __init__ (line 82) | def __init__(self, channel): class MonsterStorageServicer (line 27) | class MonsterStorageServicer(object): method Store (line 29) | def Store(self, request, context): method Retrieve (line 34) | def Retrieve(self, request, context): method GetMaxHitPoint (line 39) | def GetMaxHitPoint(self, request_iterator, context): method GetMinMaxHitPoints (line 44) | def GetMinMaxHitPoints(self, request, context): method Store (line 103) | def Store(self, request, context): method Retrieve (line 108) | def Retrieve(self, request, context): method GetMaxHitPoint (line 113) | def GetMaxHitPoint(self, request_iterator, context): method GetMinMaxHitPoints (line 118) | def GetMinMaxHitPoints(self, request, context): function add_MonsterStorageServicer_to_server (line 50) | def add_MonsterStorageServicer_to_server(servicer, server): class MonsterStorageStub (line 80) | class MonsterStorageStub(object): method __init__ (line 7) | def __init__(self, channel): method __init__ (line 82) | def __init__(self, channel): class MonsterStorageServicer (line 101) | class MonsterStorageServicer(object): method Store (line 29) | def Store(self, request, context): method Retrieve (line 34) | def Retrieve(self, request, context): method GetMaxHitPoint (line 39) | def GetMaxHitPoint(self, request_iterator, context): method GetMinMaxHitPoints (line 44) | def GetMinMaxHitPoints(self, request, context): method Store (line 103) | def Store(self, request, context): method Retrieve (line 108) | def Retrieve(self, request, context): method GetMaxHitPoint (line 113) | def GetMaxHitPoint(self, request_iterator, context): method GetMinMaxHitPoints (line 118) | def GetMinMaxHitPoints(self, request, context): function add_MonsterStorageServicer_to_server (line 123) | def add_MonsterStorageServicer_to_server(servicer, server): class BetaMonsterStorageServicer (line 143) | class BetaMonsterStorageServicer(object): method Store (line 151) | def Store(self, request, context): method Retrieve (line 154) | def Retrieve(self, request, context): method GetMaxHitPoint (line 157) | def GetMaxHitPoint(self, request_iterator, context): method GetMinMaxHitPoints (line 160) | def GetMinMaxHitPoints(self, request, context): class BetaMonsterStorageStub (line 163) | class BetaMonsterStorageStub(object): method Store (line 171) | def Store( method Retrieve (line 183) | def Retrieve( method GetMaxHitPoint (line 193) | def GetMaxHitPoint( method GetMinMaxHitPoints (line 205) | def GetMinMaxHitPoints( function beta_create_MonsterStorage_server (line 217) | def beta_create_MonsterStorage_server( function beta_create_MonsterStorage_stub (line 258) | def beta_create_MonsterStorage_stub( FILE: tests/MyGame/Example2/Monster.cs type Monster (line 12) | public struct Monster : IFlatbufferObject method ValidateVersion (line 16) | public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS... method GetRootAsMonster (line 17) | public static Monster GetRootAsMonster(ByteBuffer _bb) { return GetRoo... method GetRootAsMonster (line 18) | public static Monster GetRootAsMonster(ByteBuffer _bb, Monster obj) { ... method __init (line 19) | public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } method __assign (line 20) | public Monster __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); ret... method StartMonster (line 23) | public static void StartMonster(FlatBufferBuilder builder) { builder.S... method EndMonster (line 24) | public static Offset EndMonster(FlatBufferBui... method UnPack (line 28) | public MonsterT UnPack() { method UnPackTo (line 33) | public void UnPackTo(MonsterT _o) { method Pack (line 35) | public static Offset Pack(FlatBufferBuilder b... class MonsterT (line 42) | public class MonsterT method MonsterT (line 45) | public MonsterT() { class MonsterVerify (line 50) | static public class MonsterVerify method Verify (line 52) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... FILE: tests/MyGame/Example2/Monster.go type MonsterT (line 9) | type MonsterT struct method Pack (line 12) | func (t *MonsterT) Pack(builder *flatbuffers.Builder) flatbuffers.UOff... type Monster (line 32) | type Monster struct method UnPackTo (line 20) | func (rcv *Monster) UnPackTo(t *MonsterT) { method UnPack (line 23) | func (rcv *Monster) UnPack() *MonsterT { method Init (line 58) | func (rcv *Monster) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 63) | func (rcv *Monster) Table() flatbuffers.Table { function GetRootAsMonster (line 36) | func GetRootAsMonster(buf []byte, offset flatbuffers.UOffsetT) *Monster { function FinishMonsterBuffer (line 43) | func FinishMonsterBuffer(builder *flatbuffers.Builder, offset flatbuffer... function GetSizePrefixedRootAsMonster (line 47) | func GetSizePrefixedRootAsMonster(buf []byte, offset flatbuffers.UOffset... function FinishSizePrefixedMonsterBuffer (line 54) | func FinishSizePrefixedMonsterBuffer(builder *flatbuffers.Builder, offse... function MonsterStart (line 67) | func MonsterStart(builder *flatbuffers.Builder) { function MonsterEnd (line 70) | func MonsterEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { FILE: tests/MyGame/Example2/Monster.java class Monster (line 21) | @SuppressWarnings("unused") method ValidateVersion (line 23) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsMonster (line 24) | public static Monster getRootAsMonster(ByteBuffer _bb) { return getRoo... method getRootAsMonster (line 25) | public static Monster getRootAsMonster(ByteBuffer _bb, Monster obj) { ... method __init (line 26) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 27) | public Monster __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); ret... method startMonster (line 30) | public static void startMonster(FlatBufferBuilder builder) { builder.s... method endMonster (line 31) | public static int endMonster(FlatBufferBuilder builder) { class Vector (line 36) | public static final class Vector extends BaseVector { method __assign (line 37) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 39) | public Monster get(int j) { return get(new Monster(), j); } method get (line 40) | public Monster get(Monster obj, int j) { return obj.__assign(__indi... method unpack (line 42) | public MonsterT unpack() { method unpackTo (line 47) | public void unpackTo(MonsterT _o) { method pack (line 49) | public static int pack(FlatBufferBuilder builder, MonsterT _o) { FILE: tests/MyGame/Example2/Monster.php class Monster (line 11) | class Monster extends Table method getRootAsMonster (line 17) | public static function getRootAsMonster(ByteBuffer $bb) method MonsterIdentifier (line 23) | public static function MonsterIdentifier() method MonsterBufferHasIdentifier (line 28) | public static function MonsterBufferHasIdentifier(ByteBuffer $buf) method MonsterExtension (line 33) | public static function MonsterExtension() method init (line 43) | public function init($_i, ByteBuffer $_bb) method startMonster (line 54) | public static function startMonster(FlatBufferBuilder $builder) method createMonster (line 63) | public static function createMonster(FlatBufferBuilder $builder, ) method endMonster (line 74) | public static function endMonster(FlatBufferBuilder $builder) FILE: tests/MyGame/Example2/Monster.py class Monster (line 9) | class Monster(object): method GetRootAs (line 13) | def GetRootAs(cls, buf, offset=0): method GetRootAsMonster (line 20) | def GetRootAsMonster(cls, buf, offset=0): method MonsterBufferHasIdentifier (line 24) | def MonsterBufferHasIdentifier(cls, buf, offset, size_prefixed=False): method Init (line 28) | def Init(self, buf, pos): function MonsterStart (line 31) | def MonsterStart(builder): function Start (line 34) | def Start(builder): function MonsterEnd (line 37) | def MonsterEnd(builder): function End (line 40) | def End(builder): class MonsterT (line 44) | class MonsterT(object): method __init__ (line 47) | def __init__( method InitFromBuf (line 53) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 59) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 64) | def InitFromObj(cls, monster): method _UnPack (line 70) | def _UnPack(self, monster): method Pack (line 75) | def Pack(self, builder): FILE: tests/MyGame/Example2/MonsterT.java class MonsterT (line 21) | public class MonsterT { method MonsterT (line 24) | public MonsterT() { FILE: tests/MyGame/InParentNamespace.cs type InParentNamespace (line 12) | public struct InParentNamespace : IFlatbufferObject method ValidateVersion (line 16) | public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS... method GetRootAsInParentNamespace (line 17) | public static InParentNamespace GetRootAsInParentNamespace(ByteBuffer ... method GetRootAsInParentNamespace (line 18) | public static InParentNamespace GetRootAsInParentNamespace(ByteBuffer ... method __init (line 19) | public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } method __assign (line 20) | public InParentNamespace __assign(int _i, ByteBuffer _bb) { __init(_i,... method StartInParentNamespace (line 23) | public static void StartInParentNamespace(FlatBufferBuilder builder) {... method EndInParentNamespace (line 24) | public static Offset EndInParentNamespace(Fl... method UnPack (line 28) | public InParentNamespaceT UnPack() { method UnPackTo (line 33) | public void UnPackTo(InParentNamespaceT _o) { method Pack (line 35) | public static Offset Pack(FlatBufferBuilder ... class InParentNamespaceT (line 42) | public class InParentNamespaceT method InParentNamespaceT (line 45) | public InParentNamespaceT() { class InParentNamespaceVerify (line 50) | static public class InParentNamespaceVerify method Verify (line 52) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... FILE: tests/MyGame/InParentNamespace.go type InParentNamespaceT (line 9) | type InParentNamespaceT struct method Pack (line 12) | func (t *InParentNamespaceT) Pack(builder *flatbuffers.Builder) flatbu... type InParentNamespace (line 32) | type InParentNamespace struct method UnPackTo (line 20) | func (rcv *InParentNamespace) UnPackTo(t *InParentNamespaceT) { method UnPack (line 23) | func (rcv *InParentNamespace) UnPack() *InParentNamespaceT { method Init (line 58) | func (rcv *InParentNamespace) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 63) | func (rcv *InParentNamespace) Table() flatbuffers.Table { function GetRootAsInParentNamespace (line 36) | func GetRootAsInParentNamespace(buf []byte, offset flatbuffers.UOffsetT)... function FinishInParentNamespaceBuffer (line 43) | func FinishInParentNamespaceBuffer(builder *flatbuffers.Builder, offset ... function GetSizePrefixedRootAsInParentNamespace (line 47) | func GetSizePrefixedRootAsInParentNamespace(buf []byte, offset flatbuffe... function FinishSizePrefixedInParentNamespaceBuffer (line 54) | func FinishSizePrefixedInParentNamespaceBuffer(builder *flatbuffers.Buil... function InParentNamespaceStart (line 67) | func InParentNamespaceStart(builder *flatbuffers.Builder) { function InParentNamespaceEnd (line 70) | func InParentNamespaceEnd(builder *flatbuffers.Builder) flatbuffers.UOff... FILE: tests/MyGame/InParentNamespace.java class InParentNamespace (line 21) | @SuppressWarnings("unused") method ValidateVersion (line 23) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsInParentNamespace (line 24) | public static InParentNamespace getRootAsInParentNamespace(ByteBuffer ... method getRootAsInParentNamespace (line 25) | public static InParentNamespace getRootAsInParentNamespace(ByteBuffer ... method __init (line 26) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 27) | public InParentNamespace __assign(int _i, ByteBuffer _bb) { __init(_i,... method startInParentNamespace (line 30) | public static void startInParentNamespace(FlatBufferBuilder builder) {... method endInParentNamespace (line 31) | public static int endInParentNamespace(FlatBufferBuilder builder) { class Vector (line 36) | public static final class Vector extends BaseVector { method __assign (line 37) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 39) | public InParentNamespace get(int j) { return get(new InParentNamespa... method get (line 40) | public InParentNamespace get(InParentNamespace obj, int j) { return... method unpack (line 42) | public InParentNamespaceT unpack() { method unpackTo (line 47) | public void unpackTo(InParentNamespaceT _o) { method pack (line 49) | public static int pack(FlatBufferBuilder builder, InParentNamespaceT _... FILE: tests/MyGame/InParentNamespace.php class InParentNamespace (line 11) | class InParentNamespace extends Table method getRootAsInParentNamespace (line 17) | public static function getRootAsInParentNamespace(ByteBuffer $bb) method InParentNamespaceIdentifier (line 23) | public static function InParentNamespaceIdentifier() method InParentNamespaceBufferHasIdentifier (line 28) | public static function InParentNamespaceBufferHasIdentifier(ByteBuffer... method InParentNamespaceExtension (line 33) | public static function InParentNamespaceExtension() method init (line 43) | public function init($_i, ByteBuffer $_bb) method startInParentNamespace (line 54) | public static function startInParentNamespace(FlatBufferBuilder $builder) method createInParentNamespace (line 63) | public static function createInParentNamespace(FlatBufferBuilder $buil... method endInParentNamespace (line 74) | public static function endInParentNamespace(FlatBufferBuilder $builder) FILE: tests/MyGame/InParentNamespace.py class InParentNamespace (line 9) | class InParentNamespace(object): method GetRootAs (line 13) | def GetRootAs(cls, buf, offset=0): method GetRootAsInParentNamespace (line 20) | def GetRootAsInParentNamespace(cls, buf, offset=0): method InParentNamespaceBufferHasIdentifier (line 24) | def InParentNamespaceBufferHasIdentifier(cls, buf, offset, size_prefix... method Init (line 28) | def Init(self, buf, pos): function InParentNamespaceStart (line 31) | def InParentNamespaceStart(builder): function Start (line 34) | def Start(builder): function InParentNamespaceEnd (line 37) | def InParentNamespaceEnd(builder): function End (line 40) | def End(builder): class InParentNamespaceT (line 44) | class InParentNamespaceT(object): method __init__ (line 47) | def __init__( method InitFromBuf (line 53) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 59) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 64) | def InitFromObj(cls, inParentNamespace): method _UnPack (line 70) | def _UnPack(self, inParentNamespace): method Pack (line 75) | def Pack(self, builder): FILE: tests/MyGame/InParentNamespaceT.java class InParentNamespaceT (line 21) | public class InParentNamespaceT { method InParentNamespaceT (line 24) | public InParentNamespaceT() { FILE: tests/MyGame/MonsterExtra.cs type MonsterExtra (line 12) | public struct MonsterExtra : IFlatbufferObject method ValidateVersion (line 16) | public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS... method GetRootAsMonsterExtra (line 17) | public static MonsterExtra GetRootAsMonsterExtra(ByteBuffer _bb) { ret... method GetRootAsMonsterExtra (line 18) | public static MonsterExtra GetRootAsMonsterExtra(ByteBuffer _bb, Monst... method MonsterExtraBufferHasIdentifier (line 19) | public static bool MonsterExtraBufferHasIdentifier(ByteBuffer _bb) { r... method VerifyMonsterExtra (line 20) | public static bool VerifyMonsterExtra(ByteBuffer _bb) {Google.FlatBuff... method __init (line 21) | public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } method __assign (line 22) | public MonsterExtra __assign(int _i, ByteBuffer _bb) { __init(_i, _bb)... method MutateD0 (line 25) | public bool MutateD0(double d0) { int o = __p.__offset(4); if (o != 0)... method MutateD1 (line 27) | public bool MutateD1(double d1) { int o = __p.__offset(6); if (o != 0)... method MutateD2 (line 29) | public bool MutateD2(double d2) { int o = __p.__offset(8); if (o != 0)... method MutateD3 (line 31) | public bool MutateD3(double d3) { int o = __p.__offset(10); if (o != 0... method MutateF0 (line 33) | public bool MutateF0(float f0) { int o = __p.__offset(12); if (o != 0)... method MutateF1 (line 35) | public bool MutateF1(float f1) { int o = __p.__offset(14); if (o != 0)... method MutateF2 (line 37) | public bool MutateF2(float f2) { int o = __p.__offset(16); if (o != 0)... method MutateF3 (line 39) | public bool MutateF3(float f3) { int o = __p.__offset(18); if (o != 0)... method Dvec (line 40) | public double Dvec(int j) { int o = __p.__offset(20); return o != 0 ? ... method GetDvecBytes (line 43) | public Span GetDvecBytes() { return __p.__vector_as_span? GetDvecBytes() { return __p.__vector_as_arr... method GetDvecArray (line 47) | public double[] GetDvecArray() { return __p.__vector_as_array(... method MutateDvec (line 48) | public bool MutateDvec(int j, double dvec) { int o = __p.__offset(20);... method Fvec (line 49) | public float Fvec(int j) { int o = __p.__offset(22); return o != 0 ? _... method GetFvecBytes (line 52) | public Span GetFvecBytes() { return __p.__vector_as_span... method GetFvecBytes (line 54) | public ArraySegment? GetFvecBytes() { return __p.__vector_as_arr... method GetFvecArray (line 56) | public float[] GetFvecArray() { return __p.__vector_as_array(22... method MutateFvec (line 57) | public bool MutateFvec(int j, float fvec) { int o = __p.__offset(22); ... method CreateMonsterExtra (line 59) | public static Offset CreateMonsterExtra(FlatBuffe... method StartMonsterExtra (line 84) | public static void StartMonsterExtra(FlatBufferBuilder builder) { buil... method AddD0 (line 85) | public static void AddD0(FlatBufferBuilder builder, double d0) { build... method AddD1 (line 86) | public static void AddD1(FlatBufferBuilder builder, double d1) { build... method AddD2 (line 87) | public static void AddD2(FlatBufferBuilder builder, double d2) { build... method AddD3 (line 88) | public static void AddD3(FlatBufferBuilder builder, double d3) { build... method AddF0 (line 89) | public static void AddF0(FlatBufferBuilder builder, float f0) { builde... method AddF1 (line 90) | public static void AddF1(FlatBufferBuilder builder, float f1) { builde... method AddF2 (line 91) | public static void AddF2(FlatBufferBuilder builder, float f2) { builde... method AddF3 (line 92) | public static void AddF3(FlatBufferBuilder builder, float f3) { builde... method AddDvec (line 93) | public static void AddDvec(FlatBufferBuilder builder, VectorOffset dve... method CreateDvecVector (line 94) | public static VectorOffset CreateDvecVector(FlatBufferBuilder builder,... method CreateDvecVectorBlock (line 95) | public static VectorOffset CreateDvecVectorBlock(FlatBufferBuilder bui... method CreateDvecVectorBlock (line 96) | public static VectorOffset CreateDvecVectorBlock(FlatBufferBuilder bui... method CreateDvecVectorBlock (line 97) | public static VectorOffset CreateDvecVectorBlock(FlatBufferBuilder bui... method StartDvecVector (line 98) | public static void StartDvecVector(FlatBufferBuilder builder, int numE... method AddFvec (line 99) | public static void AddFvec(FlatBufferBuilder builder, VectorOffset fve... method CreateFvecVector (line 100) | public static VectorOffset CreateFvecVector(FlatBufferBuilder builder,... method CreateFvecVectorBlock (line 101) | public static VectorOffset CreateFvecVectorBlock(FlatBufferBuilder bui... method CreateFvecVectorBlock (line 102) | public static VectorOffset CreateFvecVectorBlock(FlatBufferBuilder bui... method CreateFvecVectorBlock (line 103) | public static VectorOffset CreateFvecVectorBlock(FlatBufferBuilder bui... method StartFvecVector (line 104) | public static void StartFvecVector(FlatBufferBuilder builder, int numE... method EndMonsterExtra (line 105) | public static Offset EndMonsterExtra(FlatBufferBu... method FinishMonsterExtraBuffer (line 109) | public static void FinishMonsterExtraBuffer(FlatBufferBuilder builder,... method FinishSizePrefixedMonsterExtraBuffer (line 110) | public static void FinishSizePrefixedMonsterExtraBuffer(FlatBufferBuil... method UnPack (line 111) | public MonsterExtraT UnPack() { method UnPackTo (line 116) | public void UnPackTo(MonsterExtraT _o) { method Pack (line 130) | public static Offset Pack(FlatBufferBuilder build... class MonsterExtraT (line 157) | public class MonsterExtraT method MonsterExtraT (line 180) | public MonsterExtraT() { method DeserializeFromJson (line 193) | public static MonsterExtraT DeserializeFromJson(string jsonText) { method SerializeToJson (line 196) | public string SerializeToJson() { method DeserializeFromBinary (line 199) | public static MonsterExtraT DeserializeFromBinary(byte[] fbBuffer) { method SerializeToBinary (line 202) | public byte[] SerializeToBinary() { class MonsterExtraVerify (line 210) | static public class MonsterExtraVerify method Verify (line 212) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... FILE: tests/MyGame/MonsterExtra.java class MonsterExtra (line 21) | @SuppressWarnings("unused") method ValidateVersion (line 23) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsMonsterExtra (line 24) | public static MonsterExtra getRootAsMonsterExtra(ByteBuffer _bb) { ret... method getRootAsMonsterExtra (line 25) | public static MonsterExtra getRootAsMonsterExtra(ByteBuffer _bb, Monst... method MonsterExtraBufferHasIdentifier (line 26) | public static boolean MonsterExtraBufferHasIdentifier(ByteBuffer _bb) ... method __init (line 27) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 28) | public MonsterExtra __assign(int _i, ByteBuffer _bb) { __init(_i, _bb)... method d0 (line 30) | public double d0() { int o = __offset(4); return o != 0 ? bb.getDouble... method mutateD0 (line 31) | public boolean mutateD0(double d0) { int o = __offset(4); if (o != 0) ... method d1 (line 32) | public double d1() { int o = __offset(6); return o != 0 ? bb.getDouble... method mutateD1 (line 33) | public boolean mutateD1(double d1) { int o = __offset(6); if (o != 0) ... method d2 (line 34) | public double d2() { int o = __offset(8); return o != 0 ? bb.getDouble... method mutateD2 (line 35) | public boolean mutateD2(double d2) { int o = __offset(8); if (o != 0) ... method d3 (line 36) | public double d3() { int o = __offset(10); return o != 0 ? bb.getDoubl... method mutateD3 (line 37) | public boolean mutateD3(double d3) { int o = __offset(10); if (o != 0)... method f0 (line 38) | public float f0() { int o = __offset(12); return o != 0 ? bb.getFloat(... method mutateF0 (line 39) | public boolean mutateF0(float f0) { int o = __offset(12); if (o != 0) ... method f1 (line 40) | public float f1() { int o = __offset(14); return o != 0 ? bb.getFloat(... method mutateF1 (line 41) | public boolean mutateF1(float f1) { int o = __offset(14); if (o != 0) ... method f2 (line 42) | public float f2() { int o = __offset(16); return o != 0 ? bb.getFloat(... method mutateF2 (line 43) | public boolean mutateF2(float f2) { int o = __offset(16); if (o != 0) ... method f3 (line 44) | public float f3() { int o = __offset(18); return o != 0 ? bb.getFloat(... method mutateF3 (line 45) | public boolean mutateF3(float f3) { int o = __offset(18); if (o != 0) ... method dvec (line 46) | public double dvec(int j) { int o = __offset(20); return o != 0 ? bb.g... method dvecLength (line 47) | public int dvecLength() { int o = __offset(20); return o != 0 ? __vect... method dvecVector (line 48) | public DoubleVector dvecVector() { return dvecVector(new DoubleVector(... method dvecVector (line 49) | public DoubleVector dvecVector(DoubleVector obj) { int o = __offset(20... method dvecAsByteBuffer (line 50) | public ByteBuffer dvecAsByteBuffer() { return __vector_as_bytebuffer(2... method dvecInByteBuffer (line 51) | public ByteBuffer dvecInByteBuffer(ByteBuffer _bb) { return __vector_i... method mutateDvec (line 52) | public boolean mutateDvec(int j, double dvec) { int o = __offset(20); ... method fvec (line 53) | public float fvec(int j) { int o = __offset(22); return o != 0 ? bb.ge... method fvecLength (line 54) | public int fvecLength() { int o = __offset(22); return o != 0 ? __vect... method fvecVector (line 55) | public FloatVector fvecVector() { return fvecVector(new FloatVector()); } method fvecVector (line 56) | public FloatVector fvecVector(FloatVector obj) { int o = __offset(22);... method fvecAsByteBuffer (line 57) | public ByteBuffer fvecAsByteBuffer() { return __vector_as_bytebuffer(2... method fvecInByteBuffer (line 58) | public ByteBuffer fvecInByteBuffer(ByteBuffer _bb) { return __vector_i... method mutateFvec (line 59) | public boolean mutateFvec(int j, float fvec) { int o = __offset(22); i... method createMonsterExtra (line 61) | public static int createMonsterExtra(FlatBufferBuilder builder, method startMonsterExtra (line 86) | public static void startMonsterExtra(FlatBufferBuilder builder) { buil... method addD0 (line 87) | public static void addD0(FlatBufferBuilder builder, double d0) { build... method addD1 (line 88) | public static void addD1(FlatBufferBuilder builder, double d1) { build... method addD2 (line 89) | public static void addD2(FlatBufferBuilder builder, double d2) { build... method addD3 (line 90) | public static void addD3(FlatBufferBuilder builder, double d3) { build... method addF0 (line 91) | public static void addF0(FlatBufferBuilder builder, float f0) { builde... method addF1 (line 92) | public static void addF1(FlatBufferBuilder builder, float f1) { builde... method addF2 (line 93) | public static void addF2(FlatBufferBuilder builder, float f2) { builde... method addF3 (line 94) | public static void addF3(FlatBufferBuilder builder, float f3) { builde... method addDvec (line 95) | public static void addDvec(FlatBufferBuilder builder, int dvecOffset) ... method createDvecVector (line 96) | public static int createDvecVector(FlatBufferBuilder builder, double[]... method startDvecVector (line 97) | public static void startDvecVector(FlatBufferBuilder builder, int numE... method addFvec (line 98) | public static void addFvec(FlatBufferBuilder builder, int fvecOffset) ... method createFvecVector (line 99) | public static int createFvecVector(FlatBufferBuilder builder, float[] ... method startFvecVector (line 100) | public static void startFvecVector(FlatBufferBuilder builder, int numE... method endMonsterExtra (line 101) | public static int endMonsterExtra(FlatBufferBuilder builder) { method finishMonsterExtraBuffer (line 105) | public static void finishMonsterExtraBuffer(FlatBufferBuilder builder,... method finishSizePrefixedMonsterExtraBuffer (line 106) | public static void finishSizePrefixedMonsterExtraBuffer(FlatBufferBuil... class Vector (line 108) | public static final class Vector extends BaseVector { method __assign (line 109) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 111) | public MonsterExtra get(int j) { return get(new MonsterExtra(), j); } method get (line 112) | public MonsterExtra get(MonsterExtra obj, int j) { return obj.__ass... method unpack (line 114) | public MonsterExtraT unpack() { method unpackTo (line 119) | public void unpackTo(MonsterExtraT _o) { method pack (line 143) | public static int pack(FlatBufferBuilder builder, MonsterExtraT _o) { FILE: tests/MyGame/MonsterExtra.py class MonsterExtra (line 11) | class MonsterExtra(object): method GetRootAs (line 15) | def GetRootAs(cls, buf, offset: int = 0): method GetRootAsMonsterExtra (line 22) | def GetRootAsMonsterExtra(cls, buf, offset=0): method MonsterExtraBufferHasIdentifier (line 26) | def MonsterExtraBufferHasIdentifier(cls, buf, offset, size_prefixed=Fa... method Init (line 30) | def Init(self, buf: bytes, pos: int): method D0 (line 34) | def D0(self): method D1 (line 41) | def D1(self): method D2 (line 48) | def D2(self): method D3 (line 55) | def D3(self): method F0 (line 62) | def F0(self): method F1 (line 69) | def F1(self): method F2 (line 76) | def F2(self): method F3 (line 83) | def F3(self): method Dvec (line 90) | def Dvec(self, j: int): method DvecAsNumpy (line 98) | def DvecAsNumpy(self): method DvecLength (line 105) | def DvecLength(self) -> int: method DvecIsNone (line 112) | def DvecIsNone(self) -> bool: method Fvec (line 117) | def Fvec(self, j: int): method FvecAsNumpy (line 125) | def FvecAsNumpy(self): method FvecLength (line 132) | def FvecLength(self) -> int: method FvecIsNone (line 139) | def FvecIsNone(self) -> bool: function MonsterExtraStart (line 143) | def MonsterExtraStart(builder: flatbuffers.Builder): function Start (line 146) | def Start(builder: flatbuffers.Builder): function MonsterExtraAddD0 (line 149) | def MonsterExtraAddD0(builder: flatbuffers.Builder, d0: float): function AddD0 (line 152) | def AddD0(builder: flatbuffers.Builder, d0: float): function MonsterExtraAddD1 (line 155) | def MonsterExtraAddD1(builder: flatbuffers.Builder, d1: float): function AddD1 (line 158) | def AddD1(builder: flatbuffers.Builder, d1: float): function MonsterExtraAddD2 (line 161) | def MonsterExtraAddD2(builder: flatbuffers.Builder, d2: float): function AddD2 (line 164) | def AddD2(builder: flatbuffers.Builder, d2: float): function MonsterExtraAddD3 (line 167) | def MonsterExtraAddD3(builder: flatbuffers.Builder, d3: float): function AddD3 (line 170) | def AddD3(builder: flatbuffers.Builder, d3: float): function MonsterExtraAddF0 (line 173) | def MonsterExtraAddF0(builder: flatbuffers.Builder, f0: float): function AddF0 (line 176) | def AddF0(builder: flatbuffers.Builder, f0: float): function MonsterExtraAddF1 (line 179) | def MonsterExtraAddF1(builder: flatbuffers.Builder, f1: float): function AddF1 (line 182) | def AddF1(builder: flatbuffers.Builder, f1: float): function MonsterExtraAddF2 (line 185) | def MonsterExtraAddF2(builder: flatbuffers.Builder, f2: float): function AddF2 (line 188) | def AddF2(builder: flatbuffers.Builder, f2: float): function MonsterExtraAddF3 (line 191) | def MonsterExtraAddF3(builder: flatbuffers.Builder, f3: float): function AddF3 (line 194) | def AddF3(builder: flatbuffers.Builder, f3: float): function MonsterExtraAddDvec (line 197) | def MonsterExtraAddDvec(builder: flatbuffers.Builder, dvec: int): function AddDvec (line 200) | def AddDvec(builder: flatbuffers.Builder, dvec: int): function MonsterExtraStartDvecVector (line 203) | def MonsterExtraStartDvecVector(builder, numElems: int) -> int: function StartDvecVector (line 206) | def StartDvecVector(builder, numElems: int) -> int: function MonsterExtraCreateDvecVector (line 209) | def MonsterExtraCreateDvecVector(builder: flatbuffers.Builder, data: Ite... function CreateDvecVector (line 216) | def CreateDvecVector(builder: flatbuffers.Builder, data: Iterable[Any]) ... function MonsterExtraAddFvec (line 219) | def MonsterExtraAddFvec(builder: flatbuffers.Builder, fvec: int): function AddFvec (line 222) | def AddFvec(builder: flatbuffers.Builder, fvec: int): function MonsterExtraStartFvecVector (line 225) | def MonsterExtraStartFvecVector(builder, numElems: int) -> int: function StartFvecVector (line 228) | def StartFvecVector(builder, numElems: int) -> int: function MonsterExtraCreateFvecVector (line 231) | def MonsterExtraCreateFvecVector(builder: flatbuffers.Builder, data: Ite... function CreateFvecVector (line 238) | def CreateFvecVector(builder: flatbuffers.Builder, data: Iterable[Any]) ... function MonsterExtraEnd (line 241) | def MonsterExtraEnd(builder: flatbuffers.Builder) -> int: function End (line 244) | def End(builder: flatbuffers.Builder) -> int: class MonsterExtraT (line 252) | class MonsterExtraT(object): method __init__ (line 255) | def __init__( method InitFromBuf (line 280) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 286) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 291) | def InitFromObj(cls, monsterExtra): method __eq__ (line 296) | def __eq__(self, other): method _UnPack (line 310) | def _UnPack(self, monsterExtra): method Pack (line 337) | def Pack(self, builder): FILE: tests/MyGame/MonsterExtra.pyi class MonsterExtra (line 10) | class MonsterExtra(object): method GetRootAs (line 12) | def GetRootAs(cls, buf: bytes, offset: int) -> MonsterExtra: ... method GetRootAsMonsterExtra (line 14) | def GetRootAsMonsterExtra(cls, buf: bytes, offset: int) -> MonsterExtr... method MonsterExtraBufferHasIdentifier (line 16) | def MonsterExtraBufferHasIdentifier(cls, buf: bytes, offset: int, size... method Init (line 17) | def Init(self, buf: bytes, pos: int) -> None: ... method D0 (line 18) | def D0(self) -> float: ... method D1 (line 19) | def D1(self) -> float: ... method D2 (line 20) | def D2(self) -> float: ... method D3 (line 21) | def D3(self) -> float: ... method F0 (line 22) | def F0(self) -> float: ... method F1 (line 23) | def F1(self) -> float: ... method F2 (line 24) | def F2(self) -> float: ... method F3 (line 25) | def F3(self) -> float: ... method Dvec (line 26) | def Dvec(self, i: int) -> typing.List[float]: ... method DvecAsNumpy (line 27) | def DvecAsNumpy(self) -> np.ndarray: ... method DvecLength (line 28) | def DvecLength(self) -> int: ... method DvecIsNone (line 29) | def DvecIsNone(self) -> bool: ... method Fvec (line 30) | def Fvec(self, i: int) -> typing.List[float]: ... method FvecAsNumpy (line 31) | def FvecAsNumpy(self) -> np.ndarray: ... method FvecLength (line 32) | def FvecLength(self) -> int: ... method FvecIsNone (line 33) | def FvecIsNone(self) -> bool: ... class MonsterExtraT (line 34) | class MonsterExtraT(object): method __init__ (line 45) | def __init__( method InitFromBuf (line 59) | def InitFromBuf(cls, buf: bytes, pos: int) -> MonsterExtraT: ... method InitFromPackedBuf (line 61) | def InitFromPackedBuf(cls, buf: bytes, pos: int = 0) -> MonsterExtraT:... method InitFromObj (line 63) | def InitFromObj(cls, monsterExtra: MonsterExtra) -> MonsterExtraT: ... method _UnPack (line 64) | def _UnPack(self, monsterExtra: MonsterExtra) -> None: ... method Pack (line 65) | def Pack(self, builder: flatbuffers.Builder) -> None: ... method __eq__ (line 66) | def __eq__(self, other: MonsterExtraT) -> bool: ... function MonsterExtraStart (line 67) | def MonsterExtraStart(builder: flatbuffers.Builder) -> None: ... function Start (line 68) | def Start(builder: flatbuffers.Builder) -> None: ... function MonsterExtraAddD0 (line 69) | def MonsterExtraAddD0(builder: flatbuffers.Builder, d0: float) -> None: ... function MonsterExtraAddD1 (line 70) | def MonsterExtraAddD1(builder: flatbuffers.Builder, d1: float) -> None: ... function MonsterExtraAddD2 (line 71) | def MonsterExtraAddD2(builder: flatbuffers.Builder, d2: float) -> None: ... function MonsterExtraAddD3 (line 72) | def MonsterExtraAddD3(builder: flatbuffers.Builder, d3: float) -> None: ... function MonsterExtraAddF0 (line 73) | def MonsterExtraAddF0(builder: flatbuffers.Builder, f0: float) -> None: ... function MonsterExtraAddF1 (line 74) | def MonsterExtraAddF1(builder: flatbuffers.Builder, f1: float) -> None: ... function MonsterExtraAddF2 (line 75) | def MonsterExtraAddF2(builder: flatbuffers.Builder, f2: float) -> None: ... function MonsterExtraAddF3 (line 76) | def MonsterExtraAddF3(builder: flatbuffers.Builder, f3: float) -> None: ... function MonsterExtraAddDvec (line 77) | def MonsterExtraAddDvec(builder: flatbuffers.Builder, dvec: uoffset) -> ... function MonsterExtraStartDvecVector (line 78) | def MonsterExtraStartDvecVector(builder: flatbuffers.Builder, num_elems:... function StartDvecVector (line 79) | def StartDvecVector(builder: flatbuffers.Builder, num_elems: int) -> uof... function MonsterExtraCreateDvecVector (line 80) | def MonsterExtraCreateDvecVector(builder: flatbuffers.Builder, data: typ... function CreateDvecVector (line 81) | def CreateDvecVector(builder: flatbuffers.Builder, data: typing.Iterable... function MonsterExtraAddFvec (line 82) | def MonsterExtraAddFvec(builder: flatbuffers.Builder, fvec: uoffset) -> ... function MonsterExtraStartFvecVector (line 83) | def MonsterExtraStartFvecVector(builder: flatbuffers.Builder, num_elems:... function StartFvecVector (line 84) | def StartFvecVector(builder: flatbuffers.Builder, num_elems: int) -> uof... function MonsterExtraCreateFvecVector (line 85) | def MonsterExtraCreateFvecVector(builder: flatbuffers.Builder, data: typ... function CreateFvecVector (line 86) | def CreateFvecVector(builder: flatbuffers.Builder, data: typing.Iterable... function MonsterExtraEnd (line 87) | def MonsterExtraEnd(builder: flatbuffers.Builder) -> uoffset: ... function End (line 88) | def End(builder: flatbuffers.Builder) -> uoffset: ... FILE: tests/MyGame/MonsterExtraT.java class MonsterExtraT (line 21) | public class MonsterExtraT { method getD0 (line 33) | public double getD0() { return d0; } method setD0 (line 35) | public void setD0(double d0) { this.d0 = d0; } method getD1 (line 37) | public double getD1() { return d1; } method setD1 (line 39) | public void setD1(double d1) { this.d1 = d1; } method getD2 (line 41) | public double getD2() { return d2; } method setD2 (line 43) | public void setD2(double d2) { this.d2 = d2; } method getD3 (line 45) | public double getD3() { return d3; } method setD3 (line 47) | public void setD3(double d3) { this.d3 = d3; } method getF0 (line 49) | public float getF0() { return f0; } method setF0 (line 51) | public void setF0(float f0) { this.f0 = f0; } method getF1 (line 53) | public float getF1() { return f1; } method setF1 (line 55) | public void setF1(float f1) { this.f1 = f1; } method getF2 (line 57) | public float getF2() { return f2; } method setF2 (line 59) | public void setF2(float f2) { this.f2 = f2; } method getF3 (line 61) | public float getF3() { return f3; } method setF3 (line 63) | public void setF3(float f3) { this.f3 = f3; } method getDvec (line 65) | public double[] getDvec() { return dvec; } method setDvec (line 67) | public void setDvec(double[] dvec) { this.dvec = dvec; } method getFvec (line 69) | public float[] getFvec() { return fvec; } method setFvec (line 71) | public void setFvec(float[] fvec) { this.fvec = fvec; } method MonsterExtraT (line 74) | public MonsterExtraT() { method deserializeFromBinary (line 86) | public static MonsterExtraT deserializeFromBinary(byte[] fbBuffer) { method serializeToBinary (line 89) | public byte[] serializeToBinary() { FILE: tests/MyGame/OtherNameSpace/TableBT.java class TableBT (line 9) | public class TableBT { method getA (line 12) | public TableAT getA() { method setA (line 16) | public void setA(TableAT a) { method TableBT (line 20) | public TableBT() { FILE: tests/MyGame/OtherNameSpace/UnusedT.java class UnusedT (line 9) | public class UnusedT { method getA (line 12) | public int getA() { method setA (line 16) | public void setA(int a) { method UnusedT (line 20) | public UnusedT() { FILE: tests/Pizza.go type PizzaT (line 9) | type PizzaT struct method Pack (line 13) | func (t *PizzaT) Pack(builder *flatbuffers.Builder) flatbuffers.UOffse... type Pizza (line 35) | type Pizza struct method UnPackTo (line 22) | func (rcv *Pizza) UnPackTo(t *PizzaT) { method UnPack (line 26) | func (rcv *Pizza) UnPack() *PizzaT { method Init (line 53) | func (rcv *Pizza) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 58) | func (rcv *Pizza) Table() flatbuffers.Table { method Size (line 62) | func (rcv *Pizza) Size() int32 { method MutateSize (line 70) | func (rcv *Pizza) MutateSize(n int32) bool { function GetRootAsPizza (line 39) | func GetRootAsPizza(buf []byte, offset flatbuffers.UOffsetT) *Pizza { function GetSizePrefixedRootAsPizza (line 46) | func GetSizePrefixedRootAsPizza(buf []byte, offset flatbuffers.UOffsetT)... function PizzaStart (line 74) | func PizzaStart(builder *flatbuffers.Builder) { function PizzaAddSize (line 77) | func PizzaAddSize(builder *flatbuffers.Builder, size int32) { function PizzaEnd (line 80) | func PizzaEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { FILE: tests/TableAT.java class TableAT (line 7) | public class TableAT { method getB (line 10) | public MyGame.OtherNameSpace.TableBT getB() { method setB (line 14) | public void setB(MyGame.OtherNameSpace.TableBT b) { method TableAT (line 18) | public TableAT() { FILE: tests/alignment_test.cpp type flatbuffers (line 8) | namespace flatbuffers { type tests (line 9) | namespace tests { function AlignmentTest (line 11) | void AlignmentTest() { FILE: tests/alignment_test.h function namespace (line 4) | namespace flatbuffers { FILE: tests/annotated_binary/generate_annotations.py function flatc_annotate (line 44) | def flatc_annotate(schema, file, cwd=script_path): FILE: tests/arrays_test/arrays_test_generated.rs constant ENUM_MIN_TEST_ENUM (line 16) | pub const ENUM_MIN_TEST_ENUM: i8 = 0; constant ENUM_MAX_TEST_ENUM (line 18) | pub const ENUM_MAX_TEST_ENUM: i8 = 2; constant ENUM_VALUES_TEST_ENUM (line 21) | pub const ENUM_VALUES_TEST_ENUM: [TestEnum; 3] = [ type TestEnum (line 29) | pub struct TestEnum(pub i8); constant A (line 32) | pub const A: Self = Self(0); constant B (line 33) | pub const B: Self = Self(1); constant C (line 34) | pub const C: Self = Self(2); constant ENUM_MIN (line 36) | pub const ENUM_MIN: i8 = 0; constant ENUM_MAX (line 37) | pub const ENUM_MAX: i8 = 2; constant ENUM_VALUES (line 38) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 44) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 54) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 63) | type Inner = Self; method follow (line 65) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 72) | type Output = TestEnum; method push (line 74) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 80) | type Scalar = i8; method to_little_endian (line 82) | fn to_little_endian(self) -> i8 { method from_little_endian (line 87) | fn from_little_endian(v: i8) -> Self { method run_verifier (line 95) | fn run_verifier( type NestedStruct (line 106) | pub struct NestedStruct(pub [u8; 32]); method fmt (line 113) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 125) | type Inner = &'a NestedStruct; method follow (line 127) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 139) | type Output = NestedStruct; method push (line 141) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 146) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 153) | fn run_verifier( method new (line 162) | pub fn new( method a (line 176) | pub fn a(&'a self) -> ::flatbuffers::Array<'a, i32, 2> { method set_a (line 184) | pub fn set_a(&mut self, items: &[i32; 2]) { method b (line 191) | pub fn b(&self) -> TestEnum { method set_b (line 206) | pub fn set_b(&mut self, x: TestEnum) { method c (line 220) | pub fn c(&'a self) -> ::flatbuffers::Array<'a, TestEnum, 2> { method set_c (line 228) | pub fn set_c(&mut self, x: &[TestEnum; 2]) { method d (line 241) | pub fn d(&'a self) -> ::flatbuffers::Array<'a, i64, 2> { method set_d (line 249) | pub fn set_d(&mut self, items: &[i64; 2]) { method unpack (line 256) | pub fn unpack(&self) -> NestedStructT { method default (line 108) | fn default() -> Self { type Inner (line 132) | type Inner = &'a NestedStruct; function follow (line 134) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type NestedStructT (line 267) | pub struct NestedStructT { method pack (line 284) | pub fn pack(&self) -> NestedStruct { method default (line 274) | fn default() -> Self { type ArrayStruct (line 297) | pub struct ArrayStruct(pub [u8; 160]); method fmt (line 304) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 318) | type Inner = &'a ArrayStruct; method follow (line 320) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 332) | type Output = ArrayStruct; method push (line 334) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 339) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 346) | fn run_verifier( method new (line 355) | pub fn new( method a (line 373) | pub fn a(&self) -> f32 { method set_a (line 388) | pub fn set_a(&mut self, x: f32) { method b (line 402) | pub fn b(&'a self) -> ::flatbuffers::Array<'a, i32, 15> { method set_b (line 410) | pub fn set_b(&mut self, items: &[i32; 15]) { method c (line 417) | pub fn c(&self) -> i8 { method set_c (line 432) | pub fn set_c(&mut self, x: i8) { method d (line 446) | pub fn d(&'a self) -> ::flatbuffers::Array<'a, NestedStruct, 2> { method set_d (line 454) | pub fn set_d(&mut self, x: &[NestedStruct; 2]) { method e (line 467) | pub fn e(&self) -> i32 { method set_e (line 482) | pub fn set_e(&mut self, x: i32) { method f (line 496) | pub fn f(&'a self) -> ::flatbuffers::Array<'a, i64, 2> { method set_f (line 504) | pub fn set_f(&mut self, items: &[i64; 2]) { method unpack (line 511) | pub fn unpack(&self) -> ArrayStructT { method default (line 299) | fn default() -> Self { type Inner (line 325) | type Inner = &'a ArrayStruct; function follow (line 327) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type ArrayStructT (line 524) | pub struct ArrayStructT { method pack (line 545) | pub fn pack(&self) -> ArrayStruct { method default (line 533) | fn default() -> Self { type LargeArrayStruct (line 560) | pub struct LargeArrayStruct(pub [u8; 384]); method fmt (line 567) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 578) | type Inner = &'a LargeArrayStruct; method follow (line 580) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 592) | type Output = LargeArrayStruct; method push (line 594) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 599) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 606) | fn run_verifier( method new (line 615) | pub fn new( method d (line 627) | pub fn d(&'a self) -> ::flatbuffers::Array<'a, u8, 64> { method set_d (line 635) | pub fn set_d(&mut self, items: &[u8; 64]) { method e (line 642) | pub fn e(&'a self) -> ::flatbuffers::Array<'a, f32, 64> { method set_e (line 650) | pub fn set_e(&mut self, items: &[f32; 64]) { method f (line 657) | pub fn f(&'a self) -> ::flatbuffers::Array<'a, bool, 64> { method set_f (line 665) | pub fn set_f(&mut self, items: &[bool; 64]) { method unpack (line 672) | pub fn unpack(&self) -> LargeArrayStructT { method default (line 562) | fn default() -> Self { type Inner (line 585) | type Inner = &'a LargeArrayStruct; function follow (line 587) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type LargeArrayStructT (line 682) | pub struct LargeArrayStructT { method pack (line 697) | pub fn pack(&self) -> LargeArrayStruct { method default (line 688) | fn default() -> Self { type ArrayTableOffset (line 706) | pub enum ArrayTableOffset {} type ArrayTable (line 709) | pub struct ArrayTable<'a> { type Inner (line 714) | type Inner = ArrayTable<'a>; function follow (line 716) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_A (line 722) | pub const VT_A: ::flatbuffers::VOffsetT = 4; function init_from_table (line 725) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 729) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 738) | pub fn unpack(&self) -> ArrayTableT { function a (line 748) | pub fn a(&self) -> Option<&'a ArrayStruct> { function run_verifier (line 758) | fn run_verifier( type ArrayTableArgs (line 767) | pub struct ArrayTableArgs<'a> { method default (line 772) | fn default() -> Self { type ArrayTableBuilder (line 779) | pub struct ArrayTableBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + '... function add_a (line 785) | pub fn add_a(&mut self, a: &ArrayStruct) { function new (line 789) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Arr... function finish (line 797) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 804) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type ArrayTableT (line 812) | pub struct ArrayTableT { method pack (line 823) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 816) | fn default() -> Self { function root_as_array_table (line 841) | pub fn root_as_array_table(buf: &[u8]) -> Result, ::flatb... function size_prefixed_root_as_array_table (line 851) | pub fn size_prefixed_root_as_array_table(buf: &[u8]) -> Result( function size_prefixed_root_as_array_table_with_opts (line 874) | pub fn size_prefixed_root_as_array_table_with_opts<'b, 'o>( function root_as_array_table_unchecked (line 884) | pub unsafe fn root_as_array_table_unchecked(buf: &[u8]) -> ArrayTable<'_> { function size_prefixed_root_as_array_table_unchecked (line 891) | pub unsafe fn size_prefixed_root_as_array_table_unchecked(buf: &[u8]) ->... constant ARRAY_TABLE_IDENTIFIER (line 894) | pub const ARRAY_TABLE_IDENTIFIER: &str = "ARRT"; function array_table_buffer_has_identifier (line 897) | pub fn array_table_buffer_has_identifier(buf: &[u8]) -> bool { function array_table_size_prefixed_buffer_has_identifier (line 902) | pub fn array_table_size_prefixed_buffer_has_identifier(buf: &[u8]) -> bo... constant ARRAY_TABLE_EXTENSION (line 906) | pub const ARRAY_TABLE_EXTENSION: &str = "mon"; function finish_array_table_buffer (line 909) | pub fn finish_array_table_buffer<'a, 'b, A: ::flatbuffers::Allocator + 'a>( function finish_size_prefixed_array_table_buffer (line 916) | pub fn finish_size_prefixed_array_table_buffer<'a, 'b, A: ::flatbuffers:... FILE: tests/arrays_test/my_game/example/array_struct_generated.rs type ArrayStruct (line 9) | pub struct ArrayStruct(pub [u8; 160]); method fmt (line 18) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 33) | type Inner = &'a ArrayStruct; method follow (line 36) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 51) | type Output = ArrayStruct; method push (line 54) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 60) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 67) | fn run_verifier( method new (line 76) | pub fn new( method get_fully_qualified_name (line 94) | pub const fn get_fully_qualified_name() -> &'static str { method a (line 98) | pub fn a(&self) -> f32 { method set_a (line 113) | pub fn set_a(&mut self, x: f32) { method b (line 127) | pub fn b(&'a self) -> ::flatbuffers::Array<'a, i32, 15> { method set_b (line 135) | pub fn set_b(&mut self, items: &[i32; 15]) { method c (line 142) | pub fn c(&self) -> i8 { method set_c (line 157) | pub fn set_c(&mut self, x: i8) { method d (line 171) | pub fn d(&'a self) -> ::flatbuffers::Array<'a, NestedStruct, 2> { method set_d (line 179) | pub fn set_d(&mut self, x: &[NestedStruct; 2]) { method e (line 192) | pub fn e(&self) -> i32 { method set_e (line 207) | pub fn set_e(&mut self, x: i32) { method f (line 221) | pub fn f(&'a self) -> ::flatbuffers::Array<'a, i64, 2> { method set_f (line 229) | pub fn set_f(&mut self, items: &[i64; 2]) { method unpack (line 236) | pub fn unpack(&self) -> ArrayStructT { method default (line 12) | fn default() -> Self { type Inner (line 42) | type Inner = &'a ArrayStruct; function follow (line 45) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type ArrayStructT (line 249) | pub struct ArrayStructT { method pack (line 271) | pub fn pack(&self) -> ArrayStruct { method default (line 258) | fn default() -> Self { FILE: tests/arrays_test/my_game/example/array_table_generated.rs type ArrayTableOffset (line 6) | pub enum ArrayTableOffset {} type ArrayTable (line 9) | pub struct ArrayTable<'a> { type Inner (line 14) | type Inner = ArrayTable<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_A (line 23) | pub const VT_A: ::flatbuffers::VOffsetT = 4; function get_fully_qualified_name (line 25) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 30) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 35) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 44) | pub fn unpack(&self) -> ArrayTableT { function a (line 54) | pub fn a(&self) -> Option<&'a ArrayStruct> { function run_verifier (line 64) | fn run_verifier( type ArrayTableArgs (line 74) | pub struct ArrayTableArgs<'a> { method default (line 80) | fn default() -> Self { type ArrayTableBuilder (line 87) | pub struct ArrayTableBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + '... function add_a (line 94) | pub fn add_a(&mut self, a: &ArrayStruct) { function new (line 99) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Arr... function finish (line 108) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 115) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type ArrayTableT (line 124) | pub struct ArrayTableT { method pack (line 137) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 129) | fn default() -> Self { function root_as_array_table (line 156) | pub fn root_as_array_table(buf: &[u8]) -> Result, ::flatb... function size_prefixed_root_as_array_table (line 167) | pub fn size_prefixed_root_as_array_table(buf: &[u8]) -> Result( function size_prefixed_root_as_array_table_with_opts (line 192) | pub fn size_prefixed_root_as_array_table_with_opts<'b, 'o>( function root_as_array_table_unchecked (line 203) | pub unsafe fn root_as_array_table_unchecked(buf: &[u8]) -> ArrayTable<'_> { function size_prefixed_root_as_array_table_unchecked (line 211) | pub unsafe fn size_prefixed_root_as_array_table_unchecked(buf: &[u8]) ->... constant ARRAY_TABLE_IDENTIFIER (line 215) | pub const ARRAY_TABLE_IDENTIFIER: &str = "ARRT"; function array_table_buffer_has_identifier (line 218) | pub fn array_table_buffer_has_identifier(buf: &[u8]) -> bool { function array_table_size_prefixed_buffer_has_identifier (line 223) | pub fn array_table_size_prefixed_buffer_has_identifier(buf: &[u8]) -> bo... constant ARRAY_TABLE_EXTENSION (line 227) | pub const ARRAY_TABLE_EXTENSION: &str = "mon"; function finish_array_table_buffer (line 230) | pub fn finish_array_table_buffer<'a, 'b, A: ::flatbuffers::Allocator + 'a>( function finish_size_prefixed_array_table_buffer (line 238) | pub fn finish_size_prefixed_array_table_buffer<'a, 'b, A: ::flatbuffers:... FILE: tests/arrays_test/my_game/example/large_array_struct_generated.rs type LargeArrayStruct (line 9) | pub struct LargeArrayStruct(pub [u8; 2496]); method fmt (line 18) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 32) | type Inner = &'a LargeArrayStruct; method follow (line 35) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 50) | type Output = LargeArrayStruct; method push (line 53) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 59) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 66) | fn run_verifier( method new (line 75) | pub fn new( method get_fully_qualified_name (line 91) | pub const fn get_fully_qualified_name() -> &'static str { method d (line 95) | pub fn d(&'a self) -> ::flatbuffers::Array<'a, u8, 64> { method set_d (line 103) | pub fn set_d(&mut self, items: &[u8; 64]) { method e (line 110) | pub fn e(&'a self) -> ::flatbuffers::Array<'a, f32, 64> { method set_e (line 118) | pub fn set_e(&mut self, items: &[f32; 64]) { method f (line 125) | pub fn f(&'a self) -> ::flatbuffers::Array<'a, bool, 64> { method set_f (line 133) | pub fn set_f(&mut self, items: &[bool; 64]) { method g (line 140) | pub fn g(&'a self) -> ::flatbuffers::Array<'a, NestedStruct, 64> { method set_g (line 148) | pub fn set_g(&mut self, x: &[NestedStruct; 64]) { method h (line 161) | pub fn h(&'a self) -> ::flatbuffers::Array<'a, TestEnum, 64> { method set_h (line 169) | pub fn set_h(&mut self, x: &[TestEnum; 64]) { method unpack (line 182) | pub fn unpack(&self) -> LargeArrayStructT { method default (line 12) | fn default() -> Self { type Inner (line 41) | type Inner = &'a LargeArrayStruct; function follow (line 44) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type LargeArrayStructT (line 194) | pub struct LargeArrayStructT { method pack (line 214) | pub fn pack(&self) -> LargeArrayStruct { method default (line 202) | fn default() -> Self { FILE: tests/arrays_test/my_game/example/nested_struct_generated.rs type NestedStruct (line 9) | pub struct NestedStruct(pub [u8; 32]); method fmt (line 18) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 31) | type Inner = &'a NestedStruct; method follow (line 34) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 49) | type Output = NestedStruct; method push (line 52) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 58) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 65) | fn run_verifier( method new (line 74) | pub fn new( method get_fully_qualified_name (line 88) | pub const fn get_fully_qualified_name() -> &'static str { method a (line 92) | pub fn a(&'a self) -> ::flatbuffers::Array<'a, i32, 2> { method set_a (line 100) | pub fn set_a(&mut self, items: &[i32; 2]) { method b (line 107) | pub fn b(&self) -> TestEnum { method set_b (line 122) | pub fn set_b(&mut self, x: TestEnum) { method c (line 136) | pub fn c(&'a self) -> ::flatbuffers::Array<'a, TestEnum, 2> { method set_c (line 144) | pub fn set_c(&mut self, x: &[TestEnum; 2]) { method d (line 157) | pub fn d(&'a self) -> ::flatbuffers::Array<'a, i64, 2> { method set_d (line 165) | pub fn set_d(&mut self, items: &[i64; 2]) { method unpack (line 172) | pub fn unpack(&self) -> NestedStructT { method default (line 12) | fn default() -> Self { type Inner (line 40) | type Inner = &'a NestedStruct; function follow (line 43) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type NestedStructT (line 183) | pub struct NestedStructT { method pack (line 201) | pub fn pack(&self) -> NestedStruct { method default (line 190) | fn default() -> Self { FILE: tests/arrays_test/my_game/example/test_enum_generated.rs constant ENUM_MIN_TEST_ENUM (line 7) | pub const ENUM_MIN_TEST_ENUM: i8 = 0; constant ENUM_MAX_TEST_ENUM (line 10) | pub const ENUM_MAX_TEST_ENUM: i8 = 2; constant ENUM_VALUES_TEST_ENUM (line 14) | pub const ENUM_VALUES_TEST_ENUM: [TestEnum; 3] = [ type TestEnum (line 22) | pub struct TestEnum(pub i8); constant A (line 26) | pub const A: Self = Self(0); constant B (line 27) | pub const B: Self = Self(1); constant C (line 28) | pub const C: Self = Self(2); constant ENUM_MIN (line 30) | pub const ENUM_MIN: i8 = 0; constant ENUM_MAX (line 31) | pub const ENUM_MAX: i8 = 2; constant ENUM_VALUES (line 32) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 39) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 50) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 60) | type Inner = Self; method follow (line 63) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 70) | type Output = TestEnum; method push (line 73) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 79) | type Scalar = i8; method to_little_endian (line 82) | fn to_little_endian(self) -> i8 { method from_little_endian (line 88) | fn from_little_endian(v: i8) -> Self { method run_verifier (line 96) | fn run_verifier( FILE: tests/bazel_repository_test_dir/pulls_in_flatbuffers_test.cpp function main (line 1) | int main() { return 0; } FILE: tests/cpp17/stringify_util.h function namespace (line 32) | namespace cpp17 { FILE: tests/cpp17/test_cpp17.cpp type cpp17 (line 33) | namespace cpp17 { type cpp11 (line 39) | namespace cpp11 { function Monster (line 51) | const Monster* BuildMonster(flatbuffers::FlatBufferBuilder& fbb) { function StringifyAnyFlatbuffersTypeTest (line 102) | void StringifyAnyFlatbuffersTypeTest() { function CreateTableByTypeTest (line 193) | void CreateTableByTypeTest() { function OptionalScalarsTest (line 216) | void OptionalScalarsTest() { function FlatBufferCpp17Tests (line 258) | int FlatBufferCpp17Tests() { function main (line 266) | int main(int /*argc*/, const char* /*argv*/[]) { FILE: tests/default_vectors_strings_test.cpp type flatbuffers (line 14) | namespace flatbuffers { type tests (line 15) | namespace tests { function DefaultVectorsStringsTest_EmptyOnDefault_Const (line 22) | void DefaultVectorsStringsTest_EmptyOnDefault_Const() { function DefaultVectorsStringsTest_EmptyOnDefault_Mutable (line 99) | void DefaultVectorsStringsTest_EmptyOnDefault_Mutable() { function DefaultVectorsStringsTest_WithValues (line 164) | void DefaultVectorsStringsTest_WithValues() { function DefaultVectorsStringsTest_BufferSize (line 223) | void DefaultVectorsStringsTest_BufferSize() { function DefaultVectorsStringsTest (line 241) | void DefaultVectorsStringsTest() { FILE: tests/default_vectors_strings_test.h function namespace (line 4) | namespace flatbuffers { FILE: tests/evolution_test.cpp type flatbuffers (line 8) | namespace flatbuffers { type tests (line 9) | namespace tests { function EvolutionTest (line 11) | void EvolutionTest(const std::string& tests_data_path) { function ConformTest (line 83) | void ConformTest() { function UnionDeprecationTest (line 156) | void UnionDeprecationTest(const std::string& tests_data_path) { FILE: tests/evolution_test.h function namespace (line 6) | namespace flatbuffers { FILE: tests/flexbuffers_test.cpp type flatbuffers (line 10) | namespace flatbuffers { type tests (line 11) | namespace tests { function FlexBuffersTest (line 16) | void FlexBuffersTest() { function FlexBuffersReuseBugTest (line 155) | void FlexBuffersReuseBugTest() { function FlexBuffersFloatingPointTest (line 173) | void FlexBuffersFloatingPointTest() { function FlexBuffersDeprecatedTest (line 201) | void FlexBuffersDeprecatedTest() { function ParseFlexbuffersFromJsonWithNullTest (line 267) | void ParseFlexbuffersFromJsonWithNullTest() { FILE: tests/flexbuffers_test.h function namespace (line 4) | namespace flatbuffers { FILE: tests/fuzz_test.cpp type flatbuffers (line 9) | namespace flatbuffers { type tests (line 10) | namespace tests { function lcg_rand (line 17) | uint32_t lcg_rand() { function lcg_reset (line 21) | void lcg_reset() { lcg_seed = 48271; } function CompareTableFieldValue (line 24) | static void CompareTableFieldValue(flatbuffers::Table* table, function FuzzTest1 (line 34) | void FuzzTest1() { function FuzzTest2 (line 160) | void FuzzTest2() { FILE: tests/fuzz_test.h function namespace (line 4) | namespace flatbuffers { FILE: tests/fuzzer/flatbuffers_64bit_fuzzer.cc type flatbuffers (line 24) | namespace flatbuffers { function Hash (line 27) | uint64_t Hash(T value, uint64_t hash) { function Hash (line 31) | uint64_t Hash(double value, uint64_t hash) { function Hash (line 36) | uint64_t Hash(const flatbuffers::String* value, uint64_t hash) { function Hash (line 46) | uint64_t Hash(const LeafStruct* value, uint64_t hash) { function Hash (line 56) | uint64_t Hash(const Vector* value, uint64_t hash) { function Hash (line 67) | uint64_t Hash(const Vector64* value, uint64_t hash) { function Hash (line 77) | uint64_t Hash(const RootTable* value, uint64_t hash) { function AccessBuffer (line 93) | static int AccessBuffer(const uint8_t* data, size_t size, function LLVMFuzzerInitialize (line 106) | int LLVMFuzzerInitialize(int*, char*** argv) { function LLVMFuzzerTestOneInput (line 113) | int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { FILE: tests/fuzzer/flatbuffers_annotator_fuzzer.cc function TestFileExists (line 12) | bool TestFileExists(std::filesystem::path file_path) { function LoadBinarySchema (line 25) | std::string LoadBinarySchema(const char* file_name) { function LLVMFuzzerInitialize (line 38) | int LLVMFuzzerInitialize(int*, char*** argv) { function LLVMFuzzerTestOneInput (line 47) | int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { FILE: tests/fuzzer/flatbuffers_codegen_fuzzer.cc function Warn (line 43) | static void Warn(const flatbuffers::FlatCompiler* flatc, function Error (line 52) | static void Error(const flatbuffers::FlatCompiler* flatc, type flatbuffers (line 64) | namespace flatbuffers { function LogCompilerWarn (line 65) | void LogCompilerWarn(const std::string& warn) { function LogCompilerError (line 68) | void LogCompilerError(const std::string& err) { function LLVMFuzzerTestOneInput (line 74) | int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { FILE: tests/fuzzer/flatbuffers_monster_fuzzer.cc function TestFileExists (line 47) | bool TestFileExists(fs::path file_path) { function LoadBinarySchema (line 58) | std::string LoadBinarySchema(const char* file_name) { function do_test (line 71) | std::string do_test(const flatbuffers::IDLOptions& opts, function LLVMFuzzerInitialize (line 97) | int LLVMFuzzerInitialize(int* argc, char*** argv) { function LLVMFuzzerTestOneInput (line 108) | int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { FILE: tests/fuzzer/flatbuffers_parser_fuzzer.cc function LLVMFuzzerTestOneInput (line 23) | int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { FILE: tests/fuzzer/flatbuffers_scalar_fuzzer.cc function BreakSequence (line 41) | static void BreakSequence(std::string& s, const char* subj, char repl) { function StripString (line 51) | static std::string StripString(const std::string& s, const char* pattern, class RegexMatcher (line 65) | class RegexMatcher { type MatchResult (line 72) | struct MatchResult { method MatchResult (line 79) | MatchResult Match(const std::string& input) const { method MatchRegexList (line 106) | bool MatchRegexList(const std::string& input, class IntegerRegex (line 118) | class IntegerRegex : public RegexMatcher { method MatchNumber (line 120) | bool MatchNumber(const std::string& input) const override { method IntegerRegex (line 130) | IntegerRegex() = default; class UIntegerRegex (line 134) | class UIntegerRegex : public RegexMatcher { method MatchNumber (line 136) | bool MatchNumber(const std::string& input) const override { method UIntegerRegex (line 147) | UIntegerRegex() = default; class BooleanRegex (line 151) | class BooleanRegex : public IntegerRegex { method MatchNumber (line 153) | bool MatchNumber(const std::string& input) const override { method BooleanRegex (line 159) | BooleanRegex() = default; class FloatRegex (line 163) | class FloatRegex : public RegexMatcher { method MatchNumber (line 165) | bool MatchNumber(const std::string& input) const override { method FloatRegex (line 183) | FloatRegex() = default; class ScalarReferenceResult (line 187) | class ScalarReferenceResult { method ScalarReferenceResult (line 189) | ScalarReferenceResult(const char* _type, RegexMatcher::MatchResult _ma... method ScalarReferenceResult (line 194) | static ScalarReferenceResult Check(uint8_t code, const std::string& in... function Parse (line 227) | bool Parse(flatbuffers::Parser& parser, const std::string& json, function LLVMFuzzerTestOneInput (line 243) | int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { FILE: tests/fuzzer/flatbuffers_verifier_fuzzer.cc function LLVMFuzzerTestOneInput (line 11) | int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { FILE: tests/fuzzer/flexbuffers_verifier_fuzzer.cc function LLVMFuzzerTestOneInput (line 11) | int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { FILE: tests/fuzzer/monster_debug.cpp function main (line 9) | int main(int argc, char* argv[]) { FILE: tests/fuzzer/scalar_debug.cpp function main (line 7) | int main(int argc, char* argv[]) { FILE: tests/fuzzer/test_init.h function OneTimeTestInit (line 9) | struct OneTimeTestInit { FILE: tests/go_test.go function init (line 46) | func init() { function TestMain (line 66) | func TestMain(m *testing.M) { function TestTextParsing (line 76) | func TestTextParsing(t *testing.T) { function CheckNoNamespaceImport (line 104) | func CheckNoNamespaceImport(fail func(string, ...interface{})) { function TestAll (line 123) | func TestAll(t *testing.T) { function CheckReadBuffer (line 241) | func CheckReadBuffer(buf []byte, offset flatbuffers.UOffsetT, sizePrefix... function CheckFileIdentifier (line 415) | func CheckFileIdentifier(buf []byte, offset flatbuffers.UOffsetT, sizePr... function CheckMutateBuffer (line 441) | func CheckMutateBuffer(org []byte, offset flatbuffers.UOffsetT, sizePref... function CheckObjectAPI (line 589) | func CheckObjectAPI(buf []byte, offset flatbuffers.UOffsetT, sizePrefix ... function checkFuzz (line 625) | func checkFuzz(fuzzFields, fuzzObjects int, fail func(string, ...interfa... function FailString (line 769) | func FailString(name string, want, got interface{}) string { function CheckByteLayout (line 774) | func CheckByteLayout(fail func(string, ...interface{})) { function CheckManualBuild (line 1313) | func CheckManualBuild(fail func(string, ...interface{})) ([]byte, flatbu... function CheckGetRootAsForNonRootTable (line 1380) | func CheckGetRootAsForNonRootTable(fail func(string, ...interface{})) { function CheckGeneratedBuild (line 1406) | func CheckGeneratedBuild(sizePrefix, fileIdentifier bool, fail func(stri... function CheckTableAccessors (line 1468) | func CheckTableAccessors(fail func(string, ...interface{})) { function CheckVtableDeduplication (line 1500) | func CheckVtableDeduplication(fail func(string, ...interface{})) { function CheckNotInObjectError (line 1587) | func CheckNotInObjectError(fail func(string, ...interface{})) { function CheckStringIsNestedError (line 1601) | func CheckStringIsNestedError(fail func(string, ...interface{})) { function CheckEmptiedBuilder (line 1613) | func CheckEmptiedBuilder(fail func(string, ...interface{})) { function CheckSharedStrings (line 1634) | func CheckSharedStrings(fail func(string, ...interface{})) { function CheckByteStringIsNestedError (line 1659) | func CheckByteStringIsNestedError(fail func(string, ...interface{})) { function CheckStructIsNotInlineError (line 1673) | func CheckStructIsNotInlineError(fail func(string, ...interface{})) { function CheckFinishedBytesError (line 1687) | func CheckFinishedBytesError(fail func(string, ...interface{})) { function CheckEnumNames (line 1700) | func CheckEnumNames(fail func(string, ...interface{})) { function CheckEnumString (line 1727) | func CheckEnumString(fail func(string, ...interface{})) { function CheckEnumValues (line 1737) | func CheckEnumValues(fail func(string, ...interface{})) { function CheckDocExample (line 1765) | func CheckDocExample(buf []byte, off flatbuffers.UOffsetT, fail func(str... function CheckCreateByteVector (line 1794) | func CheckCreateByteVector(fail func(string, ...interface{})) { function CheckParentNamespace (line 1813) | func CheckParentNamespace(fail func(string, ...interface{})) { function CheckSizePrefixedBuffer (line 1861) | func CheckSizePrefixedBuffer(fail func(string, ...interface{})) { type LCG (line 1896) | type LCG method Reset (line 1906) | func (lcg *LCG) Reset() { method Next (line 1910) | func (lcg *LCG) Next() uint32 { constant InitialLCGSeed (line 1898) | InitialLCGSeed = 48271 function NewLCG (line 1900) | func NewLCG() *LCG { function CheckByteEquality (line 1917) | func CheckByteEquality(a, b []byte, fail func(string, ...interface{})) { function CheckMutateMethods (line 1924) | func CheckMutateMethods(fail func(string, ...interface{})) { function CheckOptionalScalars (line 2069) | func CheckOptionalScalars(fail func(string, ...interface{})) { function CheckRequiredStrings (line 2358) | func CheckRequiredStrings(fail func(string, ...interface{})) { function CheckByKey (line 2406) | func CheckByKey(fail func(string, ...interface{})) { function CheckByteVectorBoundsChecking (line 2479) | func CheckByteVectorBoundsChecking(fail func(string, ...interface{})) { function BenchmarkVtableDeduplication (line 2529) | func BenchmarkVtableDeduplication(b *testing.B) { function BenchmarkParseGold (line 2557) | func BenchmarkParseGold(b *testing.B) { function BenchmarkBuildGold (line 2619) | func BenchmarkBuildGold(b *testing.B) { function BenchmarkBuildAllocations (line 2683) | func BenchmarkBuildAllocations(b *testing.B) { FILE: tests/include_test1/my_game/other_name_space/from_include_generated.rs constant ENUM_MIN_FROM_INCLUDE (line 7) | pub const ENUM_MIN_FROM_INCLUDE: i64 = 0; constant ENUM_MAX_FROM_INCLUDE (line 10) | pub const ENUM_MAX_FROM_INCLUDE: i64 = 0; constant ENUM_VALUES_FROM_INCLUDE (line 14) | pub const ENUM_VALUES_FROM_INCLUDE: [FromInclude; 1] = [ type FromInclude (line 20) | pub struct FromInclude(pub i64); constant IncludeVal (line 24) | pub const IncludeVal: Self = Self(0); constant ENUM_MIN (line 26) | pub const ENUM_MIN: i64 = 0; constant ENUM_MAX (line 27) | pub const ENUM_MAX: i64 = 0; constant ENUM_VALUES (line 28) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 33) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 42) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 52) | type Inner = Self; method follow (line 55) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 62) | type Output = FromInclude; method push (line 65) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 71) | type Scalar = i64; method to_little_endian (line 74) | fn to_little_endian(self) -> i64 { method from_little_endian (line 80) | fn from_little_endian(v: i64) -> Self { method run_verifier (line 88) | fn run_verifier( FILE: tests/include_test1/my_game/other_name_space/table_b_generated.rs type TableBOffset (line 6) | pub enum TableBOffset {} type TableB (line 9) | pub struct TableB<'a> { type Inner (line 14) | type Inner = TableB<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_A (line 23) | pub const VT_A: ::flatbuffers::VOffsetT = 4; function get_fully_qualified_name (line 25) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 30) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 35) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 44) | pub fn unpack(&self) -> TableBT { function a (line 54) | pub fn a(&self) -> Option> { function run_verifier (line 64) | fn run_verifier( type TableBArgs (line 74) | pub struct TableBArgs<'a> { method default (line 80) | fn default() -> Self { type TableBBuilder (line 87) | pub struct TableBBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function add_a (line 94) | pub fn add_a(&mut self, a: ::flatbuffers::WIPOffset) -> Tab... function finish (line 108) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 115) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type TableBT (line 124) | pub struct TableBT { method pack (line 137) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 129) | fn default() -> Self { FILE: tests/include_test1/my_game/other_name_space/unused_generated.rs type Unused (line 9) | pub struct Unused(pub [u8; 4]); method fmt (line 18) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 28) | type Inner = &'a Unused; method follow (line 31) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 46) | type Output = Unused; method push (line 49) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 55) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 62) | fn run_verifier( method new (line 71) | pub fn new( method get_fully_qualified_name (line 79) | pub const fn get_fully_qualified_name() -> &'static str { method a (line 83) | pub fn a(&self) -> i32 { method set_a (line 98) | pub fn set_a(&mut self, x: i32) { method unpack (line 112) | pub fn unpack(&self) -> UnusedT { method default (line 12) | fn default() -> Self { type Inner (line 37) | type Inner = &'a Unused; function follow (line 40) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type UnusedT (line 120) | pub struct UnusedT { method pack (line 132) | pub fn pack(&self) -> Unused { method default (line 124) | fn default() -> Self { FILE: tests/include_test1/table_a_generated.rs type TableAOffset (line 6) | pub enum TableAOffset {} type TableA (line 9) | pub struct TableA<'a> { type Inner (line 14) | type Inner = TableA<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_B (line 23) | pub const VT_B: ::flatbuffers::VOffsetT = 4; function get_fully_qualified_name (line 25) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 30) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 35) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 44) | pub fn unpack(&self) -> TableAT { function b (line 54) | pub fn b(&self) -> Option> { function run_verifier (line 64) | fn run_verifier( type TableAArgs (line 74) | pub struct TableAArgs<'a> { method default (line 80) | fn default() -> Self { type TableABuilder (line 87) | pub struct TableABuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function add_b (line 94) | pub fn add_b(&mut self, b: ::flatbuffers::WIPOffset) -> Tab... function finish (line 108) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 115) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type TableAT (line 124) | pub struct TableAT { method pack (line 137) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 129) | fn default() -> Self { FILE: tests/include_test1_generated.dart class TableA (line 10) | class TableA { method toString (line 25) | String toString() method unpack (line 29) | TableAT unpack() method pack (line 32) | int pack(fb.Builder fbBuilder, TableAT? object) class TableAT (line 38) | class TableAT implements fb.Packable { method pack (line 45) | int pack(fb.Builder fbBuilder) method toString (line 53) | String toString() class _TableAReader (line 58) | class _TableAReader extends fb.TableReader { method createObject (line 62) | TableA createObject(fb.BufferContext bc, int offset) class TableABuilder (line 66) | class TableABuilder { method begin (line 71) | void begin() method addBOffset (line 75) | int addBOffset(int? offset) method finish (line 80) | int finish() class TableAObjectBuilder (line 85) | class TableAObjectBuilder extends fb.ObjectBuilder { method finish (line 95) | int finish(fb.Builder fbBuilder) method toBytes (line 104) | Uint8List toBytes([String? fileIdentifier]) FILE: tests/include_test1_generated.rs type TableAOffset (line 5) | pub enum TableAOffset {} type TableA (line 8) | pub struct TableA<'a> { type Inner (line 13) | type Inner = TableA<'a>; function follow (line 16) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_B (line 22) | pub const VT_B: ::flatbuffers::VOffsetT = 4; function get_fully_qualified_name (line 24) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 29) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 34) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 43) | pub fn unpack(&self) -> TableAT { function b (line 53) | pub fn b(&self) -> Option> { function run_verifier (line 63) | fn run_verifier( type TableAArgs (line 73) | pub struct TableAArgs<'a> { method default (line 79) | fn default() -> Self { type TableABuilder (line 86) | pub struct TableABuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function add_b (line 93) | pub fn add_b(&mut self, b: ::flatbuffers::WIPOffset) -> Tab... function finish (line 107) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 114) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type TableAT (line 123) | pub struct TableAT { method pack (line 136) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 128) | fn default() -> Self { constant ENUM_MIN_FROM_INCLUDE (line 158) | pub const ENUM_MIN_FROM_INCLUDE: i64 = 0; constant ENUM_MAX_FROM_INCLUDE (line 161) | pub const ENUM_MAX_FROM_INCLUDE: i64 = 0; constant ENUM_VALUES_FROM_INCLUDE (line 165) | pub const ENUM_VALUES_FROM_INCLUDE: [FromInclude; 1] = [ type FromInclude (line 171) | pub struct FromInclude(pub i64); constant IncludeVal (line 175) | pub const IncludeVal: Self = Self(0); constant ENUM_MIN (line 177) | pub const ENUM_MIN: i64 = 0; constant ENUM_MAX (line 178) | pub const ENUM_MAX: i64 = 0; constant ENUM_VALUES (line 179) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 184) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 193) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 203) | type Inner = Self; method follow (line 206) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 213) | type Output = FromInclude; method push (line 216) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 222) | type Scalar = i64; method to_little_endian (line 225) | fn to_little_endian(self) -> i64 { method from_little_endian (line 231) | fn from_little_endian(v: i64) -> Self { method run_verifier (line 239) | fn run_verifier( type Unused (line 251) | pub struct Unused(pub [u8; 4]); method fmt (line 260) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 270) | type Inner = &'a Unused; method follow (line 273) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 288) | type Output = Unused; method push (line 291) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 297) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 304) | fn run_verifier( method new (line 313) | pub fn new( method get_fully_qualified_name (line 321) | pub const fn get_fully_qualified_name() -> &'static str { method a (line 325) | pub fn a(&self) -> i32 { method set_a (line 340) | pub fn set_a(&mut self, x: i32) { method unpack (line 354) | pub fn unpack(&self) -> UnusedT { method default (line 254) | fn default() -> Self { type Inner (line 279) | type Inner = &'a Unused; function follow (line 282) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type UnusedT (line 362) | pub struct UnusedT { method pack (line 374) | pub fn pack(&self) -> Unused { method default (line 366) | fn default() -> Self { type TableBOffset (line 381) | pub enum TableBOffset {} type TableB (line 384) | pub struct TableB<'a> { type Inner (line 389) | type Inner = TableB<'a>; function follow (line 392) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_A (line 398) | pub const VT_A: ::flatbuffers::VOffsetT = 4; function get_fully_qualified_name (line 400) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 405) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 410) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 419) | pub fn unpack(&self) -> TableBT { function a (line 429) | pub fn a(&self) -> Option> { function run_verifier (line 439) | fn run_verifier( type TableBArgs (line 449) | pub struct TableBArgs<'a> { method default (line 455) | fn default() -> Self { type TableBBuilder (line 462) | pub struct TableBBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function add_a (line 469) | pub fn add_a(&mut self, a: ::flatbuffers::WIPOffset) -> Tab... function finish (line 483) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 490) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type TableBT (line 499) | pub struct TableBT { method pack (line 512) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 504) | fn default() -> Self { FILE: tests/include_test2/my_game/other_name_space/from_include_generated.rs constant ENUM_MIN_FROM_INCLUDE (line 7) | pub const ENUM_MIN_FROM_INCLUDE: i64 = 0; constant ENUM_MAX_FROM_INCLUDE (line 10) | pub const ENUM_MAX_FROM_INCLUDE: i64 = 0; constant ENUM_VALUES_FROM_INCLUDE (line 14) | pub const ENUM_VALUES_FROM_INCLUDE: [FromInclude; 1] = [ type FromInclude (line 20) | pub struct FromInclude(pub i64); constant IncludeVal (line 24) | pub const IncludeVal: Self = Self(0); constant ENUM_MIN (line 26) | pub const ENUM_MIN: i64 = 0; constant ENUM_MAX (line 27) | pub const ENUM_MAX: i64 = 0; constant ENUM_VALUES (line 28) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 33) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 42) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 52) | type Inner = Self; method follow (line 55) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 62) | type Output = FromInclude; method push (line 65) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 71) | type Scalar = i64; method to_little_endian (line 74) | fn to_little_endian(self) -> i64 { method from_little_endian (line 80) | fn from_little_endian(v: i64) -> Self { method run_verifier (line 88) | fn run_verifier( FILE: tests/include_test2/my_game/other_name_space/table_b_generated.rs type TableBOffset (line 6) | pub enum TableBOffset {} type TableB (line 9) | pub struct TableB<'a> { type Inner (line 14) | type Inner = TableB<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_A (line 23) | pub const VT_A: ::flatbuffers::VOffsetT = 4; function get_fully_qualified_name (line 25) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 30) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 35) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 44) | pub fn unpack(&self) -> TableBT { function a (line 54) | pub fn a(&self) -> Option> { function run_verifier (line 64) | fn run_verifier( type TableBArgs (line 74) | pub struct TableBArgs<'a> { method default (line 80) | fn default() -> Self { type TableBBuilder (line 87) | pub struct TableBBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function add_a (line 94) | pub fn add_a(&mut self, a: ::flatbuffers::WIPOffset) -> Tab... function finish (line 108) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 115) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type TableBT (line 124) | pub struct TableBT { method pack (line 137) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 129) | fn default() -> Self { FILE: tests/include_test2/my_game/other_name_space/unused_generated.rs type Unused (line 9) | pub struct Unused(pub [u8; 4]); method fmt (line 18) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 28) | type Inner = &'a Unused; method follow (line 31) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 46) | type Output = Unused; method push (line 49) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 55) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 62) | fn run_verifier( method new (line 71) | pub fn new( method get_fully_qualified_name (line 79) | pub const fn get_fully_qualified_name() -> &'static str { method a (line 83) | pub fn a(&self) -> i32 { method set_a (line 98) | pub fn set_a(&mut self, x: i32) { method unpack (line 112) | pub fn unpack(&self) -> UnusedT { method default (line 12) | fn default() -> Self { type Inner (line 37) | type Inner = &'a Unused; function follow (line 40) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type UnusedT (line 120) | pub struct UnusedT { method pack (line 132) | pub fn pack(&self) -> Unused { method default (line 124) | fn default() -> Self { FILE: tests/include_test2/table_a_generated.rs type TableAOffset (line 6) | pub enum TableAOffset {} type TableA (line 9) | pub struct TableA<'a> { type Inner (line 14) | type Inner = TableA<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_B (line 23) | pub const VT_B: ::flatbuffers::VOffsetT = 4; function get_fully_qualified_name (line 25) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 30) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 35) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 44) | pub fn unpack(&self) -> TableAT { function b (line 54) | pub fn b(&self) -> Option> { function run_verifier (line 64) | fn run_verifier( type TableAArgs (line 74) | pub struct TableAArgs<'a> { method default (line 80) | fn default() -> Self { type TableABuilder (line 87) | pub struct TableABuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function add_b (line 94) | pub fn add_b(&mut self, b: ::flatbuffers::WIPOffset) -> Tab... function finish (line 108) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 115) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type TableAT (line 124) | pub struct TableAT { method pack (line 137) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 129) | fn default() -> Self { FILE: tests/include_test2_generated.rs type TableAOffset (line 5) | pub enum TableAOffset {} type TableA (line 8) | pub struct TableA<'a> { type Inner (line 13) | type Inner = TableA<'a>; function follow (line 16) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_B (line 22) | pub const VT_B: ::flatbuffers::VOffsetT = 4; function get_fully_qualified_name (line 24) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 29) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 34) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 43) | pub fn unpack(&self) -> TableAT { function b (line 53) | pub fn b(&self) -> Option> { function run_verifier (line 63) | fn run_verifier( type TableAArgs (line 73) | pub struct TableAArgs<'a> { method default (line 79) | fn default() -> Self { type TableABuilder (line 86) | pub struct TableABuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function add_b (line 93) | pub fn add_b(&mut self, b: ::flatbuffers::WIPOffset) -> Tab... function finish (line 107) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 114) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type TableAT (line 123) | pub struct TableAT { method pack (line 136) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 128) | fn default() -> Self { constant ENUM_MIN_FROM_INCLUDE (line 158) | pub const ENUM_MIN_FROM_INCLUDE: i64 = 0; constant ENUM_MAX_FROM_INCLUDE (line 161) | pub const ENUM_MAX_FROM_INCLUDE: i64 = 0; constant ENUM_VALUES_FROM_INCLUDE (line 165) | pub const ENUM_VALUES_FROM_INCLUDE: [FromInclude; 1] = [ type FromInclude (line 171) | pub struct FromInclude(pub i64); constant IncludeVal (line 175) | pub const IncludeVal: Self = Self(0); constant ENUM_MIN (line 177) | pub const ENUM_MIN: i64 = 0; constant ENUM_MAX (line 178) | pub const ENUM_MAX: i64 = 0; constant ENUM_VALUES (line 179) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 184) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 193) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 203) | type Inner = Self; method follow (line 206) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 213) | type Output = FromInclude; method push (line 216) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 222) | type Scalar = i64; method to_little_endian (line 225) | fn to_little_endian(self) -> i64 { method from_little_endian (line 231) | fn from_little_endian(v: i64) -> Self { method run_verifier (line 239) | fn run_verifier( type Unused (line 251) | pub struct Unused(pub [u8; 4]); method fmt (line 260) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 270) | type Inner = &'a Unused; method follow (line 273) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 288) | type Output = Unused; method push (line 291) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 297) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 304) | fn run_verifier( method new (line 313) | pub fn new( method get_fully_qualified_name (line 321) | pub const fn get_fully_qualified_name() -> &'static str { method a (line 325) | pub fn a(&self) -> i32 { method set_a (line 340) | pub fn set_a(&mut self, x: i32) { method unpack (line 354) | pub fn unpack(&self) -> UnusedT { method default (line 254) | fn default() -> Self { type Inner (line 279) | type Inner = &'a Unused; function follow (line 282) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type UnusedT (line 362) | pub struct UnusedT { method pack (line 374) | pub fn pack(&self) -> Unused { method default (line 366) | fn default() -> Self { type TableBOffset (line 381) | pub enum TableBOffset {} type TableB (line 384) | pub struct TableB<'a> { type Inner (line 389) | type Inner = TableB<'a>; function follow (line 392) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_A (line 398) | pub const VT_A: ::flatbuffers::VOffsetT = 4; function get_fully_qualified_name (line 400) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 405) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 410) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 419) | pub fn unpack(&self) -> TableBT { function a (line 429) | pub fn a(&self) -> Option> { function run_verifier (line 439) | fn run_verifier( type TableBArgs (line 449) | pub struct TableBArgs<'a> { method default (line 455) | fn default() -> Self { type TableBBuilder (line 462) | pub struct TableBBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function add_a (line 469) | pub fn add_a(&mut self, a: ::flatbuffers::WIPOffset) -> Tab... function finish (line 483) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 490) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type TableBT (line 499) | pub struct TableBT { method pack (line 512) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 504) | fn default() -> Self { FILE: tests/include_test2_my_game.other_name_space_generated.dart type FromInclude (line 12) | enum FromInclude { class _FromIncludeReader (line 33) | class _FromIncludeReader extends fb.Reader { method read (line 40) | FromInclude read(fb.BufferContext bc, int offset) class Unused (line 44) | class Unused { method toString (line 55) | String toString() method unpack (line 59) | UnusedT unpack() method pack (line 62) | int pack(fb.Builder fbBuilder, UnusedT? object) class UnusedT (line 68) | class UnusedT implements fb.Packable { method pack (line 75) | int pack(fb.Builder fbBuilder) method toString (line 81) | String toString() class _UnusedReader (line 86) | class _UnusedReader extends fb.StructReader { method createObject (line 93) | Unused createObject(fb.BufferContext bc, int offset) class UnusedBuilder (line 97) | class UnusedBuilder { method finish (line 102) | int finish(int a) class UnusedObjectBuilder (line 109) | class UnusedObjectBuilder extends fb.ObjectBuilder { method finish (line 119) | int finish(fb.Builder fbBuilder) method toBytes (line 126) | Uint8List toBytes([String? fileIdentifier]) class TableB (line 132) | class TableB { method toString (line 147) | String toString() method unpack (line 151) | TableBT unpack() method pack (line 154) | int pack(fb.Builder fbBuilder, TableBT? object) class TableBT (line 160) | class TableBT implements fb.Packable { method pack (line 167) | int pack(fb.Builder fbBuilder) method toString (line 175) | String toString() class _TableBReader (line 180) | class _TableBReader extends fb.TableReader { method createObject (line 184) | TableB createObject(fb.BufferContext bc, int offset) class TableBBuilder (line 188) | class TableBBuilder { method begin (line 193) | void begin() method addAOffset (line 197) | int addAOffset(int? offset) method finish (line 202) | int finish() class TableBObjectBuilder (line 207) | class TableBObjectBuilder extends fb.ObjectBuilder { method finish (line 217) | int finish(fb.Builder fbBuilder) method toBytes (line 226) | Uint8List toBytes([String? fileIdentifier]) FILE: tests/is_quiet_nan.h function namespace (line 4) | namespace flatbuffers { FILE: tests/json_test.cpp type flatbuffers (line 10) | namespace flatbuffers { type tests (line 11) | namespace tests { function JsonDefaultTest (line 16) | void JsonDefaultTest(const std::string& tests_data_path) { function JsonEnumsTest (line 47) | void JsonEnumsTest(const std::string& tests_data_path) { function JsonOptionalTest (line 86) | void JsonOptionalTest(const std::string& tests_data_path, function ParseIncorrectMonsterJsonTest (line 127) | void ParseIncorrectMonsterJsonTest(const std::string& tests_data_pat... function JsonUnsortedArrayTest (line 149) | void JsonUnsortedArrayTest() { function JsonUnionStructTest (line 173) | void JsonUnionStructTest() { FILE: tests/json_test.h function namespace (line 6) | namespace flatbuffers { FILE: tests/key_field_test.cpp type flatbuffers (line 10) | namespace flatbuffers { type tests (line 11) | namespace tests { function FixedSizedScalarKeyInStructTest (line 15) | void FixedSizedScalarKeyInStructTest() { function StructKeyInStructTest (line 78) | void StructKeyInStructTest() { function NestedStructKeyInStructTest (line 119) | void NestedStructKeyInStructTest() { function FixedSizedStructArrayKeyInStructTest (line 160) | void FixedSizedStructArrayKeyInStructTest() { FILE: tests/key_field_test.h function namespace (line 4) | namespace flatbuffers { FILE: tests/keyword_test/keyword_test/abc_generated.rs constant ENUM_MIN_ABC (line 7) | pub const ENUM_MIN_ABC: i32 = 0; constant ENUM_MAX_ABC (line 10) | pub const ENUM_MAX_ABC: i32 = 2; constant ENUM_VALUES_ABC (line 14) | pub const ENUM_VALUES_ABC: [ABC; 3] = [ type ABC (line 22) | pub struct ABC(pub i32); constant void (line 26) | pub const void: Self = Self(0); constant where_ (line 27) | pub const where_: Self = Self(1); constant stackalloc (line 28) | pub const stackalloc: Self = Self(2); constant ENUM_MIN (line 30) | pub const ENUM_MIN: i32 = 0; constant ENUM_MAX (line 31) | pub const ENUM_MAX: i32 = 2; constant ENUM_VALUES (line 32) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 39) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 50) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 60) | type Inner = Self; method follow (line 63) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 70) | type Output = ABC; method push (line 73) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 79) | type Scalar = i32; method to_little_endian (line 82) | fn to_little_endian(self) -> i32 { method from_little_endian (line 88) | fn from_little_endian(v: i32) -> Self { method run_verifier (line 96) | fn run_verifier( FILE: tests/keyword_test/keyword_test/keywords_in_table_generated.rs type KeywordsInTableOffset (line 6) | pub enum KeywordsInTableOffset {} type KeywordsInTable (line 9) | pub struct KeywordsInTable<'a> { type Inner (line 14) | type Inner = KeywordsInTable<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_IS (line 23) | pub const VT_IS: ::flatbuffers::VOffsetT = 4; constant VT_PRIVATE (line 24) | pub const VT_PRIVATE: ::flatbuffers::VOffsetT = 6; constant VT_TYPE_ (line 25) | pub const VT_TYPE_: ::flatbuffers::VOffsetT = 8; constant VT_DEFAULT (line 26) | pub const VT_DEFAULT: ::flatbuffers::VOffsetT = 10; function get_fully_qualified_name (line 28) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 33) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 38) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 50) | pub fn unpack(&self) -> KeywordsInTableT { function is (line 64) | pub fn is(&self) -> ABC { function private (line 72) | pub fn private(&self) -> public { function type_ (line 80) | pub fn type_(&self) -> i32 { function default (line 88) | pub fn default(&self) -> bool { function run_verifier (line 98) | fn run_verifier( type KeywordsInTableArgs (line 111) | pub struct KeywordsInTableArgs { method default (line 120) | fn default() -> Self { type KeywordsInTableBuilder (line 130) | pub struct KeywordsInTableBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocato... function add_is (line 137) | pub fn add_is(&mut self, is: ABC) { function add_private (line 142) | pub fn add_private(&mut self, private: public) { function add_type_ (line 147) | pub fn add_type_(&mut self, type_: i32) { function add_default (line 152) | pub fn add_default(&mut self, default: bool) { function new (line 157) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Key... function finish (line 166) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 173) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type KeywordsInTableT (line 185) | pub struct KeywordsInTableT { method pack (line 204) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 193) | fn default() -> Self { FILE: tests/keyword_test/keyword_test/keywords_in_union_generated.rs constant ENUM_MIN_KEYWORDS_IN_UNION (line 7) | pub const ENUM_MIN_KEYWORDS_IN_UNION: u8 = 0; constant ENUM_MAX_KEYWORDS_IN_UNION (line 10) | pub const ENUM_MAX_KEYWORDS_IN_UNION: u8 = 2; constant ENUM_VALUES_KEYWORDS_IN_UNION (line 14) | pub const ENUM_VALUES_KEYWORDS_IN_UNION: [KeywordsInUnion; 3] = [ type KeywordsInUnion (line 22) | pub struct KeywordsInUnion(pub u8); constant NONE (line 26) | pub const NONE: Self = Self(0); constant static_ (line 27) | pub const static_: Self = Self(1); constant internal (line 28) | pub const internal: Self = Self(2); constant ENUM_MIN (line 30) | pub const ENUM_MIN: u8 = 0; constant ENUM_MAX (line 31) | pub const ENUM_MAX: u8 = 2; constant ENUM_VALUES (line 32) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 39) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 50) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 60) | type Inner = Self; method follow (line 63) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 70) | type Output = KeywordsInUnion; method push (line 73) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 79) | type Scalar = u8; method to_little_endian (line 82) | fn to_little_endian(self) -> u8 { method from_little_endian (line 88) | fn from_little_endian(v: u8) -> Self { method run_verifier (line 96) | fn run_verifier( type KeywordsInUnionUnionTableOffset (line 105) | pub struct KeywordsInUnionUnionTableOffset {} type KeywordsInUnionT (line 110) | pub enum KeywordsInUnionT { method keywords_in_union_type (line 123) | pub fn keywords_in_union_type(&self) -> KeywordsInUnion { method pack (line 131) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>(&self, fbb: &mut ::f... method take_static_ (line 140) | pub fn take_static_(&mut self) -> Option Option<&KeywordsInTableT> { method as_static__mut (line 159) | pub fn as_static__mut(&mut self) -> Option<&mut KeywordsInTableT> { method take_internal (line 164) | pub fn take_internal(&mut self) -> Option Option<&KeywordsInTableT> { method as_internal_mut (line 183) | pub fn as_internal_mut(&mut self) -> Option<&mut KeywordsInTableT> { method default (line 117) | fn default() -> Self { FILE: tests/keyword_test/keyword_test/public_generated.rs constant ENUM_MIN_PUBLIC (line 7) | pub const ENUM_MIN_PUBLIC: i32 = 0; constant ENUM_MAX_PUBLIC (line 10) | pub const ENUM_MAX_PUBLIC: i32 = 0; constant ENUM_VALUES_PUBLIC (line 14) | pub const ENUM_VALUES_PUBLIC: [public; 1] = [ type public (line 20) | pub struct public(pub i32); constant NONE (line 24) | pub const NONE: Self = Self(0); constant ENUM_MIN (line 26) | pub const ENUM_MIN: i32 = 0; constant ENUM_MAX (line 27) | pub const ENUM_MAX: i32 = 0; constant ENUM_VALUES (line 28) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 33) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 42) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 52) | type Inner = Self; method follow (line 55) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 62) | type Output = public; method push (line 65) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 71) | type Scalar = i32; method to_little_endian (line 74) | fn to_little_endian(self) -> i32 { method from_little_endian (line 80) | fn from_little_endian(v: i32) -> Self { method run_verifier (line 88) | fn run_verifier( FILE: tests/keyword_test/keyword_test/table_2_generated.rs type Table2Offset (line 6) | pub enum Table2Offset {} type Table2 (line 9) | pub struct Table2<'a> { type Inner (line 14) | type Inner = Table2<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_TYPE_TYPE (line 23) | pub const VT_TYPE_TYPE: ::flatbuffers::VOffsetT = 4; constant VT_TYPE_ (line 24) | pub const VT_TYPE_: ::flatbuffers::VOffsetT = 6; function get_fully_qualified_name (line 26) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 31) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 36) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 46) | pub fn unpack(&self) -> Table2T { function type_type (line 67) | pub fn type_type(&self) -> KeywordsInUnion { function type_ (line 75) | pub fn type_(&self) -> Option<::flatbuffers::Table<'a>> { function type__as_static_ (line 84) | pub fn type__as_static_(&self) -> Option> { function type__as_internal (line 99) | pub fn type__as_internal(&self) -> Option> { function run_verifier (line 115) | fn run_verifier( type Table2Args (line 131) | pub struct Table2Args { method default (line 138) | fn default() -> Self { type Table2Builder (line 146) | pub struct Table2Builder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function add_type_type (line 153) | pub fn add_type_type(&mut self, type_type: KeywordsInUnion) { function add_type_ (line 158) | pub fn add_type_(&mut self, type_: ::flatbuffers::WIPOffset<::flatbuffer... function new (line 163) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Tab... function finish (line 172) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 179) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type Table2T (line 208) | pub struct Table2T { method pack (line 221) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 213) | fn default() -> Self { FILE: tests/monster_extra_my_game_generated.dart class MonsterExtra (line 11) | class MonsterExtra { method toString (line 35) | String toString() method unpack (line 39) | MonsterExtraT unpack() method pack (line 51) | int pack(fb.Builder fbBuilder, MonsterExtraT? object) class MonsterExtraT (line 57) | class MonsterExtraT implements fb.Packable { method pack (line 82) | int pack(fb.Builder fbBuilder) method toString (line 102) | String toString() class _MonsterExtraReader (line 107) | class _MonsterExtraReader extends fb.TableReader { method createObject (line 111) | MonsterExtra createObject(fb.BufferContext bc, int offset) class MonsterExtraBuilder (line 115) | class MonsterExtraBuilder { method begin (line 120) | void begin() method addD0 (line 124) | int addD0(double? d0) method addD1 (line 128) | int addD1(double? d1) method addD2 (line 132) | int addD2(double? d2) method addD3 (line 136) | int addD3(double? d3) method addF0 (line 140) | int addF0(double? f0) method addF1 (line 144) | int addF1(double? f1) method addF2 (line 148) | int addF2(double? f2) method addF3 (line 152) | int addF3(double? f3) method addDvecOffset (line 156) | int addDvecOffset(int? offset) method addFvecOffset (line 160) | int addFvecOffset(int? offset) method finish (line 165) | int finish() class MonsterExtraObjectBuilder (line 170) | class MonsterExtraObjectBuilder extends fb.ObjectBuilder { method finish (line 207) | int finish(fb.Builder fbBuilder) method toBytes (line 228) | Uint8List toBytes([String? fileIdentifier]) FILE: tests/monster_test.cpp type flatbuffers (line 17) | namespace flatbuffers { type tests (line 18) | namespace tests { function CreateFlatBufferTest (line 27) | flatbuffers::DetachedBuffer CreateFlatBufferTest(std::string& buffer) { function AccessFlatBufferTest (line 196) | void AccessFlatBufferTest(const uint8_t* flatbuf, size_t length, boo... function MutateFlatBuffersTest (line 425) | void MutateFlatBuffersTest(uint8_t* flatbuf, std::size_t length) { function ObjectFlatBuffersTest (line 497) | void ObjectFlatBuffersTest(uint8_t* flatbuf) { function CheckMonsterObject (line 553) | void CheckMonsterObject(MonsterT* monster2) { function SizePrefixedTest (line 601) | void SizePrefixedTest() { function TestMonsterExtraFloats (line 638) | void TestMonsterExtraFloats(const std::string& tests_data_path) { function EnumNamesTest (line 722) | void EnumNamesTest() { function TypeAliasesTest (line 737) | void TypeAliasesTest() { function ParseAndGenerateTextTest (line 778) | void ParseAndGenerateTextTest(const std::string& tests_data_path, bo... function UnPackTo (line 870) | void UnPackTo(const uint8_t* flatbuf) { FILE: tests/monster_test.grpc.fb.cc type MyGame (line 19) | namespace MyGame { type Example (line 20) | namespace Example { FILE: tests/monster_test.grpc.fb.h function namespace (line 23) | namespace grpc { function namespace (line 30) | namespace MyGame { function class (line 157) | class Service : public ::grpc::Service { function RequestStore (line 182) | void RequestStore(::grpc::ServerContext* context, flatbuffers::grpc::Mes... function RequestRetrieve (line 202) | void RequestRetrieve(::grpc::ServerContext* context, flatbuffers::grpc::... function RequestGetMaxHitPoint (line 222) | void RequestGetMaxHitPoint(::grpc::ServerContext* context, ::grpc::Serve... function RequestGetMinMaxHitPoints (line 242) | void RequestGetMinMaxHitPoints(::grpc::ServerContext* context, ::grpc::S... type WithAsyncMethod_Store (line 246) | typedef WithAsyncMethod_Store< WithAsyncMethod_Retrieve< WithAsyncMe... type WithStreamedUnaryMethod_Store (line 335) | typedef WithStreamedUnaryMethod_Store< Service > StreamedUnarySer... type WithSplitStreamingMethod_Retrieve (line 356) | typedef WithSplitStreamingMethod_Retrieve< Service > SplitStreame... type WithStreamedUnaryMethod_Store (line 357) | typedef WithStreamedUnaryMethod_Store< WithSplitStreamingMethod_Retri... function class (line 361) | class MonsterStorage::CallbackService : public ::grpc::Service { FILE: tests/monster_test.h function namespace (line 9) | namespace flatbuffers { FILE: tests/monster_test/my_game/example/ability_generated.rs type Ability (line 9) | pub struct Ability(pub [u8; 8]); method fmt (line 18) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 29) | type Inner = &'a Ability; method follow (line 32) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 47) | type Output = Ability; method push (line 50) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 56) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 63) | fn run_verifier( method new (line 72) | pub fn new( method get_fully_qualified_name (line 82) | pub const fn get_fully_qualified_name() -> &'static str { method id (line 86) | pub fn id(&self) -> u32 { method set_id (line 101) | pub fn set_id(&mut self, x: u32) { method key_compare_less_than (line 117) | pub fn key_compare_less_than(&self, o: &Ability) -> bool { method key_compare_with_value (line 122) | pub fn key_compare_with_value(&self, val: u32) -> ::core::cmp::Ordering { method distance (line 126) | pub fn distance(&self) -> u32 { method set_distance (line 141) | pub fn set_distance(&mut self, x: u32) { method unpack (line 155) | pub fn unpack(&self) -> AbilityT { method default (line 12) | fn default() -> Self { type Inner (line 38) | type Inner = &'a Ability; function follow (line 41) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type AbilityT (line 164) | pub struct AbilityT { method pack (line 178) | pub fn pack(&self) -> Ability { method default (line 169) | fn default() -> Self { FILE: tests/monster_test/my_game/example/any_ambiguous_aliases_generated.rs constant ENUM_MIN_ANY_AMBIGUOUS_ALIASES (line 7) | pub const ENUM_MIN_ANY_AMBIGUOUS_ALIASES: u8 = 0; constant ENUM_MAX_ANY_AMBIGUOUS_ALIASES (line 10) | pub const ENUM_MAX_ANY_AMBIGUOUS_ALIASES: u8 = 3; constant ENUM_VALUES_ANY_AMBIGUOUS_ALIASES (line 14) | pub const ENUM_VALUES_ANY_AMBIGUOUS_ALIASES: [AnyAmbiguousAliases; 4] = [ type AnyAmbiguousAliases (line 23) | pub struct AnyAmbiguousAliases(pub u8); constant NONE (line 27) | pub const NONE: Self = Self(0); constant M1 (line 28) | pub const M1: Self = Self(1); constant M2 (line 29) | pub const M2: Self = Self(2); constant M3 (line 30) | pub const M3: Self = Self(3); constant ENUM_MIN (line 32) | pub const ENUM_MIN: u8 = 0; constant ENUM_MAX (line 33) | pub const ENUM_MAX: u8 = 3; constant ENUM_VALUES (line 34) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 42) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 54) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 64) | type Inner = Self; method follow (line 67) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 74) | type Output = AnyAmbiguousAliases; method push (line 77) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 83) | type Scalar = u8; method to_little_endian (line 86) | fn to_little_endian(self) -> u8 { method from_little_endian (line 92) | fn from_little_endian(v: u8) -> Self { method run_verifier (line 100) | fn run_verifier( type AnyAmbiguousAliasesUnionTableOffset (line 109) | pub struct AnyAmbiguousAliasesUnionTableOffset {} type AnyAmbiguousAliasesT (line 114) | pub enum AnyAmbiguousAliasesT { method any_ambiguous_aliases_type (line 128) | pub fn any_ambiguous_aliases_type(&self) -> AnyAmbiguousAliases { method pack (line 137) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>(&self, fbb: &mut ::f... method take_m1 (line 147) | pub fn take_m1(&mut self) -> Option> { method as_m1 (line 161) | pub fn as_m1(&self) -> Option<&MonsterT> { method as_m1_mut (line 166) | pub fn as_m1_mut(&mut self) -> Option<&mut MonsterT> { method take_m2 (line 171) | pub fn take_m2(&mut self) -> Option> { method as_m2 (line 185) | pub fn as_m2(&self) -> Option<&MonsterT> { method as_m2_mut (line 190) | pub fn as_m2_mut(&mut self) -> Option<&mut MonsterT> { method take_m3 (line 195) | pub fn take_m3(&mut self) -> Option> { method as_m3 (line 209) | pub fn as_m3(&self) -> Option<&MonsterT> { method as_m3_mut (line 214) | pub fn as_m3_mut(&mut self) -> Option<&mut MonsterT> { method default (line 122) | fn default() -> Self { FILE: tests/monster_test/my_game/example/any_generated.rs constant ENUM_MIN_ANY (line 7) | pub const ENUM_MIN_ANY: u8 = 0; constant ENUM_MAX_ANY (line 10) | pub const ENUM_MAX_ANY: u8 = 3; constant ENUM_VALUES_ANY (line 14) | pub const ENUM_VALUES_ANY: [Any; 4] = [ type Any (line 23) | pub struct Any(pub u8); constant NONE (line 27) | pub const NONE: Self = Self(0); constant Monster (line 28) | pub const Monster: Self = Self(1); constant TestSimpleTableWithEnum (line 29) | pub const TestSimpleTableWithEnum: Self = Self(2); constant MyGame_Example2_Monster (line 30) | pub const MyGame_Example2_Monster: Self = Self(3); constant ENUM_MIN (line 32) | pub const ENUM_MIN: u8 = 0; constant ENUM_MAX (line 33) | pub const ENUM_MAX: u8 = 3; constant ENUM_VALUES (line 34) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 42) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 54) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 64) | type Inner = Self; method follow (line 67) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 74) | type Output = Any; method push (line 77) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 83) | type Scalar = u8; method to_little_endian (line 86) | fn to_little_endian(self) -> u8 { method from_little_endian (line 92) | fn from_little_endian(v: u8) -> Self { method run_verifier (line 100) | fn run_verifier( type AnyUnionTableOffset (line 109) | pub struct AnyUnionTableOffset {} type AnyT (line 114) | pub enum AnyT { method any_type (line 128) | pub fn any_type(&self) -> Any { method pack (line 137) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>(&self, fbb: &mut ::f... method take_monster (line 147) | pub fn take_monster(&mut self) -> Option> { method as_monster (line 161) | pub fn as_monster(&self) -> Option<&MonsterT> { method as_monster_mut (line 166) | pub fn as_monster_mut(&mut self) -> Option<&mut MonsterT> { method take_test_simple_table_with_enum (line 171) | pub fn take_test_simple_table_with_enum(&mut self) -> Option Option<&TestSimpleTabl... method as_test_simple_table_with_enum_mut (line 190) | pub fn as_test_simple_table_with_enum_mut(&mut self) -> Option<&mut Te... method take_my_game_example_2_monster (line 195) | pub fn take_my_game_example_2_monster(&mut self) -> Option Option<&super::example_2... method as_my_game_example_2_monster_mut (line 214) | pub fn as_my_game_example_2_monster_mut(&mut self) -> Option<&mut supe... method default (line 122) | fn default() -> Self { FILE: tests/monster_test/my_game/example/any_unique_aliases_generated.rs constant ENUM_MIN_ANY_UNIQUE_ALIASES (line 7) | pub const ENUM_MIN_ANY_UNIQUE_ALIASES: u8 = 0; constant ENUM_MAX_ANY_UNIQUE_ALIASES (line 10) | pub const ENUM_MAX_ANY_UNIQUE_ALIASES: u8 = 3; constant ENUM_VALUES_ANY_UNIQUE_ALIASES (line 14) | pub const ENUM_VALUES_ANY_UNIQUE_ALIASES: [AnyUniqueAliases; 4] = [ type AnyUniqueAliases (line 23) | pub struct AnyUniqueAliases(pub u8); constant NONE (line 27) | pub const NONE: Self = Self(0); constant M (line 28) | pub const M: Self = Self(1); constant TS (line 29) | pub const TS: Self = Self(2); constant M2 (line 30) | pub const M2: Self = Self(3); constant ENUM_MIN (line 32) | pub const ENUM_MIN: u8 = 0; constant ENUM_MAX (line 33) | pub const ENUM_MAX: u8 = 3; constant ENUM_VALUES (line 34) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 42) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 54) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 64) | type Inner = Self; method follow (line 67) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 74) | type Output = AnyUniqueAliases; method push (line 77) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 83) | type Scalar = u8; method to_little_endian (line 86) | fn to_little_endian(self) -> u8 { method from_little_endian (line 92) | fn from_little_endian(v: u8) -> Self { method run_verifier (line 100) | fn run_verifier( type AnyUniqueAliasesUnionTableOffset (line 109) | pub struct AnyUniqueAliasesUnionTableOffset {} type AnyUniqueAliasesT (line 114) | pub enum AnyUniqueAliasesT { method any_unique_aliases_type (line 128) | pub fn any_unique_aliases_type(&self) -> AnyUniqueAliases { method pack (line 137) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>(&self, fbb: &mut ::f... method take_m (line 147) | pub fn take_m(&mut self) -> Option> { method as_m (line 161) | pub fn as_m(&self) -> Option<&MonsterT> { method as_m_mut (line 166) | pub fn as_m_mut(&mut self) -> Option<&mut MonsterT> { method take_ts (line 171) | pub fn take_ts(&mut self) -> Option Option<&TestSimpleTableWithEnumT> { method as_ts_mut (line 190) | pub fn as_ts_mut(&mut self) -> Option<&mut TestSimpleTableWithEnumT> { method take_m2 (line 195) | pub fn take_m2(&mut self) -> Option Option<&super::example_2::MonsterT> { method as_m2_mut (line 214) | pub fn as_m2_mut(&mut self) -> Option<&mut super::example_2::MonsterT> { method default (line 122) | fn default() -> Self { FILE: tests/monster_test/my_game/example/color_generated.rs type Inner (line 25) | type Inner = Self; method follow (line 28) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 35) | type Output = Color; method push (line 38) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 44) | type Scalar = u8; method to_little_endian (line 47) | fn to_little_endian(self) -> u8 { method from_little_endian (line 53) | fn from_little_endian(v: u8) -> Self { method run_verifier (line 61) | fn run_verifier( FILE: tests/monster_test/my_game/example/long_enum_generated.rs type Inner (line 21) | type Inner = Self; method follow (line 24) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 31) | type Output = LongEnum; method push (line 34) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 40) | type Scalar = u64; method to_little_endian (line 43) | fn to_little_endian(self) -> u64 { method from_little_endian (line 49) | fn from_little_endian(v: u64) -> Self { method run_verifier (line 57) | fn run_verifier( FILE: tests/monster_test/my_game/example/monster_generated.rs type MonsterOffset (line 6) | pub enum MonsterOffset {} type Monster (line 10) | pub struct Monster<'a> { type Inner (line 15) | type Inner = Monster<'a>; function follow (line 18) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_POS (line 24) | pub const VT_POS: ::flatbuffers::VOffsetT = 4; constant VT_MANA (line 25) | pub const VT_MANA: ::flatbuffers::VOffsetT = 6; constant VT_HP (line 26) | pub const VT_HP: ::flatbuffers::VOffsetT = 8; constant VT_NAME (line 27) | pub const VT_NAME: ::flatbuffers::VOffsetT = 10; constant VT_INVENTORY (line 28) | pub const VT_INVENTORY: ::flatbuffers::VOffsetT = 14; constant VT_COLOR (line 29) | pub const VT_COLOR: ::flatbuffers::VOffsetT = 16; constant VT_TEST_TYPE (line 30) | pub const VT_TEST_TYPE: ::flatbuffers::VOffsetT = 18; constant VT_TEST (line 31) | pub const VT_TEST: ::flatbuffers::VOffsetT = 20; constant VT_TEST4 (line 32) | pub const VT_TEST4: ::flatbuffers::VOffsetT = 22; constant VT_TESTARRAYOFSTRING (line 33) | pub const VT_TESTARRAYOFSTRING: ::flatbuffers::VOffsetT = 24; constant VT_TESTARRAYOFTABLES (line 34) | pub const VT_TESTARRAYOFTABLES: ::flatbuffers::VOffsetT = 26; constant VT_ENEMY (line 35) | pub const VT_ENEMY: ::flatbuffers::VOffsetT = 28; constant VT_TESTNESTEDFLATBUFFER (line 36) | pub const VT_TESTNESTEDFLATBUFFER: ::flatbuffers::VOffsetT = 30; constant VT_TESTEMPTY (line 37) | pub const VT_TESTEMPTY: ::flatbuffers::VOffsetT = 32; constant VT_TESTBOOL (line 38) | pub const VT_TESTBOOL: ::flatbuffers::VOffsetT = 34; constant VT_TESTHASHS32_FNV1 (line 39) | pub const VT_TESTHASHS32_FNV1: ::flatbuffers::VOffsetT = 36; constant VT_TESTHASHU32_FNV1 (line 40) | pub const VT_TESTHASHU32_FNV1: ::flatbuffers::VOffsetT = 38; constant VT_TESTHASHS64_FNV1 (line 41) | pub const VT_TESTHASHS64_FNV1: ::flatbuffers::VOffsetT = 40; constant VT_TESTHASHU64_FNV1 (line 42) | pub const VT_TESTHASHU64_FNV1: ::flatbuffers::VOffsetT = 42; constant VT_TESTHASHS32_FNV1A (line 43) | pub const VT_TESTHASHS32_FNV1A: ::flatbuffers::VOffsetT = 44; constant VT_TESTHASHU32_FNV1A (line 44) | pub const VT_TESTHASHU32_FNV1A: ::flatbuffers::VOffsetT = 46; constant VT_TESTHASHS64_FNV1A (line 45) | pub const VT_TESTHASHS64_FNV1A: ::flatbuffers::VOffsetT = 48; constant VT_TESTHASHU64_FNV1A (line 46) | pub const VT_TESTHASHU64_FNV1A: ::flatbuffers::VOffsetT = 50; constant VT_TESTARRAYOFBOOLS (line 47) | pub const VT_TESTARRAYOFBOOLS: ::flatbuffers::VOffsetT = 52; constant VT_TESTF (line 48) | pub const VT_TESTF: ::flatbuffers::VOffsetT = 54; constant VT_TESTF2 (line 49) | pub const VT_TESTF2: ::flatbuffers::VOffsetT = 56; constant VT_TESTF3 (line 50) | pub const VT_TESTF3: ::flatbuffers::VOffsetT = 58; constant VT_TESTARRAYOFSTRING2 (line 51) | pub const VT_TESTARRAYOFSTRING2: ::flatbuffers::VOffsetT = 60; constant VT_TESTARRAYOFSORTEDSTRUCT (line 52) | pub const VT_TESTARRAYOFSORTEDSTRUCT: ::flatbuffers::VOffsetT = 62; constant VT_FLEX (line 53) | pub const VT_FLEX: ::flatbuffers::VOffsetT = 64; constant VT_TEST5 (line 54) | pub const VT_TEST5: ::flatbuffers::VOffsetT = 66; constant VT_VECTOR_OF_LONGS (line 55) | pub const VT_VECTOR_OF_LONGS: ::flatbuffers::VOffsetT = 68; constant VT_VECTOR_OF_DOUBLES (line 56) | pub const VT_VECTOR_OF_DOUBLES: ::flatbuffers::VOffsetT = 70; constant VT_PARENT_NAMESPACE_TEST (line 57) | pub const VT_PARENT_NAMESPACE_TEST: ::flatbuffers::VOffsetT = 72; constant VT_VECTOR_OF_REFERRABLES (line 58) | pub const VT_VECTOR_OF_REFERRABLES: ::flatbuffers::VOffsetT = 74; constant VT_SINGLE_WEAK_REFERENCE (line 59) | pub const VT_SINGLE_WEAK_REFERENCE: ::flatbuffers::VOffsetT = 76; constant VT_VECTOR_OF_WEAK_REFERENCES (line 60) | pub const VT_VECTOR_OF_WEAK_REFERENCES: ::flatbuffers::VOffsetT = 78; constant VT_VECTOR_OF_STRONG_REFERRABLES (line 61) | pub const VT_VECTOR_OF_STRONG_REFERRABLES: ::flatbuffers::VOffsetT = 80; constant VT_CO_OWNING_REFERENCE (line 62) | pub const VT_CO_OWNING_REFERENCE: ::flatbuffers::VOffsetT = 82; constant VT_VECTOR_OF_CO_OWNING_REFERENCES (line 63) | pub const VT_VECTOR_OF_CO_OWNING_REFERENCES: ::flatbuffers::VOffsetT = 84; constant VT_NON_OWNING_REFERENCE (line 64) | pub const VT_NON_OWNING_REFERENCE: ::flatbuffers::VOffsetT = 86; constant VT_VECTOR_OF_NON_OWNING_REFERENCES (line 65) | pub const VT_VECTOR_OF_NON_OWNING_REFERENCES: ::flatbuffers::VOffsetT = 88; constant VT_ANY_UNIQUE_TYPE (line 66) | pub const VT_ANY_UNIQUE_TYPE: ::flatbuffers::VOffsetT = 90; constant VT_ANY_UNIQUE (line 67) | pub const VT_ANY_UNIQUE: ::flatbuffers::VOffsetT = 92; constant VT_ANY_AMBIGUOUS_TYPE (line 68) | pub const VT_ANY_AMBIGUOUS_TYPE: ::flatbuffers::VOffsetT = 94; constant VT_ANY_AMBIGUOUS (line 69) | pub const VT_ANY_AMBIGUOUS: ::flatbuffers::VOffsetT = 96; constant VT_VECTOR_OF_ENUMS (line 70) | pub const VT_VECTOR_OF_ENUMS: ::flatbuffers::VOffsetT = 98; constant VT_SIGNED_ENUM (line 71) | pub const VT_SIGNED_ENUM: ::flatbuffers::VOffsetT = 100; constant VT_TESTREQUIREDNESTEDFLATBUFFER (line 72) | pub const VT_TESTREQUIREDNESTEDFLATBUFFER: ::flatbuffers::VOffsetT = 102; constant VT_SCALAR_KEY_SORTED_TABLES (line 73) | pub const VT_SCALAR_KEY_SORTED_TABLES: ::flatbuffers::VOffsetT = 104; constant VT_NATIVE_INLINE (line 74) | pub const VT_NATIVE_INLINE: ::flatbuffers::VOffsetT = 106; constant VT_LONG_ENUM_NON_ENUM_DEFAULT (line 75) | pub const VT_LONG_ENUM_NON_ENUM_DEFAULT: ::flatbuffers::VOffsetT = 108; constant VT_LONG_ENUM_NORMAL_DEFAULT (line 76) | pub const VT_LONG_ENUM_NORMAL_DEFAULT: ::flatbuffers::VOffsetT = 110; constant VT_NAN_DEFAULT (line 77) | pub const VT_NAN_DEFAULT: ::flatbuffers::VOffsetT = 112; constant VT_INF_DEFAULT (line 78) | pub const VT_INF_DEFAULT: ::flatbuffers::VOffsetT = 114; constant VT_POSITIVE_INF_DEFAULT (line 79) | pub const VT_POSITIVE_INF_DEFAULT: ::flatbuffers::VOffsetT = 116; constant VT_INFINITY_DEFAULT (line 80) | pub const VT_INFINITY_DEFAULT: ::flatbuffers::VOffsetT = 118; constant VT_POSITIVE_INFINITY_DEFAULT (line 81) | pub const VT_POSITIVE_INFINITY_DEFAULT: ::flatbuffers::VOffsetT = 120; constant VT_NEGATIVE_INF_DEFAULT (line 82) | pub const VT_NEGATIVE_INF_DEFAULT: ::flatbuffers::VOffsetT = 122; constant VT_NEGATIVE_INFINITY_DEFAULT (line 83) | pub const VT_NEGATIVE_INFINITY_DEFAULT: ::flatbuffers::VOffsetT = 124; constant VT_DOUBLE_INF_DEFAULT (line 84) | pub const VT_DOUBLE_INF_DEFAULT: ::flatbuffers::VOffsetT = 126; function get_fully_qualified_name (line 86) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 91) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 96) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 165) | pub fn unpack(&self) -> MonsterT { function pos (line 394) | pub fn pos(&self) -> Option<&'a Vec3> { function mana (line 402) | pub fn mana(&self) -> i16 { function hp (line 410) | pub fn hp(&self) -> i16 { function name (line 418) | pub fn name(&self) -> &'a str { function key_compare_less_than (line 426) | pub fn key_compare_less_than(&self, o: &Monster) -> bool { function key_compare_with_value (line 431) | pub fn key_compare_with_value(&self, val: & str) -> ::core::cmp::Ordering { function inventory (line 437) | pub fn inventory(&self) -> Option<::flatbuffers::Vector<'a, u8>> { function color (line 445) | pub fn color(&self) -> Color { function test_type (line 453) | pub fn test_type(&self) -> Any { function test (line 461) | pub fn test(&self) -> Option<::flatbuffers::Table<'a>> { function test4 (line 469) | pub fn test4(&self) -> Option<::flatbuffers::Vector<'a, Test>> { function testarrayofstring (line 477) | pub fn testarrayofstring(&self) -> Option<::flatbuffers::Vector<'a, ::fl... function testarrayoftables (line 487) | pub fn testarrayoftables(&self) -> Option<::flatbuffers::Vector<'a, ::fl... function enemy (line 495) | pub fn enemy(&self) -> Option> { function testnestedflatbuffer (line 503) | pub fn testnestedflatbuffer(&self) -> Option<::flatbuffers::Vector<'a, u... function testnestedflatbuffer_nested_flatbuffer (line 510) | pub fn testnestedflatbuffer_nested_flatbuffer(&'a self) -> Option Option> { function testbool (line 529) | pub fn testbool(&self) -> bool { function testhashs32_fnv1 (line 537) | pub fn testhashs32_fnv1(&self) -> i32 { function testhashu32_fnv1 (line 545) | pub fn testhashu32_fnv1(&self) -> u32 { function testhashs64_fnv1 (line 553) | pub fn testhashs64_fnv1(&self) -> i64 { function testhashu64_fnv1 (line 561) | pub fn testhashu64_fnv1(&self) -> u64 { function testhashs32_fnv1a (line 569) | pub fn testhashs32_fnv1a(&self) -> i32 { function testhashu32_fnv1a (line 577) | pub fn testhashu32_fnv1a(&self) -> u32 { function testhashs64_fnv1a (line 585) | pub fn testhashs64_fnv1a(&self) -> i64 { function testhashu64_fnv1a (line 593) | pub fn testhashu64_fnv1a(&self) -> u64 { function testarrayofbools (line 601) | pub fn testarrayofbools(&self) -> Option<::flatbuffers::Vector<'a, bool>> { function testf (line 609) | pub fn testf(&self) -> f32 { function testf2 (line 617) | pub fn testf2(&self) -> f32 { function testf3 (line 625) | pub fn testf3(&self) -> f32 { function testarrayofstring2 (line 633) | pub fn testarrayofstring2(&self) -> Option<::flatbuffers::Vector<'a, ::f... function testarrayofsortedstruct (line 641) | pub fn testarrayofsortedstruct(&self) -> Option<::flatbuffers::Vector<'a... function flex (line 649) | pub fn flex(&self) -> Option<::flatbuffers::Vector<'a, u8>> { function test5 (line 657) | pub fn test5(&self) -> Option<::flatbuffers::Vector<'a, Test>> { function vector_of_longs (line 665) | pub fn vector_of_longs(&self) -> Option<::flatbuffers::Vector<'a, i64>> { function vector_of_doubles (line 673) | pub fn vector_of_doubles(&self) -> Option<::flatbuffers::Vector<'a, f64>> { function parent_namespace_test (line 681) | pub fn parent_namespace_test(&self) -> Option Option<::flatbuffers::Vector<'a, ... function single_weak_reference (line 697) | pub fn single_weak_reference(&self) -> u64 { function vector_of_weak_references (line 705) | pub fn vector_of_weak_references(&self) -> Option<::flatbuffers::Vector<... function vector_of_strong_referrables (line 713) | pub fn vector_of_strong_referrables(&self) -> Option<::flatbuffers::Vect... function co_owning_reference (line 721) | pub fn co_owning_reference(&self) -> u64 { function vector_of_co_owning_references (line 729) | pub fn vector_of_co_owning_references(&self) -> Option<::flatbuffers::Ve... function non_owning_reference (line 737) | pub fn non_owning_reference(&self) -> u64 { function vector_of_non_owning_references (line 745) | pub fn vector_of_non_owning_references(&self) -> Option<::flatbuffers::V... function any_unique_type (line 753) | pub fn any_unique_type(&self) -> AnyUniqueAliases { function any_unique (line 761) | pub fn any_unique(&self) -> Option<::flatbuffers::Table<'a>> { function any_ambiguous_type (line 769) | pub fn any_ambiguous_type(&self) -> AnyAmbiguousAliases { function any_ambiguous (line 777) | pub fn any_ambiguous(&self) -> Option<::flatbuffers::Table<'a>> { function vector_of_enums (line 785) | pub fn vector_of_enums(&self) -> Option<::flatbuffers::Vector<'a, Color>> { function signed_enum (line 793) | pub fn signed_enum(&self) -> Race { function testrequirednestedflatbuffer (line 801) | pub fn testrequirednestedflatbuffer(&self) -> Option<::flatbuffers::Vect... function testrequirednestedflatbuffer_nested_flatbuffer (line 808) | pub fn testrequirednestedflatbuffer_nested_flatbuffer(&'a self) -> Optio... function scalar_key_sorted_tables (line 819) | pub fn scalar_key_sorted_tables(&self) -> Option<::flatbuffers::Vector<'... function native_inline (line 827) | pub fn native_inline(&self) -> Option<&'a Test> { function long_enum_non_enum_default (line 835) | pub fn long_enum_non_enum_default(&self) -> LongEnum { function long_enum_normal_default (line 843) | pub fn long_enum_normal_default(&self) -> LongEnum { function nan_default (line 851) | pub fn nan_default(&self) -> f32 { function inf_default (line 859) | pub fn inf_default(&self) -> f32 { function positive_inf_default (line 867) | pub fn positive_inf_default(&self) -> f32 { function infinity_default (line 875) | pub fn infinity_default(&self) -> f32 { function positive_infinity_default (line 883) | pub fn positive_infinity_default(&self) -> f32 { function negative_inf_default (line 891) | pub fn negative_inf_default(&self) -> f32 { function negative_infinity_default (line 899) | pub fn negative_infinity_default(&self) -> f32 { function double_inf_default (line 907) | pub fn double_inf_default(&self) -> f64 { function test_as_monster (line 916) | pub fn test_as_monster(&self) -> Option> { function test_as_test_simple_table_with_enum (line 931) | pub fn test_as_test_simple_table_with_enum(&self) -> Option Option Option> { function any_unique_as_ts (line 976) | pub fn any_unique_as_ts(&self) -> Option> { function any_unique_as_m2 (line 991) | pub fn any_unique_as_m2(&self) -> Option> { function any_ambiguous_as_m1 (line 1006) | pub fn any_ambiguous_as_m1(&self) -> Option> { function any_ambiguous_as_m2 (line 1021) | pub fn any_ambiguous_as_m2(&self) -> Option> { function any_ambiguous_as_m3 (line 1036) | pub fn any_ambiguous_as_m3(&self) -> Option> { function run_verifier (line 1052) | fn run_verifier( type MonsterArgs (line 1140) | pub struct MonsterArgs<'a> { method default (line 1206) | fn default() -> Self { type MonsterBuilder (line 1273) | pub struct MonsterBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function add_pos (line 1280) | pub fn add_pos(&mut self, pos: &Vec3) { function add_mana (line 1285) | pub fn add_mana(&mut self, mana: i16) { function add_hp (line 1290) | pub fn add_hp(&mut self, hp: i16) { function add_name (line 1295) | pub fn add_name(&mut self, name: ::flatbuffers::WIPOffset<&'b str>) { function add_inventory (line 1300) | pub fn add_inventory(&mut self, inventory: ::flatbuffers::WIPOffset<::fl... function add_color (line 1305) | pub fn add_color(&mut self, color: Color) { function add_test_type (line 1310) | pub fn add_test_type(&mut self, test_type: Any) { function add_test (line 1315) | pub fn add_test(&mut self, test: ::flatbuffers::WIPOffset<::flatbuffers:... function add_test4 (line 1320) | pub fn add_test4(&mut self, test4: ::flatbuffers::WIPOffset<::flatbuffer... function add_testarrayofstring (line 1325) | pub fn add_testarrayofstring(&mut self, testarrayofstring: ::flatbuffers... function add_testarrayoftables (line 1330) | pub fn add_testarrayoftables(&mut self, testarrayoftables: ::flatbuffers... function add_enemy (line 1335) | pub fn add_enemy(&mut self, enemy: ::flatbuffers::WIPOffset... function add_testnestedflatbuffer (line 1340) | pub fn add_testnestedflatbuffer(&mut self, testnestedflatbuffer: ::flatb... function add_testempty (line 1345) | pub fn add_testempty(&mut self, testempty: ::flatbuffers::WIPOffset) -> Mon... function finish (line 1594) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 1602) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type MonsterT (line 1749) | pub struct MonsterT { method pack (line 1876) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 1811) | fn default() -> Self { function root_as_monster (line 2065) | pub fn root_as_monster(buf: &[u8]) -> Result, ::flatbuffers:... function size_prefixed_root_as_monster (line 2076) | pub fn size_prefixed_root_as_monster(buf: &[u8]) -> Result, ... function root_as_monster_with_opts (line 2087) | pub fn root_as_monster_with_opts<'b, 'o>( function size_prefixed_root_as_monster_with_opts (line 2101) | pub fn size_prefixed_root_as_monster_with_opts<'b, 'o>( function root_as_monster_unchecked (line 2112) | pub unsafe fn root_as_monster_unchecked(buf: &[u8]) -> Monster<'_> { function size_prefixed_root_as_monster_unchecked (line 2120) | pub unsafe fn size_prefixed_root_as_monster_unchecked(buf: &[u8]) -> Mon... constant MONSTER_IDENTIFIER (line 2124) | pub const MONSTER_IDENTIFIER: &str = "MONS"; function monster_buffer_has_identifier (line 2127) | pub fn monster_buffer_has_identifier(buf: &[u8]) -> bool { function monster_size_prefixed_buffer_has_identifier (line 2132) | pub fn monster_size_prefixed_buffer_has_identifier(buf: &[u8]) -> bool { constant MONSTER_EXTENSION (line 2136) | pub const MONSTER_EXTENSION: &str = "mon"; function finish_monster_buffer (line 2139) | pub fn finish_monster_buffer<'a, 'b, A: ::flatbuffers::Allocator + 'a>( function finish_size_prefixed_monster_buffer (line 2147) | pub fn finish_size_prefixed_monster_buffer<'a, 'b, A: ::flatbuffers::All... FILE: tests/monster_test/my_game/example/race_generated.rs constant ENUM_MIN_RACE (line 7) | pub const ENUM_MIN_RACE: i8 = -1; constant ENUM_MAX_RACE (line 10) | pub const ENUM_MAX_RACE: i8 = 2; constant ENUM_VALUES_RACE (line 14) | pub const ENUM_VALUES_RACE: [Race; 4] = [ type Race (line 23) | pub struct Race(pub i8); constant None (line 27) | pub const None: Self = Self(-1); constant Human (line 28) | pub const Human: Self = Self(0); constant Dwarf (line 29) | pub const Dwarf: Self = Self(1); constant Elf (line 30) | pub const Elf: Self = Self(2); constant ENUM_MIN (line 32) | pub const ENUM_MIN: i8 = -1; constant ENUM_MAX (line 33) | pub const ENUM_MAX: i8 = 2; constant ENUM_VALUES (line 34) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 42) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 54) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 64) | type Inner = Self; method follow (line 67) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 74) | type Output = Race; method push (line 77) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 83) | type Scalar = i8; method to_little_endian (line 86) | fn to_little_endian(self) -> i8 { method from_little_endian (line 92) | fn from_little_endian(v: i8) -> Self { method run_verifier (line 100) | fn run_verifier( FILE: tests/monster_test/my_game/example/referrable_generated.rs type ReferrableOffset (line 6) | pub enum ReferrableOffset {} type Referrable (line 9) | pub struct Referrable<'a> { type Inner (line 14) | type Inner = Referrable<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_ID (line 23) | pub const VT_ID: ::flatbuffers::VOffsetT = 4; function get_fully_qualified_name (line 25) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 30) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 35) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 44) | pub fn unpack(&self) -> ReferrableT { function id (line 52) | pub fn id(&self) -> u64 { function key_compare_less_than (line 60) | pub fn key_compare_less_than(&self, o: &Referrable) -> bool { function key_compare_with_value (line 65) | pub fn key_compare_with_value(&self, val: u64) -> ::core::cmp::Ordering { function run_verifier (line 73) | fn run_verifier( type ReferrableArgs (line 83) | pub struct ReferrableArgs { method default (line 89) | fn default() -> Self { type ReferrableBuilder (line 96) | pub struct ReferrableBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + '... function add_id (line 103) | pub fn add_id(&mut self, id: u64) { function new (line 108) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Ref... function finish (line 117) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 124) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type ReferrableT (line 133) | pub struct ReferrableT { method pack (line 146) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 138) | fn default() -> Self { FILE: tests/monster_test/my_game/example/stat_generated.rs type StatOffset (line 6) | pub enum StatOffset {} type Stat (line 9) | pub struct Stat<'a> { type Inner (line 14) | type Inner = Stat<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_ID (line 23) | pub const VT_ID: ::flatbuffers::VOffsetT = 4; constant VT_VAL (line 24) | pub const VT_VAL: ::flatbuffers::VOffsetT = 6; constant VT_COUNT (line 25) | pub const VT_COUNT: ::flatbuffers::VOffsetT = 8; function get_fully_qualified_name (line 27) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 32) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 37) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 48) | pub fn unpack(&self) -> StatT { function id (line 62) | pub fn id(&self) -> Option<&'a str> { function val (line 70) | pub fn val(&self) -> i64 { function count (line 78) | pub fn count(&self) -> u16 { function key_compare_less_than (line 86) | pub fn key_compare_less_than(&self, o: &Stat) -> bool { function key_compare_with_value (line 91) | pub fn key_compare_with_value(&self, val: u16) -> ::core::cmp::Ordering { function run_verifier (line 99) | fn run_verifier( type StatArgs (line 111) | pub struct StatArgs<'a> { method default (line 119) | fn default() -> Self { type StatBuilder (line 128) | pub struct StatBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function add_id (line 135) | pub fn add_id(&mut self, id: ::flatbuffers::WIPOffset<&'b str>) { function add_val (line 140) | pub fn add_val(&mut self, val: i64) { function add_count (line 145) | pub fn add_count(&mut self, count: u16) { function new (line 150) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Sta... function finish (line 159) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 166) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type StatT (line 177) | pub struct StatT { method pack (line 194) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 184) | fn default() -> Self { FILE: tests/monster_test/my_game/example/struct_of_structs_generated.rs type StructOfStructs (line 9) | pub struct StructOfStructs(pub [u8; 20]); method fmt (line 18) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 30) | type Inner = &'a StructOfStructs; method follow (line 33) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 48) | type Output = StructOfStructs; method push (line 51) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 57) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 64) | fn run_verifier( method new (line 73) | pub fn new( method get_fully_qualified_name (line 85) | pub const fn get_fully_qualified_name() -> &'static str { method a (line 89) | pub fn a(&self) -> &Ability { method set_a (line 97) | pub fn set_a(&mut self, x: &Ability) { method b (line 101) | pub fn b(&self) -> &Test { method set_b (line 109) | pub fn set_b(&mut self, x: &Test) { method c (line 113) | pub fn c(&self) -> &Ability { method set_c (line 121) | pub fn set_c(&mut self, x: &Ability) { method unpack (line 125) | pub fn unpack(&self) -> StructOfStructsT { method default (line 12) | fn default() -> Self { type Inner (line 39) | type Inner = &'a StructOfStructs; function follow (line 42) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type StructOfStructsT (line 135) | pub struct StructOfStructsT { method pack (line 151) | pub fn pack(&self) -> StructOfStructs { method default (line 141) | fn default() -> Self { FILE: tests/monster_test/my_game/example/struct_of_structs_of_structs_generated.rs type StructOfStructsOfStructs (line 9) | pub struct StructOfStructsOfStructs(pub [u8; 20]); method fmt (line 18) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 28) | type Inner = &'a StructOfStructsOfStructs; method follow (line 31) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 46) | type Output = StructOfStructsOfStructs; method push (line 49) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 55) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 62) | fn run_verifier( method new (line 71) | pub fn new( method get_fully_qualified_name (line 79) | pub const fn get_fully_qualified_name() -> &'static str { method a (line 83) | pub fn a(&self) -> &StructOfStructs { method set_a (line 91) | pub fn set_a(&mut self, x: &StructOfStructs) { method unpack (line 95) | pub fn unpack(&self) -> StructOfStructsOfStructsT { method default (line 12) | fn default() -> Self { type Inner (line 37) | type Inner = &'a StructOfStructsOfStructs; function follow (line 40) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type StructOfStructsOfStructsT (line 103) | pub struct StructOfStructsOfStructsT { method pack (line 115) | pub fn pack(&self) -> StructOfStructsOfStructs { method default (line 107) | fn default() -> Self { FILE: tests/monster_test/my_game/example/test_generated.rs type Test (line 9) | pub struct Test(pub [u8; 4]); method fmt (line 18) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 29) | type Inner = &'a Test; method follow (line 32) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 47) | type Output = Test; method push (line 50) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 56) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 63) | fn run_verifier( method new (line 72) | pub fn new( method get_fully_qualified_name (line 82) | pub const fn get_fully_qualified_name() -> &'static str { method a (line 86) | pub fn a(&self) -> i16 { method set_a (line 101) | pub fn set_a(&mut self, x: i16) { method b (line 115) | pub fn b(&self) -> i8 { method set_b (line 130) | pub fn set_b(&mut self, x: i8) { method unpack (line 144) | pub fn unpack(&self) -> TestT { method default (line 12) | fn default() -> Self { type Inner (line 38) | type Inner = &'a Test; function follow (line 41) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type TestT (line 153) | pub struct TestT { method pack (line 167) | pub fn pack(&self) -> Test { method default (line 158) | fn default() -> Self { FILE: tests/monster_test/my_game/example/test_simple_table_with_enum_generated.rs type TestSimpleTableWithEnumOffset (line 6) | pub enum TestSimpleTableWithEnumOffset {} type TestSimpleTableWithEnum (line 9) | pub struct TestSimpleTableWithEnum<'a> { type Inner (line 14) | type Inner = TestSimpleTableWithEnum<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_COLOR (line 23) | pub const VT_COLOR: ::flatbuffers::VOffsetT = 4; function get_fully_qualified_name (line 25) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 30) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 35) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 44) | pub fn unpack(&self) -> TestSimpleTableWithEnumT { function color (line 52) | pub fn color(&self) -> Color { function run_verifier (line 62) | fn run_verifier( type TestSimpleTableWithEnumArgs (line 72) | pub struct TestSimpleTableWithEnumArgs { method default (line 78) | fn default() -> Self { type TestSimpleTableWithEnumBuilder (line 85) | pub struct TestSimpleTableWithEnumBuilder<'a: 'b, 'b, A: ::flatbuffers::... function add_color (line 92) | pub fn add_color(&mut self, color: Color) { function new (line 97) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Tes... function finish (line 106) | pub fn finish(self) -> ::flatbuffers::WIPOffset) -> ::core::fmt::Result { type TestSimpleTableWithEnumT (line 122) | pub struct TestSimpleTableWithEnumT { method pack (line 135) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 127) | fn default() -> Self { FILE: tests/monster_test/my_game/example/type_aliases_generated.rs type TypeAliasesOffset (line 6) | pub enum TypeAliasesOffset {} type TypeAliases (line 9) | pub struct TypeAliases<'a> { type Inner (line 14) | type Inner = TypeAliases<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_I8_ (line 23) | pub const VT_I8_: ::flatbuffers::VOffsetT = 4; constant VT_U8_ (line 24) | pub const VT_U8_: ::flatbuffers::VOffsetT = 6; constant VT_I16_ (line 25) | pub const VT_I16_: ::flatbuffers::VOffsetT = 8; constant VT_U16_ (line 26) | pub const VT_U16_: ::flatbuffers::VOffsetT = 10; constant VT_I32_ (line 27) | pub const VT_I32_: ::flatbuffers::VOffsetT = 12; constant VT_U32_ (line 28) | pub const VT_U32_: ::flatbuffers::VOffsetT = 14; constant VT_I64_ (line 29) | pub const VT_I64_: ::flatbuffers::VOffsetT = 16; constant VT_U64_ (line 30) | pub const VT_U64_: ::flatbuffers::VOffsetT = 18; constant VT_F32_ (line 31) | pub const VT_F32_: ::flatbuffers::VOffsetT = 20; constant VT_F64_ (line 32) | pub const VT_F64_: ::flatbuffers::VOffsetT = 22; constant VT_V8 (line 33) | pub const VT_V8: ::flatbuffers::VOffsetT = 24; constant VT_VF64 (line 34) | pub const VT_VF64: ::flatbuffers::VOffsetT = 26; function get_fully_qualified_name (line 36) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 41) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 46) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 66) | pub fn unpack(&self) -> TypeAliasesT { function i8_ (line 100) | pub fn i8_(&self) -> i8 { function u8_ (line 108) | pub fn u8_(&self) -> u8 { function i16_ (line 116) | pub fn i16_(&self) -> i16 { function u16_ (line 124) | pub fn u16_(&self) -> u16 { function i32_ (line 132) | pub fn i32_(&self) -> i32 { function u32_ (line 140) | pub fn u32_(&self) -> u32 { function i64_ (line 148) | pub fn i64_(&self) -> i64 { function u64_ (line 156) | pub fn u64_(&self) -> u64 { function f32_ (line 164) | pub fn f32_(&self) -> f32 { function f64_ (line 172) | pub fn f64_(&self) -> f64 { function v8 (line 180) | pub fn v8(&self) -> Option<::flatbuffers::Vector<'a, i8>> { function vf64 (line 188) | pub fn vf64(&self) -> Option<::flatbuffers::Vector<'a, f64>> { function run_verifier (line 198) | fn run_verifier( type TypeAliasesArgs (line 219) | pub struct TypeAliasesArgs<'a> { method default (line 236) | fn default() -> Self { type TypeAliasesBuilder (line 254) | pub struct TypeAliasesBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + ... function add_i8_ (line 261) | pub fn add_i8_(&mut self, i8_: i8) { function add_u8_ (line 266) | pub fn add_u8_(&mut self, u8_: u8) { function add_i16_ (line 271) | pub fn add_i16_(&mut self, i16_: i16) { function add_u16_ (line 276) | pub fn add_u16_(&mut self, u16_: u16) { function add_i32_ (line 281) | pub fn add_i32_(&mut self, i32_: i32) { function add_u32_ (line 286) | pub fn add_u32_(&mut self, u32_: u32) { function add_i64_ (line 291) | pub fn add_i64_(&mut self, i64_: i64) { function add_u64_ (line 296) | pub fn add_u64_(&mut self, u64_: u64) { function add_f32_ (line 301) | pub fn add_f32_(&mut self, f32_: f32) { function add_f64_ (line 306) | pub fn add_f64_(&mut self, f64_: f64) { function add_v8 (line 311) | pub fn add_v8(&mut self, v8: ::flatbuffers::WIPOffset<::flatbuffers::Vec... function add_vf64 (line 316) | pub fn add_vf64(&mut self, vf64: ::flatbuffers::WIPOffset<::flatbuffers:... function new (line 321) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Typ... function finish (line 330) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 337) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type TypeAliasesT (line 357) | pub struct TypeAliasesT { method pack (line 392) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 373) | fn default() -> Self { FILE: tests/monster_test/my_game/example/vec_3_generated.rs type Vec3 (line 9) | pub struct Vec3(pub [u8; 32]); method fmt (line 18) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 33) | type Inner = &'a Vec3; method follow (line 36) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 51) | type Output = Vec3; method push (line 54) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 60) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 67) | fn run_verifier( method new (line 76) | pub fn new( method get_fully_qualified_name (line 94) | pub const fn get_fully_qualified_name() -> &'static str { method x (line 98) | pub fn x(&self) -> f32 { method set_x (line 113) | pub fn set_x(&mut self, x: f32) { method y (line 127) | pub fn y(&self) -> f32 { method set_y (line 142) | pub fn set_y(&mut self, x: f32) { method z (line 156) | pub fn z(&self) -> f32 { method set_z (line 171) | pub fn set_z(&mut self, x: f32) { method test1 (line 185) | pub fn test1(&self) -> f64 { method set_test1 (line 200) | pub fn set_test1(&mut self, x: f64) { method test2 (line 214) | pub fn test2(&self) -> Color { method set_test2 (line 229) | pub fn set_test2(&mut self, x: Color) { method test3 (line 243) | pub fn test3(&self) -> &Test { method set_test3 (line 251) | pub fn set_test3(&mut self, x: &Test) { method unpack (line 255) | pub fn unpack(&self) -> Vec3T { method default (line 12) | fn default() -> Self { type Inner (line 42) | type Inner = &'a Vec3; function follow (line 45) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Vec3T (line 268) | pub struct Vec3T { method pack (line 290) | pub fn pack(&self) -> Vec3 { method default (line 277) | fn default() -> Self { FILE: tests/monster_test/my_game/example_2/monster_generated.rs type MonsterOffset (line 6) | pub enum MonsterOffset {} type Monster (line 9) | pub struct Monster<'a> { type Inner (line 14) | type Inner = Monster<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { function get_fully_qualified_name (line 23) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 28) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 33) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 41) | pub fn unpack(&self) -> MonsterT { function run_verifier (line 49) | fn run_verifier( type MonsterArgs (line 58) | pub struct MonsterArgs { method default (line 63) | fn default() -> Self { type MonsterBuilder (line 69) | pub struct MonsterBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function new (line 76) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Mon... function finish (line 85) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 92) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type MonsterT (line 100) | pub struct MonsterT { method pack (line 111) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 104) | fn default() -> Self { FILE: tests/monster_test/my_game/in_parent_namespace_generated.rs type InParentNamespaceOffset (line 6) | pub enum InParentNamespaceOffset {} type InParentNamespace (line 9) | pub struct InParentNamespace<'a> { type Inner (line 14) | type Inner = InParentNamespace<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { function get_fully_qualified_name (line 23) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 28) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 33) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 41) | pub fn unpack(&self) -> InParentNamespaceT { function run_verifier (line 49) | fn run_verifier( type InParentNamespaceArgs (line 58) | pub struct InParentNamespaceArgs { method default (line 63) | fn default() -> Self { type InParentNamespaceBuilder (line 69) | pub struct InParentNamespaceBuilder<'a: 'b, 'b, A: ::flatbuffers::Alloca... function new (line 76) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> InP... function finish (line 85) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 92) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type InParentNamespaceT (line 100) | pub struct InParentNamespaceT { method pack (line 111) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 104) | fn default() -> Self { FILE: tests/monster_test/my_game/other_name_space/from_include_generated.rs constant ENUM_MIN_FROM_INCLUDE (line 7) | pub const ENUM_MIN_FROM_INCLUDE: i64 = 0; constant ENUM_MAX_FROM_INCLUDE (line 10) | pub const ENUM_MAX_FROM_INCLUDE: i64 = 0; constant ENUM_VALUES_FROM_INCLUDE (line 14) | pub const ENUM_VALUES_FROM_INCLUDE: [FromInclude; 1] = [ type FromInclude (line 20) | pub struct FromInclude(pub i64); constant IncludeVal (line 24) | pub const IncludeVal: Self = Self(0); constant ENUM_MIN (line 26) | pub const ENUM_MIN: i64 = 0; constant ENUM_MAX (line 27) | pub const ENUM_MAX: i64 = 0; constant ENUM_VALUES (line 28) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 33) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 42) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 52) | type Inner = Self; method follow (line 55) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 62) | type Output = FromInclude; method push (line 65) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 71) | type Scalar = i64; method to_little_endian (line 74) | fn to_little_endian(self) -> i64 { method from_little_endian (line 80) | fn from_little_endian(v: i64) -> Self { method run_verifier (line 88) | fn run_verifier( FILE: tests/monster_test/my_game/other_name_space/table_b_generated.rs type TableBOffset (line 6) | pub enum TableBOffset {} type TableB (line 9) | pub struct TableB<'a> { type Inner (line 14) | type Inner = TableB<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_A (line 23) | pub const VT_A: ::flatbuffers::VOffsetT = 4; function get_fully_qualified_name (line 25) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 30) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 35) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 44) | pub fn unpack(&self) -> TableBT { function a (line 54) | pub fn a(&self) -> Option> { function run_verifier (line 64) | fn run_verifier( type TableBArgs (line 74) | pub struct TableBArgs<'a> { method default (line 80) | fn default() -> Self { type TableBBuilder (line 87) | pub struct TableBBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function add_a (line 94) | pub fn add_a(&mut self, a: ::flatbuffers::WIPOffset) -> Tab... function finish (line 108) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 115) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type TableBT (line 124) | pub struct TableBT { method pack (line 137) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 129) | fn default() -> Self { FILE: tests/monster_test/my_game/other_name_space/unused_generated.rs type Unused (line 9) | pub struct Unused(pub [u8; 4]); method fmt (line 18) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 28) | type Inner = &'a Unused; method follow (line 31) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 46) | type Output = Unused; method push (line 49) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 55) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 62) | fn run_verifier( method new (line 71) | pub fn new( method get_fully_qualified_name (line 79) | pub const fn get_fully_qualified_name() -> &'static str { method a (line 83) | pub fn a(&self) -> i32 { method set_a (line 98) | pub fn set_a(&mut self, x: i32) { method unpack (line 112) | pub fn unpack(&self) -> UnusedT { method default (line 12) | fn default() -> Self { type Inner (line 37) | type Inner = &'a Unused; function follow (line 40) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type UnusedT (line 120) | pub struct UnusedT { method pack (line 132) | pub fn pack(&self) -> Unused { method default (line 124) | fn default() -> Self { FILE: tests/monster_test/table_a_generated.rs type TableAOffset (line 6) | pub enum TableAOffset {} type TableA (line 9) | pub struct TableA<'a> { type Inner (line 14) | type Inner = TableA<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_B (line 23) | pub const VT_B: ::flatbuffers::VOffsetT = 4; function get_fully_qualified_name (line 25) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 30) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 35) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 44) | pub fn unpack(&self) -> TableAT { function b (line 54) | pub fn b(&self) -> Option> { function run_verifier (line 64) | fn run_verifier( type TableAArgs (line 74) | pub struct TableAArgs<'a> { method default (line 80) | fn default() -> Self { type TableABuilder (line 87) | pub struct TableABuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function add_b (line 94) | pub fn add_b(&mut self, b: ::flatbuffers::WIPOffset) -> Tab... function finish (line 108) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 115) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type TableAT (line 124) | pub struct TableAT { method pack (line 137) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 129) | fn default() -> Self { FILE: tests/monster_test_generated.grpc.fb.cc type MyGame (line 17) | namespace MyGame { type Example (line 18) | namespace Example { FILE: tests/monster_test_generated.grpc.fb.h function namespace (line 20) | namespace grpc { function namespace (line 27) | namespace MyGame { function class (line 340) | class Service : public ::grpc::Service { function RequestStore (line 380) | void RequestStore( function RequestRetrieve (line 410) | void RequestRetrieve( function RequestGetMaxHitPoint (line 438) | void RequestGetMaxHitPoint( function RequestGetMinMaxHitPoints (line 469) | void RequestGetMinMaxHitPoints( type WithAsyncMethod_Store (line 480) | typedef WithAsyncMethod_Store< type WithStreamedUnaryMethod_Store (line 598) | typedef WithStreamedUnaryMethod_Store StreamedUnaryService; type WithSplitStreamingMethod_Retrieve (line 633) | typedef WithSplitStreamingMethod_Retrieve SplitStreamedService; type WithStreamedUnaryMethod_Store (line 634) | typedef WithStreamedUnaryMethod_Store< FILE: tests/monster_test_generated.py class Color (line 10) | class Color(object): class Race (line 19) | class Race(object): class LongEnum (line 26) | class LongEnum(object): class Any (line 32) | class Any(object): function AnyCreator (line 38) | def AnyCreator(unionType, table): class AnyUniqueAliases (line 51) | class AnyUniqueAliases(object): function AnyUniqueAliasesCreator (line 57) | def AnyUniqueAliasesCreator(unionType, table): class AnyAmbiguousAliases (line 70) | class AnyAmbiguousAliases(object): function AnyAmbiguousAliasesCreator (line 76) | def AnyAmbiguousAliasesCreator(unionType, table): class InParentNamespace (line 89) | class InParentNamespace(object): method GetRootAs (line 93) | def GetRootAs(cls, buf, offset=0): method GetRootAsInParentNamespace (line 100) | def GetRootAsInParentNamespace(cls, buf, offset=0): method InParentNamespaceBufferHasIdentifier (line 104) | def InParentNamespaceBufferHasIdentifier(cls, buf, offset, size_prefix... method Init (line 108) | def Init(self, buf, pos): function InParentNamespaceStart (line 111) | def InParentNamespaceStart(builder): function InParentNamespaceEnd (line 114) | def InParentNamespaceEnd(builder): class InParentNamespaceT (line 119) | class InParentNamespaceT(object): method __init__ (line 122) | def __init__( method InitFromBuf (line 128) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 134) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 139) | def InitFromObj(cls, inParentNamespace): method _UnPack (line 145) | def _UnPack(self, inParentNamespace): method Pack (line 150) | def Pack(self, builder): class Monster (line 156) | class Monster(object): method GetRootAs (line 160) | def GetRootAs(cls, buf, offset=0): method GetRootAsMonster (line 167) | def GetRootAsMonster(cls, buf, offset=0): method MonsterBufferHasIdentifier (line 171) | def MonsterBufferHasIdentifier(cls, buf, offset, size_prefixed=False): method Init (line 175) | def Init(self, buf, pos): method GetRootAs (line 894) | def GetRootAs(cls, buf, offset=0): method GetRootAsMonster (line 901) | def GetRootAsMonster(cls, buf, offset=0): method MonsterBufferHasIdentifier (line 905) | def MonsterBufferHasIdentifier(cls, buf, offset, size_prefixed=False): method Init (line 909) | def Init(self, buf, pos): method Pos (line 913) | def Pos(self): method Mana (line 923) | def Mana(self): method Hp (line 930) | def Hp(self): method Name (line 937) | def Name(self): method Inventory (line 944) | def Inventory(self, j): method InventoryAsNumpy (line 952) | def InventoryAsNumpy(self): method InventoryLength (line 959) | def InventoryLength(self): method InventoryIsNone (line 966) | def InventoryIsNone(self): method Color (line 971) | def Color(self): method TestType (line 978) | def TestType(self): method Test (line 985) | def Test(self): method Test4 (line 995) | def Test4(self, j): method Test4Length (line 1006) | def Test4Length(self): method Test4IsNone (line 1013) | def Test4IsNone(self): method Testarrayofstring (line 1018) | def Testarrayofstring(self, j): method TestarrayofstringLength (line 1026) | def TestarrayofstringLength(self): method TestarrayofstringIsNone (line 1033) | def TestarrayofstringIsNone(self): method Testarrayoftables (line 1040) | def Testarrayoftables(self, j): method TestarrayoftablesLength (line 1052) | def TestarrayoftablesLength(self): method TestarrayoftablesIsNone (line 1059) | def TestarrayoftablesIsNone(self): method Enemy (line 1064) | def Enemy(self): method Testnestedflatbuffer (line 1074) | def Testnestedflatbuffer(self, j): method TestnestedflatbufferAsNumpy (line 1082) | def TestnestedflatbufferAsNumpy(self): method TestnestedflatbufferNestedRoot (line 1089) | def TestnestedflatbufferNestedRoot(self): method TestnestedflatbufferLength (line 1097) | def TestnestedflatbufferLength(self): method TestnestedflatbufferIsNone (line 1104) | def TestnestedflatbufferIsNone(self): method Testempty (line 1109) | def Testempty(self): method Testbool (line 1119) | def Testbool(self): method Testhashs32Fnv1 (line 1126) | def Testhashs32Fnv1(self): method Testhashu32Fnv1 (line 1133) | def Testhashu32Fnv1(self): method Testhashs64Fnv1 (line 1140) | def Testhashs64Fnv1(self): method Testhashu64Fnv1 (line 1147) | def Testhashu64Fnv1(self): method Testhashs32Fnv1a (line 1154) | def Testhashs32Fnv1a(self): method Testhashu32Fnv1a (line 1161) | def Testhashu32Fnv1a(self): method Testhashs64Fnv1a (line 1168) | def Testhashs64Fnv1a(self): method Testhashu64Fnv1a (line 1175) | def Testhashu64Fnv1a(self): method Testarrayofbools (line 1182) | def Testarrayofbools(self, j): method TestarrayofboolsAsNumpy (line 1190) | def TestarrayofboolsAsNumpy(self): method TestarrayofboolsLength (line 1197) | def TestarrayofboolsLength(self): method TestarrayofboolsIsNone (line 1204) | def TestarrayofboolsIsNone(self): method Testf (line 1209) | def Testf(self): method Testf2 (line 1216) | def Testf2(self): method Testf3 (line 1223) | def Testf3(self): method Testarrayofstring2 (line 1230) | def Testarrayofstring2(self, j): method Testarrayofstring2Length (line 1238) | def Testarrayofstring2Length(self): method Testarrayofstring2IsNone (line 1245) | def Testarrayofstring2IsNone(self): method Testarrayofsortedstruct (line 1250) | def Testarrayofsortedstruct(self, j): method TestarrayofsortedstructLength (line 1261) | def TestarrayofsortedstructLength(self): method TestarrayofsortedstructIsNone (line 1268) | def TestarrayofsortedstructIsNone(self): method Flex (line 1273) | def Flex(self, j): method FlexAsNumpy (line 1281) | def FlexAsNumpy(self): method FlexLength (line 1288) | def FlexLength(self): method FlexIsNone (line 1295) | def FlexIsNone(self): method Test5 (line 1300) | def Test5(self, j): method Test5Length (line 1311) | def Test5Length(self): method Test5IsNone (line 1318) | def Test5IsNone(self): method VectorOfLongs (line 1323) | def VectorOfLongs(self, j): method VectorOfLongsAsNumpy (line 1331) | def VectorOfLongsAsNumpy(self): method VectorOfLongsLength (line 1338) | def VectorOfLongsLength(self): method VectorOfLongsIsNone (line 1345) | def VectorOfLongsIsNone(self): method VectorOfDoubles (line 1350) | def VectorOfDoubles(self, j): method VectorOfDoublesAsNumpy (line 1358) | def VectorOfDoublesAsNumpy(self): method VectorOfDoublesLength (line 1365) | def VectorOfDoublesLength(self): method VectorOfDoublesIsNone (line 1372) | def VectorOfDoublesIsNone(self): method ParentNamespaceTest (line 1377) | def ParentNamespaceTest(self): method VectorOfReferrables (line 1387) | def VectorOfReferrables(self, j): method VectorOfReferrablesLength (line 1399) | def VectorOfReferrablesLength(self): method VectorOfReferrablesIsNone (line 1406) | def VectorOfReferrablesIsNone(self): method SingleWeakReference (line 1411) | def SingleWeakReference(self): method VectorOfWeakReferences (line 1418) | def VectorOfWeakReferences(self, j): method VectorOfWeakReferencesAsNumpy (line 1426) | def VectorOfWeakReferencesAsNumpy(self): method VectorOfWeakReferencesLength (line 1433) | def VectorOfWeakReferencesLength(self): method VectorOfWeakReferencesIsNone (line 1440) | def VectorOfWeakReferencesIsNone(self): method VectorOfStrongReferrables (line 1445) | def VectorOfStrongReferrables(self, j): method VectorOfStrongReferrablesLength (line 1457) | def VectorOfStrongReferrablesLength(self): method VectorOfStrongReferrablesIsNone (line 1464) | def VectorOfStrongReferrablesIsNone(self): method CoOwningReference (line 1469) | def CoOwningReference(self): method VectorOfCoOwningReferences (line 1476) | def VectorOfCoOwningReferences(self, j): method VectorOfCoOwningReferencesAsNumpy (line 1484) | def VectorOfCoOwningReferencesAsNumpy(self): method VectorOfCoOwningReferencesLength (line 1491) | def VectorOfCoOwningReferencesLength(self): method VectorOfCoOwningReferencesIsNone (line 1498) | def VectorOfCoOwningReferencesIsNone(self): method NonOwningReference (line 1503) | def NonOwningReference(self): method VectorOfNonOwningReferences (line 1510) | def VectorOfNonOwningReferences(self, j): method VectorOfNonOwningReferencesAsNumpy (line 1518) | def VectorOfNonOwningReferencesAsNumpy(self): method VectorOfNonOwningReferencesLength (line 1525) | def VectorOfNonOwningReferencesLength(self): method VectorOfNonOwningReferencesIsNone (line 1532) | def VectorOfNonOwningReferencesIsNone(self): method AnyUniqueType (line 1537) | def AnyUniqueType(self): method AnyUnique (line 1544) | def AnyUnique(self): method AnyAmbiguousType (line 1554) | def AnyAmbiguousType(self): method AnyAmbiguous (line 1561) | def AnyAmbiguous(self): method VectorOfEnums (line 1571) | def VectorOfEnums(self, j): method VectorOfEnumsAsNumpy (line 1579) | def VectorOfEnumsAsNumpy(self): method VectorOfEnumsLength (line 1586) | def VectorOfEnumsLength(self): method VectorOfEnumsIsNone (line 1593) | def VectorOfEnumsIsNone(self): method SignedEnum (line 1598) | def SignedEnum(self): method Testrequirednestedflatbuffer (line 1605) | def Testrequirednestedflatbuffer(self, j): method TestrequirednestedflatbufferAsNumpy (line 1613) | def TestrequirednestedflatbufferAsNumpy(self): method TestrequirednestedflatbufferNestedRoot (line 1620) | def TestrequirednestedflatbufferNestedRoot(self): method TestrequirednestedflatbufferLength (line 1628) | def TestrequirednestedflatbufferLength(self): method TestrequirednestedflatbufferIsNone (line 1635) | def TestrequirednestedflatbufferIsNone(self): method ScalarKeySortedTables (line 1640) | def ScalarKeySortedTables(self, j): method ScalarKeySortedTablesLength (line 1652) | def ScalarKeySortedTablesLength(self): method ScalarKeySortedTablesIsNone (line 1659) | def ScalarKeySortedTablesIsNone(self): method NativeInline (line 1664) | def NativeInline(self): method LongEnumNonEnumDefault (line 1674) | def LongEnumNonEnumDefault(self): method LongEnumNormalDefault (line 1681) | def LongEnumNormalDefault(self): method NanDefault (line 1688) | def NanDefault(self): method InfDefault (line 1695) | def InfDefault(self): method PositiveInfDefault (line 1702) | def PositiveInfDefault(self): method InfinityDefault (line 1709) | def InfinityDefault(self): method PositiveInfinityDefault (line 1716) | def PositiveInfinityDefault(self): method NegativeInfDefault (line 1723) | def NegativeInfDefault(self): method NegativeInfinityDefault (line 1730) | def NegativeInfinityDefault(self): method DoubleInfDefault (line 1737) | def DoubleInfDefault(self): function MonsterStart (line 178) | def MonsterStart(builder): function MonsterEnd (line 181) | def MonsterEnd(builder): class MonsterT (line 186) | class MonsterT(object): method __init__ (line 189) | def __init__( method InitFromBuf (line 195) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 201) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 206) | def InitFromObj(cls, monster): method _UnPack (line 212) | def _UnPack(self, monster): method Pack (line 217) | def Pack(self, builder): method __init__ (line 2127) | def __init__( method InitFromBuf (line 2254) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 2260) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 2265) | def InitFromObj(cls, monster): method _UnPack (line 2271) | def _UnPack(self, monster): method Pack (line 2463) | def Pack(self, builder): class Test (line 223) | class Test(object): method SizeOf (line 227) | def SizeOf(cls): method Init (line 231) | def Init(self, buf, pos): method A (line 235) | def A(self): return self._tab.Get(flatbuffers.number_types.Int16Flags,... method B (line 237) | def B(self): return self._tab.Get(flatbuffers.number_types.Int8Flags, ... function CreateTest (line 239) | def CreateTest(builder, a, b): class TestT (line 247) | class TestT(object): method __init__ (line 250) | def __init__( method InitFromBuf (line 259) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 265) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 270) | def InitFromObj(cls, test): method _UnPack (line 276) | def _UnPack(self, test): method Pack (line 283) | def Pack(self, builder): class TestSimpleTableWithEnum (line 287) | class TestSimpleTableWithEnum(object): method GetRootAs (line 291) | def GetRootAs(cls, buf, offset=0): method GetRootAsTestSimpleTableWithEnum (line 298) | def GetRootAsTestSimpleTableWithEnum(cls, buf, offset=0): method TestSimpleTableWithEnumBufferHasIdentifier (line 302) | def TestSimpleTableWithEnumBufferHasIdentifier(cls, buf, offset, size_... method Init (line 306) | def Init(self, buf, pos): method Color (line 310) | def Color(self): function TestSimpleTableWithEnumStart (line 316) | def TestSimpleTableWithEnumStart(builder): function TestSimpleTableWithEnumAddColor (line 319) | def TestSimpleTableWithEnumAddColor(builder, color): function TestSimpleTableWithEnumEnd (line 322) | def TestSimpleTableWithEnumEnd(builder): class TestSimpleTableWithEnumT (line 327) | class TestSimpleTableWithEnumT(object): method __init__ (line 330) | def __init__( method InitFromBuf (line 337) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 343) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 348) | def InitFromObj(cls, testSimpleTableWithEnum): method _UnPack (line 354) | def _UnPack(self, testSimpleTableWithEnum): method Pack (line 360) | def Pack(self, builder): class Vec3 (line 367) | class Vec3(object): method SizeOf (line 371) | def SizeOf(cls): method Init (line 375) | def Init(self, buf, pos): method X (line 379) | def X(self): return self._tab.Get(flatbuffers.number_types.Float32Flag... method Y (line 381) | def Y(self): return self._tab.Get(flatbuffers.number_types.Float32Flag... method Z (line 383) | def Z(self): return self._tab.Get(flatbuffers.number_types.Float32Flag... method Test1 (line 385) | def Test1(self): return self._tab.Get(flatbuffers.number_types.Float64... method Test2 (line 387) | def Test2(self): return self._tab.Get(flatbuffers.number_types.Uint8Fl... method Test3 (line 389) | def Test3(self, obj): function CreateVec3 (line 394) | def CreateVec3(builder, x, y, z, test1, test2, test3_a, test3_b): class Vec3T (line 415) | class Vec3T(object): method __init__ (line 418) | def __init__( method InitFromBuf (line 435) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 441) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 446) | def InitFromObj(cls, vec3): method _UnPack (line 452) | def _UnPack(self, vec3): method Pack (line 464) | def Pack(self, builder): class Ability (line 468) | class Ability(object): method SizeOf (line 472) | def SizeOf(cls): method Init (line 476) | def Init(self, buf, pos): method Id (line 480) | def Id(self): return self._tab.Get(flatbuffers.number_types.Uint32Flag... method Distance (line 482) | def Distance(self): return self._tab.Get(flatbuffers.number_types.Uint... function CreateAbility (line 484) | def CreateAbility(builder, id, distance): class AbilityT (line 491) | class AbilityT(object): method __init__ (line 494) | def __init__( method InitFromBuf (line 503) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 509) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 514) | def InitFromObj(cls, ability): method _UnPack (line 520) | def _UnPack(self, ability): method Pack (line 527) | def Pack(self, builder): class StructOfStructs (line 531) | class StructOfStructs(object): method SizeOf (line 535) | def SizeOf(cls): method Init (line 539) | def Init(self, buf, pos): method A (line 543) | def A(self, obj): method B (line 548) | def B(self, obj): method C (line 553) | def C(self, obj): function CreateStructOfStructs (line 558) | def CreateStructOfStructs(builder, a_id, a_distance, b_a, b_b, c_id, c_d... class StructOfStructsT (line 577) | class StructOfStructsT(object): method __init__ (line 580) | def __init__( method InitFromBuf (line 591) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 597) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 602) | def InitFromObj(cls, structOfStructs): method _UnPack (line 608) | def _UnPack(self, structOfStructs): method Pack (line 619) | def Pack(self, builder): class StructOfStructsOfStructs (line 623) | class StructOfStructsOfStructs(object): method SizeOf (line 627) | def SizeOf(cls): method Init (line 631) | def Init(self, buf, pos): method A (line 635) | def A(self, obj): function CreateStructOfStructsOfStructs (line 640) | def CreateStructOfStructsOfStructs(builder, a_a_id, a_a_distance, a_b_a,... class StructOfStructsOfStructsT (line 660) | class StructOfStructsOfStructsT(object): method __init__ (line 663) | def __init__( method InitFromBuf (line 670) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 676) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 681) | def InitFromObj(cls, structOfStructsOfStructs): method _UnPack (line 687) | def _UnPack(self, structOfStructsOfStructs): method Pack (line 694) | def Pack(self, builder): class Stat (line 698) | class Stat(object): method GetRootAs (line 702) | def GetRootAs(cls, buf, offset=0): method GetRootAsStat (line 709) | def GetRootAsStat(cls, buf, offset=0): method StatBufferHasIdentifier (line 713) | def StatBufferHasIdentifier(cls, buf, offset, size_prefixed=False): method Init (line 717) | def Init(self, buf, pos): method Id (line 721) | def Id(self): method Val (line 728) | def Val(self): method Count (line 735) | def Count(self): function StatStart (line 741) | def StatStart(builder): function StatAddId (line 744) | def StatAddId(builder, id): function StatAddVal (line 747) | def StatAddVal(builder, val): function StatAddCount (line 750) | def StatAddCount(builder, count): function StatEnd (line 753) | def StatEnd(builder): class StatT (line 758) | class StatT(object): method __init__ (line 761) | def __init__( method InitFromBuf (line 772) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 778) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 783) | def InitFromObj(cls, stat): method _UnPack (line 789) | def _UnPack(self, stat): method Pack (line 797) | def Pack(self, builder): class Referrable (line 809) | class Referrable(object): method GetRootAs (line 813) | def GetRootAs(cls, buf, offset=0): method GetRootAsReferrable (line 820) | def GetRootAsReferrable(cls, buf, offset=0): method ReferrableBufferHasIdentifier (line 824) | def ReferrableBufferHasIdentifier(cls, buf, offset, size_prefixed=False): method Init (line 828) | def Init(self, buf, pos): method Id (line 832) | def Id(self): function ReferrableStart (line 838) | def ReferrableStart(builder): function ReferrableAddId (line 841) | def ReferrableAddId(builder, id): function ReferrableEnd (line 844) | def ReferrableEnd(builder): class ReferrableT (line 849) | class ReferrableT(object): method __init__ (line 852) | def __init__( method InitFromBuf (line 859) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 865) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 870) | def InitFromObj(cls, referrable): method _UnPack (line 876) | def _UnPack(self, referrable): method Pack (line 882) | def Pack(self, builder): class Monster (line 890) | class Monster(object): method GetRootAs (line 160) | def GetRootAs(cls, buf, offset=0): method GetRootAsMonster (line 167) | def GetRootAsMonster(cls, buf, offset=0): method MonsterBufferHasIdentifier (line 171) | def MonsterBufferHasIdentifier(cls, buf, offset, size_prefixed=False): method Init (line 175) | def Init(self, buf, pos): method GetRootAs (line 894) | def GetRootAs(cls, buf, offset=0): method GetRootAsMonster (line 901) | def GetRootAsMonster(cls, buf, offset=0): method MonsterBufferHasIdentifier (line 905) | def MonsterBufferHasIdentifier(cls, buf, offset, size_prefixed=False): method Init (line 909) | def Init(self, buf, pos): method Pos (line 913) | def Pos(self): method Mana (line 923) | def Mana(self): method Hp (line 930) | def Hp(self): method Name (line 937) | def Name(self): method Inventory (line 944) | def Inventory(self, j): method InventoryAsNumpy (line 952) | def InventoryAsNumpy(self): method InventoryLength (line 959) | def InventoryLength(self): method InventoryIsNone (line 966) | def InventoryIsNone(self): method Color (line 971) | def Color(self): method TestType (line 978) | def TestType(self): method Test (line 985) | def Test(self): method Test4 (line 995) | def Test4(self, j): method Test4Length (line 1006) | def Test4Length(self): method Test4IsNone (line 1013) | def Test4IsNone(self): method Testarrayofstring (line 1018) | def Testarrayofstring(self, j): method TestarrayofstringLength (line 1026) | def TestarrayofstringLength(self): method TestarrayofstringIsNone (line 1033) | def TestarrayofstringIsNone(self): method Testarrayoftables (line 1040) | def Testarrayoftables(self, j): method TestarrayoftablesLength (line 1052) | def TestarrayoftablesLength(self): method TestarrayoftablesIsNone (line 1059) | def TestarrayoftablesIsNone(self): method Enemy (line 1064) | def Enemy(self): method Testnestedflatbuffer (line 1074) | def Testnestedflatbuffer(self, j): method TestnestedflatbufferAsNumpy (line 1082) | def TestnestedflatbufferAsNumpy(self): method TestnestedflatbufferNestedRoot (line 1089) | def TestnestedflatbufferNestedRoot(self): method TestnestedflatbufferLength (line 1097) | def TestnestedflatbufferLength(self): method TestnestedflatbufferIsNone (line 1104) | def TestnestedflatbufferIsNone(self): method Testempty (line 1109) | def Testempty(self): method Testbool (line 1119) | def Testbool(self): method Testhashs32Fnv1 (line 1126) | def Testhashs32Fnv1(self): method Testhashu32Fnv1 (line 1133) | def Testhashu32Fnv1(self): method Testhashs64Fnv1 (line 1140) | def Testhashs64Fnv1(self): method Testhashu64Fnv1 (line 1147) | def Testhashu64Fnv1(self): method Testhashs32Fnv1a (line 1154) | def Testhashs32Fnv1a(self): method Testhashu32Fnv1a (line 1161) | def Testhashu32Fnv1a(self): method Testhashs64Fnv1a (line 1168) | def Testhashs64Fnv1a(self): method Testhashu64Fnv1a (line 1175) | def Testhashu64Fnv1a(self): method Testarrayofbools (line 1182) | def Testarrayofbools(self, j): method TestarrayofboolsAsNumpy (line 1190) | def TestarrayofboolsAsNumpy(self): method TestarrayofboolsLength (line 1197) | def TestarrayofboolsLength(self): method TestarrayofboolsIsNone (line 1204) | def TestarrayofboolsIsNone(self): method Testf (line 1209) | def Testf(self): method Testf2 (line 1216) | def Testf2(self): method Testf3 (line 1223) | def Testf3(self): method Testarrayofstring2 (line 1230) | def Testarrayofstring2(self, j): method Testarrayofstring2Length (line 1238) | def Testarrayofstring2Length(self): method Testarrayofstring2IsNone (line 1245) | def Testarrayofstring2IsNone(self): method Testarrayofsortedstruct (line 1250) | def Testarrayofsortedstruct(self, j): method TestarrayofsortedstructLength (line 1261) | def TestarrayofsortedstructLength(self): method TestarrayofsortedstructIsNone (line 1268) | def TestarrayofsortedstructIsNone(self): method Flex (line 1273) | def Flex(self, j): method FlexAsNumpy (line 1281) | def FlexAsNumpy(self): method FlexLength (line 1288) | def FlexLength(self): method FlexIsNone (line 1295) | def FlexIsNone(self): method Test5 (line 1300) | def Test5(self, j): method Test5Length (line 1311) | def Test5Length(self): method Test5IsNone (line 1318) | def Test5IsNone(self): method VectorOfLongs (line 1323) | def VectorOfLongs(self, j): method VectorOfLongsAsNumpy (line 1331) | def VectorOfLongsAsNumpy(self): method VectorOfLongsLength (line 1338) | def VectorOfLongsLength(self): method VectorOfLongsIsNone (line 1345) | def VectorOfLongsIsNone(self): method VectorOfDoubles (line 1350) | def VectorOfDoubles(self, j): method VectorOfDoublesAsNumpy (line 1358) | def VectorOfDoublesAsNumpy(self): method VectorOfDoublesLength (line 1365) | def VectorOfDoublesLength(self): method VectorOfDoublesIsNone (line 1372) | def VectorOfDoublesIsNone(self): method ParentNamespaceTest (line 1377) | def ParentNamespaceTest(self): method VectorOfReferrables (line 1387) | def VectorOfReferrables(self, j): method VectorOfReferrablesLength (line 1399) | def VectorOfReferrablesLength(self): method VectorOfReferrablesIsNone (line 1406) | def VectorOfReferrablesIsNone(self): method SingleWeakReference (line 1411) | def SingleWeakReference(self): method VectorOfWeakReferences (line 1418) | def VectorOfWeakReferences(self, j): method VectorOfWeakReferencesAsNumpy (line 1426) | def VectorOfWeakReferencesAsNumpy(self): method VectorOfWeakReferencesLength (line 1433) | def VectorOfWeakReferencesLength(self): method VectorOfWeakReferencesIsNone (line 1440) | def VectorOfWeakReferencesIsNone(self): method VectorOfStrongReferrables (line 1445) | def VectorOfStrongReferrables(self, j): method VectorOfStrongReferrablesLength (line 1457) | def VectorOfStrongReferrablesLength(self): method VectorOfStrongReferrablesIsNone (line 1464) | def VectorOfStrongReferrablesIsNone(self): method CoOwningReference (line 1469) | def CoOwningReference(self): method VectorOfCoOwningReferences (line 1476) | def VectorOfCoOwningReferences(self, j): method VectorOfCoOwningReferencesAsNumpy (line 1484) | def VectorOfCoOwningReferencesAsNumpy(self): method VectorOfCoOwningReferencesLength (line 1491) | def VectorOfCoOwningReferencesLength(self): method VectorOfCoOwningReferencesIsNone (line 1498) | def VectorOfCoOwningReferencesIsNone(self): method NonOwningReference (line 1503) | def NonOwningReference(self): method VectorOfNonOwningReferences (line 1510) | def VectorOfNonOwningReferences(self, j): method VectorOfNonOwningReferencesAsNumpy (line 1518) | def VectorOfNonOwningReferencesAsNumpy(self): method VectorOfNonOwningReferencesLength (line 1525) | def VectorOfNonOwningReferencesLength(self): method VectorOfNonOwningReferencesIsNone (line 1532) | def VectorOfNonOwningReferencesIsNone(self): method AnyUniqueType (line 1537) | def AnyUniqueType(self): method AnyUnique (line 1544) | def AnyUnique(self): method AnyAmbiguousType (line 1554) | def AnyAmbiguousType(self): method AnyAmbiguous (line 1561) | def AnyAmbiguous(self): method VectorOfEnums (line 1571) | def VectorOfEnums(self, j): method VectorOfEnumsAsNumpy (line 1579) | def VectorOfEnumsAsNumpy(self): method VectorOfEnumsLength (line 1586) | def VectorOfEnumsLength(self): method VectorOfEnumsIsNone (line 1593) | def VectorOfEnumsIsNone(self): method SignedEnum (line 1598) | def SignedEnum(self): method Testrequirednestedflatbuffer (line 1605) | def Testrequirednestedflatbuffer(self, j): method TestrequirednestedflatbufferAsNumpy (line 1613) | def TestrequirednestedflatbufferAsNumpy(self): method TestrequirednestedflatbufferNestedRoot (line 1620) | def TestrequirednestedflatbufferNestedRoot(self): method TestrequirednestedflatbufferLength (line 1628) | def TestrequirednestedflatbufferLength(self): method TestrequirednestedflatbufferIsNone (line 1635) | def TestrequirednestedflatbufferIsNone(self): method ScalarKeySortedTables (line 1640) | def ScalarKeySortedTables(self, j): method ScalarKeySortedTablesLength (line 1652) | def ScalarKeySortedTablesLength(self): method ScalarKeySortedTablesIsNone (line 1659) | def ScalarKeySortedTablesIsNone(self): method NativeInline (line 1664) | def NativeInline(self): method LongEnumNonEnumDefault (line 1674) | def LongEnumNonEnumDefault(self): method LongEnumNormalDefault (line 1681) | def LongEnumNormalDefault(self): method NanDefault (line 1688) | def NanDefault(self): method InfDefault (line 1695) | def InfDefault(self): method PositiveInfDefault (line 1702) | def PositiveInfDefault(self): method InfinityDefault (line 1709) | def InfinityDefault(self): method PositiveInfinityDefault (line 1716) | def PositiveInfinityDefault(self): method NegativeInfDefault (line 1723) | def NegativeInfDefault(self): method NegativeInfinityDefault (line 1730) | def NegativeInfinityDefault(self): method DoubleInfDefault (line 1737) | def DoubleInfDefault(self): function MonsterStart (line 1743) | def MonsterStart(builder): function MonsterAddPos (line 1746) | def MonsterAddPos(builder, pos): function MonsterAddMana (line 1749) | def MonsterAddMana(builder, mana): function MonsterAddHp (line 1752) | def MonsterAddHp(builder, hp): function MonsterAddName (line 1755) | def MonsterAddName(builder, name): function MonsterAddInventory (line 1758) | def MonsterAddInventory(builder, inventory): function MonsterStartInventoryVector (line 1761) | def MonsterStartInventoryVector(builder, numElems): function MonsterCreateInventoryVector (line 1764) | def MonsterCreateInventoryVector(builder, data): function MonsterAddColor (line 1771) | def MonsterAddColor(builder, color): function MonsterAddTestType (line 1774) | def MonsterAddTestType(builder, testType): function MonsterAddTest (line 1777) | def MonsterAddTest(builder, test): function MonsterAddTest4 (line 1780) | def MonsterAddTest4(builder, test4): function MonsterStartTest4Vector (line 1783) | def MonsterStartTest4Vector(builder, numElems): function MonsterCreateTest4Vector (line 1786) | def MonsterCreateTest4Vector(builder, data): function MonsterAddTestarrayofstring (line 1793) | def MonsterAddTestarrayofstring(builder, testarrayofstring): function MonsterStartTestarrayofstringVector (line 1796) | def MonsterStartTestarrayofstringVector(builder, numElems): function MonsterCreateTestarrayofstringVector (line 1799) | def MonsterCreateTestarrayofstringVector(builder, data): function MonsterAddTestarrayoftables (line 1802) | def MonsterAddTestarrayoftables(builder, testarrayoftables): function MonsterStartTestarrayoftablesVector (line 1805) | def MonsterStartTestarrayoftablesVector(builder, numElems): function MonsterCreateTestarrayoftablesVector (line 1808) | def MonsterCreateTestarrayoftablesVector(builder, data): function MonsterAddEnemy (line 1811) | def MonsterAddEnemy(builder, enemy): function MonsterAddTestnestedflatbuffer (line 1814) | def MonsterAddTestnestedflatbuffer(builder, testnestedflatbuffer): function MonsterStartTestnestedflatbufferVector (line 1817) | def MonsterStartTestnestedflatbufferVector(builder, numElems): function MonsterCreateTestnestedflatbufferVector (line 1820) | def MonsterCreateTestnestedflatbufferVector(builder, data): function MonsterMakeTestnestedflatbufferVectorFromBytes (line 1827) | def MonsterMakeTestnestedflatbufferVectorFromBytes(builder, bytes): function MonsterAddTestempty (line 1832) | def MonsterAddTestempty(builder, testempty): function MonsterAddTestbool (line 1835) | def MonsterAddTestbool(builder, testbool): function MonsterAddTesthashs32Fnv1 (line 1838) | def MonsterAddTesthashs32Fnv1(builder, testhashs32Fnv1): function MonsterAddTesthashu32Fnv1 (line 1841) | def MonsterAddTesthashu32Fnv1(builder, testhashu32Fnv1): function MonsterAddTesthashs64Fnv1 (line 1844) | def MonsterAddTesthashs64Fnv1(builder, testhashs64Fnv1): function MonsterAddTesthashu64Fnv1 (line 1847) | def MonsterAddTesthashu64Fnv1(builder, testhashu64Fnv1): function MonsterAddTesthashs32Fnv1a (line 1850) | def MonsterAddTesthashs32Fnv1a(builder, testhashs32Fnv1a): function MonsterAddTesthashu32Fnv1a (line 1853) | def MonsterAddTesthashu32Fnv1a(builder, testhashu32Fnv1a): function MonsterAddTesthashs64Fnv1a (line 1856) | def MonsterAddTesthashs64Fnv1a(builder, testhashs64Fnv1a): function MonsterAddTesthashu64Fnv1a (line 1859) | def MonsterAddTesthashu64Fnv1a(builder, testhashu64Fnv1a): function MonsterAddTestarrayofbools (line 1862) | def MonsterAddTestarrayofbools(builder, testarrayofbools): function MonsterStartTestarrayofboolsVector (line 1865) | def MonsterStartTestarrayofboolsVector(builder, numElems): function MonsterCreateTestarrayofboolsVector (line 1868) | def MonsterCreateTestarrayofboolsVector(builder, data): function MonsterAddTestf (line 1875) | def MonsterAddTestf(builder, testf): function MonsterAddTestf2 (line 1878) | def MonsterAddTestf2(builder, testf2): function MonsterAddTestf3 (line 1881) | def MonsterAddTestf3(builder, testf3): function MonsterAddTestarrayofstring2 (line 1884) | def MonsterAddTestarrayofstring2(builder, testarrayofstring2): function MonsterStartTestarrayofstring2Vector (line 1887) | def MonsterStartTestarrayofstring2Vector(builder, numElems): function MonsterCreateTestarrayofstring2Vector (line 1890) | def MonsterCreateTestarrayofstring2Vector(builder, data): function MonsterAddTestarrayofsortedstruct (line 1893) | def MonsterAddTestarrayofsortedstruct(builder, testarrayofsortedstruct): function MonsterStartTestarrayofsortedstructVector (line 1896) | def MonsterStartTestarrayofsortedstructVector(builder, numElems): function MonsterCreateTestarrayofsortedstructVector (line 1899) | def MonsterCreateTestarrayofsortedstructVector(builder, data): function MonsterAddFlex (line 1906) | def MonsterAddFlex(builder, flex): function MonsterStartFlexVector (line 1909) | def MonsterStartFlexVector(builder, numElems): function MonsterCreateFlexVector (line 1912) | def MonsterCreateFlexVector(builder, data): function MonsterAddTest5 (line 1919) | def MonsterAddTest5(builder, test5): function MonsterStartTest5Vector (line 1922) | def MonsterStartTest5Vector(builder, numElems): function MonsterCreateTest5Vector (line 1925) | def MonsterCreateTest5Vector(builder, data): function MonsterAddVectorOfLongs (line 1932) | def MonsterAddVectorOfLongs(builder, vectorOfLongs): function MonsterStartVectorOfLongsVector (line 1935) | def MonsterStartVectorOfLongsVector(builder, numElems): function MonsterCreateVectorOfLongsVector (line 1938) | def MonsterCreateVectorOfLongsVector(builder, data): function MonsterAddVectorOfDoubles (line 1945) | def MonsterAddVectorOfDoubles(builder, vectorOfDoubles): function MonsterStartVectorOfDoublesVector (line 1948) | def MonsterStartVectorOfDoublesVector(builder, numElems): function MonsterCreateVectorOfDoublesVector (line 1951) | def MonsterCreateVectorOfDoublesVector(builder, data): function MonsterAddParentNamespaceTest (line 1958) | def MonsterAddParentNamespaceTest(builder, parentNamespaceTest): function MonsterAddVectorOfReferrables (line 1961) | def MonsterAddVectorOfReferrables(builder, vectorOfReferrables): function MonsterStartVectorOfReferrablesVector (line 1964) | def MonsterStartVectorOfReferrablesVector(builder, numElems): function MonsterCreateVectorOfReferrablesVector (line 1967) | def MonsterCreateVectorOfReferrablesVector(builder, data): function MonsterAddSingleWeakReference (line 1970) | def MonsterAddSingleWeakReference(builder, singleWeakReference): function MonsterAddVectorOfWeakReferences (line 1973) | def MonsterAddVectorOfWeakReferences(builder, vectorOfWeakReferences): function MonsterStartVectorOfWeakReferencesVector (line 1976) | def MonsterStartVectorOfWeakReferencesVector(builder, numElems): function MonsterCreateVectorOfWeakReferencesVector (line 1979) | def MonsterCreateVectorOfWeakReferencesVector(builder, data): function MonsterAddVectorOfStrongReferrables (line 1986) | def MonsterAddVectorOfStrongReferrables(builder, vectorOfStrongReferrabl... function MonsterStartVectorOfStrongReferrablesVector (line 1989) | def MonsterStartVectorOfStrongReferrablesVector(builder, numElems): function MonsterCreateVectorOfStrongReferrablesVector (line 1992) | def MonsterCreateVectorOfStrongReferrablesVector(builder, data): function MonsterAddCoOwningReference (line 1995) | def MonsterAddCoOwningReference(builder, coOwningReference): function MonsterAddVectorOfCoOwningReferences (line 1998) | def MonsterAddVectorOfCoOwningReferences(builder, vectorOfCoOwningRefere... function MonsterStartVectorOfCoOwningReferencesVector (line 2001) | def MonsterStartVectorOfCoOwningReferencesVector(builder, numElems): function MonsterCreateVectorOfCoOwningReferencesVector (line 2004) | def MonsterCreateVectorOfCoOwningReferencesVector(builder, data): function MonsterAddNonOwningReference (line 2011) | def MonsterAddNonOwningReference(builder, nonOwningReference): function MonsterAddVectorOfNonOwningReferences (line 2014) | def MonsterAddVectorOfNonOwningReferences(builder, vectorOfNonOwningRefe... function MonsterStartVectorOfNonOwningReferencesVector (line 2017) | def MonsterStartVectorOfNonOwningReferencesVector(builder, numElems): function MonsterCreateVectorOfNonOwningReferencesVector (line 2020) | def MonsterCreateVectorOfNonOwningReferencesVector(builder, data): function MonsterAddAnyUniqueType (line 2027) | def MonsterAddAnyUniqueType(builder, anyUniqueType): function MonsterAddAnyUnique (line 2030) | def MonsterAddAnyUnique(builder, anyUnique): function MonsterAddAnyAmbiguousType (line 2033) | def MonsterAddAnyAmbiguousType(builder, anyAmbiguousType): function MonsterAddAnyAmbiguous (line 2036) | def MonsterAddAnyAmbiguous(builder, anyAmbiguous): function MonsterAddVectorOfEnums (line 2039) | def MonsterAddVectorOfEnums(builder, vectorOfEnums): function MonsterStartVectorOfEnumsVector (line 2042) | def MonsterStartVectorOfEnumsVector(builder, numElems): function MonsterCreateVectorOfEnumsVector (line 2045) | def MonsterCreateVectorOfEnumsVector(builder, data): function MonsterAddSignedEnum (line 2052) | def MonsterAddSignedEnum(builder, signedEnum): function MonsterAddTestrequirednestedflatbuffer (line 2055) | def MonsterAddTestrequirednestedflatbuffer(builder, testrequirednestedfl... function MonsterStartTestrequirednestedflatbufferVector (line 2058) | def MonsterStartTestrequirednestedflatbufferVector(builder, numElems): function MonsterCreateTestrequirednestedflatbufferVector (line 2061) | def MonsterCreateTestrequirednestedflatbufferVector(builder, data): function MonsterMakeTestrequirednestedflatbufferVectorFromBytes (line 2068) | def MonsterMakeTestrequirednestedflatbufferVectorFromBytes(builder, bytes): function MonsterAddScalarKeySortedTables (line 2073) | def MonsterAddScalarKeySortedTables(builder, scalarKeySortedTables): function MonsterStartScalarKeySortedTablesVector (line 2076) | def MonsterStartScalarKeySortedTablesVector(builder, numElems): function MonsterCreateScalarKeySortedTablesVector (line 2079) | def MonsterCreateScalarKeySortedTablesVector(builder, data): function MonsterAddNativeInline (line 2082) | def MonsterAddNativeInline(builder, nativeInline): function MonsterAddLongEnumNonEnumDefault (line 2085) | def MonsterAddLongEnumNonEnumDefault(builder, longEnumNonEnumDefault): function MonsterAddLongEnumNormalDefault (line 2088) | def MonsterAddLongEnumNormalDefault(builder, longEnumNormalDefault): function MonsterAddNanDefault (line 2091) | def MonsterAddNanDefault(builder, nanDefault): function MonsterAddInfDefault (line 2094) | def MonsterAddInfDefault(builder, infDefault): function MonsterAddPositiveInfDefault (line 2097) | def MonsterAddPositiveInfDefault(builder, positiveInfDefault): function MonsterAddInfinityDefault (line 2100) | def MonsterAddInfinityDefault(builder, infinityDefault): function MonsterAddPositiveInfinityDefault (line 2103) | def MonsterAddPositiveInfinityDefault(builder, positiveInfinityDefault): function MonsterAddNegativeInfDefault (line 2106) | def MonsterAddNegativeInfDefault(builder, negativeInfDefault): function MonsterAddNegativeInfinityDefault (line 2109) | def MonsterAddNegativeInfinityDefault(builder, negativeInfinityDefault): function MonsterAddDoubleInfDefault (line 2112) | def MonsterAddDoubleInfDefault(builder, doubleInfDefault): function MonsterEnd (line 2115) | def MonsterEnd(builder): class MonsterT (line 2124) | class MonsterT(object): method __init__ (line 189) | def __init__( method InitFromBuf (line 195) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 201) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 206) | def InitFromObj(cls, monster): method _UnPack (line 212) | def _UnPack(self, monster): method Pack (line 217) | def Pack(self, builder): method __init__ (line 2127) | def __init__( method InitFromBuf (line 2254) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 2260) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 2265) | def InitFromObj(cls, monster): method _UnPack (line 2271) | def _UnPack(self, monster): method Pack (line 2463) | def Pack(self, builder): class TypeAliases (line 2726) | class TypeAliases(object): method GetRootAs (line 2730) | def GetRootAs(cls, buf, offset=0): method GetRootAsTypeAliases (line 2737) | def GetRootAsTypeAliases(cls, buf, offset=0): method TypeAliasesBufferHasIdentifier (line 2741) | def TypeAliasesBufferHasIdentifier(cls, buf, offset, size_prefixed=Fal... method Init (line 2745) | def Init(self, buf, pos): method I8 (line 2749) | def I8(self): method U8 (line 2756) | def U8(self): method I16 (line 2763) | def I16(self): method U16 (line 2770) | def U16(self): method I32 (line 2777) | def I32(self): method U32 (line 2784) | def U32(self): method I64 (line 2791) | def I64(self): method U64 (line 2798) | def U64(self): method F32 (line 2805) | def F32(self): method F64 (line 2812) | def F64(self): method V8 (line 2819) | def V8(self, j): method V8AsNumpy (line 2827) | def V8AsNumpy(self): method V8Length (line 2834) | def V8Length(self): method V8IsNone (line 2841) | def V8IsNone(self): method Vf64 (line 2846) | def Vf64(self, j): method Vf64AsNumpy (line 2854) | def Vf64AsNumpy(self): method Vf64Length (line 2861) | def Vf64Length(self): method Vf64IsNone (line 2868) | def Vf64IsNone(self): function TypeAliasesStart (line 2872) | def TypeAliasesStart(builder): function TypeAliasesAddI8 (line 2875) | def TypeAliasesAddI8(builder, i8): function TypeAliasesAddU8 (line 2878) | def TypeAliasesAddU8(builder, u8): function TypeAliasesAddI16 (line 2881) | def TypeAliasesAddI16(builder, i16): function TypeAliasesAddU16 (line 2884) | def TypeAliasesAddU16(builder, u16): function TypeAliasesAddI32 (line 2887) | def TypeAliasesAddI32(builder, i32): function TypeAliasesAddU32 (line 2890) | def TypeAliasesAddU32(builder, u32): function TypeAliasesAddI64 (line 2893) | def TypeAliasesAddI64(builder, i64): function TypeAliasesAddU64 (line 2896) | def TypeAliasesAddU64(builder, u64): function TypeAliasesAddF32 (line 2899) | def TypeAliasesAddF32(builder, f32): function TypeAliasesAddF64 (line 2902) | def TypeAliasesAddF64(builder, f64): function TypeAliasesAddV8 (line 2905) | def TypeAliasesAddV8(builder, v8): function TypeAliasesStartV8Vector (line 2908) | def TypeAliasesStartV8Vector(builder, numElems): function TypeAliasesCreateV8Vector (line 2911) | def TypeAliasesCreateV8Vector(builder, data): function TypeAliasesAddVf64 (line 2918) | def TypeAliasesAddVf64(builder, vf64): function TypeAliasesStartVf64Vector (line 2921) | def TypeAliasesStartVf64Vector(builder, numElems): function TypeAliasesCreateVf64Vector (line 2924) | def TypeAliasesCreateVf64Vector(builder, data): function TypeAliasesEnd (line 2931) | def TypeAliasesEnd(builder): class TypeAliasesT (line 2940) | class TypeAliasesT(object): method __init__ (line 2943) | def __init__( method InitFromBuf (line 2972) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 2978) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 2983) | def InitFromObj(cls, typeAliases): method _UnPack (line 2989) | def _UnPack(self, typeAliases): method Pack (line 3018) | def Pack(self, builder): FILE: tests/monster_test_my_game.example2_generated.dart class Monster (line 14) | class Monster { method toString (line 28) | String toString() method unpack (line 32) | MonsterT unpack() method pack (line 34) | int pack(fb.Builder fbBuilder, MonsterT? object) class MonsterT (line 40) | class MonsterT implements fb.Packable { method pack (line 42) | int pack(fb.Builder fbBuilder) method toString (line 48) | String toString() class _MonsterReader (line 53) | class _MonsterReader extends fb.TableReader { method createObject (line 57) | Monster createObject(fb.BufferContext bc, int offset) class MonsterObjectBuilder (line 61) | class MonsterObjectBuilder extends fb.ObjectBuilder { method finish (line 67) | int finish(fb.Builder fbBuilder) method toBytes (line 74) | Uint8List toBytes([String? fileIdentifier]) FILE: tests/monster_test_my_game.example_generated.dart type Color (line 15) | enum Color { class _ColorReader (line 40) | class _ColorReader extends fb.Reader { method read (line 47) | Color read(fb.BufferContext bc, int offset) type Race (line 51) | enum Race { class _RaceReader (line 78) | class _RaceReader extends fb.Reader { method read (line 85) | Race read(fb.BufferContext bc, int offset) type LongEnum (line 89) | enum LongEnum { class _LongEnumReader (line 114) | class _LongEnumReader extends fb.Reader { method read (line 121) | LongEnum read(fb.BufferContext bc, int offset) type AnyTypeId (line 125) | enum AnyTypeId { class _AnyTypeIdReader (line 152) | class _AnyTypeIdReader extends fb.Reader { method read (line 159) | AnyTypeId read(fb.BufferContext bc, int offset) type AnyUniqueAliasesTypeId (line 163) | enum AnyUniqueAliasesTypeId { class _AnyUniqueAliasesTypeIdReader (line 190) | class _AnyUniqueAliasesTypeIdReader extends fb.Reader { method createObject (line 294) | Test createObject(fb.BufferContext bc, int offset) class TestBuilder (line 298) | class TestBuilder { method finish (line 303) | int finish(int a, int b) class TestObjectBuilder (line 312) | class TestObjectBuilder extends fb.ObjectBuilder { method finish (line 325) | int finish(fb.Builder fbBuilder) method toBytes (line 334) | Uint8List toBytes([String? fileIdentifier]) class TestSimpleTableWithEnum (line 340) | class TestSimpleTableWithEnum { method toString (line 355) | String toString() method unpack (line 359) | TestSimpleTableWithEnumT unpack() method pack (line 362) | int pack(fb.Builder fbBuilder, TestSimpleTableWithEnumT? object) class TestSimpleTableWithEnumT (line 368) | class TestSimpleTableWithEnumT implements fb.Packable { method pack (line 375) | int pack(fb.Builder fbBuilder) method toString (line 382) | String toString() class _TestSimpleTableWithEnumReader (line 387) | class _TestSimpleTableWithEnumReader extends fb.TableReader { method createObject (line 515) | Vec3 createObject(fb.BufferContext bc, int offset) class Vec3Builder (line 519) | class Vec3Builder { method finish (line 524) | int finish(double x, double y, double z, double test1, Color test2, fb... class Vec3ObjectBuilder (line 539) | class Vec3ObjectBuilder extends fb.ObjectBuilder { method finish (line 564) | int finish(fb.Builder fbBuilder) method toBytes (line 579) | Uint8List toBytes([String? fileIdentifier]) class Ability (line 585) | class Ability { method toString (line 597) | String toString() method unpack (line 601) | AbilityT unpack() method pack (line 605) | int pack(fb.Builder fbBuilder, AbilityT? object) class AbilityT (line 611) | class AbilityT implements fb.Packable { method pack (line 620) | int pack(fb.Builder fbBuilder) method toString (line 627) | String toString() class _AbilityReader (line 632) | class _AbilityReader extends fb.StructReader { method createObject (line 639) | Ability createObject(fb.BufferContext bc, int offset) class AbilityBuilder (line 643) | class AbilityBuilder { method finish (line 648) | int finish(int id, int distance) class AbilityObjectBuilder (line 656) | class AbilityObjectBuilder extends fb.ObjectBuilder { method finish (line 669) | int finish(fb.Builder fbBuilder) method toBytes (line 677) | Uint8List toBytes([String? fileIdentifier]) class StructOfStructs (line 683) | class StructOfStructs { method toString (line 696) | String toString() method unpack (line 700) | StructOfStructsT unpack() method pack (line 705) | int pack(fb.Builder fbBuilder, StructOfStructsT? object) class StructOfStructsT (line 711) | class StructOfStructsT implements fb.Packable { method pack (line 722) | int pack(fb.Builder fbBuilder) method toString (line 730) | String toString() class _StructOfStructsReader (line 735) | class _StructOfStructsReader extends fb.StructReader { method createObject (line 742) | StructOfStructs createObject(fb.BufferContext bc, int offset) class StructOfStructsBuilder (line 746) | class StructOfStructsBuilder { method finish (line 751) | int finish(fb.StructBuilder a, fb.StructBuilder b, fb.StructBuilder c) class StructOfStructsObjectBuilder (line 760) | class StructOfStructsObjectBuilder extends fb.ObjectBuilder { method finish (line 776) | int finish(fb.Builder fbBuilder) method toBytes (line 785) | Uint8List toBytes([String? fileIdentifier]) class StructOfStructsOfStructs (line 791) | class StructOfStructsOfStructs { method toString (line 802) | String toString() method unpack (line 806) | StructOfStructsOfStructsT unpack() method pack (line 809) | int pack(fb.Builder fbBuilder, StructOfStructsOfStructsT? object) class StructOfStructsOfStructsT (line 815) | class StructOfStructsOfStructsT implements fb.Packable { method pack (line 822) | int pack(fb.Builder fbBuilder) method toString (line 828) | String toString() class _StructOfStructsOfStructsReader (line 833) | class _StructOfStructsOfStructsReader extends fb.StructReader { method createObject (line 942) | Stat createObject(fb.BufferContext bc, int offset) class StatBuilder (line 946) | class StatBuilder { method begin (line 951) | void begin() method addIdOffset (line 955) | int addIdOffset(int? offset) method addVal (line 959) | int addVal(int? val) method addCount (line 963) | int addCount(int? count) method finish (line 968) | int finish() class StatObjectBuilder (line 973) | class StatObjectBuilder extends fb.ObjectBuilder { method finish (line 989) | int finish(fb.Builder fbBuilder) method toBytes (line 1001) | Uint8List toBytes([String? fileIdentifier]) class Referrable (line 1007) | class Referrable { method toString (line 1022) | String toString() method unpack (line 1026) | ReferrableT unpack() method pack (line 1029) | int pack(fb.Builder fbBuilder, ReferrableT? object) class ReferrableT (line 1035) | class ReferrableT implements fb.Packable { method pack (line 1042) | int pack(fb.Builder fbBuilder) method toString (line 1049) | String toString() class _ReferrableReader (line 1054) | class _ReferrableReader extends fb.TableReader { method createObject (line 1058) | Referrable createObject(fb.BufferContext bc, int offset) class ReferrableBuilder (line 1062) | class ReferrableBuilder { method begin (line 1067) | void begin() method addId (line 1071) | int addId(int? id) method finish (line 1076) | int finish() class ReferrableObjectBuilder (line 1081) | class ReferrableObjectBuilder extends fb.ObjectBuilder { method finish (line 1091) | int finish(fb.Builder fbBuilder) method toBytes (line 1099) | Uint8List toBytes([String? fileIdentifier]) class Monster (line 1106) | class Monster { method toString (line 1204) | String toString() method unpack (line 1208) | MonsterT unpack() method pack (line 1271) | int pack(fb.Builder fbBuilder, MonsterT? object) class MonsterT (line 1278) | class MonsterT implements fb.Packable { method pack (line 1407) | int pack(fb.Builder fbBuilder) method toString (line 1535) | String toString() class _MonsterReader (line 1540) | class _MonsterReader extends fb.TableReader { method createObject (line 1544) | Monster createObject(fb.BufferContext bc, int offset) class MonsterBuilder (line 1548) | class MonsterBuilder { method begin (line 1553) | void begin() method addPos (line 1557) | int addPos(int offset) method addMana (line 1561) | int addMana(int? mana) method addHp (line 1565) | int addHp(int? hp) method addNameOffset (line 1569) | int addNameOffset(int? offset) method addInventoryOffset (line 1573) | int addInventoryOffset(int? offset) method addColor (line 1577) | int addColor(Color? color) method addTestType (line 1581) | int addTestType(AnyTypeId? testType) method addTestOffset (line 1585) | int addTestOffset(int? offset) method addTest4Offset (line 1589) | int addTest4Offset(int? offset) method addTestarrayofstringOffset (line 1593) | int addTestarrayofstringOffset(int? offset) method addTestarrayoftablesOffset (line 1597) | int addTestarrayoftablesOffset(int? offset) method addEnemyOffset (line 1601) | int addEnemyOffset(int? offset) method addTestnestedflatbufferOffset (line 1605) | int addTestnestedflatbufferOffset(int? offset) method addTestemptyOffset (line 1609) | int addTestemptyOffset(int? offset) method addTestbool (line 1613) | int addTestbool(bool? testbool) method addTesthashs32Fnv1 (line 1617) | int addTesthashs32Fnv1(int? testhashs32Fnv1) method addTesthashu32Fnv1 (line 1621) | int addTesthashu32Fnv1(int? testhashu32Fnv1) method addTesthashs64Fnv1 (line 1625) | int addTesthashs64Fnv1(int? testhashs64Fnv1) method addTesthashu64Fnv1 (line 1629) | int addTesthashu64Fnv1(int? testhashu64Fnv1) method addTesthashs32Fnv1a (line 1633) | int addTesthashs32Fnv1a(int? testhashs32Fnv1a) method addTesthashu32Fnv1a (line 1637) | int addTesthashu32Fnv1a(int? testhashu32Fnv1a) method addTesthashs64Fnv1a (line 1641) | int addTesthashs64Fnv1a(int? testhashs64Fnv1a) method addTesthashu64Fnv1a (line 1645) | int addTesthashu64Fnv1a(int? testhashu64Fnv1a) method addTestarrayofboolsOffset (line 1649) | int addTestarrayofboolsOffset(int? offset) method addTestf (line 1653) | int addTestf(double? testf) method addTestf2 (line 1657) | int addTestf2(double? testf2) method addTestf3 (line 1661) | int addTestf3(double? testf3) method addTestarrayofstring2Offset (line 1665) | int addTestarrayofstring2Offset(int? offset) method addTestarrayofsortedstructOffset (line 1669) | int addTestarrayofsortedstructOffset(int? offset) method addFlexOffset (line 1673) | int addFlexOffset(int? offset) method addTest5Offset (line 1677) | int addTest5Offset(int? offset) method addVectorOfLongsOffset (line 1681) | int addVectorOfLongsOffset(int? offset) method addVectorOfDoublesOffset (line 1685) | int addVectorOfDoublesOffset(int? offset) method addParentNamespaceTestOffset (line 1689) | int addParentNamespaceTestOffset(int? offset) method addVectorOfReferrablesOffset (line 1693) | int addVectorOfReferrablesOffset(int? offset) method addSingleWeakReference (line 1697) | int addSingleWeakReference(int? singleWeakReference) method addVectorOfWeakReferencesOffset (line 1701) | int addVectorOfWeakReferencesOffset(int? offset) method addVectorOfStrongReferrablesOffset (line 1705) | int addVectorOfStrongReferrablesOffset(int? offset) method addCoOwningReference (line 1709) | int addCoOwningReference(int? coOwningReference) method addVectorOfCoOwningReferencesOffset (line 1713) | int addVectorOfCoOwningReferencesOffset(int? offset) method addNonOwningReference (line 1717) | int addNonOwningReference(int? nonOwningReference) method addVectorOfNonOwningReferencesOffset (line 1721) | int addVectorOfNonOwningReferencesOffset(int? offset) method addAnyUniqueType (line 1725) | int addAnyUniqueType(AnyUniqueAliasesTypeId? anyUniqueType) method addAnyUniqueOffset (line 1729) | int addAnyUniqueOffset(int? offset) method addAnyAmbiguousType (line 1733) | int addAnyAmbiguousType(AnyAmbiguousAliasesTypeId? anyAmbiguousType) method addAnyAmbiguousOffset (line 1737) | int addAnyAmbiguousOffset(int? offset) method addVectorOfEnumsOffset (line 1741) | int addVectorOfEnumsOffset(int? offset) method addSignedEnum (line 1745) | int addSignedEnum(Race? signedEnum) method addTestrequirednestedflatbufferOffset (line 1749) | int addTestrequirednestedflatbufferOffset(int? offset) method addScalarKeySortedTablesOffset (line 1753) | int addScalarKeySortedTablesOffset(int? offset) method addNativeInline (line 1757) | int addNativeInline(int offset) method addLongEnumNonEnumDefault (line 1761) | int addLongEnumNonEnumDefault(LongEnum? longEnumNonEnumDefault) method addLongEnumNormalDefault (line 1765) | int addLongEnumNormalDefault(LongEnum? longEnumNormalDefault) method addNanDefault (line 1769) | int addNanDefault(double? nanDefault) method addInfDefault (line 1773) | int addInfDefault(double? infDefault) method addPositiveInfDefault (line 1777) | int addPositiveInfDefault(double? positiveInfDefault) method addInfinityDefault (line 1781) | int addInfinityDefault(double? infinityDefault) method addPositiveInfinityDefault (line 1785) | int addPositiveInfinityDefault(double? positiveInfinityDefault) method addNegativeInfDefault (line 1789) | int addNegativeInfDefault(double? negativeInfDefault) method addNegativeInfinityDefault (line 1793) | int addNegativeInfinityDefault(double? negativeInfinityDefault) method addDoubleInfDefault (line 1797) | int addDoubleInfDefault(double? doubleInfDefault) method finish (line 1802) | int finish() class MonsterObjectBuilder (line 1807) | class MonsterObjectBuilder extends fb.ObjectBuilder { method finish (line 1997) | int finish(fb.Builder fbBuilder) method toBytes (line 2117) | Uint8List toBytes([String? fileIdentifier]) class TypeAliases (line 2123) | class TypeAliases { method toString (line 2149) | String toString() method unpack (line 2153) | TypeAliasesT unpack() method pack (line 2167) | int pack(fb.Builder fbBuilder, TypeAliasesT? object) class TypeAliasesT (line 2173) | class TypeAliasesT implements fb.Packable { method pack (line 2202) | int pack(fb.Builder fbBuilder) method toString (line 2224) | String toString() class _TypeAliasesReader (line 2229) | class _TypeAliasesReader extends fb.TableReader { method createObject (line 2233) | TypeAliases createObject(fb.BufferContext bc, int offset) class TypeAliasesBuilder (line 2237) | class TypeAliasesBuilder { method begin (line 2242) | void begin() method addI8 (line 2246) | int addI8(int? i8) method addU8 (line 2250) | int addU8(int? u8) method addI16 (line 2254) | int addI16(int? i16) method addU16 (line 2258) | int addU16(int? u16) method addI32 (line 2262) | int addI32(int? i32) method addU32 (line 2266) | int addU32(int? u32) method addI64 (line 2270) | int addI64(int? i64) method addU64 (line 2274) | int addU64(int? u64) method addF32 (line 2278) | int addF32(double? f32) method addF64 (line 2282) | int addF64(double? f64) method addV8Offset (line 2286) | int addV8Offset(int? offset) method addVf64Offset (line 2290) | int addVf64Offset(int? offset) method finish (line 2295) | int finish() class TypeAliasesObjectBuilder (line 2300) | class TypeAliasesObjectBuilder extends fb.ObjectBuilder { method finish (line 2343) | int finish(fb.Builder fbBuilder) method toBytes (line 2366) | Uint8List toBytes([String? fileIdentifier]) FILE: tests/monster_test_my_game_generated.dart class InParentNamespace (line 14) | class InParentNamespace { method toString (line 28) | String toString() method unpack (line 32) | InParentNamespaceT unpack() method pack (line 34) | int pack(fb.Builder fbBuilder, InParentNamespaceT? object) class InParentNamespaceT (line 40) | class InParentNamespaceT implements fb.Packable { method pack (line 42) | int pack(fb.Builder fbBuilder) method toString (line 48) | String toString() class _InParentNamespaceReader (line 53) | class _InParentNamespaceReader extends fb.TableReader { method createObject (line 57) | InParentNamespace createObject(fb.BufferContext bc, int offset) class InParentNamespaceObjectBuilder (line 61) | class InParentNamespaceObjectBuilder extends fb.ObjectBuilder { method finish (line 67) | int finish(fb.Builder fbBuilder) method toBytes (line 74) | Uint8List toBytes([String? fileIdentifier]) FILE: tests/monster_test_serialize/my_game/example/ability_generated.rs type Ability (line 11) | pub struct Ability(pub [u8; 8]); method fmt (line 20) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 31) | type Inner = &'a Ability; method follow (line 34) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 49) | type Output = Ability; method push (line 52) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 58) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 65) | fn run_verifier( method new (line 86) | pub fn new( method get_fully_qualified_name (line 96) | pub const fn get_fully_qualified_name() -> &'static str { method id (line 100) | pub fn id(&self) -> u32 { method set_id (line 115) | pub fn set_id(&mut self, x: u32) { method key_compare_less_than (line 131) | pub fn key_compare_less_than(&self, o: &Ability) -> bool { method key_compare_with_value (line 136) | pub fn key_compare_with_value(&self, val: u32) -> ::core::cmp::Ordering { method distance (line 140) | pub fn distance(&self) -> u32 { method set_distance (line 155) | pub fn set_distance(&mut self, x: u32) { method unpack (line 169) | pub fn unpack(&self) -> AbilityT { method default (line 14) | fn default() -> Self { type Inner (line 40) | type Inner = &'a Ability; function follow (line 43) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { method serialize (line 73) | fn serialize(&self, serializer: S) -> Result type AbilityT (line 178) | pub struct AbilityT { method pack (line 192) | pub fn pack(&self) -> Ability { method default (line 183) | fn default() -> Self { FILE: tests/monster_test_serialize/my_game/example/any_ambiguous_aliases_generated.rs constant ENUM_MIN_ANY_AMBIGUOUS_ALIASES (line 9) | pub const ENUM_MIN_ANY_AMBIGUOUS_ALIASES: u8 = 0; constant ENUM_MAX_ANY_AMBIGUOUS_ALIASES (line 12) | pub const ENUM_MAX_ANY_AMBIGUOUS_ALIASES: u8 = 3; constant ENUM_VALUES_ANY_AMBIGUOUS_ALIASES (line 16) | pub const ENUM_VALUES_ANY_AMBIGUOUS_ALIASES: [AnyAmbiguousAliases; 4] = [ type AnyAmbiguousAliases (line 25) | pub struct AnyAmbiguousAliases(pub u8); constant NONE (line 29) | pub const NONE: Self = Self(0); constant M1 (line 30) | pub const M1: Self = Self(1); constant M2 (line 31) | pub const M2: Self = Self(2); constant M3 (line 32) | pub const M3: Self = Self(3); constant ENUM_MIN (line 34) | pub const ENUM_MIN: u8 = 0; constant ENUM_MAX (line 35) | pub const ENUM_MAX: u8 = 3; constant ENUM_VALUES (line 36) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 44) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 56) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { method deserialize (line 75) | fn deserialize(deserializer: D) -> Result type Inner (line 94) | type Inner = Self; method follow (line 97) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 104) | type Output = AnyAmbiguousAliases; method push (line 107) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 113) | type Scalar = u8; method to_little_endian (line 116) | fn to_little_endian(self) -> u8 { method from_little_endian (line 122) | fn from_little_endian(v: u8) -> Self { method run_verifier (line 130) | fn run_verifier( method serialize (line 66) | fn serialize(&self, serializer: S) -> Result type AnyAmbiguousAliasesUnionTableOffset (line 139) | pub struct AnyAmbiguousAliasesUnionTableOffset {} type AnyAmbiguousAliasesT (line 144) | pub enum AnyAmbiguousAliasesT { method any_ambiguous_aliases_type (line 158) | pub fn any_ambiguous_aliases_type(&self) -> AnyAmbiguousAliases { method pack (line 167) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>(&self, fbb: &mut ::f... method take_m1 (line 177) | pub fn take_m1(&mut self) -> Option> { method as_m1 (line 191) | pub fn as_m1(&self) -> Option<&MonsterT> { method as_m1_mut (line 196) | pub fn as_m1_mut(&mut self) -> Option<&mut MonsterT> { method take_m2 (line 201) | pub fn take_m2(&mut self) -> Option> { method as_m2 (line 215) | pub fn as_m2(&self) -> Option<&MonsterT> { method as_m2_mut (line 220) | pub fn as_m2_mut(&mut self) -> Option<&mut MonsterT> { method take_m3 (line 225) | pub fn take_m3(&mut self) -> Option> { method as_m3 (line 239) | pub fn as_m3(&self) -> Option<&MonsterT> { method as_m3_mut (line 244) | pub fn as_m3_mut(&mut self) -> Option<&mut MonsterT> { method default (line 152) | fn default() -> Self { FILE: tests/monster_test_serialize/my_game/example/any_generated.rs constant ENUM_MIN_ANY (line 9) | pub const ENUM_MIN_ANY: u8 = 0; constant ENUM_MAX_ANY (line 12) | pub const ENUM_MAX_ANY: u8 = 3; constant ENUM_VALUES_ANY (line 16) | pub const ENUM_VALUES_ANY: [Any; 4] = [ type Any (line 25) | pub struct Any(pub u8); constant NONE (line 29) | pub const NONE: Self = Self(0); constant Monster (line 30) | pub const Monster: Self = Self(1); constant TestSimpleTableWithEnum (line 31) | pub const TestSimpleTableWithEnum: Self = Self(2); constant MyGame_Example2_Monster (line 32) | pub const MyGame_Example2_Monster: Self = Self(3); constant ENUM_MIN (line 34) | pub const ENUM_MIN: u8 = 0; constant ENUM_MAX (line 35) | pub const ENUM_MAX: u8 = 3; constant ENUM_VALUES (line 36) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 44) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 56) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { method deserialize (line 75) | fn deserialize(deserializer: D) -> Result type Inner (line 94) | type Inner = Self; method follow (line 97) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 104) | type Output = Any; method push (line 107) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 113) | type Scalar = u8; method to_little_endian (line 116) | fn to_little_endian(self) -> u8 { method from_little_endian (line 122) | fn from_little_endian(v: u8) -> Self { method run_verifier (line 130) | fn run_verifier( method serialize (line 66) | fn serialize(&self, serializer: S) -> Result type AnyUnionTableOffset (line 139) | pub struct AnyUnionTableOffset {} type AnyT (line 144) | pub enum AnyT { method any_type (line 158) | pub fn any_type(&self) -> Any { method pack (line 167) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>(&self, fbb: &mut ::f... method take_monster (line 177) | pub fn take_monster(&mut self) -> Option> { method as_monster (line 191) | pub fn as_monster(&self) -> Option<&MonsterT> { method as_monster_mut (line 196) | pub fn as_monster_mut(&mut self) -> Option<&mut MonsterT> { method take_test_simple_table_with_enum (line 201) | pub fn take_test_simple_table_with_enum(&mut self) -> Option Option<&TestSimpleTabl... method as_test_simple_table_with_enum_mut (line 220) | pub fn as_test_simple_table_with_enum_mut(&mut self) -> Option<&mut Te... method take_my_game_example_2_monster (line 225) | pub fn take_my_game_example_2_monster(&mut self) -> Option Option<&super::example_2... method as_my_game_example_2_monster_mut (line 244) | pub fn as_my_game_example_2_monster_mut(&mut self) -> Option<&mut supe... method default (line 152) | fn default() -> Self { FILE: tests/monster_test_serialize/my_game/example/any_unique_aliases_generated.rs constant ENUM_MIN_ANY_UNIQUE_ALIASES (line 9) | pub const ENUM_MIN_ANY_UNIQUE_ALIASES: u8 = 0; constant ENUM_MAX_ANY_UNIQUE_ALIASES (line 12) | pub const ENUM_MAX_ANY_UNIQUE_ALIASES: u8 = 3; constant ENUM_VALUES_ANY_UNIQUE_ALIASES (line 16) | pub const ENUM_VALUES_ANY_UNIQUE_ALIASES: [AnyUniqueAliases; 4] = [ type AnyUniqueAliases (line 25) | pub struct AnyUniqueAliases(pub u8); constant NONE (line 29) | pub const NONE: Self = Self(0); constant M (line 30) | pub const M: Self = Self(1); constant TS (line 31) | pub const TS: Self = Self(2); constant M2 (line 32) | pub const M2: Self = Self(3); constant ENUM_MIN (line 34) | pub const ENUM_MIN: u8 = 0; constant ENUM_MAX (line 35) | pub const ENUM_MAX: u8 = 3; constant ENUM_VALUES (line 36) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 44) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 56) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { method deserialize (line 75) | fn deserialize(deserializer: D) -> Result type Inner (line 94) | type Inner = Self; method follow (line 97) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 104) | type Output = AnyUniqueAliases; method push (line 107) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 113) | type Scalar = u8; method to_little_endian (line 116) | fn to_little_endian(self) -> u8 { method from_little_endian (line 122) | fn from_little_endian(v: u8) -> Self { method run_verifier (line 130) | fn run_verifier( method serialize (line 66) | fn serialize(&self, serializer: S) -> Result type AnyUniqueAliasesUnionTableOffset (line 139) | pub struct AnyUniqueAliasesUnionTableOffset {} type AnyUniqueAliasesT (line 144) | pub enum AnyUniqueAliasesT { method any_unique_aliases_type (line 158) | pub fn any_unique_aliases_type(&self) -> AnyUniqueAliases { method pack (line 167) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>(&self, fbb: &mut ::f... method take_m (line 177) | pub fn take_m(&mut self) -> Option> { method as_m (line 191) | pub fn as_m(&self) -> Option<&MonsterT> { method as_m_mut (line 196) | pub fn as_m_mut(&mut self) -> Option<&mut MonsterT> { method take_ts (line 201) | pub fn take_ts(&mut self) -> Option Option<&TestSimpleTableWithEnumT> { method as_ts_mut (line 220) | pub fn as_ts_mut(&mut self) -> Option<&mut TestSimpleTableWithEnumT> { method take_m2 (line 225) | pub fn take_m2(&mut self) -> Option Option<&super::example_2::MonsterT> { method as_m2_mut (line 244) | pub fn as_m2_mut(&mut self) -> Option<&mut super::example_2::MonsterT> { method default (line 152) | fn default() -> Self { FILE: tests/monster_test_serialize/my_game/example/color_generated.rs method serialize (line 27) | fn serialize(&self, serializer: S) -> Result type Inner (line 36) | type Inner = Self; method follow (line 39) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 46) | type Output = Color; method push (line 49) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 55) | type Scalar = u8; method to_little_endian (line 58) | fn to_little_endian(self) -> u8 { method from_little_endian (line 64) | fn from_little_endian(v: u8) -> Self { method run_verifier (line 72) | fn run_verifier( FILE: tests/monster_test_serialize/my_game/example/long_enum_generated.rs method serialize (line 23) | fn serialize(&self, serializer: S) -> Result type Inner (line 32) | type Inner = Self; method follow (line 35) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 42) | type Output = LongEnum; method push (line 45) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 51) | type Scalar = u64; method to_little_endian (line 54) | fn to_little_endian(self) -> u64 { method from_little_endian (line 60) | fn from_little_endian(v: u64) -> Self { method run_verifier (line 68) | fn run_verifier( FILE: tests/monster_test_serialize/my_game/example/monster_generated.rs type MonsterOffset (line 8) | pub enum MonsterOffset {} type Monster (line 12) | pub struct Monster<'a> { type Inner (line 17) | type Inner = Monster<'a>; function follow (line 20) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_POS (line 26) | pub const VT_POS: ::flatbuffers::VOffsetT = 4; constant VT_MANA (line 27) | pub const VT_MANA: ::flatbuffers::VOffsetT = 6; constant VT_HP (line 28) | pub const VT_HP: ::flatbuffers::VOffsetT = 8; constant VT_NAME (line 29) | pub const VT_NAME: ::flatbuffers::VOffsetT = 10; constant VT_INVENTORY (line 30) | pub const VT_INVENTORY: ::flatbuffers::VOffsetT = 14; constant VT_COLOR (line 31) | pub const VT_COLOR: ::flatbuffers::VOffsetT = 16; constant VT_TEST_TYPE (line 32) | pub const VT_TEST_TYPE: ::flatbuffers::VOffsetT = 18; constant VT_TEST (line 33) | pub const VT_TEST: ::flatbuffers::VOffsetT = 20; constant VT_TEST4 (line 34) | pub const VT_TEST4: ::flatbuffers::VOffsetT = 22; constant VT_TESTARRAYOFSTRING (line 35) | pub const VT_TESTARRAYOFSTRING: ::flatbuffers::VOffsetT = 24; constant VT_TESTARRAYOFTABLES (line 36) | pub const VT_TESTARRAYOFTABLES: ::flatbuffers::VOffsetT = 26; constant VT_ENEMY (line 37) | pub const VT_ENEMY: ::flatbuffers::VOffsetT = 28; constant VT_TESTNESTEDFLATBUFFER (line 38) | pub const VT_TESTNESTEDFLATBUFFER: ::flatbuffers::VOffsetT = 30; constant VT_TESTEMPTY (line 39) | pub const VT_TESTEMPTY: ::flatbuffers::VOffsetT = 32; constant VT_TESTBOOL (line 40) | pub const VT_TESTBOOL: ::flatbuffers::VOffsetT = 34; constant VT_TESTHASHS32_FNV1 (line 41) | pub const VT_TESTHASHS32_FNV1: ::flatbuffers::VOffsetT = 36; constant VT_TESTHASHU32_FNV1 (line 42) | pub const VT_TESTHASHU32_FNV1: ::flatbuffers::VOffsetT = 38; constant VT_TESTHASHS64_FNV1 (line 43) | pub const VT_TESTHASHS64_FNV1: ::flatbuffers::VOffsetT = 40; constant VT_TESTHASHU64_FNV1 (line 44) | pub const VT_TESTHASHU64_FNV1: ::flatbuffers::VOffsetT = 42; constant VT_TESTHASHS32_FNV1A (line 45) | pub const VT_TESTHASHS32_FNV1A: ::flatbuffers::VOffsetT = 44; constant VT_TESTHASHU32_FNV1A (line 46) | pub const VT_TESTHASHU32_FNV1A: ::flatbuffers::VOffsetT = 46; constant VT_TESTHASHS64_FNV1A (line 47) | pub const VT_TESTHASHS64_FNV1A: ::flatbuffers::VOffsetT = 48; constant VT_TESTHASHU64_FNV1A (line 48) | pub const VT_TESTHASHU64_FNV1A: ::flatbuffers::VOffsetT = 50; constant VT_TESTARRAYOFBOOLS (line 49) | pub const VT_TESTARRAYOFBOOLS: ::flatbuffers::VOffsetT = 52; constant VT_TESTF (line 50) | pub const VT_TESTF: ::flatbuffers::VOffsetT = 54; constant VT_TESTF2 (line 51) | pub const VT_TESTF2: ::flatbuffers::VOffsetT = 56; constant VT_TESTF3 (line 52) | pub const VT_TESTF3: ::flatbuffers::VOffsetT = 58; constant VT_TESTARRAYOFSTRING2 (line 53) | pub const VT_TESTARRAYOFSTRING2: ::flatbuffers::VOffsetT = 60; constant VT_TESTARRAYOFSORTEDSTRUCT (line 54) | pub const VT_TESTARRAYOFSORTEDSTRUCT: ::flatbuffers::VOffsetT = 62; constant VT_FLEX (line 55) | pub const VT_FLEX: ::flatbuffers::VOffsetT = 64; constant VT_TEST5 (line 56) | pub const VT_TEST5: ::flatbuffers::VOffsetT = 66; constant VT_VECTOR_OF_LONGS (line 57) | pub const VT_VECTOR_OF_LONGS: ::flatbuffers::VOffsetT = 68; constant VT_VECTOR_OF_DOUBLES (line 58) | pub const VT_VECTOR_OF_DOUBLES: ::flatbuffers::VOffsetT = 70; constant VT_PARENT_NAMESPACE_TEST (line 59) | pub const VT_PARENT_NAMESPACE_TEST: ::flatbuffers::VOffsetT = 72; constant VT_VECTOR_OF_REFERRABLES (line 60) | pub const VT_VECTOR_OF_REFERRABLES: ::flatbuffers::VOffsetT = 74; constant VT_SINGLE_WEAK_REFERENCE (line 61) | pub const VT_SINGLE_WEAK_REFERENCE: ::flatbuffers::VOffsetT = 76; constant VT_VECTOR_OF_WEAK_REFERENCES (line 62) | pub const VT_VECTOR_OF_WEAK_REFERENCES: ::flatbuffers::VOffsetT = 78; constant VT_VECTOR_OF_STRONG_REFERRABLES (line 63) | pub const VT_VECTOR_OF_STRONG_REFERRABLES: ::flatbuffers::VOffsetT = 80; constant VT_CO_OWNING_REFERENCE (line 64) | pub const VT_CO_OWNING_REFERENCE: ::flatbuffers::VOffsetT = 82; constant VT_VECTOR_OF_CO_OWNING_REFERENCES (line 65) | pub const VT_VECTOR_OF_CO_OWNING_REFERENCES: ::flatbuffers::VOffsetT = 84; constant VT_NON_OWNING_REFERENCE (line 66) | pub const VT_NON_OWNING_REFERENCE: ::flatbuffers::VOffsetT = 86; constant VT_VECTOR_OF_NON_OWNING_REFERENCES (line 67) | pub const VT_VECTOR_OF_NON_OWNING_REFERENCES: ::flatbuffers::VOffsetT = 88; constant VT_ANY_UNIQUE_TYPE (line 68) | pub const VT_ANY_UNIQUE_TYPE: ::flatbuffers::VOffsetT = 90; constant VT_ANY_UNIQUE (line 69) | pub const VT_ANY_UNIQUE: ::flatbuffers::VOffsetT = 92; constant VT_ANY_AMBIGUOUS_TYPE (line 70) | pub const VT_ANY_AMBIGUOUS_TYPE: ::flatbuffers::VOffsetT = 94; constant VT_ANY_AMBIGUOUS (line 71) | pub const VT_ANY_AMBIGUOUS: ::flatbuffers::VOffsetT = 96; constant VT_VECTOR_OF_ENUMS (line 72) | pub const VT_VECTOR_OF_ENUMS: ::flatbuffers::VOffsetT = 98; constant VT_SIGNED_ENUM (line 73) | pub const VT_SIGNED_ENUM: ::flatbuffers::VOffsetT = 100; constant VT_TESTREQUIREDNESTEDFLATBUFFER (line 74) | pub const VT_TESTREQUIREDNESTEDFLATBUFFER: ::flatbuffers::VOffsetT = 102; constant VT_SCALAR_KEY_SORTED_TABLES (line 75) | pub const VT_SCALAR_KEY_SORTED_TABLES: ::flatbuffers::VOffsetT = 104; constant VT_NATIVE_INLINE (line 76) | pub const VT_NATIVE_INLINE: ::flatbuffers::VOffsetT = 106; constant VT_LONG_ENUM_NON_ENUM_DEFAULT (line 77) | pub const VT_LONG_ENUM_NON_ENUM_DEFAULT: ::flatbuffers::VOffsetT = 108; constant VT_LONG_ENUM_NORMAL_DEFAULT (line 78) | pub const VT_LONG_ENUM_NORMAL_DEFAULT: ::flatbuffers::VOffsetT = 110; constant VT_NAN_DEFAULT (line 79) | pub const VT_NAN_DEFAULT: ::flatbuffers::VOffsetT = 112; constant VT_INF_DEFAULT (line 80) | pub const VT_INF_DEFAULT: ::flatbuffers::VOffsetT = 114; constant VT_POSITIVE_INF_DEFAULT (line 81) | pub const VT_POSITIVE_INF_DEFAULT: ::flatbuffers::VOffsetT = 116; constant VT_INFINITY_DEFAULT (line 82) | pub const VT_INFINITY_DEFAULT: ::flatbuffers::VOffsetT = 118; constant VT_POSITIVE_INFINITY_DEFAULT (line 83) | pub const VT_POSITIVE_INFINITY_DEFAULT: ::flatbuffers::VOffsetT = 120; constant VT_NEGATIVE_INF_DEFAULT (line 84) | pub const VT_NEGATIVE_INF_DEFAULT: ::flatbuffers::VOffsetT = 122; constant VT_NEGATIVE_INFINITY_DEFAULT (line 85) | pub const VT_NEGATIVE_INFINITY_DEFAULT: ::flatbuffers::VOffsetT = 124; constant VT_DOUBLE_INF_DEFAULT (line 86) | pub const VT_DOUBLE_INF_DEFAULT: ::flatbuffers::VOffsetT = 126; function get_fully_qualified_name (line 88) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 93) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 98) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 167) | pub fn unpack(&self) -> MonsterT { function pos (line 396) | pub fn pos(&self) -> Option<&'a Vec3> { function mana (line 404) | pub fn mana(&self) -> i16 { function hp (line 412) | pub fn hp(&self) -> i16 { function name (line 420) | pub fn name(&self) -> &'a str { function key_compare_less_than (line 428) | pub fn key_compare_less_than(&self, o: &Monster) -> bool { function key_compare_with_value (line 433) | pub fn key_compare_with_value(&self, val: & str) -> ::core::cmp::Ordering { function inventory (line 439) | pub fn inventory(&self) -> Option<::flatbuffers::Vector<'a, u8>> { function color (line 447) | pub fn color(&self) -> Color { function test_type (line 455) | pub fn test_type(&self) -> Any { function test (line 463) | pub fn test(&self) -> Option<::flatbuffers::Table<'a>> { function test4 (line 471) | pub fn test4(&self) -> Option<::flatbuffers::Vector<'a, Test>> { function testarrayofstring (line 479) | pub fn testarrayofstring(&self) -> Option<::flatbuffers::Vector<'a, ::fl... function testarrayoftables (line 489) | pub fn testarrayoftables(&self) -> Option<::flatbuffers::Vector<'a, ::fl... function enemy (line 497) | pub fn enemy(&self) -> Option> { function testnestedflatbuffer (line 505) | pub fn testnestedflatbuffer(&self) -> Option<::flatbuffers::Vector<'a, u... function testnestedflatbuffer_nested_flatbuffer (line 512) | pub fn testnestedflatbuffer_nested_flatbuffer(&'a self) -> Option Option> { function testbool (line 531) | pub fn testbool(&self) -> bool { function testhashs32_fnv1 (line 539) | pub fn testhashs32_fnv1(&self) -> i32 { function testhashu32_fnv1 (line 547) | pub fn testhashu32_fnv1(&self) -> u32 { function testhashs64_fnv1 (line 555) | pub fn testhashs64_fnv1(&self) -> i64 { function testhashu64_fnv1 (line 563) | pub fn testhashu64_fnv1(&self) -> u64 { function testhashs32_fnv1a (line 571) | pub fn testhashs32_fnv1a(&self) -> i32 { function testhashu32_fnv1a (line 579) | pub fn testhashu32_fnv1a(&self) -> u32 { function testhashs64_fnv1a (line 587) | pub fn testhashs64_fnv1a(&self) -> i64 { function testhashu64_fnv1a (line 595) | pub fn testhashu64_fnv1a(&self) -> u64 { function testarrayofbools (line 603) | pub fn testarrayofbools(&self) -> Option<::flatbuffers::Vector<'a, bool>> { function testf (line 611) | pub fn testf(&self) -> f32 { function testf2 (line 619) | pub fn testf2(&self) -> f32 { function testf3 (line 627) | pub fn testf3(&self) -> f32 { function testarrayofstring2 (line 635) | pub fn testarrayofstring2(&self) -> Option<::flatbuffers::Vector<'a, ::f... function testarrayofsortedstruct (line 643) | pub fn testarrayofsortedstruct(&self) -> Option<::flatbuffers::Vector<'a... function flex (line 651) | pub fn flex(&self) -> Option<::flatbuffers::Vector<'a, u8>> { function test5 (line 659) | pub fn test5(&self) -> Option<::flatbuffers::Vector<'a, Test>> { function vector_of_longs (line 667) | pub fn vector_of_longs(&self) -> Option<::flatbuffers::Vector<'a, i64>> { function vector_of_doubles (line 675) | pub fn vector_of_doubles(&self) -> Option<::flatbuffers::Vector<'a, f64>> { function parent_namespace_test (line 683) | pub fn parent_namespace_test(&self) -> Option Option<::flatbuffers::Vector<'a, ... function single_weak_reference (line 699) | pub fn single_weak_reference(&self) -> u64 { function vector_of_weak_references (line 707) | pub fn vector_of_weak_references(&self) -> Option<::flatbuffers::Vector<... function vector_of_strong_referrables (line 715) | pub fn vector_of_strong_referrables(&self) -> Option<::flatbuffers::Vect... function co_owning_reference (line 723) | pub fn co_owning_reference(&self) -> u64 { function vector_of_co_owning_references (line 731) | pub fn vector_of_co_owning_references(&self) -> Option<::flatbuffers::Ve... function non_owning_reference (line 739) | pub fn non_owning_reference(&self) -> u64 { function vector_of_non_owning_references (line 747) | pub fn vector_of_non_owning_references(&self) -> Option<::flatbuffers::V... function any_unique_type (line 755) | pub fn any_unique_type(&self) -> AnyUniqueAliases { function any_unique (line 763) | pub fn any_unique(&self) -> Option<::flatbuffers::Table<'a>> { function any_ambiguous_type (line 771) | pub fn any_ambiguous_type(&self) -> AnyAmbiguousAliases { function any_ambiguous (line 779) | pub fn any_ambiguous(&self) -> Option<::flatbuffers::Table<'a>> { function vector_of_enums (line 787) | pub fn vector_of_enums(&self) -> Option<::flatbuffers::Vector<'a, Color>> { function signed_enum (line 795) | pub fn signed_enum(&self) -> Race { function testrequirednestedflatbuffer (line 803) | pub fn testrequirednestedflatbuffer(&self) -> Option<::flatbuffers::Vect... function testrequirednestedflatbuffer_nested_flatbuffer (line 810) | pub fn testrequirednestedflatbuffer_nested_flatbuffer(&'a self) -> Optio... function scalar_key_sorted_tables (line 821) | pub fn scalar_key_sorted_tables(&self) -> Option<::flatbuffers::Vector<'... function native_inline (line 829) | pub fn native_inline(&self) -> Option<&'a Test> { function long_enum_non_enum_default (line 837) | pub fn long_enum_non_enum_default(&self) -> LongEnum { function long_enum_normal_default (line 845) | pub fn long_enum_normal_default(&self) -> LongEnum { function nan_default (line 853) | pub fn nan_default(&self) -> f32 { function inf_default (line 861) | pub fn inf_default(&self) -> f32 { function positive_inf_default (line 869) | pub fn positive_inf_default(&self) -> f32 { function infinity_default (line 877) | pub fn infinity_default(&self) -> f32 { function positive_infinity_default (line 885) | pub fn positive_infinity_default(&self) -> f32 { function negative_inf_default (line 893) | pub fn negative_inf_default(&self) -> f32 { function negative_infinity_default (line 901) | pub fn negative_infinity_default(&self) -> f32 { function double_inf_default (line 909) | pub fn double_inf_default(&self) -> f64 { function test_as_monster (line 918) | pub fn test_as_monster(&self) -> Option> { function test_as_test_simple_table_with_enum (line 933) | pub fn test_as_test_simple_table_with_enum(&self) -> Option Option Option> { function any_unique_as_ts (line 978) | pub fn any_unique_as_ts(&self) -> Option> { function any_unique_as_m2 (line 993) | pub fn any_unique_as_m2(&self) -> Option> { function any_ambiguous_as_m1 (line 1008) | pub fn any_ambiguous_as_m1(&self) -> Option> { function any_ambiguous_as_m2 (line 1023) | pub fn any_ambiguous_as_m2(&self) -> Option> { function any_ambiguous_as_m3 (line 1038) | pub fn any_ambiguous_as_m3(&self) -> Option> { function run_verifier (line 1054) | fn run_verifier( type MonsterArgs (line 1142) | pub struct MonsterArgs<'a> { method default (line 1208) | fn default() -> Self { method serialize (line 1276) | fn serialize(&self, serializer: S) -> Result type MonsterBuilder (line 1500) | pub struct MonsterBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function add_pos (line 1507) | pub fn add_pos(&mut self, pos: &Vec3) { function add_mana (line 1512) | pub fn add_mana(&mut self, mana: i16) { function add_hp (line 1517) | pub fn add_hp(&mut self, hp: i16) { function add_name (line 1522) | pub fn add_name(&mut self, name: ::flatbuffers::WIPOffset<&'b str>) { function add_inventory (line 1527) | pub fn add_inventory(&mut self, inventory: ::flatbuffers::WIPOffset<::fl... function add_color (line 1532) | pub fn add_color(&mut self, color: Color) { function add_test_type (line 1537) | pub fn add_test_type(&mut self, test_type: Any) { function add_test (line 1542) | pub fn add_test(&mut self, test: ::flatbuffers::WIPOffset<::flatbuffers:... function add_test4 (line 1547) | pub fn add_test4(&mut self, test4: ::flatbuffers::WIPOffset<::flatbuffer... function add_testarrayofstring (line 1552) | pub fn add_testarrayofstring(&mut self, testarrayofstring: ::flatbuffers... function add_testarrayoftables (line 1557) | pub fn add_testarrayoftables(&mut self, testarrayoftables: ::flatbuffers... function add_enemy (line 1562) | pub fn add_enemy(&mut self, enemy: ::flatbuffers::WIPOffset... function add_testnestedflatbuffer (line 1567) | pub fn add_testnestedflatbuffer(&mut self, testnestedflatbuffer: ::flatb... function add_testempty (line 1572) | pub fn add_testempty(&mut self, testempty: ::flatbuffers::WIPOffset) -> Mon... function finish (line 1821) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 1829) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type MonsterT (line 1976) | pub struct MonsterT { method pack (line 2103) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 2038) | fn default() -> Self { function root_as_monster (line 2292) | pub fn root_as_monster(buf: &[u8]) -> Result, ::flatbuffers:... function size_prefixed_root_as_monster (line 2303) | pub fn size_prefixed_root_as_monster(buf: &[u8]) -> Result, ... function root_as_monster_with_opts (line 2314) | pub fn root_as_monster_with_opts<'b, 'o>( function size_prefixed_root_as_monster_with_opts (line 2328) | pub fn size_prefixed_root_as_monster_with_opts<'b, 'o>( function root_as_monster_unchecked (line 2339) | pub unsafe fn root_as_monster_unchecked(buf: &[u8]) -> Monster<'_> { function size_prefixed_root_as_monster_unchecked (line 2347) | pub unsafe fn size_prefixed_root_as_monster_unchecked(buf: &[u8]) -> Mon... constant MONSTER_IDENTIFIER (line 2351) | pub const MONSTER_IDENTIFIER: &str = "MONS"; function monster_buffer_has_identifier (line 2354) | pub fn monster_buffer_has_identifier(buf: &[u8]) -> bool { function monster_size_prefixed_buffer_has_identifier (line 2359) | pub fn monster_size_prefixed_buffer_has_identifier(buf: &[u8]) -> bool { constant MONSTER_EXTENSION (line 2363) | pub const MONSTER_EXTENSION: &str = "mon"; function finish_monster_buffer (line 2366) | pub fn finish_monster_buffer<'a, 'b, A: ::flatbuffers::Allocator + 'a>( function finish_size_prefixed_monster_buffer (line 2374) | pub fn finish_size_prefixed_monster_buffer<'a, 'b, A: ::flatbuffers::All... FILE: tests/monster_test_serialize/my_game/example/race_generated.rs constant ENUM_MIN_RACE (line 9) | pub const ENUM_MIN_RACE: i8 = -1; constant ENUM_MAX_RACE (line 12) | pub const ENUM_MAX_RACE: i8 = 2; constant ENUM_VALUES_RACE (line 16) | pub const ENUM_VALUES_RACE: [Race; 4] = [ type Race (line 25) | pub struct Race(pub i8); constant None (line 29) | pub const None: Self = Self(-1); constant Human (line 30) | pub const Human: Self = Self(0); constant Dwarf (line 31) | pub const Dwarf: Self = Self(1); constant Elf (line 32) | pub const Elf: Self = Self(2); constant ENUM_MIN (line 34) | pub const ENUM_MIN: i8 = -1; constant ENUM_MAX (line 35) | pub const ENUM_MAX: i8 = 2; constant ENUM_VALUES (line 36) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 44) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 56) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { method deserialize (line 75) | fn deserialize(deserializer: D) -> Result type Inner (line 94) | type Inner = Self; method follow (line 97) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 104) | type Output = Race; method push (line 107) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 113) | type Scalar = i8; method to_little_endian (line 116) | fn to_little_endian(self) -> i8 { method from_little_endian (line 122) | fn from_little_endian(v: i8) -> Self { method run_verifier (line 130) | fn run_verifier( method serialize (line 66) | fn serialize(&self, serializer: S) -> Result FILE: tests/monster_test_serialize/my_game/example/referrable_generated.rs type ReferrableOffset (line 8) | pub enum ReferrableOffset {} type Referrable (line 11) | pub struct Referrable<'a> { type Inner (line 16) | type Inner = Referrable<'a>; function follow (line 19) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_ID (line 25) | pub const VT_ID: ::flatbuffers::VOffsetT = 4; function get_fully_qualified_name (line 27) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 32) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 37) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 46) | pub fn unpack(&self) -> ReferrableT { function id (line 54) | pub fn id(&self) -> u64 { function key_compare_less_than (line 62) | pub fn key_compare_less_than(&self, o: &Referrable) -> bool { function key_compare_with_value (line 67) | pub fn key_compare_with_value(&self, val: u64) -> ::core::cmp::Ordering { function run_verifier (line 75) | fn run_verifier( type ReferrableArgs (line 85) | pub struct ReferrableArgs { method default (line 91) | fn default() -> Self { method serialize (line 99) | fn serialize(&self, serializer: S) -> Result type ReferrableBuilder (line 109) | pub struct ReferrableBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + '... function add_id (line 116) | pub fn add_id(&mut self, id: u64) { function new (line 121) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Ref... function finish (line 130) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 137) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type ReferrableT (line 146) | pub struct ReferrableT { method pack (line 159) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 151) | fn default() -> Self { FILE: tests/monster_test_serialize/my_game/example/stat_generated.rs type StatOffset (line 8) | pub enum StatOffset {} type Stat (line 11) | pub struct Stat<'a> { type Inner (line 16) | type Inner = Stat<'a>; function follow (line 19) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_ID (line 25) | pub const VT_ID: ::flatbuffers::VOffsetT = 4; constant VT_VAL (line 26) | pub const VT_VAL: ::flatbuffers::VOffsetT = 6; constant VT_COUNT (line 27) | pub const VT_COUNT: ::flatbuffers::VOffsetT = 8; function get_fully_qualified_name (line 29) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 34) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 39) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 50) | pub fn unpack(&self) -> StatT { function id (line 64) | pub fn id(&self) -> Option<&'a str> { function val (line 72) | pub fn val(&self) -> i64 { function count (line 80) | pub fn count(&self) -> u16 { function key_compare_less_than (line 88) | pub fn key_compare_less_than(&self, o: &Stat) -> bool { function key_compare_with_value (line 93) | pub fn key_compare_with_value(&self, val: u16) -> ::core::cmp::Ordering { function run_verifier (line 101) | fn run_verifier( type StatArgs (line 113) | pub struct StatArgs<'a> { method default (line 121) | fn default() -> Self { method serialize (line 131) | fn serialize(&self, serializer: S) -> Result type StatBuilder (line 147) | pub struct StatBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function add_id (line 154) | pub fn add_id(&mut self, id: ::flatbuffers::WIPOffset<&'b str>) { function add_val (line 159) | pub fn add_val(&mut self, val: i64) { function add_count (line 164) | pub fn add_count(&mut self, count: u16) { function new (line 169) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Sta... function finish (line 178) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 185) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type StatT (line 196) | pub struct StatT { method pack (line 213) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 203) | fn default() -> Self { FILE: tests/monster_test_serialize/my_game/example/struct_of_structs_generated.rs type StructOfStructs (line 11) | pub struct StructOfStructs(pub [u8; 20]); method fmt (line 20) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 32) | type Inner = &'a StructOfStructs; method follow (line 35) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 50) | type Output = StructOfStructs; method push (line 53) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 59) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 66) | fn run_verifier( method new (line 88) | pub fn new( method get_fully_qualified_name (line 100) | pub const fn get_fully_qualified_name() -> &'static str { method a (line 104) | pub fn a(&self) -> &Ability { method set_a (line 112) | pub fn set_a(&mut self, x: &Ability) { method b (line 116) | pub fn b(&self) -> &Test { method set_b (line 124) | pub fn set_b(&mut self, x: &Test) { method c (line 128) | pub fn c(&self) -> &Ability { method set_c (line 136) | pub fn set_c(&mut self, x: &Ability) { method unpack (line 140) | pub fn unpack(&self) -> StructOfStructsT { method default (line 14) | fn default() -> Self { type Inner (line 41) | type Inner = &'a StructOfStructs; function follow (line 44) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { method serialize (line 74) | fn serialize(&self, serializer: S) -> Result type StructOfStructsT (line 150) | pub struct StructOfStructsT { method pack (line 166) | pub fn pack(&self) -> StructOfStructs { method default (line 156) | fn default() -> Self { FILE: tests/monster_test_serialize/my_game/example/struct_of_structs_of_structs_generated.rs type StructOfStructsOfStructs (line 11) | pub struct StructOfStructsOfStructs(pub [u8; 20]); method fmt (line 20) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 30) | type Inner = &'a StructOfStructsOfStructs; method follow (line 33) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 48) | type Output = StructOfStructsOfStructs; method push (line 51) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 57) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 64) | fn run_verifier( method new (line 84) | pub fn new( method get_fully_qualified_name (line 92) | pub const fn get_fully_qualified_name() -> &'static str { method a (line 96) | pub fn a(&self) -> &StructOfStructs { method set_a (line 104) | pub fn set_a(&mut self, x: &StructOfStructs) { method unpack (line 108) | pub fn unpack(&self) -> StructOfStructsOfStructsT { method default (line 14) | fn default() -> Self { type Inner (line 39) | type Inner = &'a StructOfStructsOfStructs; function follow (line 42) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { method serialize (line 72) | fn serialize(&self, serializer: S) -> Result type StructOfStructsOfStructsT (line 116) | pub struct StructOfStructsOfStructsT { method pack (line 128) | pub fn pack(&self) -> StructOfStructsOfStructs { method default (line 120) | fn default() -> Self { FILE: tests/monster_test_serialize/my_game/example/test_generated.rs type Test (line 11) | pub struct Test(pub [u8; 4]); method fmt (line 20) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 31) | type Inner = &'a Test; method follow (line 34) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 49) | type Output = Test; method push (line 52) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 58) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 65) | fn run_verifier( method new (line 86) | pub fn new( method get_fully_qualified_name (line 96) | pub const fn get_fully_qualified_name() -> &'static str { method a (line 100) | pub fn a(&self) -> i16 { method set_a (line 115) | pub fn set_a(&mut self, x: i16) { method b (line 129) | pub fn b(&self) -> i8 { method set_b (line 144) | pub fn set_b(&mut self, x: i8) { method unpack (line 158) | pub fn unpack(&self) -> TestT { method default (line 14) | fn default() -> Self { type Inner (line 40) | type Inner = &'a Test; function follow (line 43) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { method serialize (line 73) | fn serialize(&self, serializer: S) -> Result type TestT (line 167) | pub struct TestT { method pack (line 181) | pub fn pack(&self) -> Test { method default (line 172) | fn default() -> Self { FILE: tests/monster_test_serialize/my_game/example/test_simple_table_with_enum_generated.rs type TestSimpleTableWithEnumOffset (line 8) | pub enum TestSimpleTableWithEnumOffset {} type TestSimpleTableWithEnum (line 11) | pub struct TestSimpleTableWithEnum<'a> { type Inner (line 16) | type Inner = TestSimpleTableWithEnum<'a>; function follow (line 19) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_COLOR (line 25) | pub const VT_COLOR: ::flatbuffers::VOffsetT = 4; function get_fully_qualified_name (line 27) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 32) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 37) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 46) | pub fn unpack(&self) -> TestSimpleTableWithEnumT { function color (line 54) | pub fn color(&self) -> Color { function run_verifier (line 64) | fn run_verifier( type TestSimpleTableWithEnumArgs (line 74) | pub struct TestSimpleTableWithEnumArgs { method default (line 80) | fn default() -> Self { method serialize (line 88) | fn serialize(&self, serializer: S) -> Result type TestSimpleTableWithEnumBuilder (line 98) | pub struct TestSimpleTableWithEnumBuilder<'a: 'b, 'b, A: ::flatbuffers::... function add_color (line 105) | pub fn add_color(&mut self, color: Color) { function new (line 110) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Tes... function finish (line 119) | pub fn finish(self) -> ::flatbuffers::WIPOffset) -> ::core::fmt::Result { type TestSimpleTableWithEnumT (line 135) | pub struct TestSimpleTableWithEnumT { method pack (line 148) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 140) | fn default() -> Self { FILE: tests/monster_test_serialize/my_game/example/type_aliases_generated.rs type TypeAliasesOffset (line 8) | pub enum TypeAliasesOffset {} type TypeAliases (line 11) | pub struct TypeAliases<'a> { type Inner (line 16) | type Inner = TypeAliases<'a>; function follow (line 19) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_I8_ (line 25) | pub const VT_I8_: ::flatbuffers::VOffsetT = 4; constant VT_U8_ (line 26) | pub const VT_U8_: ::flatbuffers::VOffsetT = 6; constant VT_I16_ (line 27) | pub const VT_I16_: ::flatbuffers::VOffsetT = 8; constant VT_U16_ (line 28) | pub const VT_U16_: ::flatbuffers::VOffsetT = 10; constant VT_I32_ (line 29) | pub const VT_I32_: ::flatbuffers::VOffsetT = 12; constant VT_U32_ (line 30) | pub const VT_U32_: ::flatbuffers::VOffsetT = 14; constant VT_I64_ (line 31) | pub const VT_I64_: ::flatbuffers::VOffsetT = 16; constant VT_U64_ (line 32) | pub const VT_U64_: ::flatbuffers::VOffsetT = 18; constant VT_F32_ (line 33) | pub const VT_F32_: ::flatbuffers::VOffsetT = 20; constant VT_F64_ (line 34) | pub const VT_F64_: ::flatbuffers::VOffsetT = 22; constant VT_V8 (line 35) | pub const VT_V8: ::flatbuffers::VOffsetT = 24; constant VT_VF64 (line 36) | pub const VT_VF64: ::flatbuffers::VOffsetT = 26; function get_fully_qualified_name (line 38) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 43) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 48) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 68) | pub fn unpack(&self) -> TypeAliasesT { function i8_ (line 102) | pub fn i8_(&self) -> i8 { function u8_ (line 110) | pub fn u8_(&self) -> u8 { function i16_ (line 118) | pub fn i16_(&self) -> i16 { function u16_ (line 126) | pub fn u16_(&self) -> u16 { function i32_ (line 134) | pub fn i32_(&self) -> i32 { function u32_ (line 142) | pub fn u32_(&self) -> u32 { function i64_ (line 150) | pub fn i64_(&self) -> i64 { function u64_ (line 158) | pub fn u64_(&self) -> u64 { function f32_ (line 166) | pub fn f32_(&self) -> f32 { function f64_ (line 174) | pub fn f64_(&self) -> f64 { function v8 (line 182) | pub fn v8(&self) -> Option<::flatbuffers::Vector<'a, i8>> { function vf64 (line 190) | pub fn vf64(&self) -> Option<::flatbuffers::Vector<'a, f64>> { function run_verifier (line 200) | fn run_verifier( type TypeAliasesArgs (line 221) | pub struct TypeAliasesArgs<'a> { method default (line 238) | fn default() -> Self { method serialize (line 257) | fn serialize(&self, serializer: S) -> Result type TypeAliasesBuilder (line 286) | pub struct TypeAliasesBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + ... function add_i8_ (line 293) | pub fn add_i8_(&mut self, i8_: i8) { function add_u8_ (line 298) | pub fn add_u8_(&mut self, u8_: u8) { function add_i16_ (line 303) | pub fn add_i16_(&mut self, i16_: i16) { function add_u16_ (line 308) | pub fn add_u16_(&mut self, u16_: u16) { function add_i32_ (line 313) | pub fn add_i32_(&mut self, i32_: i32) { function add_u32_ (line 318) | pub fn add_u32_(&mut self, u32_: u32) { function add_i64_ (line 323) | pub fn add_i64_(&mut self, i64_: i64) { function add_u64_ (line 328) | pub fn add_u64_(&mut self, u64_: u64) { function add_f32_ (line 333) | pub fn add_f32_(&mut self, f32_: f32) { function add_f64_ (line 338) | pub fn add_f64_(&mut self, f64_: f64) { function add_v8 (line 343) | pub fn add_v8(&mut self, v8: ::flatbuffers::WIPOffset<::flatbuffers::Vec... function add_vf64 (line 348) | pub fn add_vf64(&mut self, vf64: ::flatbuffers::WIPOffset<::flatbuffers:... function new (line 353) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Typ... function finish (line 362) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 369) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type TypeAliasesT (line 389) | pub struct TypeAliasesT { method pack (line 424) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 405) | fn default() -> Self { FILE: tests/monster_test_serialize/my_game/example/vec_3_generated.rs type Vec3 (line 11) | pub struct Vec3(pub [u8; 32]); method fmt (line 20) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 35) | type Inner = &'a Vec3; method follow (line 38) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 53) | type Output = Vec3; method push (line 56) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 62) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 69) | fn run_verifier( method new (line 94) | pub fn new( method get_fully_qualified_name (line 112) | pub const fn get_fully_qualified_name() -> &'static str { method x (line 116) | pub fn x(&self) -> f32 { method set_x (line 131) | pub fn set_x(&mut self, x: f32) { method y (line 145) | pub fn y(&self) -> f32 { method set_y (line 160) | pub fn set_y(&mut self, x: f32) { method z (line 174) | pub fn z(&self) -> f32 { method set_z (line 189) | pub fn set_z(&mut self, x: f32) { method test1 (line 203) | pub fn test1(&self) -> f64 { method set_test1 (line 218) | pub fn set_test1(&mut self, x: f64) { method test2 (line 232) | pub fn test2(&self) -> Color { method set_test2 (line 247) | pub fn set_test2(&mut self, x: Color) { method test3 (line 261) | pub fn test3(&self) -> &Test { method set_test3 (line 269) | pub fn set_test3(&mut self, x: &Test) { method unpack (line 273) | pub fn unpack(&self) -> Vec3T { method default (line 14) | fn default() -> Self { type Inner (line 44) | type Inner = &'a Vec3; function follow (line 47) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { method serialize (line 77) | fn serialize(&self, serializer: S) -> Result type Vec3T (line 286) | pub struct Vec3T { method pack (line 308) | pub fn pack(&self) -> Vec3 { method default (line 295) | fn default() -> Self { FILE: tests/monster_test_serialize/my_game/example_2/monster_generated.rs type MonsterOffset (line 8) | pub enum MonsterOffset {} type Monster (line 11) | pub struct Monster<'a> { type Inner (line 16) | type Inner = Monster<'a>; function follow (line 19) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { function get_fully_qualified_name (line 25) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 30) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 35) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 43) | pub fn unpack(&self) -> MonsterT { function run_verifier (line 51) | fn run_verifier( type MonsterArgs (line 60) | pub struct MonsterArgs { method default (line 65) | fn default() -> Self { method serialize (line 72) | fn serialize(&self, serializer: S) -> Result type MonsterBuilder (line 81) | pub struct MonsterBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function new (line 88) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Mon... function finish (line 97) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 104) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type MonsterT (line 112) | pub struct MonsterT { method pack (line 123) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 116) | fn default() -> Self { FILE: tests/monster_test_serialize/my_game/in_parent_namespace_generated.rs type InParentNamespaceOffset (line 8) | pub enum InParentNamespaceOffset {} type InParentNamespace (line 11) | pub struct InParentNamespace<'a> { type Inner (line 16) | type Inner = InParentNamespace<'a>; function follow (line 19) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { function get_fully_qualified_name (line 25) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 30) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 35) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 43) | pub fn unpack(&self) -> InParentNamespaceT { function run_verifier (line 51) | fn run_verifier( type InParentNamespaceArgs (line 60) | pub struct InParentNamespaceArgs { method default (line 65) | fn default() -> Self { method serialize (line 72) | fn serialize(&self, serializer: S) -> Result type InParentNamespaceBuilder (line 81) | pub struct InParentNamespaceBuilder<'a: 'b, 'b, A: ::flatbuffers::Alloca... function new (line 88) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> InP... function finish (line 97) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 104) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type InParentNamespaceT (line 112) | pub struct InParentNamespaceT { method pack (line 123) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 116) | fn default() -> Self { FILE: tests/monster_test_serialize/my_game/other_name_space/from_include_generated.rs constant ENUM_MIN_FROM_INCLUDE (line 9) | pub const ENUM_MIN_FROM_INCLUDE: i64 = 0; constant ENUM_MAX_FROM_INCLUDE (line 12) | pub const ENUM_MAX_FROM_INCLUDE: i64 = 0; constant ENUM_VALUES_FROM_INCLUDE (line 16) | pub const ENUM_VALUES_FROM_INCLUDE: [FromInclude; 1] = [ type FromInclude (line 22) | pub struct FromInclude(pub i64); constant IncludeVal (line 26) | pub const IncludeVal: Self = Self(0); constant ENUM_MIN (line 28) | pub const ENUM_MIN: i64 = 0; constant ENUM_MAX (line 29) | pub const ENUM_MAX: i64 = 0; constant ENUM_VALUES (line 30) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 35) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 44) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { method deserialize (line 63) | fn deserialize(deserializer: D) -> Result type Inner (line 82) | type Inner = Self; method follow (line 85) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 92) | type Output = FromInclude; method push (line 95) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 101) | type Scalar = i64; method to_little_endian (line 104) | fn to_little_endian(self) -> i64 { method from_little_endian (line 110) | fn from_little_endian(v: i64) -> Self { method run_verifier (line 118) | fn run_verifier( method serialize (line 54) | fn serialize(&self, serializer: S) -> Result FILE: tests/monster_test_serialize/my_game/other_name_space/table_b_generated.rs type TableBOffset (line 8) | pub enum TableBOffset {} type TableB (line 11) | pub struct TableB<'a> { type Inner (line 16) | type Inner = TableB<'a>; function follow (line 19) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_A (line 25) | pub const VT_A: ::flatbuffers::VOffsetT = 4; function get_fully_qualified_name (line 27) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 32) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 37) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 46) | pub fn unpack(&self) -> TableBT { function a (line 56) | pub fn a(&self) -> Option> { function run_verifier (line 66) | fn run_verifier( type TableBArgs (line 76) | pub struct TableBArgs<'a> { method default (line 82) | fn default() -> Self { method serialize (line 90) | fn serialize(&self, serializer: S) -> Result type TableBBuilder (line 104) | pub struct TableBBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function add_a (line 111) | pub fn add_a(&mut self, a: ::flatbuffers::WIPOffset) -> Tab... function finish (line 125) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 132) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type TableBT (line 141) | pub struct TableBT { method pack (line 154) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 146) | fn default() -> Self { FILE: tests/monster_test_serialize/my_game/other_name_space/unused_generated.rs type Unused (line 11) | pub struct Unused(pub [u8; 4]); method fmt (line 20) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 30) | type Inner = &'a Unused; method follow (line 33) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 48) | type Output = Unused; method push (line 51) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 57) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 64) | fn run_verifier( method new (line 84) | pub fn new( method get_fully_qualified_name (line 92) | pub const fn get_fully_qualified_name() -> &'static str { method a (line 96) | pub fn a(&self) -> i32 { method set_a (line 111) | pub fn set_a(&mut self, x: i32) { method unpack (line 125) | pub fn unpack(&self) -> UnusedT { method default (line 14) | fn default() -> Self { type Inner (line 39) | type Inner = &'a Unused; function follow (line 42) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { method serialize (line 72) | fn serialize(&self, serializer: S) -> Result type UnusedT (line 133) | pub struct UnusedT { method pack (line 145) | pub fn pack(&self) -> Unused { method default (line 137) | fn default() -> Self { FILE: tests/monster_test_serialize/table_a_generated.rs type TableAOffset (line 8) | pub enum TableAOffset {} type TableA (line 11) | pub struct TableA<'a> { type Inner (line 16) | type Inner = TableA<'a>; function follow (line 19) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_B (line 25) | pub const VT_B: ::flatbuffers::VOffsetT = 4; function get_fully_qualified_name (line 27) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 32) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 37) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 46) | pub fn unpack(&self) -> TableAT { function b (line 56) | pub fn b(&self) -> Option> { function run_verifier (line 66) | fn run_verifier( type TableAArgs (line 76) | pub struct TableAArgs<'a> { method default (line 82) | fn default() -> Self { method serialize (line 90) | fn serialize(&self, serializer: S) -> Result type TableABuilder (line 104) | pub struct TableABuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function add_b (line 111) | pub fn add_b(&mut self, b: ::flatbuffers::WIPOffset) -> Tab... function finish (line 125) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 132) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type TableAT (line 141) | pub struct TableAT { method pack (line 154) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 146) | fn default() -> Self { FILE: tests/monster_test_suffix/ext_only/monster_test.grpc.fb.cc type MyGame (line 16) | namespace MyGame { type Example (line 17) | namespace Example { FILE: tests/monster_test_suffix/ext_only/monster_test.grpc.fb.h function namespace (line 20) | namespace grpc { function namespace (line 27) | namespace MyGame { function class (line 143) | class Service : public ::grpc::Service { function RequestStore (line 168) | void RequestStore(::grpc::ServerContext* context, flatbuffers::grpc::Mes... function RequestRetrieve (line 188) | void RequestRetrieve(::grpc::ServerContext* context, flatbuffers::grpc::... function RequestGetMaxHitPoint (line 208) | void RequestGetMaxHitPoint(::grpc::ServerContext* context, ::grpc::Serve... function RequestGetMinMaxHitPoints (line 228) | void RequestGetMinMaxHitPoints(::grpc::ServerContext* context, ::grpc::S... type WithAsyncMethod_Store (line 232) | typedef WithAsyncMethod_Store< WithAsyncMethod_Retrieve< WithAsyncMe... type WithStreamedUnaryMethod_Store (line 321) | typedef WithStreamedUnaryMethod_Store< Service > StreamedUnarySer... type WithSplitStreamingMethod_Retrieve (line 342) | typedef WithSplitStreamingMethod_Retrieve< Service > SplitStreame... type WithStreamedUnaryMethod_Store (line 343) | typedef WithStreamedUnaryMethod_Store< WithSplitStreamingMethod_Retri... FILE: tests/monster_test_suffix/ext_only/monster_test_generated.hpp type MyGame (line 18) | namespace MyGame { type InParentNamespace (line 20) | struct InParentNamespace type InParentNamespaceBuilder (line 21) | struct InParentNamespaceBuilder type InParentNamespaceT (line 22) | struct InParentNamespaceT type Example2 (line 24) | namespace Example2 { type Monster (line 26) | struct Monster type MonsterBuilder (line 27) | struct MonsterBuilder type MonsterT (line 28) | struct MonsterT type Example (line 32) | namespace Example { type Test (line 34) | struct Test type TestSimpleTableWithEnum (line 36) | struct TestSimpleTableWithEnum type TestSimpleTableWithEnumBuilder (line 37) | struct TestSimpleTableWithEnumBuilder type TestSimpleTableWithEnumT (line 38) | struct TestSimpleTableWithEnumT type Vec3 (line 40) | struct Vec3 type Ability (line 42) | struct Ability type StructOfStructs (line 44) | struct StructOfStructs type StructOfStructsOfStructs (line 46) | struct StructOfStructsOfStructs type Stat (line 48) | struct Stat type StatBuilder (line 49) | struct StatBuilder type StatT (line 50) | struct StatT type Referrable (line 52) | struct Referrable type ReferrableBuilder (line 53) | struct ReferrableBuilder type ReferrableT (line 54) | struct ReferrableT type Monster (line 56) | struct Monster type MonsterBuilder (line 57) | struct MonsterBuilder type MonsterT (line 58) | struct MonsterT type TypeAliases (line 60) | struct TypeAliases type TypeAliasesBuilder (line 61) | struct TypeAliasesBuilder type TypeAliasesT (line 62) | struct TypeAliasesT type Color (line 130) | enum Color : uint8_t { function Color (line 141) | inline const Color (&EnumValuesColor())[3] { type Race (line 171) | enum Race : int8_t { function Race (line 180) | inline const Race (&EnumValuesRace())[4] { type LongEnum (line 207) | enum LongEnum : uint64_t { function LongEnum (line 215) | inline const LongEnum (&EnumValuesLongEnum())[3] { type Any (line 233) | enum Any : uint8_t { function Any (line 242) | inline const Any (&EnumValuesAny())[4] { type AnyTraits (line 269) | struct AnyTraits { type AnyTraits (line 273) | struct AnyTraits { type AnyTraits (line 277) | struct AnyTraits { type AnyTraits (line 281) | struct AnyTraits { type AnyUnionTraits (line 285) | struct AnyUnionTraits { type AnyUnionTraits (line 289) | struct AnyUnionTraits { type AnyUnionTraits (line 293) | struct AnyUnionTraits { type AnyUnionTraits (line 297) | struct AnyUnionTraits { type AnyUnion (line 301) | struct AnyUnion { method AnyUnion (line 305) | AnyUnion() : type(Any_NONE), value(nullptr) {} method AnyUnion (line 306) | AnyUnion(AnyUnion&& u) FLATBUFFERS_NOEXCEPT : method AnyUnion (line 310) | AnyUnion &operator=(const AnyUnion &u) method AnyUnion (line 312) | AnyUnion &operator=(AnyUnion &&u) FLATBUFFERS_NOEXCEPT method Set (line 319) | void Set(T&& val) { type AnyUniqueAliases (line 391) | enum AnyUniqueAliases : uint8_t { function AnyUniqueAliases (line 400) | inline const AnyUniqueAliases (&EnumValuesAnyUniqueAliases())[4] { type AnyUniqueAliasesTraits (line 427) | struct AnyUniqueAliasesTraits { type AnyUniqueAliasesTraits (line 431) | struct AnyUniqueAliasesTraits { type AnyUniqueAliasesTraits (line 435) | struct AnyUniqueAliasesTraits (line 439) | struct AnyUniqueAliasesTraits { type AnyUniqueAliasesUnionTraits (line 443) | struct AnyUniqueAliasesUnionTraits { type AnyUniqueAliasesUnionTraits (line 447) | struct AnyUniqueAliasesUnionTraits { type AnyUniqueAliasesUnionTraits (line 451) | struct AnyUniqueAliasesUnionTraits (line 455) | struct AnyUniqueAliasesUnionTraits { type AnyUniqueAliasesUnion (line 459) | struct AnyUniqueAliasesUnion { method AnyUniqueAliasesUnion (line 463) | AnyUniqueAliasesUnion() : type(AnyUniqueAliases_NONE), value(nullp... method AnyUniqueAliasesUnion (line 464) | AnyUniqueAliasesUnion(AnyUniqueAliasesUnion&& u) FLATBUFFERS_NOEXC... method AnyUniqueAliasesUnion (line 468) | AnyUniqueAliasesUnion &operator=(const AnyUniqueAliasesUnion &u) method AnyUniqueAliasesUnion (line 470) | AnyUniqueAliasesUnion &operator=(AnyUniqueAliasesUnion &&u) FLATBU... method Set (line 477) | void Set(T&& val) { type AnyAmbiguousAliases (line 549) | enum AnyAmbiguousAliases : uint8_t { function AnyAmbiguousAliases (line 558) | inline const AnyAmbiguousAliases (&EnumValuesAnyAmbiguousAliases())[... type AnyAmbiguousAliasesUnion (line 585) | struct AnyAmbiguousAliasesUnion { method AnyAmbiguousAliasesUnion (line 589) | AnyAmbiguousAliasesUnion() : type(AnyAmbiguousAliases_NONE), value... method AnyAmbiguousAliasesUnion (line 590) | AnyAmbiguousAliasesUnion(AnyAmbiguousAliasesUnion&& u) FLATBUFFERS... method AnyAmbiguousAliasesUnion (line 594) | AnyAmbiguousAliasesUnion &operator=(const AnyAmbiguousAliasesUnion... method AnyAmbiguousAliasesUnion (line 596) | AnyAmbiguousAliasesUnion &operator=(AnyAmbiguousAliasesUnion &&u) ... function Test (line 665) | Test FLATBUFFERS_FINAL_CLASS { function Test (line 675) | Test() function Test (line 681) | Test(int16_t _a, int8_t _b) function a (line 687) | int16_t a() const { function mutate_a (line 690) | void mutate_a(int16_t _a) { function b (line 693) | int8_t b() const { function mutate_b (line 696) | void mutate_b(int8_t _b) { type Example2 (line 68) | namespace Example2 { type Monster (line 26) | struct Monster type MonsterBuilder (line 27) | struct MonsterBuilder type MonsterT (line 28) | struct MonsterT type Example (line 74) | namespace Example { type Test (line 34) | struct Test type TestSimpleTableWithEnum (line 36) | struct TestSimpleTableWithEnum type TestSimpleTableWithEnumBuilder (line 37) | struct TestSimpleTableWithEnumBuilder type TestSimpleTableWithEnumT (line 38) | struct TestSimpleTableWithEnumT type Vec3 (line 40) | struct Vec3 type Ability (line 42) | struct Ability type StructOfStructs (line 44) | struct StructOfStructs type StructOfStructsOfStructs (line 46) | struct StructOfStructsOfStructs type Stat (line 48) | struct Stat type StatBuilder (line 49) | struct StatBuilder type StatT (line 50) | struct StatT type Referrable (line 52) | struct Referrable type ReferrableBuilder (line 53) | struct ReferrableBuilder type ReferrableT (line 54) | struct ReferrableT type Monster (line 56) | struct Monster type MonsterBuilder (line 57) | struct MonsterBuilder type MonsterT (line 58) | struct MonsterT type TypeAliases (line 60) | struct TypeAliases type TypeAliasesBuilder (line 61) | struct TypeAliasesBuilder type TypeAliasesT (line 62) | struct TypeAliasesT type Color (line 130) | enum Color : uint8_t { function Color (line 141) | inline const Color (&EnumValuesColor())[3] { type Race (line 171) | enum Race : int8_t { function Race (line 180) | inline const Race (&EnumValuesRace())[4] { type LongEnum (line 207) | enum LongEnum : uint64_t { function LongEnum (line 215) | inline const LongEnum (&EnumValuesLongEnum())[3] { type Any (line 233) | enum Any : uint8_t { function Any (line 242) | inline const Any (&EnumValuesAny())[4] { type AnyTraits (line 269) | struct AnyTraits { type AnyTraits (line 273) | struct AnyTraits { type AnyTraits (line 277) | struct AnyTraits { type AnyTraits (line 281) | struct AnyTraits { type AnyUnionTraits (line 285) | struct AnyUnionTraits { type AnyUnionTraits (line 289) | struct AnyUnionTraits { type AnyUnionTraits (line 293) | struct AnyUnionTraits { type AnyUnionTraits (line 297) | struct AnyUnionTraits { type AnyUnion (line 301) | struct AnyUnion { method AnyUnion (line 305) | AnyUnion() : type(Any_NONE), value(nullptr) {} method AnyUnion (line 306) | AnyUnion(AnyUnion&& u) FLATBUFFERS_NOEXCEPT : method AnyUnion (line 310) | AnyUnion &operator=(const AnyUnion &u) method AnyUnion (line 312) | AnyUnion &operator=(AnyUnion &&u) FLATBUFFERS_NOEXCEPT method Set (line 319) | void Set(T&& val) { type AnyUniqueAliases (line 391) | enum AnyUniqueAliases : uint8_t { function AnyUniqueAliases (line 400) | inline const AnyUniqueAliases (&EnumValuesAnyUniqueAliases())[4] { type AnyUniqueAliasesTraits (line 427) | struct AnyUniqueAliasesTraits { type AnyUniqueAliasesTraits (line 431) | struct AnyUniqueAliasesTraits { type AnyUniqueAliasesTraits (line 435) | struct AnyUniqueAliasesTraits (line 439) | struct AnyUniqueAliasesTraits { type AnyUniqueAliasesUnionTraits (line 443) | struct AnyUniqueAliasesUnionTraits { type AnyUniqueAliasesUnionTraits (line 447) | struct AnyUniqueAliasesUnionTraits { type AnyUniqueAliasesUnionTraits (line 451) | struct AnyUniqueAliasesUnionTraits (line 455) | struct AnyUniqueAliasesUnionTraits { type AnyUniqueAliasesUnion (line 459) | struct AnyUniqueAliasesUnion { method AnyUniqueAliasesUnion (line 463) | AnyUniqueAliasesUnion() : type(AnyUniqueAliases_NONE), value(nullp... method AnyUniqueAliasesUnion (line 464) | AnyUniqueAliasesUnion(AnyUniqueAliasesUnion&& u) FLATBUFFERS_NOEXC... method AnyUniqueAliasesUnion (line 468) | AnyUniqueAliasesUnion &operator=(const AnyUniqueAliasesUnion &u) method AnyUniqueAliasesUnion (line 470) | AnyUniqueAliasesUnion &operator=(AnyUniqueAliasesUnion &&u) FLATBU... method Set (line 477) | void Set(T&& val) { type AnyAmbiguousAliases (line 549) | enum AnyAmbiguousAliases : uint8_t { function AnyAmbiguousAliases (line 558) | inline const AnyAmbiguousAliases (&EnumValuesAnyAmbiguousAliases())[... type AnyAmbiguousAliasesUnion (line 585) | struct AnyAmbiguousAliasesUnion { method AnyAmbiguousAliasesUnion (line 589) | AnyAmbiguousAliasesUnion() : type(AnyAmbiguousAliases_NONE), value... method AnyAmbiguousAliasesUnion (line 590) | AnyAmbiguousAliasesUnion(AnyAmbiguousAliasesUnion&& u) FLATBUFFERS... method AnyAmbiguousAliasesUnion (line 594) | AnyAmbiguousAliasesUnion &operator=(const AnyAmbiguousAliasesUnion... method AnyAmbiguousAliasesUnion (line 596) | AnyAmbiguousAliasesUnion &operator=(AnyAmbiguousAliasesUnion &&u) ... function Test (line 665) | Test FLATBUFFERS_FINAL_CLASS { function Test (line 675) | Test() function Test (line 681) | Test(int16_t _a, int8_t _b) function a (line 687) | int16_t a() const { function mutate_a (line 690) | void mutate_a(int16_t _a) { function b (line 693) | int8_t b() const { function mutate_b (line 696) | void mutate_b(int8_t _b) { type Example2 (line 101) | namespace Example2 { type Monster (line 26) | struct Monster type MonsterBuilder (line 27) | struct MonsterBuilder type MonsterT (line 28) | struct MonsterT type Example (line 107) | namespace Example { type Test (line 34) | struct Test type TestSimpleTableWithEnum (line 36) | struct TestSimpleTableWithEnum type TestSimpleTableWithEnumBuilder (line 37) | struct TestSimpleTableWithEnumBuilder type TestSimpleTableWithEnumT (line 38) | struct TestSimpleTableWithEnumT type Vec3 (line 40) | struct Vec3 type Ability (line 42) | struct Ability type StructOfStructs (line 44) | struct StructOfStructs type StructOfStructsOfStructs (line 46) | struct StructOfStructsOfStructs type Stat (line 48) | struct Stat type StatBuilder (line 49) | struct StatBuilder type StatT (line 50) | struct StatT type Referrable (line 52) | struct Referrable type ReferrableBuilder (line 53) | struct ReferrableBuilder type ReferrableT (line 54) | struct ReferrableT type Monster (line 56) | struct Monster type MonsterBuilder (line 57) | struct MonsterBuilder type MonsterT (line 58) | struct MonsterT type TypeAliases (line 60) | struct TypeAliases type TypeAliasesBuilder (line 61) | struct TypeAliasesBuilder type TypeAliasesT (line 62) | struct TypeAliasesT type Color (line 130) | enum Color : uint8_t { function Color (line 141) | inline const Color (&EnumValuesColor())[3] { type Race (line 171) | enum Race : int8_t { function Race (line 180) | inline const Race (&EnumValuesRace())[4] { type LongEnum (line 207) | enum LongEnum : uint64_t { function LongEnum (line 215) | inline const LongEnum (&EnumValuesLongEnum())[3] { type Any (line 233) | enum Any : uint8_t { function Any (line 242) | inline const Any (&EnumValuesAny())[4] { type AnyTraits (line 269) | struct AnyTraits { type AnyTraits (line 273) | struct AnyTraits { type AnyTraits (line 277) | struct AnyTraits { type AnyTraits (line 281) | struct AnyTraits { type AnyUnionTraits (line 285) | struct AnyUnionTraits { type AnyUnionTraits (line 289) | struct AnyUnionTraits { type AnyUnionTraits (line 293) | struct AnyUnionTraits { type AnyUnionTraits (line 297) | struct AnyUnionTraits { type AnyUnion (line 301) | struct AnyUnion { method AnyUnion (line 305) | AnyUnion() : type(Any_NONE), value(nullptr) {} method AnyUnion (line 306) | AnyUnion(AnyUnion&& u) FLATBUFFERS_NOEXCEPT : method AnyUnion (line 310) | AnyUnion &operator=(const AnyUnion &u) method AnyUnion (line 312) | AnyUnion &operator=(AnyUnion &&u) FLATBUFFERS_NOEXCEPT method Set (line 319) | void Set(T&& val) { type AnyUniqueAliases (line 391) | enum AnyUniqueAliases : uint8_t { function AnyUniqueAliases (line 400) | inline const AnyUniqueAliases (&EnumValuesAnyUniqueAliases())[4] { type AnyUniqueAliasesTraits (line 427) | struct AnyUniqueAliasesTraits { type AnyUniqueAliasesTraits (line 431) | struct AnyUniqueAliasesTraits { type AnyUniqueAliasesTraits (line 435) | struct AnyUniqueAliasesTraits (line 439) | struct AnyUniqueAliasesTraits { type AnyUniqueAliasesUnionTraits (line 443) | struct AnyUniqueAliasesUnionTraits { type AnyUniqueAliasesUnionTraits (line 447) | struct AnyUniqueAliasesUnionTraits { type AnyUniqueAliasesUnionTraits (line 451) | struct AnyUniqueAliasesUnionTraits (line 455) | struct AnyUniqueAliasesUnionTraits { type AnyUniqueAliasesUnion (line 459) | struct AnyUniqueAliasesUnion { method AnyUniqueAliasesUnion (line 463) | AnyUniqueAliasesUnion() : type(AnyUniqueAliases_NONE), value(nullp... method AnyUniqueAliasesUnion (line 464) | AnyUniqueAliasesUnion(AnyUniqueAliasesUnion&& u) FLATBUFFERS_NOEXC... method AnyUniqueAliasesUnion (line 468) | AnyUniqueAliasesUnion &operator=(const AnyUniqueAliasesUnion &u) method AnyUniqueAliasesUnion (line 470) | AnyUniqueAliasesUnion &operator=(AnyUniqueAliasesUnion &&u) FLATBU... method Set (line 477) | void Set(T&& val) { type AnyAmbiguousAliases (line 549) | enum AnyAmbiguousAliases : uint8_t { function AnyAmbiguousAliases (line 558) | inline const AnyAmbiguousAliases (&EnumValuesAnyAmbiguousAliases())[... type AnyAmbiguousAliasesUnion (line 585) | struct AnyAmbiguousAliasesUnion { method AnyAmbiguousAliasesUnion (line 589) | AnyAmbiguousAliasesUnion() : type(AnyAmbiguousAliases_NONE), value... method AnyAmbiguousAliasesUnion (line 590) | AnyAmbiguousAliasesUnion(AnyAmbiguousAliasesUnion&& u) FLATBUFFERS... method AnyAmbiguousAliasesUnion (line 594) | AnyAmbiguousAliasesUnion &operator=(const AnyAmbiguousAliasesUnion... method AnyAmbiguousAliasesUnion (line 596) | AnyAmbiguousAliasesUnion &operator=(AnyAmbiguousAliasesUnion &&u) ... function Test (line 665) | Test FLATBUFFERS_FINAL_CLASS { function Test (line 675) | Test() function Test (line 681) | Test(int16_t _a, int8_t _b) function a (line 687) | int16_t a() const { function mutate_a (line 690) | void mutate_a(int16_t _a) { function b (line 693) | int8_t b() const { function mutate_b (line 696) | void mutate_b(int8_t _b) { function H (line 713) | inline H AbslHashValue(H h, const Test &obj) { function Vec3 (line 717) | Vec3 FLATBUFFERS_FINAL_CLASS { function Vec3 (line 733) | Vec3() function Vec3 (line 747) | Vec3(float _x, float _y, float _z, double _test1, MyGame::Example::Col... function x (line 761) | float x() const { function mutate_x (line 764) | void mutate_x(float _x) { function y (line 767) | float y() const { function mutate_y (line 770) | void mutate_y(float _y) { function z (line 773) | float z() const { function mutate_z (line 776) | void mutate_z(float _z) { function test1 (line 779) | double test1() const { function mutate_test1 (line 782) | void mutate_test1(double _test1) { function test2 (line 785) | MyGame::Example::Color test2() const { function mutate_test2 (line 788) | void mutate_test2(MyGame::Example::Color _test2) { function H (line 815) | inline H AbslHashValue(H h, const Vec3 &obj) { function Ability (line 819) | Ability FLATBUFFERS_FINAL_CLASS { function Ability (line 828) | Ability() function Ability (line 832) | Ability(uint32_t _id, uint32_t _distance) function id (line 836) | uint32_t id() const { function mutate_id (line 839) | void mutate_id(uint32_t _id) { function KeyCompareLessThan (line 842) | bool KeyCompareLessThan(const Ability * const o) const { function KeyCompareWithValue (line 845) | int KeyCompareWithValue(uint32_t _id) const { function distance (line 848) | uint32_t distance() const { function mutate_distance (line 851) | void mutate_distance(uint32_t _distance) { function H (line 868) | inline H AbslHashValue(H h, const Ability &obj) { function StructOfStructs (line 872) | StructOfStructs FLATBUFFERS_FINAL_CLASS { function StructOfStructs (line 882) | StructOfStructs() function StructOfStructs (line 887) | StructOfStructs(const MyGame::Example::Ability &_a, const MyGame::Exampl... function H (line 925) | inline H AbslHashValue(H h, const StructOfStructs &obj) { function StructOfStructsOfStructs (line 929) | StructOfStructsOfStructs FLATBUFFERS_FINAL_CLASS { function StructOfStructsOfStructs (line 937) | StructOfStructsOfStructs() function StructOfStructsOfStructs (line 940) | StructOfStructsOfStructs(const MyGame::Example::StructOfStructs &_a) function H (line 962) | inline H AbslHashValue(H h, const StructOfStructsOfStructs &obj) { type InParentNamespaceT (line 968) | struct InParentNamespaceT : public ::flatbuffers::NativeTable { type InParentNamespace (line 972) | struct InParentNamespace function Verify (line 979) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type InParentNamespaceBuilder (line 988) | struct InParentNamespaceBuilder { method InParentNamespaceBuilder (line 992) | explicit InParentNamespaceBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 996) | ::flatbuffers::Offset Finish() { function CreateInParentNamespace (line 1003) | inline ::flatbuffers::Offset CreateInParentNamespace( type Example2 (line 1011) | namespace Example2 { type MonsterT (line 1013) | struct MonsterT : public ::flatbuffers::NativeTable { type Monster (line 1017) | struct Monster function Verify (line 1024) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type MonsterBuilder (line 1033) | struct MonsterBuilder { method MonsterBuilder (line 1037) | explicit MonsterBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 1041) | ::flatbuffers::Offset Finish() { function CreateMonster (line 1048) | inline ::flatbuffers::Offset CreateMonster( function MonsterT (line 2798) | inline MonsterT *Monster::UnPack(const ::flatbuffers::resolver_functio... function CreateMonster (line 2809) | inline ::flatbuffers::Offset CreateMonster(::flatbuffers::Fla... type _VectorArgs (line 2816) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Mo... type Example (line 1058) | namespace Example { type TestSimpleTableWithEnumT (line 1060) | struct TestSimpleTableWithEnumT : public ::flatbuffers::NativeTable { type TestSimpleTableWithEnum (line 1065) | struct TestSimpleTableWithEnum type FlatBuffersVTableOffset (line 1071) | enum FlatBuffersVTableOffset function color (line 1074) | MyGame::Example::Color color() const { function mutate_color (line 1077) | bool mutate_color(MyGame::Example::Color _color = static_cast &verifier) const { type TestSimpleTableWithEnumBuilder (line 1091) | struct TestSimpleTableWithEnumBuilder { method add_color (line 1095) | void add_color(MyGame::Example::Color color) { method TestSimpleTableWithEnumBuilder (line 1098) | explicit TestSimpleTableWithEnumBuilder(::flatbuffers::FlatBufferBui... method Finish (line 1102) | ::flatbuffers::Offset Finish() { function CreateTestSimpleTableWithEnum (line 1109) | inline ::flatbuffers::Offset CreateTestSimple... type StatT (line 1119) | struct StatT : public ::flatbuffers::NativeTable { type Stat (line 1126) | struct Stat type FlatBuffersVTableOffset (line 1132) | enum FlatBuffersVTableOffset function val (line 1143) | int64_t val() const { function mutate_val (line 1146) | bool mutate_val(int64_t _val = 0) { function count (line 1149) | uint16_t count() const { function mutate_count (line 1152) | bool mutate_count(uint16_t _count = 0) { function KeyCompareLessThan (line 1155) | bool KeyCompareLessThan(const Stat * const o) const { function KeyCompareWithValue (line 1158) | int KeyCompareWithValue(uint16_t _count) const { function Verify (line 1162) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type StatBuilder (line 1175) | struct StatBuilder { method add_id (line 1179) | void add_id(::flatbuffers::Offset<::flatbuffers::String> id) { method add_val (line 1182) | void add_val(int64_t val) { method add_count (line 1185) | void add_count(uint16_t count) { method StatBuilder (line 1188) | explicit StatBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 1192) | ::flatbuffers::Offset Finish() { function CreateStat (line 1199) | inline ::flatbuffers::Offset CreateStat( function CreateStatDirect (line 1211) | inline ::flatbuffers::Offset CreateStatDirect( type ReferrableT (line 1226) | struct ReferrableT : public ::flatbuffers::NativeTable { type Referrable (line 1231) | struct Referrable type FlatBuffersVTableOffset (line 1237) | enum FlatBuffersVTableOffset function id (line 1240) | uint64_t id() const { function mutate_id (line 1243) | bool mutate_id(uint64_t _id = 0) { function KeyCompareLessThan (line 1246) | bool KeyCompareLessThan(const Referrable * const o) const { function KeyCompareWithValue (line 1249) | int KeyCompareWithValue(uint64_t _id) const { function Verify (line 1253) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type ReferrableBuilder (line 1263) | struct ReferrableBuilder { method add_id (line 1267) | void add_id(uint64_t id) { method ReferrableBuilder (line 1270) | explicit ReferrableBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 1274) | ::flatbuffers::Offset Finish() { function CreateReferrable (line 1281) | inline ::flatbuffers::Offset CreateReferrable( type MonsterT (line 1291) | struct MonsterT : public ::flatbuffers::NativeTable { method MonsterT (line 1351) | MonsterT() = default; method MonsterT (line 1353) | MonsterT(MonsterT&&) FLATBUFFERS_NOEXCEPT = default; type Monster (line 1358) | struct Monster type FlatBuffersVTableOffset (line 1364) | enum FlatBuffersVTableOffset function mana (line 1433) | int16_t mana() const { function mutate_mana (line 1436) | bool mutate_mana(int16_t _mana = 150) { function hp (line 1439) | int16_t hp() const { function mutate_hp (line 1442) | bool mutate_hp(int16_t _hp = 100) { function KeyCompareLessThan (line 1451) | bool KeyCompareLessThan(const Monster * const o) const { function KeyCompareWithValue (line 1454) | int KeyCompareWithValue(const char *_name) const { function KeyCompareWithValue (line 1458) | int KeyCompareWithValue(const StringType& _name) const { function color (line 1469) | MyGame::Example::Color color() const { function mutate_color (line 1472) | bool mutate_color(MyGame::Example::Color _color = static_cast &verifier) const { type MonsterBuilder (line 2026) | struct MonsterBuilder { method add_pos (line 2030) | void add_pos(const MyGame::Example::Vec3 *pos) { method add_mana (line 2033) | void add_mana(int16_t mana) { method add_hp (line 2036) | void add_hp(int16_t hp) { method add_name (line 2039) | void add_name(::flatbuffers::Offset<::flatbuffers::String> name) { method add_inventory (line 2042) | void add_inventory(::flatbuffers::Offset<::flatbuffers::Vector test) { method add_test4 (line 2054) | void add_test4(::flatbuffers::Offset<::flatbuffers::Vector enemy) { method add_testnestedflatbuffer (line 2066) | void add_testnestedflatbuffer(::flatbuffers::Offset<::flatbuffers::V... method add_testempty (line 2069) | void add_testempty(::flatbuffers::Offset test... method add_testbool (line 2072) | void add_testbool(bool testbool) { method add_testhashs32_fnv1 (line 2075) | void add_testhashs32_fnv1(int32_t testhashs32_fnv1) { method add_testhashu32_fnv1 (line 2078) | void add_testhashu32_fnv1(uint32_t testhashu32_fnv1) { method add_testhashs64_fnv1 (line 2081) | void add_testhashs64_fnv1(int64_t testhashs64_fnv1) { method add_testhashu64_fnv1 (line 2084) | void add_testhashu64_fnv1(uint64_t testhashu64_fnv1) { method add_testhashs32_fnv1a (line 2087) | void add_testhashs32_fnv1a(int32_t testhashs32_fnv1a) { method add_testhashu32_fnv1a (line 2090) | void add_testhashu32_fnv1a(uint32_t testhashu32_fnv1a) { method add_testhashs64_fnv1a (line 2093) | void add_testhashs64_fnv1a(int64_t testhashs64_fnv1a) { method add_testhashu64_fnv1a (line 2096) | void add_testhashu64_fnv1a(uint64_t testhashu64_fnv1a) { method add_testarrayofbools (line 2099) | void add_testarrayofbools(::flatbuffers::Offset<::flatbuffers::Vecto... method add_testf (line 2102) | void add_testf(float testf) { method add_testf2 (line 2105) | void add_testf2(float testf2) { method add_testf3 (line 2108) | void add_testf3(float testf3) { method add_testarrayofstring2 (line 2111) | void add_testarrayofstring2(::flatbuffers::Offset<::flatbuffers::Vec... method add_testarrayofsortedstruct (line 2114) | void add_testarrayofsortedstruct(::flatbuffers::Offset<::flatbuffers... method add_flex (line 2117) | void add_flex(::flatbuffers::Offset<::flatbuffers::Vector> ... method add_test5 (line 2120) | void add_test5(::flatbuffers::Offset<::flatbuffers::Vector any_unique) { method add_any_ambiguous_type (line 2162) | void add_any_ambiguous_type(MyGame::Example::AnyAmbiguousAliases any... method add_any_ambiguous (line 2165) | void add_any_ambiguous(::flatbuffers::Offset any_ambiguous) { method add_vector_of_enums (line 2168) | void add_vector_of_enums(::flatbuffers::Offset<::flatbuffers::Vector... method add_signed_enum (line 2171) | void add_signed_enum(MyGame::Example::Race signed_enum) { method add_testrequirednestedflatbuffer (line 2174) | void add_testrequirednestedflatbuffer(::flatbuffers::Offset<::flatbu... method add_scalar_key_sorted_tables (line 2177) | void add_scalar_key_sorted_tables(::flatbuffers::Offset<::flatbuffer... method add_native_inline (line 2180) | void add_native_inline(const MyGame::Example::Test *native_inline) { method add_long_enum_non_enum_default (line 2183) | void add_long_enum_non_enum_default(MyGame::Example::LongEnum long_e... method add_long_enum_normal_default (line 2186) | void add_long_enum_normal_default(MyGame::Example::LongEnum long_enu... method add_nan_default (line 2189) | void add_nan_default(float nan_default) { method add_inf_default (line 2192) | void add_inf_default(float inf_default) { method add_positive_inf_default (line 2195) | void add_positive_inf_default(float positive_inf_default) { method add_infinity_default (line 2198) | void add_infinity_default(float infinity_default) { method add_positive_infinity_default (line 2201) | void add_positive_infinity_default(float positive_infinity_default) { method add_negative_inf_default (line 2204) | void add_negative_inf_default(float negative_inf_default) { method add_negative_infinity_default (line 2207) | void add_negative_infinity_default(float negative_infinity_default) { method add_double_inf_default (line 2210) | void add_double_inf_default(double double_inf_default) { method MonsterBuilder (line 2213) | explicit MonsterBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 2217) | ::flatbuffers::Offset Finish() { function CreateMonster (line 2225) | inline ::flatbuffers::Offset CreateMonster( function CreateMonsterDirect (line 2353) | inline ::flatbuffers::Offset CreateMonsterDirect( type TypeAliasesT (line 2504) | struct TypeAliasesT : public ::flatbuffers::NativeTable { type TypeAliases (line 2520) | struct TypeAliases type FlatBuffersVTableOffset (line 2526) | enum FlatBuffersVTableOffset function i8 (line 2540) | int8_t i8() const { function mutate_i8 (line 2543) | bool mutate_i8(int8_t _i8 = 0) { function u8 (line 2546) | uint8_t u8() const { function mutate_u8 (line 2549) | bool mutate_u8(uint8_t _u8 = 0) { function i16 (line 2552) | int16_t i16() const { function mutate_i16 (line 2555) | bool mutate_i16(int16_t _i16 = 0) { function u16 (line 2558) | uint16_t u16() const { function mutate_u16 (line 2561) | bool mutate_u16(uint16_t _u16 = 0) { function i32 (line 2564) | int32_t i32() const { function mutate_i32 (line 2567) | bool mutate_i32(int32_t _i32 = 0) { function u32 (line 2570) | uint32_t u32() const { function mutate_u32 (line 2573) | bool mutate_u32(uint32_t _u32 = 0) { function i64 (line 2576) | int64_t i64() const { function mutate_i64 (line 2579) | bool mutate_i64(int64_t _i64 = 0) { function u64 (line 2582) | uint64_t u64() const { function mutate_u64 (line 2585) | bool mutate_u64(uint64_t _u64 = 0) { function f32 (line 2588) | float f32() const { function mutate_f32 (line 2591) | bool mutate_f32(float _f32 = 0.0f) { function f64 (line 2594) | double f64() const { function mutate_f64 (line 2597) | bool mutate_f64(double _f64 = 0.0) { function Verify (line 2613) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type TypeAliasesBuilder (line 2636) | struct TypeAliasesBuilder { method add_i8 (line 2640) | void add_i8(int8_t i8) { method add_u8 (line 2643) | void add_u8(uint8_t u8) { method add_i16 (line 2646) | void add_i16(int16_t i16) { method add_u16 (line 2649) | void add_u16(uint16_t u16) { method add_i32 (line 2652) | void add_i32(int32_t i32) { method add_u32 (line 2655) | void add_u32(uint32_t u32) { method add_i64 (line 2658) | void add_i64(int64_t i64) { method add_u64 (line 2661) | void add_u64(uint64_t u64) { method add_f32 (line 2664) | void add_f32(float f32) { method add_f64 (line 2667) | void add_f64(double f64) { method add_v8 (line 2670) | void add_v8(::flatbuffers::Offset<::flatbuffers::Vector> v8) { method add_vf64 (line 2673) | void add_vf64(::flatbuffers::Offset<::flatbuffers::Vector> v... method TypeAliasesBuilder (line 2676) | explicit TypeAliasesBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 2680) | ::flatbuffers::Offset Finish() { function CreateTypeAliases (line 2687) | inline ::flatbuffers::Offset CreateTypeAliases( function CreateTypeAliasesDirect (line 2717) | inline ::flatbuffers::Offset CreateTypeAliasesDirect( function TestSimpleTableWithEnumT (line 2836) | inline TestSimpleTableWithEnumT *TestSimpleTableWithEnum::UnPack(const... function CreateTestSimpleTableWithEnum (line 2848) | inline ::flatbuffers::Offset CreateTestSimple... type _VectorArgs (line 2855) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Te... function StatT (line 2875) | inline StatT *Stat::UnPack(const ::flatbuffers::resolver_function_t *_... function CreateStat (line 2889) | inline ::flatbuffers::Offset CreateStat(::flatbuffers::FlatBuffe... type _VectorArgs (line 2896) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const St... function ReferrableT (line 2918) | inline ReferrableT *Referrable::UnPack(const ::flatbuffers::resolver_f... function CreateReferrable (line 2930) | inline ::flatbuffers::Offset CreateReferrable(::flatbuffer... type _VectorArgs (line 2937) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Re... function MonsterT (line 3078) | inline MonsterT &MonsterT::operator=(MonsterT o) FLATBUFFERS_NOEXCEPT { method MonsterT (line 1351) | MonsterT() = default; method MonsterT (line 1353) | MonsterT(MonsterT&&) FLATBUFFERS_NOEXCEPT = default; function MonsterT (line 3140) | inline MonsterT *Monster::UnPack(const ::flatbuffers::resolver_functio... method MonsterT (line 1351) | MonsterT() = default; method MonsterT (line 1353) | MonsterT(MonsterT&&) FLATBUFFERS_NOEXCEPT = default; function CreateMonster (line 3212) | inline ::flatbuffers::Offset CreateMonster(::flatbuffers::Fla... type _VectorArgs (line 3219) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Mo... function TypeAliasesT (line 3368) | inline TypeAliasesT *TypeAliases::UnPack(const ::flatbuffers::resolver... function CreateTypeAliases (line 3391) | inline ::flatbuffers::Offset CreateTypeAliases(::flatbuff... type _VectorArgs (line 3398) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Ty... function VerifyAny (line 3428) | inline bool VerifyAny(::flatbuffers::VerifierTemplate &verifier, co... function VerifyAnyVector (line 3450) | inline bool VerifyAnyVector(::flatbuffers::VerifierTemplate &verifi... function VerifyAnyUniqueAliases (line 3543) | inline bool VerifyAnyUniqueAliases(::flatbuffers::VerifierTemplate ... function VerifyAnyUniqueAliasesVector (line 3565) | inline bool VerifyAnyUniqueAliasesVector(::flatbuffers::VerifierTempla... function VerifyAnyAmbiguousAliases (line 3658) | inline bool VerifyAnyAmbiguousAliases(::flatbuffers::VerifierTemplate<... function VerifyAnyAmbiguousAliasesVector (line 3680) | inline bool VerifyAnyAmbiguousAliasesVector(::flatbuffers::VerifierTem... function Monster (line 4267) | inline Monster *GetMutableMonster(void *buf) { function MonsterBufferHasIdentifier (line 4279) | inline bool MonsterBufferHasIdentifier(const void *buf) { function SizePrefixedMonsterBufferHasIdentifier (line 4284) | inline bool SizePrefixedMonsterBufferHasIdentifier(const void *buf) { function VerifyMonsterBuffer (line 4290) | inline bool VerifyMonsterBuffer( function VerifySizePrefixedMonsterBuffer (line 4296) | inline bool VerifySizePrefixedMonsterBuffer( function FinishMonsterBuffer (line 4305) | inline void FinishMonsterBuffer( function FinishSizePrefixedMonsterBuffer (line 4311) | inline void FinishSizePrefixedMonsterBuffer( function UnPackMonster (line 4317) | inline std::unique_ptr UnPackMonster( function UnPackSizePrefixedMonster (line 4323) | inline std::unique_ptr UnPackSizePrefixedMo... function InParentNamespaceT (line 2763) | inline InParentNamespaceT *InParentNamespace::UnPack(const ::flatbuffers... function CreateInParentNamespace (line 2774) | inline ::flatbuffers::Offset CreateInParentNamespace(... type _VectorArgs (line 2781) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const InPa... type Example2 (line 2786) | namespace Example2 { type MonsterT (line 1013) | struct MonsterT : public ::flatbuffers::NativeTable { type Monster (line 1017) | struct Monster function Verify (line 1024) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type MonsterBuilder (line 1033) | struct MonsterBuilder { method MonsterBuilder (line 1037) | explicit MonsterBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 1041) | ::flatbuffers::Offset Finish() { function CreateMonster (line 1048) | inline ::flatbuffers::Offset CreateMonster( function MonsterT (line 2798) | inline MonsterT *Monster::UnPack(const ::flatbuffers::resolver_functio... function CreateMonster (line 2809) | inline ::flatbuffers::Offset CreateMonster(::flatbuffers::Fla... type _VectorArgs (line 2816) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Mo... type Example (line 2823) | namespace Example { type TestSimpleTableWithEnumT (line 1060) | struct TestSimpleTableWithEnumT : public ::flatbuffers::NativeTable { type TestSimpleTableWithEnum (line 1065) | struct TestSimpleTableWithEnum type FlatBuffersVTableOffset (line 1071) | enum FlatBuffersVTableOffset function color (line 1074) | MyGame::Example::Color color() const { function mutate_color (line 1077) | bool mutate_color(MyGame::Example::Color _color = static_cast &verifier) const { type TestSimpleTableWithEnumBuilder (line 1091) | struct TestSimpleTableWithEnumBuilder { method add_color (line 1095) | void add_color(MyGame::Example::Color color) { method TestSimpleTableWithEnumBuilder (line 1098) | explicit TestSimpleTableWithEnumBuilder(::flatbuffers::FlatBufferBui... method Finish (line 1102) | ::flatbuffers::Offset Finish() { function CreateTestSimpleTableWithEnum (line 1109) | inline ::flatbuffers::Offset CreateTestSimple... type StatT (line 1119) | struct StatT : public ::flatbuffers::NativeTable { type Stat (line 1126) | struct Stat type FlatBuffersVTableOffset (line 1132) | enum FlatBuffersVTableOffset function val (line 1143) | int64_t val() const { function mutate_val (line 1146) | bool mutate_val(int64_t _val = 0) { function count (line 1149) | uint16_t count() const { function mutate_count (line 1152) | bool mutate_count(uint16_t _count = 0) { function KeyCompareLessThan (line 1155) | bool KeyCompareLessThan(const Stat * const o) const { function KeyCompareWithValue (line 1158) | int KeyCompareWithValue(uint16_t _count) const { function Verify (line 1162) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type StatBuilder (line 1175) | struct StatBuilder { method add_id (line 1179) | void add_id(::flatbuffers::Offset<::flatbuffers::String> id) { method add_val (line 1182) | void add_val(int64_t val) { method add_count (line 1185) | void add_count(uint16_t count) { method StatBuilder (line 1188) | explicit StatBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 1192) | ::flatbuffers::Offset Finish() { function CreateStat (line 1199) | inline ::flatbuffers::Offset CreateStat( function CreateStatDirect (line 1211) | inline ::flatbuffers::Offset CreateStatDirect( type ReferrableT (line 1226) | struct ReferrableT : public ::flatbuffers::NativeTable { type Referrable (line 1231) | struct Referrable type FlatBuffersVTableOffset (line 1237) | enum FlatBuffersVTableOffset function id (line 1240) | uint64_t id() const { function mutate_id (line 1243) | bool mutate_id(uint64_t _id = 0) { function KeyCompareLessThan (line 1246) | bool KeyCompareLessThan(const Referrable * const o) const { function KeyCompareWithValue (line 1249) | int KeyCompareWithValue(uint64_t _id) const { function Verify (line 1253) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type ReferrableBuilder (line 1263) | struct ReferrableBuilder { method add_id (line 1267) | void add_id(uint64_t id) { method ReferrableBuilder (line 1270) | explicit ReferrableBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 1274) | ::flatbuffers::Offset Finish() { function CreateReferrable (line 1281) | inline ::flatbuffers::Offset CreateReferrable( type MonsterT (line 1291) | struct MonsterT : public ::flatbuffers::NativeTable { method MonsterT (line 1351) | MonsterT() = default; method MonsterT (line 1353) | MonsterT(MonsterT&&) FLATBUFFERS_NOEXCEPT = default; type Monster (line 1358) | struct Monster type FlatBuffersVTableOffset (line 1364) | enum FlatBuffersVTableOffset function mana (line 1433) | int16_t mana() const { function mutate_mana (line 1436) | bool mutate_mana(int16_t _mana = 150) { function hp (line 1439) | int16_t hp() const { function mutate_hp (line 1442) | bool mutate_hp(int16_t _hp = 100) { function KeyCompareLessThan (line 1451) | bool KeyCompareLessThan(const Monster * const o) const { function KeyCompareWithValue (line 1454) | int KeyCompareWithValue(const char *_name) const { function KeyCompareWithValue (line 1458) | int KeyCompareWithValue(const StringType& _name) const { function color (line 1469) | MyGame::Example::Color color() const { function mutate_color (line 1472) | bool mutate_color(MyGame::Example::Color _color = static_cast &verifier) const { type MonsterBuilder (line 2026) | struct MonsterBuilder { method add_pos (line 2030) | void add_pos(const MyGame::Example::Vec3 *pos) { method add_mana (line 2033) | void add_mana(int16_t mana) { method add_hp (line 2036) | void add_hp(int16_t hp) { method add_name (line 2039) | void add_name(::flatbuffers::Offset<::flatbuffers::String> name) { method add_inventory (line 2042) | void add_inventory(::flatbuffers::Offset<::flatbuffers::Vector test) { method add_test4 (line 2054) | void add_test4(::flatbuffers::Offset<::flatbuffers::Vector enemy) { method add_testnestedflatbuffer (line 2066) | void add_testnestedflatbuffer(::flatbuffers::Offset<::flatbuffers::V... method add_testempty (line 2069) | void add_testempty(::flatbuffers::Offset test... method add_testbool (line 2072) | void add_testbool(bool testbool) { method add_testhashs32_fnv1 (line 2075) | void add_testhashs32_fnv1(int32_t testhashs32_fnv1) { method add_testhashu32_fnv1 (line 2078) | void add_testhashu32_fnv1(uint32_t testhashu32_fnv1) { method add_testhashs64_fnv1 (line 2081) | void add_testhashs64_fnv1(int64_t testhashs64_fnv1) { method add_testhashu64_fnv1 (line 2084) | void add_testhashu64_fnv1(uint64_t testhashu64_fnv1) { method add_testhashs32_fnv1a (line 2087) | void add_testhashs32_fnv1a(int32_t testhashs32_fnv1a) { method add_testhashu32_fnv1a (line 2090) | void add_testhashu32_fnv1a(uint32_t testhashu32_fnv1a) { method add_testhashs64_fnv1a (line 2093) | void add_testhashs64_fnv1a(int64_t testhashs64_fnv1a) { method add_testhashu64_fnv1a (line 2096) | void add_testhashu64_fnv1a(uint64_t testhashu64_fnv1a) { method add_testarrayofbools (line 2099) | void add_testarrayofbools(::flatbuffers::Offset<::flatbuffers::Vecto... method add_testf (line 2102) | void add_testf(float testf) { method add_testf2 (line 2105) | void add_testf2(float testf2) { method add_testf3 (line 2108) | void add_testf3(float testf3) { method add_testarrayofstring2 (line 2111) | void add_testarrayofstring2(::flatbuffers::Offset<::flatbuffers::Vec... method add_testarrayofsortedstruct (line 2114) | void add_testarrayofsortedstruct(::flatbuffers::Offset<::flatbuffers... method add_flex (line 2117) | void add_flex(::flatbuffers::Offset<::flatbuffers::Vector> ... method add_test5 (line 2120) | void add_test5(::flatbuffers::Offset<::flatbuffers::Vector any_unique) { method add_any_ambiguous_type (line 2162) | void add_any_ambiguous_type(MyGame::Example::AnyAmbiguousAliases any... method add_any_ambiguous (line 2165) | void add_any_ambiguous(::flatbuffers::Offset any_ambiguous) { method add_vector_of_enums (line 2168) | void add_vector_of_enums(::flatbuffers::Offset<::flatbuffers::Vector... method add_signed_enum (line 2171) | void add_signed_enum(MyGame::Example::Race signed_enum) { method add_testrequirednestedflatbuffer (line 2174) | void add_testrequirednestedflatbuffer(::flatbuffers::Offset<::flatbu... method add_scalar_key_sorted_tables (line 2177) | void add_scalar_key_sorted_tables(::flatbuffers::Offset<::flatbuffer... method add_native_inline (line 2180) | void add_native_inline(const MyGame::Example::Test *native_inline) { method add_long_enum_non_enum_default (line 2183) | void add_long_enum_non_enum_default(MyGame::Example::LongEnum long_e... method add_long_enum_normal_default (line 2186) | void add_long_enum_normal_default(MyGame::Example::LongEnum long_enu... method add_nan_default (line 2189) | void add_nan_default(float nan_default) { method add_inf_default (line 2192) | void add_inf_default(float inf_default) { method add_positive_inf_default (line 2195) | void add_positive_inf_default(float positive_inf_default) { method add_infinity_default (line 2198) | void add_infinity_default(float infinity_default) { method add_positive_infinity_default (line 2201) | void add_positive_infinity_default(float positive_infinity_default) { method add_negative_inf_default (line 2204) | void add_negative_inf_default(float negative_inf_default) { method add_negative_infinity_default (line 2207) | void add_negative_infinity_default(float negative_infinity_default) { method add_double_inf_default (line 2210) | void add_double_inf_default(double double_inf_default) { method MonsterBuilder (line 2213) | explicit MonsterBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 2217) | ::flatbuffers::Offset Finish() { function CreateMonster (line 2225) | inline ::flatbuffers::Offset CreateMonster( function CreateMonsterDirect (line 2353) | inline ::flatbuffers::Offset CreateMonsterDirect( type TypeAliasesT (line 2504) | struct TypeAliasesT : public ::flatbuffers::NativeTable { type TypeAliases (line 2520) | struct TypeAliases type FlatBuffersVTableOffset (line 2526) | enum FlatBuffersVTableOffset function i8 (line 2540) | int8_t i8() const { function mutate_i8 (line 2543) | bool mutate_i8(int8_t _i8 = 0) { function u8 (line 2546) | uint8_t u8() const { function mutate_u8 (line 2549) | bool mutate_u8(uint8_t _u8 = 0) { function i16 (line 2552) | int16_t i16() const { function mutate_i16 (line 2555) | bool mutate_i16(int16_t _i16 = 0) { function u16 (line 2558) | uint16_t u16() const { function mutate_u16 (line 2561) | bool mutate_u16(uint16_t _u16 = 0) { function i32 (line 2564) | int32_t i32() const { function mutate_i32 (line 2567) | bool mutate_i32(int32_t _i32 = 0) { function u32 (line 2570) | uint32_t u32() const { function mutate_u32 (line 2573) | bool mutate_u32(uint32_t _u32 = 0) { function i64 (line 2576) | int64_t i64() const { function mutate_i64 (line 2579) | bool mutate_i64(int64_t _i64 = 0) { function u64 (line 2582) | uint64_t u64() const { function mutate_u64 (line 2585) | bool mutate_u64(uint64_t _u64 = 0) { function f32 (line 2588) | float f32() const { function mutate_f32 (line 2591) | bool mutate_f32(float _f32 = 0.0f) { function f64 (line 2594) | double f64() const { function mutate_f64 (line 2597) | bool mutate_f64(double _f64 = 0.0) { function Verify (line 2613) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type TypeAliasesBuilder (line 2636) | struct TypeAliasesBuilder { method add_i8 (line 2640) | void add_i8(int8_t i8) { method add_u8 (line 2643) | void add_u8(uint8_t u8) { method add_i16 (line 2646) | void add_i16(int16_t i16) { method add_u16 (line 2649) | void add_u16(uint16_t u16) { method add_i32 (line 2652) | void add_i32(int32_t i32) { method add_u32 (line 2655) | void add_u32(uint32_t u32) { method add_i64 (line 2658) | void add_i64(int64_t i64) { method add_u64 (line 2661) | void add_u64(uint64_t u64) { method add_f32 (line 2664) | void add_f32(float f32) { method add_f64 (line 2667) | void add_f64(double f64) { method add_v8 (line 2670) | void add_v8(::flatbuffers::Offset<::flatbuffers::Vector> v8) { method add_vf64 (line 2673) | void add_vf64(::flatbuffers::Offset<::flatbuffers::Vector> v... method TypeAliasesBuilder (line 2676) | explicit TypeAliasesBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 2680) | ::flatbuffers::Offset Finish() { function CreateTypeAliases (line 2687) | inline ::flatbuffers::Offset CreateTypeAliases( function CreateTypeAliasesDirect (line 2717) | inline ::flatbuffers::Offset CreateTypeAliasesDirect( function TestSimpleTableWithEnumT (line 2836) | inline TestSimpleTableWithEnumT *TestSimpleTableWithEnum::UnPack(const... function CreateTestSimpleTableWithEnum (line 2848) | inline ::flatbuffers::Offset CreateTestSimple... type _VectorArgs (line 2855) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Te... function StatT (line 2875) | inline StatT *Stat::UnPack(const ::flatbuffers::resolver_function_t *_... function CreateStat (line 2889) | inline ::flatbuffers::Offset CreateStat(::flatbuffers::FlatBuffe... type _VectorArgs (line 2896) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const St... function ReferrableT (line 2918) | inline ReferrableT *Referrable::UnPack(const ::flatbuffers::resolver_f... function CreateReferrable (line 2930) | inline ::flatbuffers::Offset CreateReferrable(::flatbuffer... type _VectorArgs (line 2937) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Re... function MonsterT (line 3078) | inline MonsterT &MonsterT::operator=(MonsterT o) FLATBUFFERS_NOEXCEPT { method MonsterT (line 1351) | MonsterT() = default; method MonsterT (line 1353) | MonsterT(MonsterT&&) FLATBUFFERS_NOEXCEPT = default; function MonsterT (line 3140) | inline MonsterT *Monster::UnPack(const ::flatbuffers::resolver_functio... method MonsterT (line 1351) | MonsterT() = default; method MonsterT (line 1353) | MonsterT(MonsterT&&) FLATBUFFERS_NOEXCEPT = default; function CreateMonster (line 3212) | inline ::flatbuffers::Offset CreateMonster(::flatbuffers::Fla... type _VectorArgs (line 3219) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Mo... function TypeAliasesT (line 3368) | inline TypeAliasesT *TypeAliases::UnPack(const ::flatbuffers::resolver... function CreateTypeAliases (line 3391) | inline ::flatbuffers::Offset CreateTypeAliases(::flatbuff... type _VectorArgs (line 3398) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Ty... function VerifyAny (line 3428) | inline bool VerifyAny(::flatbuffers::VerifierTemplate &verifier, co... function VerifyAnyVector (line 3450) | inline bool VerifyAnyVector(::flatbuffers::VerifierTemplate &verifi... function VerifyAnyUniqueAliases (line 3543) | inline bool VerifyAnyUniqueAliases(::flatbuffers::VerifierTemplate ... function VerifyAnyUniqueAliasesVector (line 3565) | inline bool VerifyAnyUniqueAliasesVector(::flatbuffers::VerifierTempla... function VerifyAnyAmbiguousAliases (line 3658) | inline bool VerifyAnyAmbiguousAliases(::flatbuffers::VerifierTemplate<... function VerifyAnyAmbiguousAliasesVector (line 3680) | inline bool VerifyAnyAmbiguousAliasesVector(::flatbuffers::VerifierTem... function Monster (line 4267) | inline Monster *GetMutableMonster(void *buf) { function MonsterBufferHasIdentifier (line 4279) | inline bool MonsterBufferHasIdentifier(const void *buf) { function SizePrefixedMonsterBufferHasIdentifier (line 4284) | inline bool SizePrefixedMonsterBufferHasIdentifier(const void *buf) { function VerifyMonsterBuffer (line 4290) | inline bool VerifyMonsterBuffer( function VerifySizePrefixedMonsterBuffer (line 4296) | inline bool VerifySizePrefixedMonsterBuffer( function FinishMonsterBuffer (line 4305) | inline void FinishMonsterBuffer( function FinishSizePrefixedMonsterBuffer (line 4311) | inline void FinishSizePrefixedMonsterBuffer( function UnPackMonster (line 4317) | inline std::unique_ptr UnPackMonster( function UnPackSizePrefixedMonster (line 4323) | inline std::unique_ptr UnPackSizePrefixedMo... type Example2 (line 3916) | namespace Example2 { type MonsterT (line 1013) | struct MonsterT : public ::flatbuffers::NativeTable { type Monster (line 1017) | struct Monster function Verify (line 1024) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type MonsterBuilder (line 1033) | struct MonsterBuilder { method MonsterBuilder (line 1037) | explicit MonsterBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 1041) | ::flatbuffers::Offset Finish() { function CreateMonster (line 1048) | inline ::flatbuffers::Offset CreateMonster( function MonsterT (line 2798) | inline MonsterT *Monster::UnPack(const ::flatbuffers::resolver_functio... function CreateMonster (line 2809) | inline ::flatbuffers::Offset CreateMonster(::flatbuffers::Fla... type _VectorArgs (line 2816) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Mo... type Example (line 3927) | namespace Example { type TestSimpleTableWithEnumT (line 1060) | struct TestSimpleTableWithEnumT : public ::flatbuffers::NativeTable { type TestSimpleTableWithEnum (line 1065) | struct TestSimpleTableWithEnum type FlatBuffersVTableOffset (line 1071) | enum FlatBuffersVTableOffset function color (line 1074) | MyGame::Example::Color color() const { function mutate_color (line 1077) | bool mutate_color(MyGame::Example::Color _color = static_cast &verifier) const { type TestSimpleTableWithEnumBuilder (line 1091) | struct TestSimpleTableWithEnumBuilder { method add_color (line 1095) | void add_color(MyGame::Example::Color color) { method TestSimpleTableWithEnumBuilder (line 1098) | explicit TestSimpleTableWithEnumBuilder(::flatbuffers::FlatBufferBui... method Finish (line 1102) | ::flatbuffers::Offset Finish() { function CreateTestSimpleTableWithEnum (line 1109) | inline ::flatbuffers::Offset CreateTestSimple... type StatT (line 1119) | struct StatT : public ::flatbuffers::NativeTable { type Stat (line 1126) | struct Stat type FlatBuffersVTableOffset (line 1132) | enum FlatBuffersVTableOffset function val (line 1143) | int64_t val() const { function mutate_val (line 1146) | bool mutate_val(int64_t _val = 0) { function count (line 1149) | uint16_t count() const { function mutate_count (line 1152) | bool mutate_count(uint16_t _count = 0) { function KeyCompareLessThan (line 1155) | bool KeyCompareLessThan(const Stat * const o) const { function KeyCompareWithValue (line 1158) | int KeyCompareWithValue(uint16_t _count) const { function Verify (line 1162) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type StatBuilder (line 1175) | struct StatBuilder { method add_id (line 1179) | void add_id(::flatbuffers::Offset<::flatbuffers::String> id) { method add_val (line 1182) | void add_val(int64_t val) { method add_count (line 1185) | void add_count(uint16_t count) { method StatBuilder (line 1188) | explicit StatBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 1192) | ::flatbuffers::Offset Finish() { function CreateStat (line 1199) | inline ::flatbuffers::Offset CreateStat( function CreateStatDirect (line 1211) | inline ::flatbuffers::Offset CreateStatDirect( type ReferrableT (line 1226) | struct ReferrableT : public ::flatbuffers::NativeTable { type Referrable (line 1231) | struct Referrable type FlatBuffersVTableOffset (line 1237) | enum FlatBuffersVTableOffset function id (line 1240) | uint64_t id() const { function mutate_id (line 1243) | bool mutate_id(uint64_t _id = 0) { function KeyCompareLessThan (line 1246) | bool KeyCompareLessThan(const Referrable * const o) const { function KeyCompareWithValue (line 1249) | int KeyCompareWithValue(uint64_t _id) const { function Verify (line 1253) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type ReferrableBuilder (line 1263) | struct ReferrableBuilder { method add_id (line 1267) | void add_id(uint64_t id) { method ReferrableBuilder (line 1270) | explicit ReferrableBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 1274) | ::flatbuffers::Offset Finish() { function CreateReferrable (line 1281) | inline ::flatbuffers::Offset CreateReferrable( type MonsterT (line 1291) | struct MonsterT : public ::flatbuffers::NativeTable { method MonsterT (line 1351) | MonsterT() = default; method MonsterT (line 1353) | MonsterT(MonsterT&&) FLATBUFFERS_NOEXCEPT = default; type Monster (line 1358) | struct Monster type FlatBuffersVTableOffset (line 1364) | enum FlatBuffersVTableOffset function mana (line 1433) | int16_t mana() const { function mutate_mana (line 1436) | bool mutate_mana(int16_t _mana = 150) { function hp (line 1439) | int16_t hp() const { function mutate_hp (line 1442) | bool mutate_hp(int16_t _hp = 100) { function KeyCompareLessThan (line 1451) | bool KeyCompareLessThan(const Monster * const o) const { function KeyCompareWithValue (line 1454) | int KeyCompareWithValue(const char *_name) const { function KeyCompareWithValue (line 1458) | int KeyCompareWithValue(const StringType& _name) const { function color (line 1469) | MyGame::Example::Color color() const { function mutate_color (line 1472) | bool mutate_color(MyGame::Example::Color _color = static_cast &verifier) const { type MonsterBuilder (line 2026) | struct MonsterBuilder { method add_pos (line 2030) | void add_pos(const MyGame::Example::Vec3 *pos) { method add_mana (line 2033) | void add_mana(int16_t mana) { method add_hp (line 2036) | void add_hp(int16_t hp) { method add_name (line 2039) | void add_name(::flatbuffers::Offset<::flatbuffers::String> name) { method add_inventory (line 2042) | void add_inventory(::flatbuffers::Offset<::flatbuffers::Vector test) { method add_test4 (line 2054) | void add_test4(::flatbuffers::Offset<::flatbuffers::Vector enemy) { method add_testnestedflatbuffer (line 2066) | void add_testnestedflatbuffer(::flatbuffers::Offset<::flatbuffers::V... method add_testempty (line 2069) | void add_testempty(::flatbuffers::Offset test... method add_testbool (line 2072) | void add_testbool(bool testbool) { method add_testhashs32_fnv1 (line 2075) | void add_testhashs32_fnv1(int32_t testhashs32_fnv1) { method add_testhashu32_fnv1 (line 2078) | void add_testhashu32_fnv1(uint32_t testhashu32_fnv1) { method add_testhashs64_fnv1 (line 2081) | void add_testhashs64_fnv1(int64_t testhashs64_fnv1) { method add_testhashu64_fnv1 (line 2084) | void add_testhashu64_fnv1(uint64_t testhashu64_fnv1) { method add_testhashs32_fnv1a (line 2087) | void add_testhashs32_fnv1a(int32_t testhashs32_fnv1a) { method add_testhashu32_fnv1a (line 2090) | void add_testhashu32_fnv1a(uint32_t testhashu32_fnv1a) { method add_testhashs64_fnv1a (line 2093) | void add_testhashs64_fnv1a(int64_t testhashs64_fnv1a) { method add_testhashu64_fnv1a (line 2096) | void add_testhashu64_fnv1a(uint64_t testhashu64_fnv1a) { method add_testarrayofbools (line 2099) | void add_testarrayofbools(::flatbuffers::Offset<::flatbuffers::Vecto... method add_testf (line 2102) | void add_testf(float testf) { method add_testf2 (line 2105) | void add_testf2(float testf2) { method add_testf3 (line 2108) | void add_testf3(float testf3) { method add_testarrayofstring2 (line 2111) | void add_testarrayofstring2(::flatbuffers::Offset<::flatbuffers::Vec... method add_testarrayofsortedstruct (line 2114) | void add_testarrayofsortedstruct(::flatbuffers::Offset<::flatbuffers... method add_flex (line 2117) | void add_flex(::flatbuffers::Offset<::flatbuffers::Vector> ... method add_test5 (line 2120) | void add_test5(::flatbuffers::Offset<::flatbuffers::Vector any_unique) { method add_any_ambiguous_type (line 2162) | void add_any_ambiguous_type(MyGame::Example::AnyAmbiguousAliases any... method add_any_ambiguous (line 2165) | void add_any_ambiguous(::flatbuffers::Offset any_ambiguous) { method add_vector_of_enums (line 2168) | void add_vector_of_enums(::flatbuffers::Offset<::flatbuffers::Vector... method add_signed_enum (line 2171) | void add_signed_enum(MyGame::Example::Race signed_enum) { method add_testrequirednestedflatbuffer (line 2174) | void add_testrequirednestedflatbuffer(::flatbuffers::Offset<::flatbu... method add_scalar_key_sorted_tables (line 2177) | void add_scalar_key_sorted_tables(::flatbuffers::Offset<::flatbuffer... method add_native_inline (line 2180) | void add_native_inline(const MyGame::Example::Test *native_inline) { method add_long_enum_non_enum_default (line 2183) | void add_long_enum_non_enum_default(MyGame::Example::LongEnum long_e... method add_long_enum_normal_default (line 2186) | void add_long_enum_normal_default(MyGame::Example::LongEnum long_enu... method add_nan_default (line 2189) | void add_nan_default(float nan_default) { method add_inf_default (line 2192) | void add_inf_default(float inf_default) { method add_positive_inf_default (line 2195) | void add_positive_inf_default(float positive_inf_default) { method add_infinity_default (line 2198) | void add_infinity_default(float infinity_default) { method add_positive_infinity_default (line 2201) | void add_positive_infinity_default(float positive_infinity_default) { method add_negative_inf_default (line 2204) | void add_negative_inf_default(float negative_inf_default) { method add_negative_infinity_default (line 2207) | void add_negative_infinity_default(float negative_infinity_default) { method add_double_inf_default (line 2210) | void add_double_inf_default(double double_inf_default) { method MonsterBuilder (line 2213) | explicit MonsterBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 2217) | ::flatbuffers::Offset Finish() { function CreateMonster (line 2225) | inline ::flatbuffers::Offset CreateMonster( function CreateMonsterDirect (line 2353) | inline ::flatbuffers::Offset CreateMonsterDirect( type TypeAliasesT (line 2504) | struct TypeAliasesT : public ::flatbuffers::NativeTable { type TypeAliases (line 2520) | struct TypeAliases type FlatBuffersVTableOffset (line 2526) | enum FlatBuffersVTableOffset function i8 (line 2540) | int8_t i8() const { function mutate_i8 (line 2543) | bool mutate_i8(int8_t _i8 = 0) { function u8 (line 2546) | uint8_t u8() const { function mutate_u8 (line 2549) | bool mutate_u8(uint8_t _u8 = 0) { function i16 (line 2552) | int16_t i16() const { function mutate_i16 (line 2555) | bool mutate_i16(int16_t _i16 = 0) { function u16 (line 2558) | uint16_t u16() const { function mutate_u16 (line 2561) | bool mutate_u16(uint16_t _u16 = 0) { function i32 (line 2564) | int32_t i32() const { function mutate_i32 (line 2567) | bool mutate_i32(int32_t _i32 = 0) { function u32 (line 2570) | uint32_t u32() const { function mutate_u32 (line 2573) | bool mutate_u32(uint32_t _u32 = 0) { function i64 (line 2576) | int64_t i64() const { function mutate_i64 (line 2579) | bool mutate_i64(int64_t _i64 = 0) { function u64 (line 2582) | uint64_t u64() const { function mutate_u64 (line 2585) | bool mutate_u64(uint64_t _u64 = 0) { function f32 (line 2588) | float f32() const { function mutate_f32 (line 2591) | bool mutate_f32(float _f32 = 0.0f) { function f64 (line 2594) | double f64() const { function mutate_f64 (line 2597) | bool mutate_f64(double _f64 = 0.0) { function Verify (line 2613) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type TypeAliasesBuilder (line 2636) | struct TypeAliasesBuilder { method add_i8 (line 2640) | void add_i8(int8_t i8) { method add_u8 (line 2643) | void add_u8(uint8_t u8) { method add_i16 (line 2646) | void add_i16(int16_t i16) { method add_u16 (line 2649) | void add_u16(uint16_t u16) { method add_i32 (line 2652) | void add_i32(int32_t i32) { method add_u32 (line 2655) | void add_u32(uint32_t u32) { method add_i64 (line 2658) | void add_i64(int64_t i64) { method add_u64 (line 2661) | void add_u64(uint64_t u64) { method add_f32 (line 2664) | void add_f32(float f32) { method add_f64 (line 2667) | void add_f64(double f64) { method add_v8 (line 2670) | void add_v8(::flatbuffers::Offset<::flatbuffers::Vector> v8) { method add_vf64 (line 2673) | void add_vf64(::flatbuffers::Offset<::flatbuffers::Vector> v... method TypeAliasesBuilder (line 2676) | explicit TypeAliasesBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 2680) | ::flatbuffers::Offset Finish() { function CreateTypeAliases (line 2687) | inline ::flatbuffers::Offset CreateTypeAliases( function CreateTypeAliasesDirect (line 2717) | inline ::flatbuffers::Offset CreateTypeAliasesDirect( function TestSimpleTableWithEnumT (line 2836) | inline TestSimpleTableWithEnumT *TestSimpleTableWithEnum::UnPack(const... function CreateTestSimpleTableWithEnum (line 2848) | inline ::flatbuffers::Offset CreateTestSimple... type _VectorArgs (line 2855) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Te... function StatT (line 2875) | inline StatT *Stat::UnPack(const ::flatbuffers::resolver_function_t *_... function CreateStat (line 2889) | inline ::flatbuffers::Offset CreateStat(::flatbuffers::FlatBuffe... type _VectorArgs (line 2896) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const St... function ReferrableT (line 2918) | inline ReferrableT *Referrable::UnPack(const ::flatbuffers::resolver_f... function CreateReferrable (line 2930) | inline ::flatbuffers::Offset CreateReferrable(::flatbuffer... type _VectorArgs (line 2937) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Re... function MonsterT (line 3078) | inline MonsterT &MonsterT::operator=(MonsterT o) FLATBUFFERS_NOEXCEPT { method MonsterT (line 1351) | MonsterT() = default; method MonsterT (line 1353) | MonsterT(MonsterT&&) FLATBUFFERS_NOEXCEPT = default; function MonsterT (line 3140) | inline MonsterT *Monster::UnPack(const ::flatbuffers::resolver_functio... method MonsterT (line 1351) | MonsterT() = default; method MonsterT (line 1353) | MonsterT(MonsterT&&) FLATBUFFERS_NOEXCEPT = default; function CreateMonster (line 3212) | inline ::flatbuffers::Offset CreateMonster(::flatbuffers::Fla... type _VectorArgs (line 3219) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Mo... function TypeAliasesT (line 3368) | inline TypeAliasesT *TypeAliases::UnPack(const ::flatbuffers::resolver... function CreateTypeAliases (line 3391) | inline ::flatbuffers::Offset CreateTypeAliases(::flatbuff... type _VectorArgs (line 3398) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Ty... function VerifyAny (line 3428) | inline bool VerifyAny(::flatbuffers::VerifierTemplate &verifier, co... function VerifyAnyVector (line 3450) | inline bool VerifyAnyVector(::flatbuffers::VerifierTemplate &verifi... function VerifyAnyUniqueAliases (line 3543) | inline bool VerifyAnyUniqueAliases(::flatbuffers::VerifierTemplate ... function VerifyAnyUniqueAliasesVector (line 3565) | inline bool VerifyAnyUniqueAliasesVector(::flatbuffers::VerifierTempla... function VerifyAnyAmbiguousAliases (line 3658) | inline bool VerifyAnyAmbiguousAliases(::flatbuffers::VerifierTemplate<... function VerifyAnyAmbiguousAliasesVector (line 3680) | inline bool VerifyAnyAmbiguousAliasesVector(::flatbuffers::VerifierTem... function Monster (line 4267) | inline Monster *GetMutableMonster(void *buf) { function MonsterBufferHasIdentifier (line 4279) | inline bool MonsterBufferHasIdentifier(const void *buf) { function SizePrefixedMonsterBufferHasIdentifier (line 4284) | inline bool SizePrefixedMonsterBufferHasIdentifier(const void *buf) { function VerifyMonsterBuffer (line 4290) | inline bool VerifyMonsterBuffer( function VerifySizePrefixedMonsterBuffer (line 4296) | inline bool VerifySizePrefixedMonsterBuffer( function FinishMonsterBuffer (line 4305) | inline void FinishMonsterBuffer( function FinishSizePrefixedMonsterBuffer (line 4311) | inline void FinishSizePrefixedMonsterBuffer( function UnPackMonster (line 4317) | inline std::unique_ptr UnPackMonster( function UnPackSizePrefixedMonster (line 4323) | inline std::unique_ptr UnPackSizePrefixedMo... FILE: tests/monster_test_suffix/filesuffix_only/monster_test.grpc.fb.cc type MyGame (line 16) | namespace MyGame { type Example (line 17) | namespace Example { FILE: tests/monster_test_suffix/filesuffix_only/monster_test.grpc.fb.h function namespace (line 20) | namespace grpc { function namespace (line 27) | namespace MyGame { function class (line 143) | class Service : public ::grpc::Service { function RequestStore (line 168) | void RequestStore(::grpc::ServerContext* context, flatbuffers::grpc::Mes... function RequestRetrieve (line 188) | void RequestRetrieve(::grpc::ServerContext* context, flatbuffers::grpc::... function RequestGetMaxHitPoint (line 208) | void RequestGetMaxHitPoint(::grpc::ServerContext* context, ::grpc::Serve... function RequestGetMinMaxHitPoints (line 228) | void RequestGetMinMaxHitPoints(::grpc::ServerContext* context, ::grpc::S... type WithAsyncMethod_Store (line 232) | typedef WithAsyncMethod_Store< WithAsyncMethod_Retrieve< WithAsyncMe... type WithStreamedUnaryMethod_Store (line 321) | typedef WithStreamedUnaryMethod_Store< Service > StreamedUnarySer... type WithSplitStreamingMethod_Retrieve (line 342) | typedef WithSplitStreamingMethod_Retrieve< Service > SplitStreame... type WithStreamedUnaryMethod_Store (line 343) | typedef WithStreamedUnaryMethod_Store< WithSplitStreamingMethod_Retri... FILE: tests/monster_test_suffix/filesuffix_only/monster_test_suffix.h function namespace (line 18) | namespace MyGame { type AnyUniqueAliases (line 391) | enum AnyUniqueAliases : uint8_t { function Monster (line 431) | struct AnyUniqueAliasesTraits { function TestSimpleTableWithEnum (line 435) | struct AnyUniqueAliasesTraits { function Monster (line 439) | struct AnyUniqueAliasesTraits { function MonsterT (line 447) | struct AnyUniqueAliasesUnionTraits { function TestSimpleTableWithEnumT (line 451) | struct AnyUniqueAliasesUnionTraits { type AnyUniqueAliasesUnion (line 459) | struct AnyUniqueAliasesUnion { type typename (line 478) | typedef typename std::remove_reference::type RT; function MyGame (line 493) | const MyGame::Example::MonsterT *AsM() const { function MyGame (line 501) | const MyGame::Example::TestSimpleTableWithEnumT *AsTS() const { function MyGame (line 509) | const MyGame::Example2::MonsterT *AsM2() const { type AnyAmbiguousAliases (line 549) | enum AnyAmbiguousAliases : uint8_t { type AnyAmbiguousAliasesUnion (line 585) | struct AnyAmbiguousAliasesUnion { function MyGame (line 609) | const MyGame::Example::MonsterT *AsM1() const { function MyGame (line 617) | const MyGame::Example::MonsterT *AsM2() const { function MyGame (line 625) | const MyGame::Example::MonsterT *AsM3() const { function Test (line 665) | Test FLATBUFFERS_FINAL_CLASS { function a (line 687) | int16_t a() const { function mutate_b (line 696) | void mutate_b(int8_t _b) { function H (line 713) | H AbslHashValue(H h, const Test &obj) { function Vec3 (line 717) | Vec3 FLATBUFFERS_FINAL_CLASS { function mutate_x (line 764) | void mutate_x(float _x) { function y (line 767) | float y() const { function mutate_z (line 776) | void mutate_z(float _z) { function test1 (line 779) | double test1() const { function mutate_test2 (line 788) | void mutate_test2(MyGame::Example::Color _test2) { function H (line 815) | H AbslHashValue(H h, const Vec3 &obj) { function Ability (line 819) | Ability FLATBUFFERS_FINAL_CLASS { function mutate_id (line 839) | void mutate_id(uint32_t _id) { function KeyCompareLessThan (line 842) | bool KeyCompareLessThan(const Ability * const o) const { function KeyCompareWithValue (line 845) | int KeyCompareWithValue(uint32_t _id) const { function distance (line 848) | uint32_t distance() const { function H (line 868) | H AbslHashValue(H h, const Ability &obj) { function StructOfStructs (line 872) | StructOfStructs FLATBUFFERS_FINAL_CLASS { function H (line 925) | H AbslHashValue(H h, const StructOfStructs &obj) { function StructOfStructsOfStructs (line 929) | StructOfStructsOfStructs FLATBUFFERS_FINAL_CLASS { function H (line 962) | H AbslHashValue(H h, const StructOfStructsOfStructs &obj) { function NativeTable (line 968) | struct InParentNamespaceT : public ::flatbuffers::NativeTable { function FLATBUFFERS_FINAL_CLASS (line 972) | struct InParentNamespace FLATBUFFERS_FINAL_CLASS : private ::flatbuffers... function Finish (line 988) | struct InParentNamespaceBuilder { function flatbuffers (line 1003) | inline ::flatbuffers::Offset CreateInParentNamespace( function namespace (line 1011) | namespace Example2 { function flatbuffers (line 1048) | inline ::flatbuffers::Offset CreateMonster( function namespace (line 1058) | namespace Example { function NativeTable (line 1119) | struct StatT : public ::flatbuffers::NativeTable { function FLATBUFFERS_FINAL_CLASS (line 1126) | struct Stat FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table { function KeyCompareLessThan (line 1155) | bool KeyCompareLessThan(const Stat * const o) const { function KeyCompareWithValue (line 1158) | int KeyCompareWithValue(uint16_t _count) const { function add_val (line 1175) | struct StatBuilder { function add_count (line 1185) | void add_count(uint16_t count) { function explicit (line 1188) | explicit StatBuilder(::flatbuffers::FlatBufferBuilder &_fbb) function NativeTable (line 1226) | struct ReferrableT : public ::flatbuffers::NativeTable { function FLATBUFFERS_FINAL_CLASS (line 1231) | struct Referrable FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table { function ReferrableBuilder (line 1263) | struct ReferrableBuilder { function NativeTable (line 1291) | struct MonsterT : public ::flatbuffers::NativeTable { function FLATBUFFERS_FINAL_CLASS (line 1358) | struct Monster FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table { function flatbuffers (line 1445) | const ::flatbuffers::String *name() const { function KeyCompareLessThan (line 1451) | bool KeyCompareLessThan(const Monster * const o) const { function KeyCompareWithValue (line 1454) | int KeyCompareWithValue(const char *_name) const { function flatbuffers (line 1463) | const ::flatbuffers::Vector *inventory() const { function MyGame (line 1482) | const MyGame::Example::Monster *test_as_Monster() const { function MyGame (line 1485) | const MyGame::Example::TestSimpleTableWithEnum *test_as_TestSimpleTableW... function MyGame (line 1488) | const MyGame::Example2::Monster *test_as_MyGame_Example2_Monster() const { function flatbuffers (line 1504) | const ::flatbuffers::Vector *test4() const { function flatbuffers (line 1510) | const ::flatbuffers::Vector<::flatbuffers::Offset<::flatbuffers::String>... function flatbuffers (line 1518) | const ::flatbuffers::Vector<::flatbuffers::Offset *testnestedflatbuffer() const { function MyGame (line 1536) | const MyGame::Example::Monster *testnestedflatbuffer_nested_root() const { function MyGame (line 1541) | const MyGame::Example::Stat *testempty() const { function flatbuffers (line 1625) | const ::flatbuffers::Vector<::flatbuffers::Offset<::flatbuffers::String>... function flatbuffers (line 1631) | const ::flatbuffers::Vector *testarray... function flatbuffers (line 1637) | const ::flatbuffers::Vector *flex() const { function flatbuffers (line 1648) | const ::flatbuffers::Vector *test5() const { function flatbuffers (line 1654) | const ::flatbuffers::Vector *vector_of_longs() const { function flatbuffers (line 1660) | const ::flatbuffers::Vector *vector_of_doubles() const { function MyGame (line 1666) | const MyGame::InParentNamespace *parent_namespace_test() const { function flatbuffers (line 1672) | const ::flatbuffers::Vector<::flatbuffers::Offset *vector_of_enums() const { function MyGame (line 1794) | const MyGame::Example::Monster *testrequirednestedflatbuffer_nested_root... function flatbuffers (line 1799) | const ::flatbuffers::Vector<::flatbuffers::Offset... function MyGame (line 1805) | const MyGame::Example::Test *native_inline() const { function MyGame (line 1978) | inline const MyGame::Example::Monster *Monster::test_as name) { function add_inventory (line 2042) | void add_inventory(::flatbuffers::Offset<::flatbuffers::Vector>... function add_color (line 2045) | void add_color(MyGame::Example::Color color) { function add_test_type (line 2048) | void add_test_type(MyGame::Example::Any test_type) { function add_test (line 2051) | void add_test(::flatbuffers::Offset test) { function add_test4 (line 2054) | void add_test4(::flatbuffers::Offset<::flatbuffers::Vector enemy) { function add_testnestedflatbuffer (line 2066) | void add_testnestedflatbuffer(::flatbuffers::Offset<::flatbuffers::Vecto... function add_testempty (line 2069) | void add_testempty(::flatbuffers::Offset testempt... function add_testbool (line 2072) | void add_testbool(bool testbool) { function add_testhashs32_fnv1 (line 2075) | void add_testhashs32_fnv1(int32_t testhashs32_fnv1) { function add_testhashu32_fnv1 (line 2078) | void add_testhashu32_fnv1(uint32_t testhashu32_fnv1) { function add_testhashs64_fnv1 (line 2081) | void add_testhashs64_fnv1(int64_t testhashs64_fnv1) { function add_testhashu64_fnv1 (line 2084) | void add_testhashu64_fnv1(uint64_t testhashu64_fnv1) { function add_testhashs32_fnv1a (line 2087) | void add_testhashs32_fnv1a(int32_t testhashs32_fnv1a) { function add_testhashu32_fnv1a (line 2090) | void add_testhashu32_fnv1a(uint32_t testhashu32_fnv1a) { function add_testhashs64_fnv1a (line 2093) | void add_testhashs64_fnv1a(int64_t testhashs64_fnv1a) { function add_testhashu64_fnv1a (line 2096) | void add_testhashu64_fnv1a(uint64_t testhashu64_fnv1a) { function add_testarrayofbools (line 2099) | void add_testarrayofbools(::flatbuffers::Offset<::flatbuffers::Vector> flex) { function add_test5 (line 2120) | void add_test5(::flatbuffers::Offset<::flatbuffers::Vector any_unique) { function add_any_ambiguous_type (line 2162) | void add_any_ambiguous_type(MyGame::Example::AnyAmbiguousAliases any_amb... function add_any_ambiguous (line 2165) | void add_any_ambiguous(::flatbuffers::Offset any_ambiguous) { function add_vector_of_enums (line 2168) | void add_vector_of_enums(::flatbuffers::Offset<::flatbuffers::Vector *vf64() const { function add_u8 (line 2636) | struct TypeAliasesBuilder { function add_i16 (line 2646) | void add_i16(int16_t i16) { function add_u16 (line 2649) | void add_u16(uint16_t u16) { function add_i32 (line 2652) | void add_i32(int32_t i32) { function add_u32 (line 2655) | void add_u32(uint32_t u32) { function add_i64 (line 2658) | void add_i64(int64_t i64) { function add_u64 (line 2661) | void add_u64(uint64_t u64) { function add_f32 (line 2664) | void add_f32(float f32) { function add_f64 (line 2667) | void add_f64(double f64) { function add_v8 (line 2670) | void add_v8(::flatbuffers::Offset<::flatbuffers::Vector> v8) { function add_vf64 (line 2673) | void add_vf64(::flatbuffers::Offset<::flatbuffers::Vector> vf64) { function explicit (line 2676) | explicit TypeAliasesBuilder(::flatbuffers::FlatBufferBuilder &_fbb) function InParentNamespaceT (line 2763) | inline InParentNamespaceT *InParentNamespace::UnPack(const ::flatbuffers... function UnPackTo (line 2769) | inline void InParentNamespace::UnPackTo(InParentNamespaceT *_o, const ::... function flatbuffers (line 2774) | inline ::flatbuffers::Offset CreateInParentNamespace(... function flatbuffers (line 2778) | inline ::flatbuffers::Offset InParentNamespace::Pack(... function namespace (line 2786) | namespace Example2 { function MonsterT (line 2798) | inline MonsterT *Monster::UnPack(const ::flatbuffers::resolver_function_... function UnPackTo (line 2804) | inline void Monster::UnPackTo(MonsterT *_o, const ::flatbuffers::resolve... function flatbuffers (line 2809) | inline ::flatbuffers::Offset CreateMonster(::flatbuffers::FlatB... function flatbuffers (line 2813) | inline ::flatbuffers::Offset Monster::Pack(::flatbuffers::FlatB... function namespace (line 2823) | namespace Example { function TestSimpleTableWithEnumT (line 2836) | inline TestSimpleTableWithEnumT *TestSimpleTableWithEnum::UnPack(const :... function UnPackTo (line 2842) | inline void TestSimpleTableWithEnum::UnPackTo(TestSimpleTableWithEnumT *... function flatbuffers (line 2848) | inline ::flatbuffers::Offset CreateTestSimpleTa... function flatbuffers (line 2852) | inline ::flatbuffers::Offset TestSimpleTableWit... function StatT (line 2875) | inline StatT *Stat::UnPack(const ::flatbuffers::resolver_function_t *_re... function UnPackTo (line 2881) | inline void Stat::UnPackTo(StatT *_o, const ::flatbuffers::resolver_func... function flatbuffers (line 2889) | inline ::flatbuffers::Offset CreateStat(::flatbuffers::FlatBufferB... function flatbuffers (line 2893) | inline ::flatbuffers::Offset Stat::Pack(::flatbuffers::FlatBufferB... function ReferrableT (line 2918) | inline ReferrableT *Referrable::UnPack(const ::flatbuffers::resolver_fun... function UnPackTo (line 2924) | inline void Referrable::UnPackTo(ReferrableT *_o, const ::flatbuffers::r... function flatbuffers (line 2930) | inline ::flatbuffers::Offset CreateReferrable(::flatbuffers:... function flatbuffers (line 2934) | inline ::flatbuffers::Offset Referrable::Pack(::flatbuffers:... function flatbuffers (line 3212) | inline ::flatbuffers::Offset CreateMonster(::flatbuffers::FlatB... function flatbuffers (line 3216) | inline ::flatbuffers::Offset Monster::Pack(::flatbuffers::FlatB... function TypeAliasesT (line 3368) | inline TypeAliasesT *TypeAliases::UnPack(const ::flatbuffers::resolver_f... function UnPackTo (line 3374) | inline void TypeAliases::UnPackTo(TypeAliasesT *_o, const ::flatbuffers:... function flatbuffers (line 3391) | inline ::flatbuffers::Offset CreateTypeAliases(::flatbuffer... function flatbuffers (line 3395) | inline ::flatbuffers::Offset TypeAliases::Pack(::flatbuffer... function VerifyAny (line 3428) | bool VerifyAny(::flatbuffers::VerifierTemplate &verifier, const void ... function VerifyAnyVector (line 3450) | bool VerifyAnyVector(::flatbuffers::VerifierTemplate &verifier, const... function flatbuffers (line 3481) | inline ::flatbuffers::Offset AnyUnion::Pack(::flatbuffers::FlatBuf... function AnyUnion (line 3500) | inline AnyUnion::AnyUnion(const AnyUnion &u) : type(u.type), value(nullp... function Reset (line 3519) | inline void AnyUnion::Reset() { function VerifyAnyUniqueAliases (line 3543) | bool VerifyAnyUniqueAliases(::flatbuffers::VerifierTemplate &verifier... function VerifyAnyUniqueAliasesVector (line 3565) | bool VerifyAnyUniqueAliasesVector(::flatbuffers::VerifierTemplate &ve... function flatbuffers (line 3596) | inline ::flatbuffers::Offset AnyUniqueAliasesUnion::Pack(::flatbuf... function AnyUniqueAliasesUnion (line 3615) | inline AnyUniqueAliasesUnion::AnyUniqueAliasesUnion(const AnyUniqueAlias... function Reset (line 3634) | inline void AnyUniqueAliasesUnion::Reset() { function VerifyAnyAmbiguousAliases (line 3658) | bool VerifyAnyAmbiguousAliases(::flatbuffers::VerifierTemplate &verif... function VerifyAnyAmbiguousAliasesVector (line 3680) | bool VerifyAnyAmbiguousAliasesVector(::flatbuffers::VerifierTemplate ... function flatbuffers (line 3711) | inline ::flatbuffers::Offset AnyAmbiguousAliasesUnion::Pack(::flat... function AnyAmbiguousAliasesUnion (line 3730) | inline AnyAmbiguousAliasesUnion::AnyAmbiguousAliasesUnion(const AnyAmbig... function Reset (line 3749) | inline void AnyAmbiguousAliasesUnion::Reset() { function flatbuffers (line 3772) | inline const ::flatbuffers::TypeTable *ColorTypeTable() { function flatbuffers (line 3793) | inline const ::flatbuffers::TypeTable *RaceTypeTable() { function flatbuffers (line 3816) | inline const ::flatbuffers::TypeTable *LongEnumTypeTable() { function flatbuffers (line 3837) | inline const ::flatbuffers::TypeTable *AnyTypeTable() { function flatbuffers (line 3861) | inline const ::flatbuffers::TypeTable *AnyUniqueAliasesTypeTable() { function flatbuffers (line 3885) | inline const ::flatbuffers::TypeTable *AnyAmbiguousAliasesTypeTable() { function flatbuffers (line 3909) | inline const ::flatbuffers::TypeTable *InParentNamespaceTypeTable() { function namespace (line 3916) | namespace Example2 { function namespace (line 3927) | namespace Example { FILE: tests/monster_test_suffix/monster_test.grpc.fb.cc type MyGame (line 16) | namespace MyGame { type Example (line 17) | namespace Example { FILE: tests/monster_test_suffix/monster_test.grpc.fb.h function namespace (line 20) | namespace grpc { function namespace (line 27) | namespace MyGame { function class (line 143) | class Service : public ::grpc::Service { function RequestStore (line 168) | void RequestStore(::grpc::ServerContext* context, flatbuffers::grpc::Mes... function RequestRetrieve (line 188) | void RequestRetrieve(::grpc::ServerContext* context, flatbuffers::grpc::... function RequestGetMaxHitPoint (line 208) | void RequestGetMaxHitPoint(::grpc::ServerContext* context, ::grpc::Serve... function RequestGetMinMaxHitPoints (line 228) | void RequestGetMinMaxHitPoints(::grpc::ServerContext* context, ::grpc::S... type WithAsyncMethod_Store (line 232) | typedef WithAsyncMethod_Store< WithAsyncMethod_Retrieve< WithAsyncMe... type WithStreamedUnaryMethod_Store (line 321) | typedef WithStreamedUnaryMethod_Store< Service > StreamedUnarySer... type WithSplitStreamingMethod_Retrieve (line 342) | typedef WithSplitStreamingMethod_Retrieve< Service > SplitStreame... type WithStreamedUnaryMethod_Store (line 343) | typedef WithStreamedUnaryMethod_Store< WithSplitStreamingMethod_Retri... FILE: tests/monster_test_suffix/monster_test_suffix.hpp type MyGame (line 18) | namespace MyGame { type InParentNamespace (line 20) | struct InParentNamespace type InParentNamespaceBuilder (line 21) | struct InParentNamespaceBuilder type InParentNamespaceT (line 22) | struct InParentNamespaceT type Example2 (line 24) | namespace Example2 { type Monster (line 26) | struct Monster type MonsterBuilder (line 27) | struct MonsterBuilder type MonsterT (line 28) | struct MonsterT type Example (line 32) | namespace Example { type Test (line 34) | struct Test type TestSimpleTableWithEnum (line 36) | struct TestSimpleTableWithEnum type TestSimpleTableWithEnumBuilder (line 37) | struct TestSimpleTableWithEnumBuilder type TestSimpleTableWithEnumT (line 38) | struct TestSimpleTableWithEnumT type Vec3 (line 40) | struct Vec3 type Ability (line 42) | struct Ability type StructOfStructs (line 44) | struct StructOfStructs type StructOfStructsOfStructs (line 46) | struct StructOfStructsOfStructs type Stat (line 48) | struct Stat type StatBuilder (line 49) | struct StatBuilder type StatT (line 50) | struct StatT type Referrable (line 52) | struct Referrable type ReferrableBuilder (line 53) | struct ReferrableBuilder type ReferrableT (line 54) | struct ReferrableT type Monster (line 56) | struct Monster type MonsterBuilder (line 57) | struct MonsterBuilder type MonsterT (line 58) | struct MonsterT type TypeAliases (line 60) | struct TypeAliases type TypeAliasesBuilder (line 61) | struct TypeAliasesBuilder type TypeAliasesT (line 62) | struct TypeAliasesT type Color (line 130) | enum Color : uint8_t { function Color (line 141) | inline const Color (&EnumValuesColor())[3] { type Race (line 171) | enum Race : int8_t { function Race (line 180) | inline const Race (&EnumValuesRace())[4] { type LongEnum (line 207) | enum LongEnum : uint64_t { function LongEnum (line 215) | inline const LongEnum (&EnumValuesLongEnum())[3] { type Any (line 233) | enum Any : uint8_t { function Any (line 242) | inline const Any (&EnumValuesAny())[4] { type AnyTraits (line 269) | struct AnyTraits { type AnyTraits (line 273) | struct AnyTraits { type AnyTraits (line 277) | struct AnyTraits { type AnyTraits (line 281) | struct AnyTraits { type AnyUnionTraits (line 285) | struct AnyUnionTraits { type AnyUnionTraits (line 289) | struct AnyUnionTraits { type AnyUnionTraits (line 293) | struct AnyUnionTraits { type AnyUnionTraits (line 297) | struct AnyUnionTraits { type AnyUnion (line 301) | struct AnyUnion { method AnyUnion (line 305) | AnyUnion() : type(Any_NONE), value(nullptr) {} method AnyUnion (line 306) | AnyUnion(AnyUnion&& u) FLATBUFFERS_NOEXCEPT : method AnyUnion (line 310) | AnyUnion &operator=(const AnyUnion &u) method AnyUnion (line 312) | AnyUnion &operator=(AnyUnion &&u) FLATBUFFERS_NOEXCEPT method Set (line 319) | void Set(T&& val) { type AnyUniqueAliases (line 391) | enum AnyUniqueAliases : uint8_t { function AnyUniqueAliases (line 400) | inline const AnyUniqueAliases (&EnumValuesAnyUniqueAliases())[4] { type AnyUniqueAliasesTraits (line 427) | struct AnyUniqueAliasesTraits { type AnyUniqueAliasesTraits (line 431) | struct AnyUniqueAliasesTraits { type AnyUniqueAliasesTraits (line 435) | struct AnyUniqueAliasesTraits (line 439) | struct AnyUniqueAliasesTraits { type AnyUniqueAliasesUnionTraits (line 443) | struct AnyUniqueAliasesUnionTraits { type AnyUniqueAliasesUnionTraits (line 447) | struct AnyUniqueAliasesUnionTraits { type AnyUniqueAliasesUnionTraits (line 451) | struct AnyUniqueAliasesUnionTraits (line 455) | struct AnyUniqueAliasesUnionTraits { type AnyUniqueAliasesUnion (line 459) | struct AnyUniqueAliasesUnion { method AnyUniqueAliasesUnion (line 463) | AnyUniqueAliasesUnion() : type(AnyUniqueAliases_NONE), value(nullp... method AnyUniqueAliasesUnion (line 464) | AnyUniqueAliasesUnion(AnyUniqueAliasesUnion&& u) FLATBUFFERS_NOEXC... method AnyUniqueAliasesUnion (line 468) | AnyUniqueAliasesUnion &operator=(const AnyUniqueAliasesUnion &u) method AnyUniqueAliasesUnion (line 470) | AnyUniqueAliasesUnion &operator=(AnyUniqueAliasesUnion &&u) FLATBU... method Set (line 477) | void Set(T&& val) { type AnyAmbiguousAliases (line 549) | enum AnyAmbiguousAliases : uint8_t { function AnyAmbiguousAliases (line 558) | inline const AnyAmbiguousAliases (&EnumValuesAnyAmbiguousAliases())[... type AnyAmbiguousAliasesUnion (line 585) | struct AnyAmbiguousAliasesUnion { method AnyAmbiguousAliasesUnion (line 589) | AnyAmbiguousAliasesUnion() : type(AnyAmbiguousAliases_NONE), value... method AnyAmbiguousAliasesUnion (line 590) | AnyAmbiguousAliasesUnion(AnyAmbiguousAliasesUnion&& u) FLATBUFFERS... method AnyAmbiguousAliasesUnion (line 594) | AnyAmbiguousAliasesUnion &operator=(const AnyAmbiguousAliasesUnion... method AnyAmbiguousAliasesUnion (line 596) | AnyAmbiguousAliasesUnion &operator=(AnyAmbiguousAliasesUnion &&u) ... function Test (line 665) | Test FLATBUFFERS_FINAL_CLASS { function Test (line 675) | Test() function Test (line 681) | Test(int16_t _a, int8_t _b) function a (line 687) | int16_t a() const { function mutate_a (line 690) | void mutate_a(int16_t _a) { function b (line 693) | int8_t b() const { function mutate_b (line 696) | void mutate_b(int8_t _b) { type Example2 (line 68) | namespace Example2 { type Monster (line 26) | struct Monster type MonsterBuilder (line 27) | struct MonsterBuilder type MonsterT (line 28) | struct MonsterT type Example (line 74) | namespace Example { type Test (line 34) | struct Test type TestSimpleTableWithEnum (line 36) | struct TestSimpleTableWithEnum type TestSimpleTableWithEnumBuilder (line 37) | struct TestSimpleTableWithEnumBuilder type TestSimpleTableWithEnumT (line 38) | struct TestSimpleTableWithEnumT type Vec3 (line 40) | struct Vec3 type Ability (line 42) | struct Ability type StructOfStructs (line 44) | struct StructOfStructs type StructOfStructsOfStructs (line 46) | struct StructOfStructsOfStructs type Stat (line 48) | struct Stat type StatBuilder (line 49) | struct StatBuilder type StatT (line 50) | struct StatT type Referrable (line 52) | struct Referrable type ReferrableBuilder (line 53) | struct ReferrableBuilder type ReferrableT (line 54) | struct ReferrableT type Monster (line 56) | struct Monster type MonsterBuilder (line 57) | struct MonsterBuilder type MonsterT (line 58) | struct MonsterT type TypeAliases (line 60) | struct TypeAliases type TypeAliasesBuilder (line 61) | struct TypeAliasesBuilder type TypeAliasesT (line 62) | struct TypeAliasesT type Color (line 130) | enum Color : uint8_t { function Color (line 141) | inline const Color (&EnumValuesColor())[3] { type Race (line 171) | enum Race : int8_t { function Race (line 180) | inline const Race (&EnumValuesRace())[4] { type LongEnum (line 207) | enum LongEnum : uint64_t { function LongEnum (line 215) | inline const LongEnum (&EnumValuesLongEnum())[3] { type Any (line 233) | enum Any : uint8_t { function Any (line 242) | inline const Any (&EnumValuesAny())[4] { type AnyTraits (line 269) | struct AnyTraits { type AnyTraits (line 273) | struct AnyTraits { type AnyTraits (line 277) | struct AnyTraits { type AnyTraits (line 281) | struct AnyTraits { type AnyUnionTraits (line 285) | struct AnyUnionTraits { type AnyUnionTraits (line 289) | struct AnyUnionTraits { type AnyUnionTraits (line 293) | struct AnyUnionTraits { type AnyUnionTraits (line 297) | struct AnyUnionTraits { type AnyUnion (line 301) | struct AnyUnion { method AnyUnion (line 305) | AnyUnion() : type(Any_NONE), value(nullptr) {} method AnyUnion (line 306) | AnyUnion(AnyUnion&& u) FLATBUFFERS_NOEXCEPT : method AnyUnion (line 310) | AnyUnion &operator=(const AnyUnion &u) method AnyUnion (line 312) | AnyUnion &operator=(AnyUnion &&u) FLATBUFFERS_NOEXCEPT method Set (line 319) | void Set(T&& val) { type AnyUniqueAliases (line 391) | enum AnyUniqueAliases : uint8_t { function AnyUniqueAliases (line 400) | inline const AnyUniqueAliases (&EnumValuesAnyUniqueAliases())[4] { type AnyUniqueAliasesTraits (line 427) | struct AnyUniqueAliasesTraits { type AnyUniqueAliasesTraits (line 431) | struct AnyUniqueAliasesTraits { type AnyUniqueAliasesTraits (line 435) | struct AnyUniqueAliasesTraits (line 439) | struct AnyUniqueAliasesTraits { type AnyUniqueAliasesUnionTraits (line 443) | struct AnyUniqueAliasesUnionTraits { type AnyUniqueAliasesUnionTraits (line 447) | struct AnyUniqueAliasesUnionTraits { type AnyUniqueAliasesUnionTraits (line 451) | struct AnyUniqueAliasesUnionTraits (line 455) | struct AnyUniqueAliasesUnionTraits { type AnyUniqueAliasesUnion (line 459) | struct AnyUniqueAliasesUnion { method AnyUniqueAliasesUnion (line 463) | AnyUniqueAliasesUnion() : type(AnyUniqueAliases_NONE), value(nullp... method AnyUniqueAliasesUnion (line 464) | AnyUniqueAliasesUnion(AnyUniqueAliasesUnion&& u) FLATBUFFERS_NOEXC... method AnyUniqueAliasesUnion (line 468) | AnyUniqueAliasesUnion &operator=(const AnyUniqueAliasesUnion &u) method AnyUniqueAliasesUnion (line 470) | AnyUniqueAliasesUnion &operator=(AnyUniqueAliasesUnion &&u) FLATBU... method Set (line 477) | void Set(T&& val) { type AnyAmbiguousAliases (line 549) | enum AnyAmbiguousAliases : uint8_t { function AnyAmbiguousAliases (line 558) | inline const AnyAmbiguousAliases (&EnumValuesAnyAmbiguousAliases())[... type AnyAmbiguousAliasesUnion (line 585) | struct AnyAmbiguousAliasesUnion { method AnyAmbiguousAliasesUnion (line 589) | AnyAmbiguousAliasesUnion() : type(AnyAmbiguousAliases_NONE), value... method AnyAmbiguousAliasesUnion (line 590) | AnyAmbiguousAliasesUnion(AnyAmbiguousAliasesUnion&& u) FLATBUFFERS... method AnyAmbiguousAliasesUnion (line 594) | AnyAmbiguousAliasesUnion &operator=(const AnyAmbiguousAliasesUnion... method AnyAmbiguousAliasesUnion (line 596) | AnyAmbiguousAliasesUnion &operator=(AnyAmbiguousAliasesUnion &&u) ... function Test (line 665) | Test FLATBUFFERS_FINAL_CLASS { function Test (line 675) | Test() function Test (line 681) | Test(int16_t _a, int8_t _b) function a (line 687) | int16_t a() const { function mutate_a (line 690) | void mutate_a(int16_t _a) { function b (line 693) | int8_t b() const { function mutate_b (line 696) | void mutate_b(int8_t _b) { type Example2 (line 101) | namespace Example2 { type Monster (line 26) | struct Monster type MonsterBuilder (line 27) | struct MonsterBuilder type MonsterT (line 28) | struct MonsterT type Example (line 107) | namespace Example { type Test (line 34) | struct Test type TestSimpleTableWithEnum (line 36) | struct TestSimpleTableWithEnum type TestSimpleTableWithEnumBuilder (line 37) | struct TestSimpleTableWithEnumBuilder type TestSimpleTableWithEnumT (line 38) | struct TestSimpleTableWithEnumT type Vec3 (line 40) | struct Vec3 type Ability (line 42) | struct Ability type StructOfStructs (line 44) | struct StructOfStructs type StructOfStructsOfStructs (line 46) | struct StructOfStructsOfStructs type Stat (line 48) | struct Stat type StatBuilder (line 49) | struct StatBuilder type StatT (line 50) | struct StatT type Referrable (line 52) | struct Referrable type ReferrableBuilder (line 53) | struct ReferrableBuilder type ReferrableT (line 54) | struct ReferrableT type Monster (line 56) | struct Monster type MonsterBuilder (line 57) | struct MonsterBuilder type MonsterT (line 58) | struct MonsterT type TypeAliases (line 60) | struct TypeAliases type TypeAliasesBuilder (line 61) | struct TypeAliasesBuilder type TypeAliasesT (line 62) | struct TypeAliasesT type Color (line 130) | enum Color : uint8_t { function Color (line 141) | inline const Color (&EnumValuesColor())[3] { type Race (line 171) | enum Race : int8_t { function Race (line 180) | inline const Race (&EnumValuesRace())[4] { type LongEnum (line 207) | enum LongEnum : uint64_t { function LongEnum (line 215) | inline const LongEnum (&EnumValuesLongEnum())[3] { type Any (line 233) | enum Any : uint8_t { function Any (line 242) | inline const Any (&EnumValuesAny())[4] { type AnyTraits (line 269) | struct AnyTraits { type AnyTraits (line 273) | struct AnyTraits { type AnyTraits (line 277) | struct AnyTraits { type AnyTraits (line 281) | struct AnyTraits { type AnyUnionTraits (line 285) | struct AnyUnionTraits { type AnyUnionTraits (line 289) | struct AnyUnionTraits { type AnyUnionTraits (line 293) | struct AnyUnionTraits { type AnyUnionTraits (line 297) | struct AnyUnionTraits { type AnyUnion (line 301) | struct AnyUnion { method AnyUnion (line 305) | AnyUnion() : type(Any_NONE), value(nullptr) {} method AnyUnion (line 306) | AnyUnion(AnyUnion&& u) FLATBUFFERS_NOEXCEPT : method AnyUnion (line 310) | AnyUnion &operator=(const AnyUnion &u) method AnyUnion (line 312) | AnyUnion &operator=(AnyUnion &&u) FLATBUFFERS_NOEXCEPT method Set (line 319) | void Set(T&& val) { type AnyUniqueAliases (line 391) | enum AnyUniqueAliases : uint8_t { function AnyUniqueAliases (line 400) | inline const AnyUniqueAliases (&EnumValuesAnyUniqueAliases())[4] { type AnyUniqueAliasesTraits (line 427) | struct AnyUniqueAliasesTraits { type AnyUniqueAliasesTraits (line 431) | struct AnyUniqueAliasesTraits { type AnyUniqueAliasesTraits (line 435) | struct AnyUniqueAliasesTraits (line 439) | struct AnyUniqueAliasesTraits { type AnyUniqueAliasesUnionTraits (line 443) | struct AnyUniqueAliasesUnionTraits { type AnyUniqueAliasesUnionTraits (line 447) | struct AnyUniqueAliasesUnionTraits { type AnyUniqueAliasesUnionTraits (line 451) | struct AnyUniqueAliasesUnionTraits (line 455) | struct AnyUniqueAliasesUnionTraits { type AnyUniqueAliasesUnion (line 459) | struct AnyUniqueAliasesUnion { method AnyUniqueAliasesUnion (line 463) | AnyUniqueAliasesUnion() : type(AnyUniqueAliases_NONE), value(nullp... method AnyUniqueAliasesUnion (line 464) | AnyUniqueAliasesUnion(AnyUniqueAliasesUnion&& u) FLATBUFFERS_NOEXC... method AnyUniqueAliasesUnion (line 468) | AnyUniqueAliasesUnion &operator=(const AnyUniqueAliasesUnion &u) method AnyUniqueAliasesUnion (line 470) | AnyUniqueAliasesUnion &operator=(AnyUniqueAliasesUnion &&u) FLATBU... method Set (line 477) | void Set(T&& val) { type AnyAmbiguousAliases (line 549) | enum AnyAmbiguousAliases : uint8_t { function AnyAmbiguousAliases (line 558) | inline const AnyAmbiguousAliases (&EnumValuesAnyAmbiguousAliases())[... type AnyAmbiguousAliasesUnion (line 585) | struct AnyAmbiguousAliasesUnion { method AnyAmbiguousAliasesUnion (line 589) | AnyAmbiguousAliasesUnion() : type(AnyAmbiguousAliases_NONE), value... method AnyAmbiguousAliasesUnion (line 590) | AnyAmbiguousAliasesUnion(AnyAmbiguousAliasesUnion&& u) FLATBUFFERS... method AnyAmbiguousAliasesUnion (line 594) | AnyAmbiguousAliasesUnion &operator=(const AnyAmbiguousAliasesUnion... method AnyAmbiguousAliasesUnion (line 596) | AnyAmbiguousAliasesUnion &operator=(AnyAmbiguousAliasesUnion &&u) ... function Test (line 665) | Test FLATBUFFERS_FINAL_CLASS { function Test (line 675) | Test() function Test (line 681) | Test(int16_t _a, int8_t _b) function a (line 687) | int16_t a() const { function mutate_a (line 690) | void mutate_a(int16_t _a) { function b (line 693) | int8_t b() const { function mutate_b (line 696) | void mutate_b(int8_t _b) { function H (line 713) | inline H AbslHashValue(H h, const Test &obj) { function Vec3 (line 717) | Vec3 FLATBUFFERS_FINAL_CLASS { function Vec3 (line 733) | Vec3() function Vec3 (line 747) | Vec3(float _x, float _y, float _z, double _test1, MyGame::Example::Col... function x (line 761) | float x() const { function mutate_x (line 764) | void mutate_x(float _x) { function y (line 767) | float y() const { function mutate_y (line 770) | void mutate_y(float _y) { function z (line 773) | float z() const { function mutate_z (line 776) | void mutate_z(float _z) { function test1 (line 779) | double test1() const { function mutate_test1 (line 782) | void mutate_test1(double _test1) { function test2 (line 785) | MyGame::Example::Color test2() const { function mutate_test2 (line 788) | void mutate_test2(MyGame::Example::Color _test2) { function H (line 815) | inline H AbslHashValue(H h, const Vec3 &obj) { function Ability (line 819) | Ability FLATBUFFERS_FINAL_CLASS { function Ability (line 828) | Ability() function Ability (line 832) | Ability(uint32_t _id, uint32_t _distance) function id (line 836) | uint32_t id() const { function mutate_id (line 839) | void mutate_id(uint32_t _id) { function KeyCompareLessThan (line 842) | bool KeyCompareLessThan(const Ability * const o) const { function KeyCompareWithValue (line 845) | int KeyCompareWithValue(uint32_t _id) const { function distance (line 848) | uint32_t distance() const { function mutate_distance (line 851) | void mutate_distance(uint32_t _distance) { function H (line 868) | inline H AbslHashValue(H h, const Ability &obj) { function StructOfStructs (line 872) | StructOfStructs FLATBUFFERS_FINAL_CLASS { function StructOfStructs (line 882) | StructOfStructs() function StructOfStructs (line 887) | StructOfStructs(const MyGame::Example::Ability &_a, const MyGame::Exampl... function H (line 925) | inline H AbslHashValue(H h, const StructOfStructs &obj) { function StructOfStructsOfStructs (line 929) | StructOfStructsOfStructs FLATBUFFERS_FINAL_CLASS { function StructOfStructsOfStructs (line 937) | StructOfStructsOfStructs() function StructOfStructsOfStructs (line 940) | StructOfStructsOfStructs(const MyGame::Example::StructOfStructs &_a) function H (line 962) | inline H AbslHashValue(H h, const StructOfStructsOfStructs &obj) { type InParentNamespaceT (line 968) | struct InParentNamespaceT : public ::flatbuffers::NativeTable { type InParentNamespace (line 972) | struct InParentNamespace function Verify (line 979) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type InParentNamespaceBuilder (line 988) | struct InParentNamespaceBuilder { method InParentNamespaceBuilder (line 992) | explicit InParentNamespaceBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 996) | ::flatbuffers::Offset Finish() { function CreateInParentNamespace (line 1003) | inline ::flatbuffers::Offset CreateInParentNamespace( type Example2 (line 1011) | namespace Example2 { type MonsterT (line 1013) | struct MonsterT : public ::flatbuffers::NativeTable { type Monster (line 1017) | struct Monster function Verify (line 1024) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type MonsterBuilder (line 1033) | struct MonsterBuilder { method MonsterBuilder (line 1037) | explicit MonsterBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 1041) | ::flatbuffers::Offset Finish() { function CreateMonster (line 1048) | inline ::flatbuffers::Offset CreateMonster( function MonsterT (line 2798) | inline MonsterT *Monster::UnPack(const ::flatbuffers::resolver_functio... function CreateMonster (line 2809) | inline ::flatbuffers::Offset CreateMonster(::flatbuffers::Fla... type _VectorArgs (line 2816) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Mo... type Example (line 1058) | namespace Example { type TestSimpleTableWithEnumT (line 1060) | struct TestSimpleTableWithEnumT : public ::flatbuffers::NativeTable { type TestSimpleTableWithEnum (line 1065) | struct TestSimpleTableWithEnum type FlatBuffersVTableOffset (line 1071) | enum FlatBuffersVTableOffset function color (line 1074) | MyGame::Example::Color color() const { function mutate_color (line 1077) | bool mutate_color(MyGame::Example::Color _color = static_cast &verifier) const { type TestSimpleTableWithEnumBuilder (line 1091) | struct TestSimpleTableWithEnumBuilder { method add_color (line 1095) | void add_color(MyGame::Example::Color color) { method TestSimpleTableWithEnumBuilder (line 1098) | explicit TestSimpleTableWithEnumBuilder(::flatbuffers::FlatBufferBui... method Finish (line 1102) | ::flatbuffers::Offset Finish() { function CreateTestSimpleTableWithEnum (line 1109) | inline ::flatbuffers::Offset CreateTestSimple... type StatT (line 1119) | struct StatT : public ::flatbuffers::NativeTable { type Stat (line 1126) | struct Stat type FlatBuffersVTableOffset (line 1132) | enum FlatBuffersVTableOffset function val (line 1143) | int64_t val() const { function mutate_val (line 1146) | bool mutate_val(int64_t _val = 0) { function count (line 1149) | uint16_t count() const { function mutate_count (line 1152) | bool mutate_count(uint16_t _count = 0) { function KeyCompareLessThan (line 1155) | bool KeyCompareLessThan(const Stat * const o) const { function KeyCompareWithValue (line 1158) | int KeyCompareWithValue(uint16_t _count) const { function Verify (line 1162) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type StatBuilder (line 1175) | struct StatBuilder { method add_id (line 1179) | void add_id(::flatbuffers::Offset<::flatbuffers::String> id) { method add_val (line 1182) | void add_val(int64_t val) { method add_count (line 1185) | void add_count(uint16_t count) { method StatBuilder (line 1188) | explicit StatBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 1192) | ::flatbuffers::Offset Finish() { function CreateStat (line 1199) | inline ::flatbuffers::Offset CreateStat( function CreateStatDirect (line 1211) | inline ::flatbuffers::Offset CreateStatDirect( type ReferrableT (line 1226) | struct ReferrableT : public ::flatbuffers::NativeTable { type Referrable (line 1231) | struct Referrable type FlatBuffersVTableOffset (line 1237) | enum FlatBuffersVTableOffset function id (line 1240) | uint64_t id() const { function mutate_id (line 1243) | bool mutate_id(uint64_t _id = 0) { function KeyCompareLessThan (line 1246) | bool KeyCompareLessThan(const Referrable * const o) const { function KeyCompareWithValue (line 1249) | int KeyCompareWithValue(uint64_t _id) const { function Verify (line 1253) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type ReferrableBuilder (line 1263) | struct ReferrableBuilder { method add_id (line 1267) | void add_id(uint64_t id) { method ReferrableBuilder (line 1270) | explicit ReferrableBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 1274) | ::flatbuffers::Offset Finish() { function CreateReferrable (line 1281) | inline ::flatbuffers::Offset CreateReferrable( type MonsterT (line 1291) | struct MonsterT : public ::flatbuffers::NativeTable { method MonsterT (line 1351) | MonsterT() = default; method MonsterT (line 1353) | MonsterT(MonsterT&&) FLATBUFFERS_NOEXCEPT = default; type Monster (line 1358) | struct Monster type FlatBuffersVTableOffset (line 1364) | enum FlatBuffersVTableOffset function mana (line 1433) | int16_t mana() const { function mutate_mana (line 1436) | bool mutate_mana(int16_t _mana = 150) { function hp (line 1439) | int16_t hp() const { function mutate_hp (line 1442) | bool mutate_hp(int16_t _hp = 100) { function KeyCompareLessThan (line 1451) | bool KeyCompareLessThan(const Monster * const o) const { function KeyCompareWithValue (line 1454) | int KeyCompareWithValue(const char *_name) const { function KeyCompareWithValue (line 1458) | int KeyCompareWithValue(const StringType& _name) const { function color (line 1469) | MyGame::Example::Color color() const { function mutate_color (line 1472) | bool mutate_color(MyGame::Example::Color _color = static_cast &verifier) const { type MonsterBuilder (line 2026) | struct MonsterBuilder { method add_pos (line 2030) | void add_pos(const MyGame::Example::Vec3 *pos) { method add_mana (line 2033) | void add_mana(int16_t mana) { method add_hp (line 2036) | void add_hp(int16_t hp) { method add_name (line 2039) | void add_name(::flatbuffers::Offset<::flatbuffers::String> name) { method add_inventory (line 2042) | void add_inventory(::flatbuffers::Offset<::flatbuffers::Vector test) { method add_test4 (line 2054) | void add_test4(::flatbuffers::Offset<::flatbuffers::Vector enemy) { method add_testnestedflatbuffer (line 2066) | void add_testnestedflatbuffer(::flatbuffers::Offset<::flatbuffers::V... method add_testempty (line 2069) | void add_testempty(::flatbuffers::Offset test... method add_testbool (line 2072) | void add_testbool(bool testbool) { method add_testhashs32_fnv1 (line 2075) | void add_testhashs32_fnv1(int32_t testhashs32_fnv1) { method add_testhashu32_fnv1 (line 2078) | void add_testhashu32_fnv1(uint32_t testhashu32_fnv1) { method add_testhashs64_fnv1 (line 2081) | void add_testhashs64_fnv1(int64_t testhashs64_fnv1) { method add_testhashu64_fnv1 (line 2084) | void add_testhashu64_fnv1(uint64_t testhashu64_fnv1) { method add_testhashs32_fnv1a (line 2087) | void add_testhashs32_fnv1a(int32_t testhashs32_fnv1a) { method add_testhashu32_fnv1a (line 2090) | void add_testhashu32_fnv1a(uint32_t testhashu32_fnv1a) { method add_testhashs64_fnv1a (line 2093) | void add_testhashs64_fnv1a(int64_t testhashs64_fnv1a) { method add_testhashu64_fnv1a (line 2096) | void add_testhashu64_fnv1a(uint64_t testhashu64_fnv1a) { method add_testarrayofbools (line 2099) | void add_testarrayofbools(::flatbuffers::Offset<::flatbuffers::Vecto... method add_testf (line 2102) | void add_testf(float testf) { method add_testf2 (line 2105) | void add_testf2(float testf2) { method add_testf3 (line 2108) | void add_testf3(float testf3) { method add_testarrayofstring2 (line 2111) | void add_testarrayofstring2(::flatbuffers::Offset<::flatbuffers::Vec... method add_testarrayofsortedstruct (line 2114) | void add_testarrayofsortedstruct(::flatbuffers::Offset<::flatbuffers... method add_flex (line 2117) | void add_flex(::flatbuffers::Offset<::flatbuffers::Vector> ... method add_test5 (line 2120) | void add_test5(::flatbuffers::Offset<::flatbuffers::Vector any_unique) { method add_any_ambiguous_type (line 2162) | void add_any_ambiguous_type(MyGame::Example::AnyAmbiguousAliases any... method add_any_ambiguous (line 2165) | void add_any_ambiguous(::flatbuffers::Offset any_ambiguous) { method add_vector_of_enums (line 2168) | void add_vector_of_enums(::flatbuffers::Offset<::flatbuffers::Vector... method add_signed_enum (line 2171) | void add_signed_enum(MyGame::Example::Race signed_enum) { method add_testrequirednestedflatbuffer (line 2174) | void add_testrequirednestedflatbuffer(::flatbuffers::Offset<::flatbu... method add_scalar_key_sorted_tables (line 2177) | void add_scalar_key_sorted_tables(::flatbuffers::Offset<::flatbuffer... method add_native_inline (line 2180) | void add_native_inline(const MyGame::Example::Test *native_inline) { method add_long_enum_non_enum_default (line 2183) | void add_long_enum_non_enum_default(MyGame::Example::LongEnum long_e... method add_long_enum_normal_default (line 2186) | void add_long_enum_normal_default(MyGame::Example::LongEnum long_enu... method add_nan_default (line 2189) | void add_nan_default(float nan_default) { method add_inf_default (line 2192) | void add_inf_default(float inf_default) { method add_positive_inf_default (line 2195) | void add_positive_inf_default(float positive_inf_default) { method add_infinity_default (line 2198) | void add_infinity_default(float infinity_default) { method add_positive_infinity_default (line 2201) | void add_positive_infinity_default(float positive_infinity_default) { method add_negative_inf_default (line 2204) | void add_negative_inf_default(float negative_inf_default) { method add_negative_infinity_default (line 2207) | void add_negative_infinity_default(float negative_infinity_default) { method add_double_inf_default (line 2210) | void add_double_inf_default(double double_inf_default) { method MonsterBuilder (line 2213) | explicit MonsterBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 2217) | ::flatbuffers::Offset Finish() { function CreateMonster (line 2225) | inline ::flatbuffers::Offset CreateMonster( function CreateMonsterDirect (line 2353) | inline ::flatbuffers::Offset CreateMonsterDirect( type TypeAliasesT (line 2504) | struct TypeAliasesT : public ::flatbuffers::NativeTable { type TypeAliases (line 2520) | struct TypeAliases type FlatBuffersVTableOffset (line 2526) | enum FlatBuffersVTableOffset function i8 (line 2540) | int8_t i8() const { function mutate_i8 (line 2543) | bool mutate_i8(int8_t _i8 = 0) { function u8 (line 2546) | uint8_t u8() const { function mutate_u8 (line 2549) | bool mutate_u8(uint8_t _u8 = 0) { function i16 (line 2552) | int16_t i16() const { function mutate_i16 (line 2555) | bool mutate_i16(int16_t _i16 = 0) { function u16 (line 2558) | uint16_t u16() const { function mutate_u16 (line 2561) | bool mutate_u16(uint16_t _u16 = 0) { function i32 (line 2564) | int32_t i32() const { function mutate_i32 (line 2567) | bool mutate_i32(int32_t _i32 = 0) { function u32 (line 2570) | uint32_t u32() const { function mutate_u32 (line 2573) | bool mutate_u32(uint32_t _u32 = 0) { function i64 (line 2576) | int64_t i64() const { function mutate_i64 (line 2579) | bool mutate_i64(int64_t _i64 = 0) { function u64 (line 2582) | uint64_t u64() const { function mutate_u64 (line 2585) | bool mutate_u64(uint64_t _u64 = 0) { function f32 (line 2588) | float f32() const { function mutate_f32 (line 2591) | bool mutate_f32(float _f32 = 0.0f) { function f64 (line 2594) | double f64() const { function mutate_f64 (line 2597) | bool mutate_f64(double _f64 = 0.0) { function Verify (line 2613) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type TypeAliasesBuilder (line 2636) | struct TypeAliasesBuilder { method add_i8 (line 2640) | void add_i8(int8_t i8) { method add_u8 (line 2643) | void add_u8(uint8_t u8) { method add_i16 (line 2646) | void add_i16(int16_t i16) { method add_u16 (line 2649) | void add_u16(uint16_t u16) { method add_i32 (line 2652) | void add_i32(int32_t i32) { method add_u32 (line 2655) | void add_u32(uint32_t u32) { method add_i64 (line 2658) | void add_i64(int64_t i64) { method add_u64 (line 2661) | void add_u64(uint64_t u64) { method add_f32 (line 2664) | void add_f32(float f32) { method add_f64 (line 2667) | void add_f64(double f64) { method add_v8 (line 2670) | void add_v8(::flatbuffers::Offset<::flatbuffers::Vector> v8) { method add_vf64 (line 2673) | void add_vf64(::flatbuffers::Offset<::flatbuffers::Vector> v... method TypeAliasesBuilder (line 2676) | explicit TypeAliasesBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 2680) | ::flatbuffers::Offset Finish() { function CreateTypeAliases (line 2687) | inline ::flatbuffers::Offset CreateTypeAliases( function CreateTypeAliasesDirect (line 2717) | inline ::flatbuffers::Offset CreateTypeAliasesDirect( function TestSimpleTableWithEnumT (line 2836) | inline TestSimpleTableWithEnumT *TestSimpleTableWithEnum::UnPack(const... function CreateTestSimpleTableWithEnum (line 2848) | inline ::flatbuffers::Offset CreateTestSimple... type _VectorArgs (line 2855) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Te... function StatT (line 2875) | inline StatT *Stat::UnPack(const ::flatbuffers::resolver_function_t *_... function CreateStat (line 2889) | inline ::flatbuffers::Offset CreateStat(::flatbuffers::FlatBuffe... type _VectorArgs (line 2896) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const St... function ReferrableT (line 2918) | inline ReferrableT *Referrable::UnPack(const ::flatbuffers::resolver_f... function CreateReferrable (line 2930) | inline ::flatbuffers::Offset CreateReferrable(::flatbuffer... type _VectorArgs (line 2937) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Re... function MonsterT (line 3078) | inline MonsterT &MonsterT::operator=(MonsterT o) FLATBUFFERS_NOEXCEPT { method MonsterT (line 1351) | MonsterT() = default; method MonsterT (line 1353) | MonsterT(MonsterT&&) FLATBUFFERS_NOEXCEPT = default; function MonsterT (line 3140) | inline MonsterT *Monster::UnPack(const ::flatbuffers::resolver_functio... method MonsterT (line 1351) | MonsterT() = default; method MonsterT (line 1353) | MonsterT(MonsterT&&) FLATBUFFERS_NOEXCEPT = default; function CreateMonster (line 3212) | inline ::flatbuffers::Offset CreateMonster(::flatbuffers::Fla... type _VectorArgs (line 3219) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Mo... function TypeAliasesT (line 3368) | inline TypeAliasesT *TypeAliases::UnPack(const ::flatbuffers::resolver... function CreateTypeAliases (line 3391) | inline ::flatbuffers::Offset CreateTypeAliases(::flatbuff... type _VectorArgs (line 3398) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Ty... function VerifyAny (line 3428) | inline bool VerifyAny(::flatbuffers::VerifierTemplate &verifier, co... function VerifyAnyVector (line 3450) | inline bool VerifyAnyVector(::flatbuffers::VerifierTemplate &verifi... function VerifyAnyUniqueAliases (line 3543) | inline bool VerifyAnyUniqueAliases(::flatbuffers::VerifierTemplate ... function VerifyAnyUniqueAliasesVector (line 3565) | inline bool VerifyAnyUniqueAliasesVector(::flatbuffers::VerifierTempla... function VerifyAnyAmbiguousAliases (line 3658) | inline bool VerifyAnyAmbiguousAliases(::flatbuffers::VerifierTemplate<... function VerifyAnyAmbiguousAliasesVector (line 3680) | inline bool VerifyAnyAmbiguousAliasesVector(::flatbuffers::VerifierTem... function Monster (line 4267) | inline Monster *GetMutableMonster(void *buf) { function MonsterBufferHasIdentifier (line 4279) | inline bool MonsterBufferHasIdentifier(const void *buf) { function SizePrefixedMonsterBufferHasIdentifier (line 4284) | inline bool SizePrefixedMonsterBufferHasIdentifier(const void *buf) { function VerifyMonsterBuffer (line 4290) | inline bool VerifyMonsterBuffer( function VerifySizePrefixedMonsterBuffer (line 4296) | inline bool VerifySizePrefixedMonsterBuffer( function FinishMonsterBuffer (line 4305) | inline void FinishMonsterBuffer( function FinishSizePrefixedMonsterBuffer (line 4311) | inline void FinishSizePrefixedMonsterBuffer( function UnPackMonster (line 4317) | inline std::unique_ptr UnPackMonster( function UnPackSizePrefixedMonster (line 4323) | inline std::unique_ptr UnPackSizePrefixedMo... function InParentNamespaceT (line 2763) | inline InParentNamespaceT *InParentNamespace::UnPack(const ::flatbuffers... function CreateInParentNamespace (line 2774) | inline ::flatbuffers::Offset CreateInParentNamespace(... type _VectorArgs (line 2781) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const InPa... type Example2 (line 2786) | namespace Example2 { type MonsterT (line 1013) | struct MonsterT : public ::flatbuffers::NativeTable { type Monster (line 1017) | struct Monster function Verify (line 1024) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type MonsterBuilder (line 1033) | struct MonsterBuilder { method MonsterBuilder (line 1037) | explicit MonsterBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 1041) | ::flatbuffers::Offset Finish() { function CreateMonster (line 1048) | inline ::flatbuffers::Offset CreateMonster( function MonsterT (line 2798) | inline MonsterT *Monster::UnPack(const ::flatbuffers::resolver_functio... function CreateMonster (line 2809) | inline ::flatbuffers::Offset CreateMonster(::flatbuffers::Fla... type _VectorArgs (line 2816) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Mo... type Example (line 2823) | namespace Example { type TestSimpleTableWithEnumT (line 1060) | struct TestSimpleTableWithEnumT : public ::flatbuffers::NativeTable { type TestSimpleTableWithEnum (line 1065) | struct TestSimpleTableWithEnum type FlatBuffersVTableOffset (line 1071) | enum FlatBuffersVTableOffset function color (line 1074) | MyGame::Example::Color color() const { function mutate_color (line 1077) | bool mutate_color(MyGame::Example::Color _color = static_cast &verifier) const { type TestSimpleTableWithEnumBuilder (line 1091) | struct TestSimpleTableWithEnumBuilder { method add_color (line 1095) | void add_color(MyGame::Example::Color color) { method TestSimpleTableWithEnumBuilder (line 1098) | explicit TestSimpleTableWithEnumBuilder(::flatbuffers::FlatBufferBui... method Finish (line 1102) | ::flatbuffers::Offset Finish() { function CreateTestSimpleTableWithEnum (line 1109) | inline ::flatbuffers::Offset CreateTestSimple... type StatT (line 1119) | struct StatT : public ::flatbuffers::NativeTable { type Stat (line 1126) | struct Stat type FlatBuffersVTableOffset (line 1132) | enum FlatBuffersVTableOffset function val (line 1143) | int64_t val() const { function mutate_val (line 1146) | bool mutate_val(int64_t _val = 0) { function count (line 1149) | uint16_t count() const { function mutate_count (line 1152) | bool mutate_count(uint16_t _count = 0) { function KeyCompareLessThan (line 1155) | bool KeyCompareLessThan(const Stat * const o) const { function KeyCompareWithValue (line 1158) | int KeyCompareWithValue(uint16_t _count) const { function Verify (line 1162) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type StatBuilder (line 1175) | struct StatBuilder { method add_id (line 1179) | void add_id(::flatbuffers::Offset<::flatbuffers::String> id) { method add_val (line 1182) | void add_val(int64_t val) { method add_count (line 1185) | void add_count(uint16_t count) { method StatBuilder (line 1188) | explicit StatBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 1192) | ::flatbuffers::Offset Finish() { function CreateStat (line 1199) | inline ::flatbuffers::Offset CreateStat( function CreateStatDirect (line 1211) | inline ::flatbuffers::Offset CreateStatDirect( type ReferrableT (line 1226) | struct ReferrableT : public ::flatbuffers::NativeTable { type Referrable (line 1231) | struct Referrable type FlatBuffersVTableOffset (line 1237) | enum FlatBuffersVTableOffset function id (line 1240) | uint64_t id() const { function mutate_id (line 1243) | bool mutate_id(uint64_t _id = 0) { function KeyCompareLessThan (line 1246) | bool KeyCompareLessThan(const Referrable * const o) const { function KeyCompareWithValue (line 1249) | int KeyCompareWithValue(uint64_t _id) const { function Verify (line 1253) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type ReferrableBuilder (line 1263) | struct ReferrableBuilder { method add_id (line 1267) | void add_id(uint64_t id) { method ReferrableBuilder (line 1270) | explicit ReferrableBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 1274) | ::flatbuffers::Offset Finish() { function CreateReferrable (line 1281) | inline ::flatbuffers::Offset CreateReferrable( type MonsterT (line 1291) | struct MonsterT : public ::flatbuffers::NativeTable { method MonsterT (line 1351) | MonsterT() = default; method MonsterT (line 1353) | MonsterT(MonsterT&&) FLATBUFFERS_NOEXCEPT = default; type Monster (line 1358) | struct Monster type FlatBuffersVTableOffset (line 1364) | enum FlatBuffersVTableOffset function mana (line 1433) | int16_t mana() const { function mutate_mana (line 1436) | bool mutate_mana(int16_t _mana = 150) { function hp (line 1439) | int16_t hp() const { function mutate_hp (line 1442) | bool mutate_hp(int16_t _hp = 100) { function KeyCompareLessThan (line 1451) | bool KeyCompareLessThan(const Monster * const o) const { function KeyCompareWithValue (line 1454) | int KeyCompareWithValue(const char *_name) const { function KeyCompareWithValue (line 1458) | int KeyCompareWithValue(const StringType& _name) const { function color (line 1469) | MyGame::Example::Color color() const { function mutate_color (line 1472) | bool mutate_color(MyGame::Example::Color _color = static_cast &verifier) const { type MonsterBuilder (line 2026) | struct MonsterBuilder { method add_pos (line 2030) | void add_pos(const MyGame::Example::Vec3 *pos) { method add_mana (line 2033) | void add_mana(int16_t mana) { method add_hp (line 2036) | void add_hp(int16_t hp) { method add_name (line 2039) | void add_name(::flatbuffers::Offset<::flatbuffers::String> name) { method add_inventory (line 2042) | void add_inventory(::flatbuffers::Offset<::flatbuffers::Vector test) { method add_test4 (line 2054) | void add_test4(::flatbuffers::Offset<::flatbuffers::Vector enemy) { method add_testnestedflatbuffer (line 2066) | void add_testnestedflatbuffer(::flatbuffers::Offset<::flatbuffers::V... method add_testempty (line 2069) | void add_testempty(::flatbuffers::Offset test... method add_testbool (line 2072) | void add_testbool(bool testbool) { method add_testhashs32_fnv1 (line 2075) | void add_testhashs32_fnv1(int32_t testhashs32_fnv1) { method add_testhashu32_fnv1 (line 2078) | void add_testhashu32_fnv1(uint32_t testhashu32_fnv1) { method add_testhashs64_fnv1 (line 2081) | void add_testhashs64_fnv1(int64_t testhashs64_fnv1) { method add_testhashu64_fnv1 (line 2084) | void add_testhashu64_fnv1(uint64_t testhashu64_fnv1) { method add_testhashs32_fnv1a (line 2087) | void add_testhashs32_fnv1a(int32_t testhashs32_fnv1a) { method add_testhashu32_fnv1a (line 2090) | void add_testhashu32_fnv1a(uint32_t testhashu32_fnv1a) { method add_testhashs64_fnv1a (line 2093) | void add_testhashs64_fnv1a(int64_t testhashs64_fnv1a) { method add_testhashu64_fnv1a (line 2096) | void add_testhashu64_fnv1a(uint64_t testhashu64_fnv1a) { method add_testarrayofbools (line 2099) | void add_testarrayofbools(::flatbuffers::Offset<::flatbuffers::Vecto... method add_testf (line 2102) | void add_testf(float testf) { method add_testf2 (line 2105) | void add_testf2(float testf2) { method add_testf3 (line 2108) | void add_testf3(float testf3) { method add_testarrayofstring2 (line 2111) | void add_testarrayofstring2(::flatbuffers::Offset<::flatbuffers::Vec... method add_testarrayofsortedstruct (line 2114) | void add_testarrayofsortedstruct(::flatbuffers::Offset<::flatbuffers... method add_flex (line 2117) | void add_flex(::flatbuffers::Offset<::flatbuffers::Vector> ... method add_test5 (line 2120) | void add_test5(::flatbuffers::Offset<::flatbuffers::Vector any_unique) { method add_any_ambiguous_type (line 2162) | void add_any_ambiguous_type(MyGame::Example::AnyAmbiguousAliases any... method add_any_ambiguous (line 2165) | void add_any_ambiguous(::flatbuffers::Offset any_ambiguous) { method add_vector_of_enums (line 2168) | void add_vector_of_enums(::flatbuffers::Offset<::flatbuffers::Vector... method add_signed_enum (line 2171) | void add_signed_enum(MyGame::Example::Race signed_enum) { method add_testrequirednestedflatbuffer (line 2174) | void add_testrequirednestedflatbuffer(::flatbuffers::Offset<::flatbu... method add_scalar_key_sorted_tables (line 2177) | void add_scalar_key_sorted_tables(::flatbuffers::Offset<::flatbuffer... method add_native_inline (line 2180) | void add_native_inline(const MyGame::Example::Test *native_inline) { method add_long_enum_non_enum_default (line 2183) | void add_long_enum_non_enum_default(MyGame::Example::LongEnum long_e... method add_long_enum_normal_default (line 2186) | void add_long_enum_normal_default(MyGame::Example::LongEnum long_enu... method add_nan_default (line 2189) | void add_nan_default(float nan_default) { method add_inf_default (line 2192) | void add_inf_default(float inf_default) { method add_positive_inf_default (line 2195) | void add_positive_inf_default(float positive_inf_default) { method add_infinity_default (line 2198) | void add_infinity_default(float infinity_default) { method add_positive_infinity_default (line 2201) | void add_positive_infinity_default(float positive_infinity_default) { method add_negative_inf_default (line 2204) | void add_negative_inf_default(float negative_inf_default) { method add_negative_infinity_default (line 2207) | void add_negative_infinity_default(float negative_infinity_default) { method add_double_inf_default (line 2210) | void add_double_inf_default(double double_inf_default) { method MonsterBuilder (line 2213) | explicit MonsterBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 2217) | ::flatbuffers::Offset Finish() { function CreateMonster (line 2225) | inline ::flatbuffers::Offset CreateMonster( function CreateMonsterDirect (line 2353) | inline ::flatbuffers::Offset CreateMonsterDirect( type TypeAliasesT (line 2504) | struct TypeAliasesT : public ::flatbuffers::NativeTable { type TypeAliases (line 2520) | struct TypeAliases type FlatBuffersVTableOffset (line 2526) | enum FlatBuffersVTableOffset function i8 (line 2540) | int8_t i8() const { function mutate_i8 (line 2543) | bool mutate_i8(int8_t _i8 = 0) { function u8 (line 2546) | uint8_t u8() const { function mutate_u8 (line 2549) | bool mutate_u8(uint8_t _u8 = 0) { function i16 (line 2552) | int16_t i16() const { function mutate_i16 (line 2555) | bool mutate_i16(int16_t _i16 = 0) { function u16 (line 2558) | uint16_t u16() const { function mutate_u16 (line 2561) | bool mutate_u16(uint16_t _u16 = 0) { function i32 (line 2564) | int32_t i32() const { function mutate_i32 (line 2567) | bool mutate_i32(int32_t _i32 = 0) { function u32 (line 2570) | uint32_t u32() const { function mutate_u32 (line 2573) | bool mutate_u32(uint32_t _u32 = 0) { function i64 (line 2576) | int64_t i64() const { function mutate_i64 (line 2579) | bool mutate_i64(int64_t _i64 = 0) { function u64 (line 2582) | uint64_t u64() const { function mutate_u64 (line 2585) | bool mutate_u64(uint64_t _u64 = 0) { function f32 (line 2588) | float f32() const { function mutate_f32 (line 2591) | bool mutate_f32(float _f32 = 0.0f) { function f64 (line 2594) | double f64() const { function mutate_f64 (line 2597) | bool mutate_f64(double _f64 = 0.0) { function Verify (line 2613) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type TypeAliasesBuilder (line 2636) | struct TypeAliasesBuilder { method add_i8 (line 2640) | void add_i8(int8_t i8) { method add_u8 (line 2643) | void add_u8(uint8_t u8) { method add_i16 (line 2646) | void add_i16(int16_t i16) { method add_u16 (line 2649) | void add_u16(uint16_t u16) { method add_i32 (line 2652) | void add_i32(int32_t i32) { method add_u32 (line 2655) | void add_u32(uint32_t u32) { method add_i64 (line 2658) | void add_i64(int64_t i64) { method add_u64 (line 2661) | void add_u64(uint64_t u64) { method add_f32 (line 2664) | void add_f32(float f32) { method add_f64 (line 2667) | void add_f64(double f64) { method add_v8 (line 2670) | void add_v8(::flatbuffers::Offset<::flatbuffers::Vector> v8) { method add_vf64 (line 2673) | void add_vf64(::flatbuffers::Offset<::flatbuffers::Vector> v... method TypeAliasesBuilder (line 2676) | explicit TypeAliasesBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 2680) | ::flatbuffers::Offset Finish() { function CreateTypeAliases (line 2687) | inline ::flatbuffers::Offset CreateTypeAliases( function CreateTypeAliasesDirect (line 2717) | inline ::flatbuffers::Offset CreateTypeAliasesDirect( function TestSimpleTableWithEnumT (line 2836) | inline TestSimpleTableWithEnumT *TestSimpleTableWithEnum::UnPack(const... function CreateTestSimpleTableWithEnum (line 2848) | inline ::flatbuffers::Offset CreateTestSimple... type _VectorArgs (line 2855) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Te... function StatT (line 2875) | inline StatT *Stat::UnPack(const ::flatbuffers::resolver_function_t *_... function CreateStat (line 2889) | inline ::flatbuffers::Offset CreateStat(::flatbuffers::FlatBuffe... type _VectorArgs (line 2896) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const St... function ReferrableT (line 2918) | inline ReferrableT *Referrable::UnPack(const ::flatbuffers::resolver_f... function CreateReferrable (line 2930) | inline ::flatbuffers::Offset CreateReferrable(::flatbuffer... type _VectorArgs (line 2937) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Re... function MonsterT (line 3078) | inline MonsterT &MonsterT::operator=(MonsterT o) FLATBUFFERS_NOEXCEPT { method MonsterT (line 1351) | MonsterT() = default; method MonsterT (line 1353) | MonsterT(MonsterT&&) FLATBUFFERS_NOEXCEPT = default; function MonsterT (line 3140) | inline MonsterT *Monster::UnPack(const ::flatbuffers::resolver_functio... method MonsterT (line 1351) | MonsterT() = default; method MonsterT (line 1353) | MonsterT(MonsterT&&) FLATBUFFERS_NOEXCEPT = default; function CreateMonster (line 3212) | inline ::flatbuffers::Offset CreateMonster(::flatbuffers::Fla... type _VectorArgs (line 3219) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Mo... function TypeAliasesT (line 3368) | inline TypeAliasesT *TypeAliases::UnPack(const ::flatbuffers::resolver... function CreateTypeAliases (line 3391) | inline ::flatbuffers::Offset CreateTypeAliases(::flatbuff... type _VectorArgs (line 3398) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Ty... function VerifyAny (line 3428) | inline bool VerifyAny(::flatbuffers::VerifierTemplate &verifier, co... function VerifyAnyVector (line 3450) | inline bool VerifyAnyVector(::flatbuffers::VerifierTemplate &verifi... function VerifyAnyUniqueAliases (line 3543) | inline bool VerifyAnyUniqueAliases(::flatbuffers::VerifierTemplate ... function VerifyAnyUniqueAliasesVector (line 3565) | inline bool VerifyAnyUniqueAliasesVector(::flatbuffers::VerifierTempla... function VerifyAnyAmbiguousAliases (line 3658) | inline bool VerifyAnyAmbiguousAliases(::flatbuffers::VerifierTemplate<... function VerifyAnyAmbiguousAliasesVector (line 3680) | inline bool VerifyAnyAmbiguousAliasesVector(::flatbuffers::VerifierTem... function Monster (line 4267) | inline Monster *GetMutableMonster(void *buf) { function MonsterBufferHasIdentifier (line 4279) | inline bool MonsterBufferHasIdentifier(const void *buf) { function SizePrefixedMonsterBufferHasIdentifier (line 4284) | inline bool SizePrefixedMonsterBufferHasIdentifier(const void *buf) { function VerifyMonsterBuffer (line 4290) | inline bool VerifyMonsterBuffer( function VerifySizePrefixedMonsterBuffer (line 4296) | inline bool VerifySizePrefixedMonsterBuffer( function FinishMonsterBuffer (line 4305) | inline void FinishMonsterBuffer( function FinishSizePrefixedMonsterBuffer (line 4311) | inline void FinishSizePrefixedMonsterBuffer( function UnPackMonster (line 4317) | inline std::unique_ptr UnPackMonster( function UnPackSizePrefixedMonster (line 4323) | inline std::unique_ptr UnPackSizePrefixedMo... type Example2 (line 3916) | namespace Example2 { type MonsterT (line 1013) | struct MonsterT : public ::flatbuffers::NativeTable { type Monster (line 1017) | struct Monster function Verify (line 1024) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type MonsterBuilder (line 1033) | struct MonsterBuilder { method MonsterBuilder (line 1037) | explicit MonsterBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 1041) | ::flatbuffers::Offset Finish() { function CreateMonster (line 1048) | inline ::flatbuffers::Offset CreateMonster( function MonsterT (line 2798) | inline MonsterT *Monster::UnPack(const ::flatbuffers::resolver_functio... function CreateMonster (line 2809) | inline ::flatbuffers::Offset CreateMonster(::flatbuffers::Fla... type _VectorArgs (line 2816) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Mo... type Example (line 3927) | namespace Example { type TestSimpleTableWithEnumT (line 1060) | struct TestSimpleTableWithEnumT : public ::flatbuffers::NativeTable { type TestSimpleTableWithEnum (line 1065) | struct TestSimpleTableWithEnum type FlatBuffersVTableOffset (line 1071) | enum FlatBuffersVTableOffset function color (line 1074) | MyGame::Example::Color color() const { function mutate_color (line 1077) | bool mutate_color(MyGame::Example::Color _color = static_cast &verifier) const { type TestSimpleTableWithEnumBuilder (line 1091) | struct TestSimpleTableWithEnumBuilder { method add_color (line 1095) | void add_color(MyGame::Example::Color color) { method TestSimpleTableWithEnumBuilder (line 1098) | explicit TestSimpleTableWithEnumBuilder(::flatbuffers::FlatBufferBui... method Finish (line 1102) | ::flatbuffers::Offset Finish() { function CreateTestSimpleTableWithEnum (line 1109) | inline ::flatbuffers::Offset CreateTestSimple... type StatT (line 1119) | struct StatT : public ::flatbuffers::NativeTable { type Stat (line 1126) | struct Stat type FlatBuffersVTableOffset (line 1132) | enum FlatBuffersVTableOffset function val (line 1143) | int64_t val() const { function mutate_val (line 1146) | bool mutate_val(int64_t _val = 0) { function count (line 1149) | uint16_t count() const { function mutate_count (line 1152) | bool mutate_count(uint16_t _count = 0) { function KeyCompareLessThan (line 1155) | bool KeyCompareLessThan(const Stat * const o) const { function KeyCompareWithValue (line 1158) | int KeyCompareWithValue(uint16_t _count) const { function Verify (line 1162) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type StatBuilder (line 1175) | struct StatBuilder { method add_id (line 1179) | void add_id(::flatbuffers::Offset<::flatbuffers::String> id) { method add_val (line 1182) | void add_val(int64_t val) { method add_count (line 1185) | void add_count(uint16_t count) { method StatBuilder (line 1188) | explicit StatBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 1192) | ::flatbuffers::Offset Finish() { function CreateStat (line 1199) | inline ::flatbuffers::Offset CreateStat( function CreateStatDirect (line 1211) | inline ::flatbuffers::Offset CreateStatDirect( type ReferrableT (line 1226) | struct ReferrableT : public ::flatbuffers::NativeTable { type Referrable (line 1231) | struct Referrable type FlatBuffersVTableOffset (line 1237) | enum FlatBuffersVTableOffset function id (line 1240) | uint64_t id() const { function mutate_id (line 1243) | bool mutate_id(uint64_t _id = 0) { function KeyCompareLessThan (line 1246) | bool KeyCompareLessThan(const Referrable * const o) const { function KeyCompareWithValue (line 1249) | int KeyCompareWithValue(uint64_t _id) const { function Verify (line 1253) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type ReferrableBuilder (line 1263) | struct ReferrableBuilder { method add_id (line 1267) | void add_id(uint64_t id) { method ReferrableBuilder (line 1270) | explicit ReferrableBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 1274) | ::flatbuffers::Offset Finish() { function CreateReferrable (line 1281) | inline ::flatbuffers::Offset CreateReferrable( type MonsterT (line 1291) | struct MonsterT : public ::flatbuffers::NativeTable { method MonsterT (line 1351) | MonsterT() = default; method MonsterT (line 1353) | MonsterT(MonsterT&&) FLATBUFFERS_NOEXCEPT = default; type Monster (line 1358) | struct Monster type FlatBuffersVTableOffset (line 1364) | enum FlatBuffersVTableOffset function mana (line 1433) | int16_t mana() const { function mutate_mana (line 1436) | bool mutate_mana(int16_t _mana = 150) { function hp (line 1439) | int16_t hp() const { function mutate_hp (line 1442) | bool mutate_hp(int16_t _hp = 100) { function KeyCompareLessThan (line 1451) | bool KeyCompareLessThan(const Monster * const o) const { function KeyCompareWithValue (line 1454) | int KeyCompareWithValue(const char *_name) const { function KeyCompareWithValue (line 1458) | int KeyCompareWithValue(const StringType& _name) const { function color (line 1469) | MyGame::Example::Color color() const { function mutate_color (line 1472) | bool mutate_color(MyGame::Example::Color _color = static_cast &verifier) const { type MonsterBuilder (line 2026) | struct MonsterBuilder { method add_pos (line 2030) | void add_pos(const MyGame::Example::Vec3 *pos) { method add_mana (line 2033) | void add_mana(int16_t mana) { method add_hp (line 2036) | void add_hp(int16_t hp) { method add_name (line 2039) | void add_name(::flatbuffers::Offset<::flatbuffers::String> name) { method add_inventory (line 2042) | void add_inventory(::flatbuffers::Offset<::flatbuffers::Vector test) { method add_test4 (line 2054) | void add_test4(::flatbuffers::Offset<::flatbuffers::Vector enemy) { method add_testnestedflatbuffer (line 2066) | void add_testnestedflatbuffer(::flatbuffers::Offset<::flatbuffers::V... method add_testempty (line 2069) | void add_testempty(::flatbuffers::Offset test... method add_testbool (line 2072) | void add_testbool(bool testbool) { method add_testhashs32_fnv1 (line 2075) | void add_testhashs32_fnv1(int32_t testhashs32_fnv1) { method add_testhashu32_fnv1 (line 2078) | void add_testhashu32_fnv1(uint32_t testhashu32_fnv1) { method add_testhashs64_fnv1 (line 2081) | void add_testhashs64_fnv1(int64_t testhashs64_fnv1) { method add_testhashu64_fnv1 (line 2084) | void add_testhashu64_fnv1(uint64_t testhashu64_fnv1) { method add_testhashs32_fnv1a (line 2087) | void add_testhashs32_fnv1a(int32_t testhashs32_fnv1a) { method add_testhashu32_fnv1a (line 2090) | void add_testhashu32_fnv1a(uint32_t testhashu32_fnv1a) { method add_testhashs64_fnv1a (line 2093) | void add_testhashs64_fnv1a(int64_t testhashs64_fnv1a) { method add_testhashu64_fnv1a (line 2096) | void add_testhashu64_fnv1a(uint64_t testhashu64_fnv1a) { method add_testarrayofbools (line 2099) | void add_testarrayofbools(::flatbuffers::Offset<::flatbuffers::Vecto... method add_testf (line 2102) | void add_testf(float testf) { method add_testf2 (line 2105) | void add_testf2(float testf2) { method add_testf3 (line 2108) | void add_testf3(float testf3) { method add_testarrayofstring2 (line 2111) | void add_testarrayofstring2(::flatbuffers::Offset<::flatbuffers::Vec... method add_testarrayofsortedstruct (line 2114) | void add_testarrayofsortedstruct(::flatbuffers::Offset<::flatbuffers... method add_flex (line 2117) | void add_flex(::flatbuffers::Offset<::flatbuffers::Vector> ... method add_test5 (line 2120) | void add_test5(::flatbuffers::Offset<::flatbuffers::Vector any_unique) { method add_any_ambiguous_type (line 2162) | void add_any_ambiguous_type(MyGame::Example::AnyAmbiguousAliases any... method add_any_ambiguous (line 2165) | void add_any_ambiguous(::flatbuffers::Offset any_ambiguous) { method add_vector_of_enums (line 2168) | void add_vector_of_enums(::flatbuffers::Offset<::flatbuffers::Vector... method add_signed_enum (line 2171) | void add_signed_enum(MyGame::Example::Race signed_enum) { method add_testrequirednestedflatbuffer (line 2174) | void add_testrequirednestedflatbuffer(::flatbuffers::Offset<::flatbu... method add_scalar_key_sorted_tables (line 2177) | void add_scalar_key_sorted_tables(::flatbuffers::Offset<::flatbuffer... method add_native_inline (line 2180) | void add_native_inline(const MyGame::Example::Test *native_inline) { method add_long_enum_non_enum_default (line 2183) | void add_long_enum_non_enum_default(MyGame::Example::LongEnum long_e... method add_long_enum_normal_default (line 2186) | void add_long_enum_normal_default(MyGame::Example::LongEnum long_enu... method add_nan_default (line 2189) | void add_nan_default(float nan_default) { method add_inf_default (line 2192) | void add_inf_default(float inf_default) { method add_positive_inf_default (line 2195) | void add_positive_inf_default(float positive_inf_default) { method add_infinity_default (line 2198) | void add_infinity_default(float infinity_default) { method add_positive_infinity_default (line 2201) | void add_positive_infinity_default(float positive_infinity_default) { method add_negative_inf_default (line 2204) | void add_negative_inf_default(float negative_inf_default) { method add_negative_infinity_default (line 2207) | void add_negative_infinity_default(float negative_infinity_default) { method add_double_inf_default (line 2210) | void add_double_inf_default(double double_inf_default) { method MonsterBuilder (line 2213) | explicit MonsterBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 2217) | ::flatbuffers::Offset Finish() { function CreateMonster (line 2225) | inline ::flatbuffers::Offset CreateMonster( function CreateMonsterDirect (line 2353) | inline ::flatbuffers::Offset CreateMonsterDirect( type TypeAliasesT (line 2504) | struct TypeAliasesT : public ::flatbuffers::NativeTable { type TypeAliases (line 2520) | struct TypeAliases type FlatBuffersVTableOffset (line 2526) | enum FlatBuffersVTableOffset function i8 (line 2540) | int8_t i8() const { function mutate_i8 (line 2543) | bool mutate_i8(int8_t _i8 = 0) { function u8 (line 2546) | uint8_t u8() const { function mutate_u8 (line 2549) | bool mutate_u8(uint8_t _u8 = 0) { function i16 (line 2552) | int16_t i16() const { function mutate_i16 (line 2555) | bool mutate_i16(int16_t _i16 = 0) { function u16 (line 2558) | uint16_t u16() const { function mutate_u16 (line 2561) | bool mutate_u16(uint16_t _u16 = 0) { function i32 (line 2564) | int32_t i32() const { function mutate_i32 (line 2567) | bool mutate_i32(int32_t _i32 = 0) { function u32 (line 2570) | uint32_t u32() const { function mutate_u32 (line 2573) | bool mutate_u32(uint32_t _u32 = 0) { function i64 (line 2576) | int64_t i64() const { function mutate_i64 (line 2579) | bool mutate_i64(int64_t _i64 = 0) { function u64 (line 2582) | uint64_t u64() const { function mutate_u64 (line 2585) | bool mutate_u64(uint64_t _u64 = 0) { function f32 (line 2588) | float f32() const { function mutate_f32 (line 2591) | bool mutate_f32(float _f32 = 0.0f) { function f64 (line 2594) | double f64() const { function mutate_f64 (line 2597) | bool mutate_f64(double _f64 = 0.0) { function Verify (line 2613) | bool Verify(::flatbuffers::VerifierTemplate &verifier) const { type TypeAliasesBuilder (line 2636) | struct TypeAliasesBuilder { method add_i8 (line 2640) | void add_i8(int8_t i8) { method add_u8 (line 2643) | void add_u8(uint8_t u8) { method add_i16 (line 2646) | void add_i16(int16_t i16) { method add_u16 (line 2649) | void add_u16(uint16_t u16) { method add_i32 (line 2652) | void add_i32(int32_t i32) { method add_u32 (line 2655) | void add_u32(uint32_t u32) { method add_i64 (line 2658) | void add_i64(int64_t i64) { method add_u64 (line 2661) | void add_u64(uint64_t u64) { method add_f32 (line 2664) | void add_f32(float f32) { method add_f64 (line 2667) | void add_f64(double f64) { method add_v8 (line 2670) | void add_v8(::flatbuffers::Offset<::flatbuffers::Vector> v8) { method add_vf64 (line 2673) | void add_vf64(::flatbuffers::Offset<::flatbuffers::Vector> v... method TypeAliasesBuilder (line 2676) | explicit TypeAliasesBuilder(::flatbuffers::FlatBufferBuilder &_fbb) method Finish (line 2680) | ::flatbuffers::Offset Finish() { function CreateTypeAliases (line 2687) | inline ::flatbuffers::Offset CreateTypeAliases( function CreateTypeAliasesDirect (line 2717) | inline ::flatbuffers::Offset CreateTypeAliasesDirect( function TestSimpleTableWithEnumT (line 2836) | inline TestSimpleTableWithEnumT *TestSimpleTableWithEnum::UnPack(const... function CreateTestSimpleTableWithEnum (line 2848) | inline ::flatbuffers::Offset CreateTestSimple... type _VectorArgs (line 2855) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Te... function StatT (line 2875) | inline StatT *Stat::UnPack(const ::flatbuffers::resolver_function_t *_... function CreateStat (line 2889) | inline ::flatbuffers::Offset CreateStat(::flatbuffers::FlatBuffe... type _VectorArgs (line 2896) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const St... function ReferrableT (line 2918) | inline ReferrableT *Referrable::UnPack(const ::flatbuffers::resolver_f... function CreateReferrable (line 2930) | inline ::flatbuffers::Offset CreateReferrable(::flatbuffer... type _VectorArgs (line 2937) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Re... function MonsterT (line 3078) | inline MonsterT &MonsterT::operator=(MonsterT o) FLATBUFFERS_NOEXCEPT { method MonsterT (line 1351) | MonsterT() = default; method MonsterT (line 1353) | MonsterT(MonsterT&&) FLATBUFFERS_NOEXCEPT = default; function MonsterT (line 3140) | inline MonsterT *Monster::UnPack(const ::flatbuffers::resolver_functio... method MonsterT (line 1351) | MonsterT() = default; method MonsterT (line 1353) | MonsterT(MonsterT&&) FLATBUFFERS_NOEXCEPT = default; function CreateMonster (line 3212) | inline ::flatbuffers::Offset CreateMonster(::flatbuffers::Fla... type _VectorArgs (line 3219) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Mo... function TypeAliasesT (line 3368) | inline TypeAliasesT *TypeAliases::UnPack(const ::flatbuffers::resolver... function CreateTypeAliases (line 3391) | inline ::flatbuffers::Offset CreateTypeAliases(::flatbuff... type _VectorArgs (line 3398) | struct _VectorArgs { ::flatbuffers::FlatBufferBuilder *__fbb; const Ty... function VerifyAny (line 3428) | inline bool VerifyAny(::flatbuffers::VerifierTemplate &verifier, co... function VerifyAnyVector (line 3450) | inline bool VerifyAnyVector(::flatbuffers::VerifierTemplate &verifi... function VerifyAnyUniqueAliases (line 3543) | inline bool VerifyAnyUniqueAliases(::flatbuffers::VerifierTemplate ... function VerifyAnyUniqueAliasesVector (line 3565) | inline bool VerifyAnyUniqueAliasesVector(::flatbuffers::VerifierTempla... function VerifyAnyAmbiguousAliases (line 3658) | inline bool VerifyAnyAmbiguousAliases(::flatbuffers::VerifierTemplate<... function VerifyAnyAmbiguousAliasesVector (line 3680) | inline bool VerifyAnyAmbiguousAliasesVector(::flatbuffers::VerifierTem... function Monster (line 4267) | inline Monster *GetMutableMonster(void *buf) { function MonsterBufferHasIdentifier (line 4279) | inline bool MonsterBufferHasIdentifier(const void *buf) { function SizePrefixedMonsterBufferHasIdentifier (line 4284) | inline bool SizePrefixedMonsterBufferHasIdentifier(const void *buf) { function VerifyMonsterBuffer (line 4290) | inline bool VerifyMonsterBuffer( function VerifySizePrefixedMonsterBuffer (line 4296) | inline bool VerifySizePrefixedMonsterBuffer( function FinishMonsterBuffer (line 4305) | inline void FinishMonsterBuffer( function FinishSizePrefixedMonsterBuffer (line 4311) | inline void FinishSizePrefixedMonsterBuffer( function UnPackMonster (line 4317) | inline std::unique_ptr UnPackMonster( function UnPackSizePrefixedMonster (line 4323) | inline std::unique_ptr UnPackSizePrefixedMo... FILE: tests/more_defaults/abc_generated.rs constant ENUM_MIN_ABC (line 7) | pub const ENUM_MIN_ABC: i32 = 0; constant ENUM_MAX_ABC (line 10) | pub const ENUM_MAX_ABC: i32 = 2; constant ENUM_VALUES_ABC (line 14) | pub const ENUM_VALUES_ABC: [ABC; 3] = [ type ABC (line 22) | pub struct ABC(pub i32); constant A (line 26) | pub const A: Self = Self(0); constant B (line 27) | pub const B: Self = Self(1); constant C (line 28) | pub const C: Self = Self(2); constant ENUM_MIN (line 30) | pub const ENUM_MIN: i32 = 0; constant ENUM_MAX (line 31) | pub const ENUM_MAX: i32 = 2; constant ENUM_VALUES (line 32) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 39) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 50) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 60) | type Inner = Self; method follow (line 63) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 70) | type Output = ABC; method push (line 73) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 79) | type Scalar = i32; method to_little_endian (line 82) | fn to_little_endian(self) -> i32 { method from_little_endian (line 88) | fn from_little_endian(v: i32) -> Self { method run_verifier (line 96) | fn run_verifier( FILE: tests/more_defaults/more_defaults_generated.rs type MoreDefaultsOffset (line 6) | pub enum MoreDefaultsOffset {} type MoreDefaults (line 9) | pub struct MoreDefaults<'a> { type Inner (line 14) | type Inner = MoreDefaults<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_INTS (line 23) | pub const VT_INTS: ::flatbuffers::VOffsetT = 4; constant VT_FLOATS (line 24) | pub const VT_FLOATS: ::flatbuffers::VOffsetT = 6; constant VT_EMPTY_STRING (line 25) | pub const VT_EMPTY_STRING: ::flatbuffers::VOffsetT = 8; constant VT_SOME_STRING (line 26) | pub const VT_SOME_STRING: ::flatbuffers::VOffsetT = 10; constant VT_ABCS (line 27) | pub const VT_ABCS: ::flatbuffers::VOffsetT = 12; constant VT_BOOLS (line 28) | pub const VT_BOOLS: ::flatbuffers::VOffsetT = 14; function get_fully_qualified_name (line 30) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 35) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 40) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 54) | pub fn unpack(&self) -> MoreDefaultsT { function ints (line 90) | pub fn ints(&self) -> ::flatbuffers::Vector<'a, i32> { function floats (line 98) | pub fn floats(&self) -> ::flatbuffers::Vector<'a, f32> { function empty_string (line 106) | pub fn empty_string(&self) -> &'a str { function some_string (line 114) | pub fn some_string(&self) -> &'a str { function abcs (line 122) | pub fn abcs(&self) -> ::flatbuffers::Vector<'a, ABC> { function bools (line 130) | pub fn bools(&self) -> ::flatbuffers::Vector<'a, bool> { function run_verifier (line 140) | fn run_verifier( type MoreDefaultsArgs (line 155) | pub struct MoreDefaultsArgs<'a> { method default (line 166) | fn default() -> Self { type MoreDefaultsBuilder (line 178) | pub struct MoreDefaultsBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator +... function add_ints (line 185) | pub fn add_ints(&mut self, ints: ::flatbuffers::WIPOffset<::flatbuffers:... function add_floats (line 190) | pub fn add_floats(&mut self, floats: ::flatbuffers::WIPOffset<::flatbuff... function add_empty_string (line 195) | pub fn add_empty_string(&mut self, empty_string: ::flatbuffers::WIPOffse... function add_some_string (line 200) | pub fn add_some_string(&mut self, some_string: ::flatbuffers::WIPOffset<... function add_abcs (line 205) | pub fn add_abcs(&mut self, abcs: ::flatbuffers::WIPOffset<::flatbuffers:... function add_bools (line 210) | pub fn add_bools(&mut self, bools: ::flatbuffers::WIPOffset<::flatbuffer... function new (line 215) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Mor... function finish (line 224) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 231) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type MoreDefaultsT (line 245) | pub struct MoreDefaultsT { method pack (line 268) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 255) | fn default() -> Self { FILE: tests/namespace_test/NamespaceA/NamespaceB/EnumInNestedNS.cs type EnumInNestedNS (line 8) | [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringE... FILE: tests/namespace_test/NamespaceA/NamespaceB/EnumInNestedNS.go type EnumInNestedNS (line 7) | type EnumInNestedNS method String (line 27) | func (v EnumInNestedNS) String() string { constant EnumInNestedNSA (line 10) | EnumInNestedNSA EnumInNestedNS = 0 constant EnumInNestedNSB (line 11) | EnumInNestedNSB EnumInNestedNS = 1 constant EnumInNestedNSC (line 12) | EnumInNestedNSC EnumInNestedNS = 2 FILE: tests/namespace_test/NamespaceA/NamespaceB/EnumInNestedNS.java class EnumInNestedNS (line 5) | @SuppressWarnings("unused") method EnumInNestedNS (line 7) | private EnumInNestedNS() {} method name (line 17) | public static String name(int e) { FILE: tests/namespace_test/NamespaceA/NamespaceB/EnumInNestedNS.php class EnumInNestedNS (line 6) | class EnumInNestedNS method Name (line 18) | public static function Name($e) FILE: tests/namespace_test/NamespaceA/NamespaceB/EnumInNestedNS.py class EnumInNestedNS (line 6) | class EnumInNestedNS(object): FILE: tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNS.cs type StructInNestedNS (line 12) | public struct StructInNestedNS : IFlatbufferObject method __init (line 16) | public void __init(int _i, ByteBuffer _bb) { __p = new Struct(_i, _bb); } method __assign (line 17) | public StructInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, ... method MutateA (line 20) | public void MutateA(int a) { __p.bb.PutInt(__p.bb_pos + 0, a); } method MutateB (line 22) | public void MutateB(int b) { __p.bb.PutInt(__p.bb_pos + 4, b); } method CreateStructInNestedNS (line 24) | public static Offset CreateStr... method UnPack (line 30) | public StructInNestedNST UnPack() { method UnPackTo (line 35) | public void UnPackTo(StructInNestedNST _o) { method Pack (line 39) | public static Offset Pack(Flat... class StructInNestedNST (line 48) | public class StructInNestedNST method StructInNestedNST (line 55) | public StructInNestedNST() { FILE: tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNS.go type StructInNestedNST (line 9) | type StructInNestedNST struct method Pack (line 14) | func (t *StructInNestedNST) Pack(builder *flatbuffers.Builder) flatbuf... type StructInNestedNS (line 34) | type StructInNestedNS struct method UnPackTo (line 20) | func (rcv *StructInNestedNS) UnPackTo(t *StructInNestedNST) { method UnPack (line 25) | func (rcv *StructInNestedNS) UnPack() *StructInNestedNST { method Init (line 38) | func (rcv *StructInNestedNS) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 43) | func (rcv *StructInNestedNS) Table() flatbuffers.Table { method A (line 47) | func (rcv *StructInNestedNS) A() int32 { method MutateA (line 50) | func (rcv *StructInNestedNS) MutateA(n int32) bool { method B (line 54) | func (rcv *StructInNestedNS) B() int32 { method MutateB (line 57) | func (rcv *StructInNestedNS) MutateB(n int32) bool { function CreateStructInNestedNS (line 61) | func CreateStructInNestedNS(builder *flatbuffers.Builder, a int32, b int... FILE: tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNS.java class StructInNestedNS (line 9) | @SuppressWarnings("unused") method __init (line 11) | public void __init(int _i, ByteBuffer _bb) { method __assign (line 15) | public StructInNestedNS __assign(int _i, ByteBuffer _bb) { method a (line 20) | public int a() { method mutateA (line 24) | public void mutateA(int a) { method b (line 28) | public int b() { method mutateB (line 32) | public void mutateB(int b) { method createStructInNestedNS (line 36) | public static int createStructInNestedNS(FlatBufferBuilder builder, in... class Vector (line 43) | public static final class Vector extends BaseVector { method __assign (line 44) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 49) | public StructInNestedNS get(int j) { method get (line 53) | public StructInNestedNS get(StructInNestedNS obj, int j) { method unpack (line 58) | public StructInNestedNST unpack() { method unpackTo (line 64) | public void unpackTo(StructInNestedNST _o) { method pack (line 71) | public static int pack(FlatBufferBuilder builder, StructInNestedNST _o) { FILE: tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNS.php class StructInNestedNS (line 11) | class StructInNestedNS extends Struct method init (line 18) | public function init($_i, ByteBuffer $_bb) method GetA (line 28) | public function GetA() method GetB (line 36) | public function GetB() method createStructInNestedNS (line 45) | public static function createStructInNestedNS(FlatBufferBuilder $build... FILE: tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNS.py class StructInNestedNS (line 11) | class StructInNestedNS(object): method SizeOf (line 15) | def SizeOf(cls): method Init (line 19) | def Init(self, buf, pos): method A (line 23) | def A(self): method B (line 30) | def B(self): function CreateStructInNestedNS (line 37) | def CreateStructInNestedNS(builder, a, b): class StructInNestedNST (line 44) | class StructInNestedNST(object): method __init__ (line 47) | def __init__(self): method InitFromBuf (line 52) | def InitFromBuf(cls, buf, pos): method InitFromObj (line 58) | def InitFromObj(cls, structInNestedNS): method _UnPack (line 64) | def _UnPack(self, structInNestedNS): method Pack (line 71) | def Pack(self, builder): FILE: tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNST.java class StructInNestedNST (line 9) | public class StructInNestedNST { method getA (line 13) | public int getA() { method setA (line 17) | public void setA(int a) { method getB (line 21) | public int getB() { method setB (line 25) | public void setB(int b) { method StructInNestedNST (line 29) | public StructInNestedNST() { FILE: tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNS.cs type TableInNestedNS (line 12) | public struct TableInNestedNS : IFlatbufferObject method ValidateVersion (line 16) | public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS... method GetRootAsTableInNestedNS (line 17) | public static TableInNestedNS GetRootAsTableInNestedNS(ByteBuffer _bb)... method GetRootAsTableInNestedNS (line 18) | public static TableInNestedNS GetRootAsTableInNestedNS(ByteBuffer _bb,... method __init (line 19) | public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } method __assign (line 20) | public TableInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, _... method MutateFoo (line 23) | public bool MutateFoo(int foo) { int o = __p.__offset(4); if (o != 0) ... method CreateTableInNestedNS (line 25) | public static Offset CreateTabl... method StartTableInNestedNS (line 32) | public static void StartTableInNestedNS(FlatBufferBuilder builder) { b... method AddFoo (line 33) | public static void AddFoo(FlatBufferBuilder builder, int foo) { builde... method EndTableInNestedNS (line 34) | public static Offset EndTableIn... method UnPack (line 38) | public TableInNestedNST UnPack() { method UnPackTo (line 43) | public void UnPackTo(TableInNestedNST _o) { method Pack (line 46) | public static Offset Pack(FlatB... class TableInNestedNST (line 54) | public class TableInNestedNST method TableInNestedNST (line 59) | public TableInNestedNST() { class TableInNestedNSVerify (line 65) | static public class TableInNestedNSVerify method Verify (line 67) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... FILE: tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNS.go type TableInNestedNST (line 9) | type TableInNestedNST struct method Pack (line 13) | func (t *TableInNestedNST) Pack(builder *flatbuffers.Builder) flatbuff... type TableInNestedNS (line 35) | type TableInNestedNS struct method UnPackTo (line 22) | func (rcv *TableInNestedNS) UnPackTo(t *TableInNestedNST) { method UnPack (line 26) | func (rcv *TableInNestedNS) UnPack() *TableInNestedNST { method Init (line 53) | func (rcv *TableInNestedNS) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 58) | func (rcv *TableInNestedNS) Table() flatbuffers.Table { method Foo (line 62) | func (rcv *TableInNestedNS) Foo() int32 { method MutateFoo (line 70) | func (rcv *TableInNestedNS) MutateFoo(n int32) bool { function GetRootAsTableInNestedNS (line 39) | func GetRootAsTableInNestedNS(buf []byte, offset flatbuffers.UOffsetT) *... function GetSizePrefixedRootAsTableInNestedNS (line 46) | func GetSizePrefixedRootAsTableInNestedNS(buf []byte, offset flatbuffers... function TableInNestedNSStart (line 74) | func TableInNestedNSStart(builder *flatbuffers.Builder) { function TableInNestedNSAddFoo (line 77) | func TableInNestedNSAddFoo(builder *flatbuffers.Builder, foo int32) { function TableInNestedNSEnd (line 80) | func TableInNestedNSEnd(builder *flatbuffers.Builder) flatbuffers.UOffse... FILE: tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNS.java class TableInNestedNS (line 9) | @SuppressWarnings("unused") method ValidateVersion (line 11) | public static void ValidateVersion() { method getRootAsTableInNestedNS (line 15) | public static TableInNestedNS getRootAsTableInNestedNS(ByteBuffer _bb) { method getRootAsTableInNestedNS (line 19) | public static TableInNestedNS getRootAsTableInNestedNS(ByteBuffer _bb,... method __init (line 24) | public void __init(int _i, ByteBuffer _bb) { method __assign (line 28) | public TableInNestedNS __assign(int _i, ByteBuffer _bb) { method foo (line 33) | public int foo() { method mutateFoo (line 38) | public boolean mutateFoo(int foo) { method createTableInNestedNS (line 48) | public static int createTableInNestedNS(FlatBufferBuilder builder, int... method startTableInNestedNS (line 54) | public static void startTableInNestedNS(FlatBufferBuilder builder) { method addFoo (line 58) | public static void addFoo(FlatBufferBuilder builder, int foo) { method endTableInNestedNS (line 62) | public static int endTableInNestedNS(FlatBufferBuilder builder) { class Vector (line 67) | public static final class Vector extends BaseVector { method __assign (line 68) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 73) | public TableInNestedNS get(int j) { method get (line 77) | public TableInNestedNS get(TableInNestedNS obj, int j) { method unpack (line 82) | public TableInNestedNST unpack() { method unpackTo (line 88) | public void unpackTo(TableInNestedNST _o) { method pack (line 93) | public static int pack(FlatBufferBuilder builder, TableInNestedNST _o) { FILE: tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNS.php class TableInNestedNS (line 11) | class TableInNestedNS extends Table method getRootAsTableInNestedNS (line 17) | public static function getRootAsTableInNestedNS(ByteBuffer $bb) method init (line 28) | public function init($_i, ByteBuffer $_bb) method getFoo (line 38) | public function getFoo() method startTableInNestedNS (line 48) | public static function startTableInNestedNS(FlatBufferBuilder $builder) method createTableInNestedNS (line 57) | public static function createTableInNestedNS(FlatBufferBuilder $builde... method addFoo (line 70) | public static function addFoo(FlatBufferBuilder $builder, $foo) method endTableInNestedNS (line 79) | public static function endTableInNestedNS(FlatBufferBuilder $builder) FILE: tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNS.py class TableInNestedNS (line 11) | class TableInNestedNS(object): method GetRootAs (line 15) | def GetRootAs(cls, buf, offset=0): method GetRootAsTableInNestedNS (line 22) | def GetRootAsTableInNestedNS(cls, buf, offset=0): method Init (line 27) | def Init(self, buf, pos): method Foo (line 31) | def Foo(self): function TableInNestedNSStart (line 40) | def TableInNestedNSStart(builder): function Start (line 44) | def Start(builder): function TableInNestedNSAddFoo (line 48) | def TableInNestedNSAddFoo(builder, foo): function AddFoo (line 52) | def AddFoo(builder, foo): function TableInNestedNSEnd (line 56) | def TableInNestedNSEnd(builder): function End (line 60) | def End(builder): class TableInNestedNST (line 64) | class TableInNestedNST(object): method __init__ (line 67) | def __init__(self): method InitFromBuf (line 71) | def InitFromBuf(cls, buf, pos): method InitFromObj (line 77) | def InitFromObj(cls, tableInNestedNS): method _UnPack (line 83) | def _UnPack(self, tableInNestedNS): method Pack (line 89) | def Pack(self, builder): FILE: tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNST.java class TableInNestedNST (line 9) | public class TableInNestedNST { method getFoo (line 12) | public int getFoo() { method setFoo (line 16) | public void setFoo(int foo) { method TableInNestedNST (line 20) | public TableInNestedNST() { FILE: tests/namespace_test/NamespaceA/NamespaceB/UnionInNestedNS.cs type UnionInNestedNS (line 8) | [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringE... class UnionInNestedNSUnion (line 15) | public class UnionInNestedNSUnion { method UnionInNestedNSUnion (line 19) | public UnionInNestedNSUnion() { method As (line 24) | public T As() where T : class { return this.Value as T; } method AsTableInNestedNS (line 25) | public NamespaceA.NamespaceB.TableInNestedNST AsTableInNestedNS() { re... method FromTableInNestedNS (line 26) | public static UnionInNestedNSUnion FromTableInNestedNS(NamespaceA.Name... method Pack (line 28) | public static int Pack(Google.FlatBuffers.FlatBufferBuilder builder, U... class UnionInNestedNSUnion_JsonConverter (line 36) | public class UnionInNestedNSUnion_JsonConverter : Newtonsoft.Json.JsonCo... method CanConvert (line 37) | public override bool CanConvert(System.Type objectType) { method WriteJson (line 40) | public override void WriteJson(Newtonsoft.Json.JsonWriter writer, obje... method WriteJson (line 50) | public void WriteJson(Newtonsoft.Json.JsonWriter writer, UnionInNested... method ReadJson (line 54) | public override object ReadJson(Newtonsoft.Json.JsonReader reader, Sys... method ReadJson (line 67) | public UnionInNestedNSUnion ReadJson(Newtonsoft.Json.JsonReader reader... class UnionInNestedNSVerify (line 79) | static public class UnionInNestedNSVerify method Verify (line 81) | static public bool Verify(Google.FlatBuffers.Verifier verifier, byte t... FILE: tests/namespace_test/NamespaceA/NamespaceB/UnionInNestedNS.go type UnionInNestedNST (line 13) | type UnionInNestedNST struct method Pack (line 18) | func (t *UnionInNestedNST) Pack(builder *flatbuffers.Builder) flatbuff... method UnPack (line 29) | func (rcv UnionInNestedNS) UnPack(table flatbuffers.Table) *UnionInNeste... FILE: tests/namespace_test/NamespaceA/NamespaceB/UnionInNestedNS.java class UnionInNestedNS (line 5) | @SuppressWarnings("unused") method UnionInNestedNS (line 7) | private UnionInNestedNS() {} method name (line 16) | public static String name(int e) { FILE: tests/namespace_test/NamespaceA/NamespaceB/UnionInNestedNS.php class UnionInNestedNS (line 6) | class UnionInNestedNS method Name (line 16) | public static function Name($e) FILE: tests/namespace_test/NamespaceA/NamespaceB/UnionInNestedNS.py class UnionInNestedNS (line 6) | class UnionInNestedNS(object): function UnionInNestedNSCreator (line 11) | def UnionInNestedNSCreator(unionType, table): FILE: tests/namespace_test/NamespaceA/NamespaceB/UnionInNestedNSUnion.java class UnionInNestedNSUnion (line 7) | public class UnionInNestedNSUnion { method getType (line 11) | public byte getType() { method setType (line 15) | public void setType(byte type) { method getValue (line 19) | public Object getValue() { method setValue (line 23) | public void setValue(Object value) { method UnionInNestedNSUnion (line 27) | public UnionInNestedNSUnion() { method asTableInNestedNS (line 32) | public NamespaceA.NamespaceB.TableInNestedNST asTableInNestedNS() { method pack (line 36) | public static int pack(FlatBufferBuilder builder, UnionInNestedNSUnion... FILE: tests/namespace_test/NamespaceA/SecondTableInA.cs type SecondTableInA (line 12) | public struct SecondTableInA : IFlatbufferObject method ValidateVersion (line 16) | public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS... method GetRootAsSecondTableInA (line 17) | public static SecondTableInA GetRootAsSecondTableInA(ByteBuffer _bb) {... method GetRootAsSecondTableInA (line 18) | public static SecondTableInA GetRootAsSecondTableInA(ByteBuffer _bb, S... method __init (line 19) | public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } method __assign (line 20) | public SecondTableInA __assign(int _i, ByteBuffer _bb) { __init(_i, _b... method CreateSecondTableInA (line 24) | public static Offset CreateSecondTableInA(F... method StartSecondTableInA (line 31) | public static void StartSecondTableInA(FlatBufferBuilder builder) { bu... method AddReferToC (line 32) | public static void AddReferToC(FlatBufferBuilder builder, Offset EndSecondTableInA(Flat... method UnPack (line 37) | public SecondTableInAT UnPack() { method UnPackTo (line 42) | public void UnPackTo(SecondTableInAT _o) { method Pack (line 45) | public static Offset Pack(FlatBufferBuilder... class SecondTableInAT (line 54) | public class SecondTableInAT method SecondTableInAT (line 59) | public SecondTableInAT() { class SecondTableInAVerify (line 65) | static public class SecondTableInAVerify method Verify (line 67) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... FILE: tests/namespace_test/NamespaceA/SecondTableInA.go type SecondTableInAT (line 11) | type SecondTableInAT struct method Pack (line 15) | func (t *SecondTableInAT) Pack(builder *flatbuffers.Builder) flatbuffe... type SecondTableInA (line 38) | type SecondTableInA struct method UnPackTo (line 25) | func (rcv *SecondTableInA) UnPackTo(t *SecondTableInAT) { method UnPack (line 29) | func (rcv *SecondTableInA) UnPack() *SecondTableInAT { method Init (line 56) | func (rcv *SecondTableInA) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 61) | func (rcv *SecondTableInA) Table() flatbuffers.Table { method ReferToC (line 65) | func (rcv *SecondTableInA) ReferToC(obj *NamespaceC.TableInC) *Namespa... function GetRootAsSecondTableInA (line 42) | func GetRootAsSecondTableInA(buf []byte, offset flatbuffers.UOffsetT) *S... function GetSizePrefixedRootAsSecondTableInA (line 49) | func GetSizePrefixedRootAsSecondTableInA(buf []byte, offset flatbuffers.... function SecondTableInAStart (line 78) | func SecondTableInAStart(builder *flatbuffers.Builder) { function SecondTableInAAddReferToC (line 81) | func SecondTableInAAddReferToC(builder *flatbuffers.Builder, referToC fl... function SecondTableInAEnd (line 84) | func SecondTableInAEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { FILE: tests/namespace_test/NamespaceA/SecondTableInA.java class SecondTableInA (line 9) | @SuppressWarnings("unused") method ValidateVersion (line 11) | public static void ValidateVersion() { method getRootAsSecondTableInA (line 15) | public static SecondTableInA getRootAsSecondTableInA(ByteBuffer _bb) { method getRootAsSecondTableInA (line 19) | public static SecondTableInA getRootAsSecondTableInA(ByteBuffer _bb, S... method __init (line 24) | public void __init(int _i, ByteBuffer _bb) { method __assign (line 28) | public SecondTableInA __assign(int _i, ByteBuffer _bb) { method referToC (line 33) | public NamespaceC.TableInC referToC() { method referToC (line 37) | public NamespaceC.TableInC referToC(NamespaceC.TableInC obj) { method createSecondTableInA (line 42) | public static int createSecondTableInA(FlatBufferBuilder builder, int ... method startSecondTableInA (line 48) | public static void startSecondTableInA(FlatBufferBuilder builder) { method addReferToC (line 52) | public static void addReferToC(FlatBufferBuilder builder, int referToC... method endSecondTableInA (line 56) | public static int endSecondTableInA(FlatBufferBuilder builder) { class Vector (line 61) | public static final class Vector extends BaseVector { method __assign (line 62) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 67) | public SecondTableInA get(int j) { method get (line 71) | public SecondTableInA get(SecondTableInA obj, int j) { method unpack (line 76) | public SecondTableInAT unpack() { method unpackTo (line 82) | public void unpackTo(SecondTableInAT _o) { method pack (line 87) | public static int pack(FlatBufferBuilder builder, SecondTableInAT _o) { FILE: tests/namespace_test/NamespaceA/SecondTableInA.php class SecondTableInA (line 11) | class SecondTableInA extends Table method getRootAsSecondTableInA (line 17) | public static function getRootAsSecondTableInA(ByteBuffer $bb) method init (line 28) | public function init($_i, ByteBuffer $_bb) method getReferToC (line 35) | public function getReferToC() method startSecondTableInA (line 46) | public static function startSecondTableInA(FlatBufferBuilder $builder) method createSecondTableInA (line 55) | public static function createSecondTableInA(FlatBufferBuilder $builder... method addReferToC (line 68) | public static function addReferToC(FlatBufferBuilder $builder, $referToC) method endSecondTableInA (line 77) | public static function endSecondTableInA(FlatBufferBuilder $builder) FILE: tests/namespace_test/NamespaceA/SecondTableInA.py class SecondTableInA (line 11) | class SecondTableInA(object): method GetRootAs (line 15) | def GetRootAs(cls, buf, offset=0): method GetRootAsSecondTableInA (line 22) | def GetRootAsSecondTableInA(cls, buf, offset=0): method Init (line 27) | def Init(self, buf, pos): method ReferToC (line 31) | def ReferToC(self): function SecondTableInAStart (line 41) | def SecondTableInAStart(builder): function Start (line 45) | def Start(builder): function SecondTableInAAddReferToC (line 49) | def SecondTableInAAddReferToC(builder, referToC): function AddReferToC (line 55) | def AddReferToC(builder, referToC): function SecondTableInAEnd (line 59) | def SecondTableInAEnd(builder): function End (line 63) | def End(builder): class SecondTableInAT (line 73) | class SecondTableInAT(object): method __init__ (line 76) | def __init__(self): method InitFromBuf (line 80) | def InitFromBuf(cls, buf, pos): method InitFromObj (line 86) | def InitFromObj(cls, secondTableInA): method _UnPack (line 92) | def _UnPack(self, secondTableInA): method Pack (line 99) | def Pack(self, builder): FILE: tests/namespace_test/NamespaceA/SecondTableInAT.java class SecondTableInAT (line 9) | public class SecondTableInAT { method getReferToC (line 12) | public NamespaceC.TableInCT getReferToC() { method setReferToC (line 16) | public void setReferToC(NamespaceC.TableInCT referToC) { method SecondTableInAT (line 20) | public SecondTableInAT() { FILE: tests/namespace_test/NamespaceA/TableInC.cs class TableInC (line 9) | public sealed class TableInC : Table { method GetRootAsTableInC (line 10) | public static TableInC GetRootAsTableInC(ByteBuffer _bb) { return GetR... method GetRootAsTableInC (line 11) | public static TableInC GetRootAsTableInC(ByteBuffer _bb, TableInC obj)... method __init (line 12) | public TableInC __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb... method GetReferToA1 (line 15) | public NamespaceA.TableInFirstNS GetReferToA1(NamespaceA.TableInFirstN... method GetReferToA2 (line 17) | public SecondTableInA GetReferToA2(SecondTableInA obj) { int o = __off... method CreateTableInC (line 19) | public static Offset CreateTableInC(FlatBufferBui... method StartTableInC (line 28) | public static void StartTableInC(FlatBufferBuilder builder) { builder.... method AddReferToA1 (line 29) | public static void AddReferToA1(FlatBufferBuilder builder, Offset EndTableInC(FlatBufferBuilde... FILE: tests/namespace_test/NamespaceA/TableInC.go type TableInC (line 9) | type TableInC struct method Init (line 13) | func (rcv *TableInC) Init(buf []byte, i flatbuffers.UOffsetT) { method ReferToA1 (line 18) | func (rcv *TableInC) ReferToA1(obj *TableInFirstNS) *TableInFirstNS { method ReferToA2 (line 31) | func (rcv *TableInC) ReferToA2(obj *SecondTableInA) *SecondTableInA { function TableInCStart (line 44) | func TableInCStart(builder *flatbuffers.Builder) { builder.StartObject(2) } function TableInCAddReferToA1 (line 45) | func TableInCAddReferToA1(builder *flatbuffers.Builder, referToA1 flatbu... function TableInCAddReferToA2 (line 48) | func TableInCAddReferToA2(builder *flatbuffers.Builder, referToA2 flatbu... function TableInCEnd (line 51) | func TableInCEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { re... FILE: tests/namespace_test/NamespaceA/TableInC.php class TableInC (line 11) | class TableInC extends Table method getRootAsTableInC (line 17) | public static function getRootAsTableInC(ByteBuffer $bb) method init (line 28) | public function init($_i, ByteBuffer $_bb) method getReferToA1 (line 35) | public function getReferToA1() method getReferToA2 (line 42) | public function getReferToA2() method startTableInC (line 53) | public static function startTableInC(FlatBufferBuilder $builder) method createTableInC (line 62) | public static function createTableInC(FlatBufferBuilder $builder, $ref... method addReferToA1 (line 76) | public static function addReferToA1(FlatBufferBuilder $builder, $refer... method addReferToA2 (line 86) | public static function addReferToA2(FlatBufferBuilder $builder, $refer... method endTableInC (line 95) | public static function endTableInC(FlatBufferBuilder $builder) FILE: tests/namespace_test/NamespaceA/TableInC.py class TableInC (line 8) | class TableInC(object): method Init (line 12) | def Init(self, buf, pos): method ReferToA1 (line 16) | def ReferToA1(self): method ReferToA2 (line 28) | def ReferToA2(self): function TableInCStart (line 40) | def TableInCStart(builder): function TableInCAddReferToA1 (line 44) | def TableInCAddReferToA1(builder, referToA1): function TableInCAddReferToA2 (line 50) | def TableInCAddReferToA2(builder, referToA2): function TableInCEnd (line 56) | def TableInCEnd(builder): FILE: tests/namespace_test/NamespaceA/TableInFirstNS.cs type TableInFirstNS (line 12) | public struct TableInFirstNS : IFlatbufferObject method ValidateVersion (line 16) | public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS... method GetRootAsTableInFirstNS (line 17) | public static TableInFirstNS GetRootAsTableInFirstNS(ByteBuffer _bb) {... method GetRootAsTableInFirstNS (line 18) | public static TableInFirstNS GetRootAsTableInFirstNS(ByteBuffer _bb, T... method __init (line 19) | public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } method __assign (line 20) | public TableInFirstNS __assign(int _i, ByteBuffer _bb) { __init(_i, _b... method MutateFooEnum (line 24) | public bool MutateFooEnum(NamespaceA.NamespaceB.EnumInNestedNS foo_enu... method FooUnion (line 26) | public TTable? FooUnion() where TTable : struct, IFlatbufferOb... method FooUnionAsTableInNestedNS (line 27) | public NamespaceA.NamespaceB.TableInNestedNS FooUnionAsTableInNestedNS... method CreateTableInFirstNS (line 30) | public static Offset CreateTableInFirstNS(F... method StartTableInFirstNS (line 45) | public static void StartTableInFirstNS(FlatBufferBuilder builder) { bu... method AddFooTable (line 46) | public static void AddFooTable(FlatBufferBuilder builder, Offset EndTableInFirstNS(Flat... method UnPack (line 55) | public TableInFirstNST UnPack() { method UnPackTo (line 60) | public void UnPackTo(TableInFirstNST _o) { method Pack (line 73) | public static Offset Pack(FlatBufferBuilder... class TableInFirstNST (line 88) | public class TableInFirstNST method TableInFirstNST (line 110) | public TableInFirstNST() { class TableInFirstNSVerify (line 119) | static public class TableInFirstNSVerify method Verify (line 121) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... FILE: tests/namespace_test/NamespaceA/TableInFirstNS.go type TableInFirstNST (line 11) | type TableInFirstNST struct method Pack (line 18) | func (t *TableInFirstNST) Pack(builder *flatbuffers.Builder) flatbuffe... type TableInFirstNS (line 56) | type TableInFirstNS struct method UnPackTo (line 37) | func (rcv *TableInFirstNS) UnPackTo(t *TableInFirstNST) { method UnPack (line 47) | func (rcv *TableInFirstNS) UnPack() *TableInFirstNST { method Init (line 74) | func (rcv *TableInFirstNS) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 79) | func (rcv *TableInFirstNS) Table() flatbuffers.Table { method FooTable (line 83) | func (rcv *TableInFirstNS) FooTable(obj *NamespaceA__NamespaceB.TableI... method FooEnum (line 96) | func (rcv *TableInFirstNS) FooEnum() NamespaceA__NamespaceB.EnumInNest... method MutateFooEnum (line 104) | func (rcv *TableInFirstNS) MutateFooEnum(n NamespaceA__NamespaceB.Enum... method FooUnionType (line 108) | func (rcv *TableInFirstNS) FooUnionType() NamespaceA__NamespaceB.Union... method MutateFooUnionType (line 116) | func (rcv *TableInFirstNS) MutateFooUnionType(n NamespaceA__NamespaceB... method FooUnion (line 120) | func (rcv *TableInFirstNS) FooUnion(obj *flatbuffers.Table) bool { method FooStruct (line 129) | func (rcv *TableInFirstNS) FooStruct(obj *NamespaceA__NamespaceB.Struc... function GetRootAsTableInFirstNS (line 60) | func GetRootAsTableInFirstNS(buf []byte, offset flatbuffers.UOffsetT) *T... function GetSizePrefixedRootAsTableInFirstNS (line 67) | func GetSizePrefixedRootAsTableInFirstNS(buf []byte, offset flatbuffers.... function TableInFirstNSStart (line 142) | func TableInFirstNSStart(builder *flatbuffers.Builder) { function TableInFirstNSAddFooTable (line 145) | func TableInFirstNSAddFooTable(builder *flatbuffers.Builder, fooTable fl... function TableInFirstNSAddFooEnum (line 148) | func TableInFirstNSAddFooEnum(builder *flatbuffers.Builder, fooEnum Name... function TableInFirstNSAddFooUnionType (line 151) | func TableInFirstNSAddFooUnionType(builder *flatbuffers.Builder, fooUnio... function TableInFirstNSAddFooUnion (line 154) | func TableInFirstNSAddFooUnion(builder *flatbuffers.Builder, fooUnion fl... function TableInFirstNSAddFooStruct (line 157) | func TableInFirstNSAddFooStruct(builder *flatbuffers.Builder, fooStruct ... function TableInFirstNSEnd (line 160) | func TableInFirstNSEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { FILE: tests/namespace_test/NamespaceA/TableInFirstNS.java class TableInFirstNS (line 9) | @SuppressWarnings("unused") method ValidateVersion (line 11) | public static void ValidateVersion() { method getRootAsTableInFirstNS (line 15) | public static TableInFirstNS getRootAsTableInFirstNS(ByteBuffer _bb) { method getRootAsTableInFirstNS (line 19) | public static TableInFirstNS getRootAsTableInFirstNS(ByteBuffer _bb, T... method __init (line 24) | public void __init(int _i, ByteBuffer _bb) { method __assign (line 28) | public TableInFirstNS __assign(int _i, ByteBuffer _bb) { method fooTable (line 33) | public NamespaceA.NamespaceB.TableInNestedNS fooTable() { method fooTable (line 37) | public NamespaceA.NamespaceB.TableInNestedNS fooTable(NamespaceA.Names... method fooEnum (line 42) | public byte fooEnum() { method mutateFooEnum (line 47) | public boolean mutateFooEnum(byte foo_enum) { method fooUnionType (line 57) | public byte fooUnionType() { method fooUnion (line 62) | public Table fooUnion(Table obj) { method fooStruct (line 67) | public NamespaceA.NamespaceB.StructInNestedNS fooStruct() { method fooStruct (line 71) | public NamespaceA.NamespaceB.StructInNestedNS fooStruct( method startTableInFirstNS (line 77) | public static void startTableInFirstNS(FlatBufferBuilder builder) { method addFooTable (line 81) | public static void addFooTable(FlatBufferBuilder builder, int fooTable... method addFooEnum (line 85) | public static void addFooEnum(FlatBufferBuilder builder, byte fooEnum) { method addFooUnionType (line 89) | public static void addFooUnionType(FlatBufferBuilder builder, byte foo... method addFooUnion (line 93) | public static void addFooUnion(FlatBufferBuilder builder, int fooUnion... method addFooStruct (line 97) | public static void addFooStruct(FlatBufferBuilder builder, int fooStru... method endTableInFirstNS (line 101) | public static int endTableInFirstNS(FlatBufferBuilder builder) { class Vector (line 106) | public static final class Vector extends BaseVector { method __assign (line 107) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 112) | public TableInFirstNS get(int j) { method get (line 116) | public TableInFirstNS get(TableInFirstNS obj, int j) { method unpack (line 121) | public TableInFirstNST unpack() { method unpackTo (line 127) | public void unpackTo(TableInFirstNST _o) { method pack (line 153) | public static int pack(FlatBufferBuilder builder, TableInFirstNST _o) { FILE: tests/namespace_test/NamespaceA/TableInFirstNS.php class TableInFirstNS (line 11) | class TableInFirstNS extends Table method getRootAsTableInFirstNS (line 17) | public static function getRootAsTableInFirstNS(ByteBuffer $bb) method init (line 28) | public function init($_i, ByteBuffer $_bb) method getFooTable (line 35) | public function getFooTable() method getFooEnum (line 45) | public function getFooEnum() method getFooUnionType (line 54) | public function getFooUnionType() method getFooUnion (line 63) | public function getFooUnion($obj) method getFooStruct (line 69) | public function getFooStruct() method startTableInFirstNS (line 80) | public static function startTableInFirstNS(FlatBufferBuilder $builder) method createTableInFirstNS (line 89) | public static function createTableInFirstNS(FlatBufferBuilder $builder... method addFooTable (line 106) | public static function addFooTable(FlatBufferBuilder $builder, $fooTable) method addFooEnum (line 116) | public static function addFooEnum(FlatBufferBuilder $builder, $fooEnum) method addFooUnionType (line 126) | public static function addFooUnionType(FlatBufferBuilder $builder, $fo... method addFooUnion (line 131) | public static function addFooUnion(FlatBufferBuilder $builder, $offset) method addFooStruct (line 141) | public static function addFooStruct(FlatBufferBuilder $builder, $fooSt... method endTableInFirstNS (line 150) | public static function endTableInFirstNS(FlatBufferBuilder $builder) FILE: tests/namespace_test/NamespaceA/TableInFirstNS.py class TableInFirstNS (line 11) | class TableInFirstNS(object): method GetRootAs (line 15) | def GetRootAs(cls, buf, offset=0): method GetRootAsTableInFirstNS (line 22) | def GetRootAsTableInFirstNS(cls, buf, offset=0): method Init (line 27) | def Init(self, buf, pos): method FooTable (line 31) | def FooTable(self): method FooEnum (line 41) | def FooEnum(self): method FooUnionType (line 50) | def FooUnionType(self): method FooUnion (line 59) | def FooUnion(self): method FooStruct (line 70) | def FooStruct(self): function TableInFirstNSStart (line 80) | def TableInFirstNSStart(builder): function Start (line 84) | def Start(builder): function TableInFirstNSAddFooTable (line 88) | def TableInFirstNSAddFooTable(builder, fooTable): function AddFooTable (line 94) | def AddFooTable(builder, fooTable): function TableInFirstNSAddFooEnum (line 98) | def TableInFirstNSAddFooEnum(builder, fooEnum): function AddFooEnum (line 102) | def AddFooEnum(builder, fooEnum): function TableInFirstNSAddFooUnionType (line 106) | def TableInFirstNSAddFooUnionType(builder, fooUnionType): function AddFooUnionType (line 110) | def AddFooUnionType(builder, fooUnionType): function TableInFirstNSAddFooUnion (line 114) | def TableInFirstNSAddFooUnion(builder, fooUnion): function AddFooUnion (line 120) | def AddFooUnion(builder, fooUnion): function TableInFirstNSAddFooStruct (line 124) | def TableInFirstNSAddFooStruct(builder, fooStruct): function AddFooStruct (line 130) | def AddFooStruct(builder, fooStruct): function TableInFirstNSEnd (line 134) | def TableInFirstNSEnd(builder): function End (line 138) | def End(builder): class TableInFirstNST (line 148) | class TableInFirstNST(object): method __init__ (line 151) | def __init__(self): method InitFromBuf (line 159) | def InitFromBuf(cls, buf, pos): method InitFromObj (line 165) | def InitFromObj(cls, tableInFirstNS): method _UnPack (line 171) | def _UnPack(self, tableInFirstNS): method Pack (line 185) | def Pack(self, builder): FILE: tests/namespace_test/NamespaceA/TableInFirstNST.java class TableInFirstNST (line 9) | public class TableInFirstNST { method getFooTable (line 15) | public NamespaceA.NamespaceB.TableInNestedNST getFooTable() { method setFooTable (line 19) | public void setFooTable(NamespaceA.NamespaceB.TableInNestedNST fooTabl... method getFooEnum (line 23) | public byte getFooEnum() { method setFooEnum (line 27) | public void setFooEnum(byte fooEnum) { method getFooUnion (line 31) | public NamespaceA.NamespaceB.UnionInNestedNSUnion getFooUnion() { method setFooUnion (line 35) | public void setFooUnion(NamespaceA.NamespaceB.UnionInNestedNSUnion foo... method getFooStruct (line 39) | public NamespaceA.NamespaceB.StructInNestedNST getFooStruct() { method setFooStruct (line 43) | public void setFooStruct(NamespaceA.NamespaceB.StructInNestedNST fooSt... method TableInFirstNST (line 47) | public TableInFirstNST() { FILE: tests/namespace_test/NamespaceC/TableInC.cs type TableInC (line 12) | public struct TableInC : IFlatbufferObject method ValidateVersion (line 16) | public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS... method GetRootAsTableInC (line 17) | public static TableInC GetRootAsTableInC(ByteBuffer _bb) { return GetR... method GetRootAsTableInC (line 18) | public static TableInC GetRootAsTableInC(ByteBuffer _bb, TableInC obj)... method __init (line 19) | public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } method __assign (line 20) | public TableInC __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); re... method CreateTableInC (line 25) | public static Offset CreateTableInC(FlatBufferBui... method StartTableInC (line 34) | public static void StartTableInC(FlatBufferBuilder builder) { builder.... method AddReferToA1 (line 35) | public static void AddReferToA1(FlatBufferBuilder builder, Offset EndTableInC(FlatBufferBuilde... method UnPack (line 41) | public TableInCT UnPack() { method UnPackTo (line 46) | public void UnPackTo(TableInCT _o) { method Pack (line 50) | public static Offset Pack(FlatBufferBuilder build... class TableInCT (line 61) | public class TableInCT method TableInCT (line 68) | public TableInCT() { class TableInCVerify (line 75) | static public class TableInCVerify method Verify (line 77) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... FILE: tests/namespace_test/NamespaceC/TableInC.go type TableInCT (line 11) | type TableInCT struct method Pack (line 16) | func (t *TableInCT) Pack(builder *flatbuffers.Builder) flatbuffers.UOf... type TableInC (line 42) | type TableInC struct method UnPackTo (line 28) | func (rcv *TableInC) UnPackTo(t *TableInCT) { method UnPack (line 33) | func (rcv *TableInC) UnPack() *TableInCT { method Init (line 60) | func (rcv *TableInC) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 65) | func (rcv *TableInC) Table() flatbuffers.Table { method ReferToA1 (line 69) | func (rcv *TableInC) ReferToA1(obj *NamespaceA.TableInFirstNS) *Namesp... method ReferToA2 (line 82) | func (rcv *TableInC) ReferToA2(obj *NamespaceA.SecondTableInA) *Namesp... function GetRootAsTableInC (line 46) | func GetRootAsTableInC(buf []byte, offset flatbuffers.UOffsetT) *TableInC { function GetSizePrefixedRootAsTableInC (line 53) | func GetSizePrefixedRootAsTableInC(buf []byte, offset flatbuffers.UOffse... function TableInCStart (line 95) | func TableInCStart(builder *flatbuffers.Builder) { function TableInCAddReferToA1 (line 98) | func TableInCAddReferToA1(builder *flatbuffers.Builder, referToA1 flatbu... function TableInCAddReferToA2 (line 101) | func TableInCAddReferToA2(builder *flatbuffers.Builder, referToA2 flatbu... function TableInCEnd (line 104) | func TableInCEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { FILE: tests/namespace_test/NamespaceC/TableInC.java class TableInC (line 9) | @SuppressWarnings("unused") method ValidateVersion (line 11) | public static void ValidateVersion() { method getRootAsTableInC (line 15) | public static TableInC getRootAsTableInC(ByteBuffer _bb) { method getRootAsTableInC (line 19) | public static TableInC getRootAsTableInC(ByteBuffer _bb, TableInC obj) { method __init (line 24) | public void __init(int _i, ByteBuffer _bb) { method __assign (line 28) | public TableInC __assign(int _i, ByteBuffer _bb) { method referToA1 (line 33) | public NamespaceA.TableInFirstNS referToA1() { method referToA1 (line 37) | public NamespaceA.TableInFirstNS referToA1(NamespaceA.TableInFirstNS o... method referToA2 (line 42) | public NamespaceA.SecondTableInA referToA2() { method referToA2 (line 46) | public NamespaceA.SecondTableInA referToA2(NamespaceA.SecondTableInA o... method createTableInC (line 51) | public static int createTableInC( method startTableInC (line 59) | public static void startTableInC(FlatBufferBuilder builder) { method addReferToA1 (line 63) | public static void addReferToA1(FlatBufferBuilder builder, int referTo... method addReferToA2 (line 67) | public static void addReferToA2(FlatBufferBuilder builder, int referTo... method endTableInC (line 71) | public static int endTableInC(FlatBufferBuilder builder) { class Vector (line 76) | public static final class Vector extends BaseVector { method __assign (line 77) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 82) | public TableInC get(int j) { method get (line 86) | public TableInC get(TableInC obj, int j) { method unpack (line 91) | public TableInCT unpack() { method unpackTo (line 97) | public void unpackTo(TableInCT _o) { method pack (line 104) | public static int pack(FlatBufferBuilder builder, TableInCT _o) { FILE: tests/namespace_test/NamespaceC/TableInC.php class TableInC (line 11) | class TableInC extends Table method getRootAsTableInC (line 17) | public static function getRootAsTableInC(ByteBuffer $bb) method init (line 28) | public function init($_i, ByteBuffer $_bb) method getReferToA1 (line 35) | public function getReferToA1() method getReferToA2 (line 42) | public function getReferToA2() method startTableInC (line 53) | public static function startTableInC(FlatBufferBuilder $builder) method createTableInC (line 62) | public static function createTableInC(FlatBufferBuilder $builder, $ref... method addReferToA1 (line 76) | public static function addReferToA1(FlatBufferBuilder $builder, $refer... method addReferToA2 (line 86) | public static function addReferToA2(FlatBufferBuilder $builder, $refer... method endTableInC (line 95) | public static function endTableInC(FlatBufferBuilder $builder) FILE: tests/namespace_test/NamespaceC/TableInC.py class TableInC (line 11) | class TableInC(object): method GetRootAs (line 15) | def GetRootAs(cls, buf, offset=0): method GetRootAsTableInC (line 22) | def GetRootAsTableInC(cls, buf, offset=0): method Init (line 27) | def Init(self, buf, pos): method ReferToA1 (line 31) | def ReferToA1(self): method ReferToA2 (line 41) | def ReferToA2(self): function TableInCStart (line 51) | def TableInCStart(builder): function Start (line 55) | def Start(builder): function TableInCAddReferToA1 (line 59) | def TableInCAddReferToA1(builder, referToA1): function AddReferToA1 (line 65) | def AddReferToA1(builder, referToA1): function TableInCAddReferToA2 (line 69) | def TableInCAddReferToA2(builder, referToA2): function AddReferToA2 (line 75) | def AddReferToA2(builder, referToA2): function TableInCEnd (line 79) | def TableInCEnd(builder): function End (line 83) | def End(builder): class TableInCT (line 93) | class TableInCT(object): method __init__ (line 96) | def __init__(self): method InitFromBuf (line 101) | def InitFromBuf(cls, buf, pos): method InitFromObj (line 107) | def InitFromObj(cls, tableInC): method _UnPack (line 113) | def _UnPack(self, tableInC): method Pack (line 122) | def Pack(self, builder): FILE: tests/namespace_test/NamespaceC/TableInCT.java class TableInCT (line 9) | public class TableInCT { method getReferToA1 (line 13) | public NamespaceA.TableInFirstNST getReferToA1() { method setReferToA1 (line 17) | public void setReferToA1(NamespaceA.TableInFirstNST referToA1) { method getReferToA2 (line 21) | public NamespaceA.SecondTableInAT getReferToA2() { method setReferToA2 (line 25) | public void setReferToA2(NamespaceA.SecondTableInAT referToA2) { method TableInCT (line 29) | public TableInCT() { FILE: tests/namespace_test/namespace_a/namespace_b/enum_in_nested_ns_generated.rs constant ENUM_MIN_ENUM_IN_NESTED_NS (line 7) | pub const ENUM_MIN_ENUM_IN_NESTED_NS: i8 = 0; constant ENUM_MAX_ENUM_IN_NESTED_NS (line 10) | pub const ENUM_MAX_ENUM_IN_NESTED_NS: i8 = 2; constant ENUM_VALUES_ENUM_IN_NESTED_NS (line 14) | pub const ENUM_VALUES_ENUM_IN_NESTED_NS: [EnumInNestedNS; 3] = [ type EnumInNestedNS (line 22) | pub struct EnumInNestedNS(pub i8); constant A (line 26) | pub const A: Self = Self(0); constant B (line 27) | pub const B: Self = Self(1); constant C (line 28) | pub const C: Self = Self(2); constant ENUM_MIN (line 30) | pub const ENUM_MIN: i8 = 0; constant ENUM_MAX (line 31) | pub const ENUM_MAX: i8 = 2; constant ENUM_VALUES (line 32) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 39) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 50) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 60) | type Inner = Self; method follow (line 63) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 70) | type Output = EnumInNestedNS; method push (line 73) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 79) | type Scalar = i8; method to_little_endian (line 82) | fn to_little_endian(self) -> i8 { method from_little_endian (line 88) | fn from_little_endian(v: i8) -> Self { method run_verifier (line 96) | fn run_verifier( FILE: tests/namespace_test/namespace_a/namespace_b/struct_in_nested_ns_generated.rs type StructInNestedNS (line 9) | pub struct StructInNestedNS(pub [u8; 8]); method fmt (line 18) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 29) | type Inner = &'a StructInNestedNS; method follow (line 32) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 47) | type Output = StructInNestedNS; method push (line 50) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 56) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 63) | fn run_verifier( method new (line 72) | pub fn new( method get_fully_qualified_name (line 82) | pub const fn get_fully_qualified_name() -> &'static str { method a (line 86) | pub fn a(&self) -> i32 { method set_a (line 101) | pub fn set_a(&mut self, x: i32) { method b (line 115) | pub fn b(&self) -> i32 { method set_b (line 130) | pub fn set_b(&mut self, x: i32) { method unpack (line 144) | pub fn unpack(&self) -> StructInNestedNST { method default (line 12) | fn default() -> Self { type Inner (line 38) | type Inner = &'a StructInNestedNS; function follow (line 41) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type StructInNestedNST (line 153) | pub struct StructInNestedNST { method pack (line 167) | pub fn pack(&self) -> StructInNestedNS { method default (line 158) | fn default() -> Self { FILE: tests/namespace_test/namespace_a/namespace_b/table_in_nested_ns_generated.rs type TableInNestedNSOffset (line 6) | pub enum TableInNestedNSOffset {} type TableInNestedNS (line 9) | pub struct TableInNestedNS<'a> { type Inner (line 14) | type Inner = TableInNestedNS<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_FOO (line 23) | pub const VT_FOO: ::flatbuffers::VOffsetT = 4; function get_fully_qualified_name (line 25) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 30) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 35) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 44) | pub fn unpack(&self) -> TableInNestedNST { function foo (line 52) | pub fn foo(&self) -> i32 { function run_verifier (line 62) | fn run_verifier( type TableInNestedNSArgs (line 72) | pub struct TableInNestedNSArgs { method default (line 78) | fn default() -> Self { type TableInNestedNSBuilder (line 85) | pub struct TableInNestedNSBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocato... function add_foo (line 92) | pub fn add_foo(&mut self, foo: i32) { function new (line 97) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Tab... function finish (line 106) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 113) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type TableInNestedNST (line 122) | pub struct TableInNestedNST { method pack (line 135) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 127) | fn default() -> Self { FILE: tests/namespace_test/namespace_a/namespace_b/union_in_nested_ns_generated.rs constant ENUM_MIN_UNION_IN_NESTED_NS (line 7) | pub const ENUM_MIN_UNION_IN_NESTED_NS: u8 = 0; constant ENUM_MAX_UNION_IN_NESTED_NS (line 10) | pub const ENUM_MAX_UNION_IN_NESTED_NS: u8 = 1; constant ENUM_VALUES_UNION_IN_NESTED_NS (line 14) | pub const ENUM_VALUES_UNION_IN_NESTED_NS: [UnionInNestedNS; 2] = [ type UnionInNestedNS (line 21) | pub struct UnionInNestedNS(pub u8); constant NONE (line 25) | pub const NONE: Self = Self(0); constant TableInNestedNS (line 26) | pub const TableInNestedNS: Self = Self(1); constant ENUM_MIN (line 28) | pub const ENUM_MIN: u8 = 0; constant ENUM_MAX (line 29) | pub const ENUM_MAX: u8 = 1; constant ENUM_VALUES (line 30) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 36) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 46) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 56) | type Inner = Self; method follow (line 59) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 66) | type Output = UnionInNestedNS; method push (line 69) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 75) | type Scalar = u8; method to_little_endian (line 78) | fn to_little_endian(self) -> u8 { method from_little_endian (line 84) | fn from_little_endian(v: u8) -> Self { method run_verifier (line 92) | fn run_verifier( type UnionInNestedNSUnionTableOffset (line 101) | pub struct UnionInNestedNSUnionTableOffset {} type UnionInNestedNST (line 106) | pub enum UnionInNestedNST { method union_in_nested_ns_type (line 118) | pub fn union_in_nested_ns_type(&self) -> UnionInNestedNS { method pack (line 125) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>(&self, fbb: &mut ::f... method take_table_in_nested_ns (line 133) | pub fn take_table_in_nested_ns(&mut self) -> Option Option<&TableInNestedNST> { method as_table_in_nested_ns_mut (line 152) | pub fn as_table_in_nested_ns_mut(&mut self) -> Option<&mut TableInNest... method default (line 112) | fn default() -> Self { FILE: tests/namespace_test/namespace_a/second_table_in_a_generated.rs type SecondTableInAOffset (line 6) | pub enum SecondTableInAOffset {} type SecondTableInA (line 9) | pub struct SecondTableInA<'a> { type Inner (line 14) | type Inner = SecondTableInA<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_REFER_TO_C (line 23) | pub const VT_REFER_TO_C: ::flatbuffers::VOffsetT = 4; function get_fully_qualified_name (line 25) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 30) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 35) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 44) | pub fn unpack(&self) -> SecondTableInAT { function refer_to_c (line 54) | pub fn refer_to_c(&self) -> Option> { function run_verifier (line 64) | fn run_verifier( type SecondTableInAArgs (line 74) | pub struct SecondTableInAArgs<'a> { method default (line 80) | fn default() -> Self { type SecondTableInABuilder (line 87) | pub struct SecondTableInABuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator... function add_refer_to_c (line 94) | pub fn add_refer_to_c(&mut self, refer_to_c: ::flatbuffers::WIPOffset) -> Sec... function finish (line 108) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 115) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type SecondTableInAT (line 124) | pub struct SecondTableInAT { method pack (line 137) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 129) | fn default() -> Self { FILE: tests/namespace_test/namespace_a/table_in_first_ns_generated.rs type TableInFirstNSOffset (line 6) | pub enum TableInFirstNSOffset {} type TableInFirstNS (line 9) | pub struct TableInFirstNS<'a> { type Inner (line 14) | type Inner = TableInFirstNS<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_FOO_TABLE (line 23) | pub const VT_FOO_TABLE: ::flatbuffers::VOffsetT = 4; constant VT_FOO_ENUM (line 24) | pub const VT_FOO_ENUM: ::flatbuffers::VOffsetT = 6; constant VT_FOO_UNION_TYPE (line 25) | pub const VT_FOO_UNION_TYPE: ::flatbuffers::VOffsetT = 8; constant VT_FOO_UNION (line 26) | pub const VT_FOO_UNION: ::flatbuffers::VOffsetT = 10; constant VT_FOO_STRUCT (line 27) | pub const VT_FOO_STRUCT: ::flatbuffers::VOffsetT = 12; function get_fully_qualified_name (line 29) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 34) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 39) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 52) | pub fn unpack(&self) -> TableInFirstNST { function foo_table (line 78) | pub fn foo_table(&self) -> Option> { function foo_enum (line 86) | pub fn foo_enum(&self) -> namespace_b::EnumInNestedNS { function foo_union_type (line 94) | pub fn foo_union_type(&self) -> namespace_b::UnionInNestedNS { function foo_union (line 102) | pub fn foo_union(&self) -> Option<::flatbuffers::Table<'a>> { function foo_struct (line 110) | pub fn foo_struct(&self) -> Option<&'a namespace_b::StructInNestedNS> { function foo_union_as_table_in_nested_ns (line 119) | pub fn foo_union_as_table_in_nested_ns(&self) -> Option { method default (line 163) | fn default() -> Self { type TableInFirstNSBuilder (line 174) | pub struct TableInFirstNSBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator... function add_foo_table (line 181) | pub fn add_foo_table(&mut self, foo_table: ::flatbuffers::WIPOffset) -> Tab... function finish (line 215) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 222) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type TableInFirstNST (line 247) | pub struct TableInFirstNST { method pack (line 266) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 255) | fn default() -> Self { FILE: tests/namespace_test/namespace_c/table_in_c_generated.rs type TableInCOffset (line 6) | pub enum TableInCOffset {} type TableInC (line 9) | pub struct TableInC<'a> { type Inner (line 14) | type Inner = TableInC<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_REFER_TO_A1 (line 23) | pub const VT_REFER_TO_A1: ::flatbuffers::VOffsetT = 4; constant VT_REFER_TO_A2 (line 24) | pub const VT_REFER_TO_A2: ::flatbuffers::VOffsetT = 6; function get_fully_qualified_name (line 26) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 31) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 36) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 46) | pub fn unpack(&self) -> TableInCT { function refer_to_a1 (line 60) | pub fn refer_to_a1(&self) -> Option Option { method default (line 96) | fn default() -> Self { type TableInCBuilder (line 104) | pub struct TableInCBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function add_refer_to_a1 (line 111) | pub fn add_refer_to_a1(&mut self, refer_to_a1: ::flatbuffers::WIPOffset<... function add_refer_to_a2 (line 116) | pub fn add_refer_to_a2(&mut self, refer_to_a2: ::flatbuffers::WIPOffset<... function new (line 121) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Tab... function finish (line 130) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 137) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type TableInCT (line 147) | pub struct TableInCT { method pack (line 162) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 153) | fn default() -> Self { FILE: tests/namespace_test/namespace_test1_namespace_a.namespace_b_generated.dart class UnionInNestedNSTypeId (line 10) | class UnionInNestedNSTypeId { method _createOrNull (line 24) | UnionInNestedNSTypeId? _createOrNull(int? value) method containsValue (line 29) | bool containsValue(int value) method toString (line 44) | String toString() class _UnionInNestedNSTypeIdReader (line 49) | class _UnionInNestedNSTypeIdReader extends fb.Reader { method read (line 99) | EnumInNestedNS read(fb.BufferContext bc, int offset) class TableInNestedNS (line 103) | class TableInNestedNS { method toString (line 118) | String toString() method unpack (line 122) | TableInNestedNST unpack() method pack (line 124) | int pack(fb.Builder fbBuilder, TableInNestedNST? object) class TableInNestedNST (line 130) | class TableInNestedNST implements fb.Packable { method pack (line 136) | int pack(fb.Builder fbBuilder) method toString (line 143) | String toString() class _TableInNestedNSReader (line 148) | class _TableInNestedNSReader extends fb.TableReader { method createObject (line 152) | TableInNestedNS createObject(fb.BufferContext bc, int offset) class TableInNestedNSBuilder (line 156) | class TableInNestedNSBuilder { method begin (line 161) | void begin() method addFoo (line 165) | int addFoo(int? foo) method finish (line 170) | int finish() class TableInNestedNSObjectBuilder (line 175) | class TableInNestedNSObjectBuilder extends fb.ObjectBuilder { method finish (line 182) | int finish(fb.Builder fbBuilder) method toBytes (line 190) | Uint8List toBytes([String? fileIdentifier]) class StructInNestedNS (line 197) | class StructInNestedNS { method toString (line 209) | String toString() method unpack (line 213) | StructInNestedNST unpack() method pack (line 215) | int pack(fb.Builder fbBuilder, StructInNestedNST? object) class StructInNestedNST (line 221) | class StructInNestedNST implements fb.Packable { method pack (line 228) | int pack(fb.Builder fbBuilder) method toString (line 235) | String toString() class _StructInNestedNSReader (line 240) | class _StructInNestedNSReader extends fb.StructReader { method createObject (line 247) | StructInNestedNS createObject(fb.BufferContext bc, int offset) class StructInNestedNSBuilder (line 251) | class StructInNestedNSBuilder { method finish (line 256) | int finish(int a, int b) class StructInNestedNSObjectBuilder (line 263) | class StructInNestedNSObjectBuilder extends fb.ObjectBuilder { method finish (line 273) | int finish(fb.Builder fbBuilder) method toBytes (line 281) | Uint8List toBytes([String? fileIdentifier]) FILE: tests/namespace_test/namespace_test2_namespace_a_generated.dart class TableInFirstNS (line 12) | class TableInFirstNS { method toString (line 54) | String toString() method unpack (line 58) | TableInFirstNST unpack() method pack (line 66) | int pack(fb.Builder fbBuilder, TableInFirstNST? object) class TableInFirstNST (line 72) | class TableInFirstNST implements fb.Packable { method pack (line 88) | int pack(fb.Builder fbBuilder) method toString (line 103) | String toString() class _TableInFirstNSReader (line 108) | class _TableInFirstNSReader extends fb.TableReader { method createObject (line 112) | TableInFirstNS createObject(fb.BufferContext bc, int offset) class TableInFirstNSBuilder (line 116) | class TableInFirstNSBuilder { method begin (line 121) | void begin() method addFooTableOffset (line 125) | int addFooTableOffset(int? offset) method addFooEnum (line 130) | int addFooEnum(EnumInNestedNS? fooEnum) method addFooUnionType (line 135) | int addFooUnionType(UnionInNestedNSTypeId? fooUnionType) method addFooUnionOffset (line 140) | int addFooUnionOffset(int? offset) method addFooStruct (line 145) | int addFooStruct(int offset) method finish (line 150) | int finish() class TableInFirstNSObjectBuilder (line 155) | class TableInFirstNSObjectBuilder extends fb.ObjectBuilder { method finish (line 176) | int finish(fb.Builder fbBuilder) method toBytes (line 192) | Uint8List toBytes([String? fileIdentifier]) class SecondTableInA (line 199) | class SecondTableInA { method toString (line 215) | String toString() method unpack (line 219) | SecondTableInAT unpack() method pack (line 221) | int pack(fb.Builder fbBuilder, SecondTableInAT? object) class SecondTableInAT (line 227) | class SecondTableInAT implements fb.Packable { method pack (line 233) | int pack(fb.Builder fbBuilder) method toString (line 241) | String toString() class _SecondTableInAReader (line 246) | class _SecondTableInAReader extends fb.TableReader { method createObject (line 250) | SecondTableInA createObject(fb.BufferContext bc, int offset) class SecondTableInABuilder (line 254) | class SecondTableInABuilder { method begin (line 259) | void begin() method addReferToCOffset (line 263) | int addReferToCOffset(int? offset) method finish (line 268) | int finish() class SecondTableInAObjectBuilder (line 273) | class SecondTableInAObjectBuilder extends fb.ObjectBuilder { method finish (line 281) | int finish(fb.Builder fbBuilder) method toBytes (line 290) | Uint8List toBytes([String? fileIdentifier]) FILE: tests/namespace_test/namespace_test2_namespace_c_generated.dart class TableInC (line 12) | class TableInC { method toString (line 30) | String toString() method unpack (line 34) | TableInCT unpack() method pack (line 37) | int pack(fb.Builder fbBuilder, TableInCT? object) class TableInCT (line 43) | class TableInCT implements fb.Packable { method pack (line 50) | int pack(fb.Builder fbBuilder) method toString (line 60) | String toString() class _TableInCReader (line 65) | class _TableInCReader extends fb.TableReader { method createObject (line 69) | TableInC createObject(fb.BufferContext bc, int offset) class TableInCBuilder (line 73) | class TableInCBuilder { method begin (line 78) | void begin() method addReferToA1Offset (line 82) | int addReferToA1Offset(int? offset) method addReferToA2Offset (line 87) | int addReferToA2Offset(int? offset) method finish (line 92) | int finish() class TableInCObjectBuilder (line 97) | class TableInCObjectBuilder extends fb.ObjectBuilder { method finish (line 109) | int finish(fb.Builder fbBuilder) method toBytes (line 120) | Uint8List toBytes([String? fileIdentifier]) FILE: tests/native_type_test_impl.cpp type flatbuffers (line 5) | namespace flatbuffers { function Pack (line 6) | Geometry::Vector3D Pack(const Native::Vector3D& obj) { function UnPack (line 10) | const Native::Vector3D UnPack(const Geometry::Vector3D& obj) { function PackVector3DAlt (line 14) | Geometry::Vector3DAlt PackVector3DAlt(const Native::Vector3D& obj) { function UnPackVector3DAlt (line 18) | const Native::Vector3D UnPackVector3DAlt(const Geometry::Vector3DAlt& ... type Geometry (line 23) | namespace Geometry { FILE: tests/native_type_test_impl.h function namespace (line 6) | namespace Native { type Matrix (line 28) | struct Matrix { function namespace (line 48) | namespace Geometry { function namespace (line 53) | namespace flatbuffers { FILE: tests/nested_namespace_test/nested_namespace_test1_generated.cs type Color (line 12) | [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringE... FILE: tests/nested_namespace_test/nested_namespace_test2_generated.cs type Color (line 12) | [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringE... FILE: tests/nested_namespace_test/nested_namespace_test3_generated.cs type ColorTestTable (line 12) | public struct ColorTestTable : IFlatbufferObject method ValidateVersion (line 16) | public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS... method GetRootAsColorTestTable (line 17) | public static ColorTestTable GetRootAsColorTestTable(ByteBuffer _bb) {... method GetRootAsColorTestTable (line 18) | public static ColorTestTable GetRootAsColorTestTable(ByteBuffer _bb, C... method __init (line 19) | public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } method __assign (line 20) | public ColorTestTable __assign(int _i, ByteBuffer _bb) { __init(_i, _b... method MutateColor (line 23) | public bool MutateColor(global::NamespaceB.Color color) { int o = __p.... method CreateColorTestTable (line 25) | public static Offset Cre... method StartColorTestTable (line 32) | public static void StartColorTestTable(FlatBufferBuilder builder) { bu... method AddColor (line 33) | public static void AddColor(FlatBufferBuilder builder, global::Namespa... method EndColorTestTable (line 34) | public static Offset End... method UnPack (line 38) | public ColorTestTableT UnPack() { method UnPackTo (line 43) | public void UnPackTo(ColorTestTableT _o) { method Pack (line 46) | public static Offset Pac... class ColorTestTableT (line 54) | public class ColorTestTableT method ColorTestTableT (line 59) | public ColorTestTableT() { class ColorTestTableVerify (line 65) | static public class ColorTestTableVerify method Verify (line 67) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... FILE: tests/nim/testnim.py function main (line 11) | def main(): FILE: tests/optional_scalars/OptionalByte.cs type OptionalByte (line 8) | public enum OptionalByte : sbyte FILE: tests/optional_scalars/OptionalByte.go type OptionalByte (line 7) | type OptionalByte method String (line 27) | func (v OptionalByte) String() string { constant OptionalByteNone (line 10) | OptionalByteNone OptionalByte = 0 constant OptionalByteOne (line 11) | OptionalByteOne OptionalByte = 1 constant OptionalByteTwo (line 12) | OptionalByteTwo OptionalByte = 2 FILE: tests/optional_scalars/OptionalByte.java class OptionalByte (line 5) | @SuppressWarnings("unused") method OptionalByte (line 7) | private OptionalByte() { } method name (line 14) | public static String name(int e) { return names[e]; } FILE: tests/optional_scalars/OptionalByte.py class OptionalByte (line 5) | class OptionalByte(object): FILE: tests/optional_scalars/ScalarStuff.cs type ScalarStuff (line 12) | public struct ScalarStuff : IFlatbufferObject method ValidateVersion (line 16) | public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS... method GetRootAsScalarStuff (line 17) | public static ScalarStuff GetRootAsScalarStuff(ByteBuffer _bb) { retur... method GetRootAsScalarStuff (line 18) | public static ScalarStuff GetRootAsScalarStuff(ByteBuffer _bb, ScalarS... method ScalarStuffBufferHasIdentifier (line 19) | public static bool ScalarStuffBufferHasIdentifier(ByteBuffer _bb) { re... method VerifyScalarStuff (line 20) | public static bool VerifyScalarStuff(ByteBuffer _bb) {Google.FlatBuffe... method __init (line 21) | public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } method __assign (line 22) | public ScalarStuff __assign(int _i, ByteBuffer _bb) { __init(_i, _bb);... method CreateScalarStuff (line 61) | public static Offset CreateScalarStuff(F... method StartScalarStuff (line 138) | public static void StartScalarStuff(FlatBufferBuilder builder) { build... method AddJustI8 (line 139) | public static void AddJustI8(FlatBufferBuilder builder, sbyte justI8) ... method AddMaybeI8 (line 140) | public static void AddMaybeI8(FlatBufferBuilder builder, sbyte? maybeI... method AddDefaultI8 (line 141) | public static void AddDefaultI8(FlatBufferBuilder builder, sbyte defau... method AddJustU8 (line 142) | public static void AddJustU8(FlatBufferBuilder builder, byte justU8) {... method AddMaybeU8 (line 143) | public static void AddMaybeU8(FlatBufferBuilder builder, byte? maybeU8... method AddDefaultU8 (line 144) | public static void AddDefaultU8(FlatBufferBuilder builder, byte defaul... method AddJustI16 (line 145) | public static void AddJustI16(FlatBufferBuilder builder, short justI16... method AddMaybeI16 (line 146) | public static void AddMaybeI16(FlatBufferBuilder builder, short? maybe... method AddDefaultI16 (line 147) | public static void AddDefaultI16(FlatBufferBuilder builder, short defa... method AddJustU16 (line 148) | public static void AddJustU16(FlatBufferBuilder builder, ushort justU1... method AddMaybeU16 (line 149) | public static void AddMaybeU16(FlatBufferBuilder builder, ushort? mayb... method AddDefaultU16 (line 150) | public static void AddDefaultU16(FlatBufferBuilder builder, ushort def... method AddJustI32 (line 151) | public static void AddJustI32(FlatBufferBuilder builder, int justI32) ... method AddMaybeI32 (line 152) | public static void AddMaybeI32(FlatBufferBuilder builder, int? maybeI3... method AddDefaultI32 (line 153) | public static void AddDefaultI32(FlatBufferBuilder builder, int defaul... method AddJustU32 (line 154) | public static void AddJustU32(FlatBufferBuilder builder, uint justU32)... method AddMaybeU32 (line 155) | public static void AddMaybeU32(FlatBufferBuilder builder, uint? maybeU... method AddDefaultU32 (line 156) | public static void AddDefaultU32(FlatBufferBuilder builder, uint defau... method AddJustI64 (line 157) | public static void AddJustI64(FlatBufferBuilder builder, long justI64)... method AddMaybeI64 (line 158) | public static void AddMaybeI64(FlatBufferBuilder builder, long? maybeI... method AddDefaultI64 (line 159) | public static void AddDefaultI64(FlatBufferBuilder builder, long defau... method AddJustU64 (line 160) | public static void AddJustU64(FlatBufferBuilder builder, ulong justU64... method AddMaybeU64 (line 161) | public static void AddMaybeU64(FlatBufferBuilder builder, ulong? maybe... method AddDefaultU64 (line 162) | public static void AddDefaultU64(FlatBufferBuilder builder, ulong defa... method AddJustF32 (line 163) | public static void AddJustF32(FlatBufferBuilder builder, float justF32... method AddMaybeF32 (line 164) | public static void AddMaybeF32(FlatBufferBuilder builder, float? maybe... method AddDefaultF32 (line 165) | public static void AddDefaultF32(FlatBufferBuilder builder, float defa... method AddJustF64 (line 166) | public static void AddJustF64(FlatBufferBuilder builder, double justF6... method AddMaybeF64 (line 167) | public static void AddMaybeF64(FlatBufferBuilder builder, double? mayb... method AddDefaultF64 (line 168) | public static void AddDefaultF64(FlatBufferBuilder builder, double def... method AddJustBool (line 169) | public static void AddJustBool(FlatBufferBuilder builder, bool justBoo... method AddMaybeBool (line 170) | public static void AddMaybeBool(FlatBufferBuilder builder, bool? maybe... method AddDefaultBool (line 171) | public static void AddDefaultBool(FlatBufferBuilder builder, bool defa... method AddJustEnum (line 172) | public static void AddJustEnum(FlatBufferBuilder builder, optional_sca... method AddMaybeEnum (line 173) | public static void AddMaybeEnum(FlatBufferBuilder builder, optional_sc... method AddDefaultEnum (line 174) | public static void AddDefaultEnum(FlatBufferBuilder builder, optional_... method EndScalarStuff (line 175) | public static Offset EndScalarStuff(Flat... method FinishScalarStuffBuffer (line 179) | public static void FinishScalarStuffBuffer(FlatBufferBuilder builder, ... method FinishSizePrefixedScalarStuffBuffer (line 180) | public static void FinishSizePrefixedScalarStuffBuffer(FlatBufferBuild... method UnPack (line 181) | public ScalarStuffT UnPack() { method UnPackTo (line 186) | public void UnPackTo(ScalarStuffT _o) { method Pack (line 224) | public static Offset Pack(FlatBufferBuil... class ScalarStuffT (line 267) | public class ScalarStuffT method ScalarStuffT (line 306) | public ScalarStuffT() { method DeserializeFromBinary (line 344) | public static ScalarStuffT DeserializeFromBinary(byte[] fbBuffer) { method SerializeToBinary (line 347) | public byte[] SerializeToBinary() { class ScalarStuffVerify (line 355) | static public class ScalarStuffVerify method Verify (line 357) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... FILE: tests/optional_scalars/ScalarStuff.go type ScalarStuffT (line 9) | type ScalarStuffT struct method Pack (line 48) | func (t *ScalarStuffT) Pack(builder *flatbuffers.Builder) flatbuffers.... type ScalarStuff (line 164) | type ScalarStuff struct method UnPackTo (line 116) | func (rcv *ScalarStuff) UnPackTo(t *ScalarStuffT) { method UnPack (line 155) | func (rcv *ScalarStuff) UnPack() *ScalarStuffT { method Init (line 182) | func (rcv *ScalarStuff) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 187) | func (rcv *ScalarStuff) Table() flatbuffers.Table { method JustI8 (line 191) | func (rcv *ScalarStuff) JustI8() int8 { method MutateJustI8 (line 199) | func (rcv *ScalarStuff) MutateJustI8(n int8) bool { method MaybeI8 (line 203) | func (rcv *ScalarStuff) MaybeI8() *int8 { method MutateMaybeI8 (line 212) | func (rcv *ScalarStuff) MutateMaybeI8(n int8) bool { method DefaultI8 (line 216) | func (rcv *ScalarStuff) DefaultI8() int8 { method MutateDefaultI8 (line 224) | func (rcv *ScalarStuff) MutateDefaultI8(n int8) bool { method JustU8 (line 228) | func (rcv *ScalarStuff) JustU8() byte { method MutateJustU8 (line 236) | func (rcv *ScalarStuff) MutateJustU8(n byte) bool { method MaybeU8 (line 240) | func (rcv *ScalarStuff) MaybeU8() *byte { method MutateMaybeU8 (line 249) | func (rcv *ScalarStuff) MutateMaybeU8(n byte) bool { method DefaultU8 (line 253) | func (rcv *ScalarStuff) DefaultU8() byte { method MutateDefaultU8 (line 261) | func (rcv *ScalarStuff) MutateDefaultU8(n byte) bool { method JustI16 (line 265) | func (rcv *ScalarStuff) JustI16() int16 { method MutateJustI16 (line 273) | func (rcv *ScalarStuff) MutateJustI16(n int16) bool { method MaybeI16 (line 277) | func (rcv *ScalarStuff) MaybeI16() *int16 { method MutateMaybeI16 (line 286) | func (rcv *ScalarStuff) MutateMaybeI16(n int16) bool { method DefaultI16 (line 290) | func (rcv *ScalarStuff) DefaultI16() int16 { method MutateDefaultI16 (line 298) | func (rcv *ScalarStuff) MutateDefaultI16(n int16) bool { method JustU16 (line 302) | func (rcv *ScalarStuff) JustU16() uint16 { method MutateJustU16 (line 310) | func (rcv *ScalarStuff) MutateJustU16(n uint16) bool { method MaybeU16 (line 314) | func (rcv *ScalarStuff) MaybeU16() *uint16 { method MutateMaybeU16 (line 323) | func (rcv *ScalarStuff) MutateMaybeU16(n uint16) bool { method DefaultU16 (line 327) | func (rcv *ScalarStuff) DefaultU16() uint16 { method MutateDefaultU16 (line 335) | func (rcv *ScalarStuff) MutateDefaultU16(n uint16) bool { method JustI32 (line 339) | func (rcv *ScalarStuff) JustI32() int32 { method MutateJustI32 (line 347) | func (rcv *ScalarStuff) MutateJustI32(n int32) bool { method MaybeI32 (line 351) | func (rcv *ScalarStuff) MaybeI32() *int32 { method MutateMaybeI32 (line 360) | func (rcv *ScalarStuff) MutateMaybeI32(n int32) bool { method DefaultI32 (line 364) | func (rcv *ScalarStuff) DefaultI32() int32 { method MutateDefaultI32 (line 372) | func (rcv *ScalarStuff) MutateDefaultI32(n int32) bool { method JustU32 (line 376) | func (rcv *ScalarStuff) JustU32() uint32 { method MutateJustU32 (line 384) | func (rcv *ScalarStuff) MutateJustU32(n uint32) bool { method MaybeU32 (line 388) | func (rcv *ScalarStuff) MaybeU32() *uint32 { method MutateMaybeU32 (line 397) | func (rcv *ScalarStuff) MutateMaybeU32(n uint32) bool { method DefaultU32 (line 401) | func (rcv *ScalarStuff) DefaultU32() uint32 { method MutateDefaultU32 (line 409) | func (rcv *ScalarStuff) MutateDefaultU32(n uint32) bool { method JustI64 (line 413) | func (rcv *ScalarStuff) JustI64() int64 { method MutateJustI64 (line 421) | func (rcv *ScalarStuff) MutateJustI64(n int64) bool { method MaybeI64 (line 425) | func (rcv *ScalarStuff) MaybeI64() *int64 { method MutateMaybeI64 (line 434) | func (rcv *ScalarStuff) MutateMaybeI64(n int64) bool { method DefaultI64 (line 438) | func (rcv *ScalarStuff) DefaultI64() int64 { method MutateDefaultI64 (line 446) | func (rcv *ScalarStuff) MutateDefaultI64(n int64) bool { method JustU64 (line 450) | func (rcv *ScalarStuff) JustU64() uint64 { method MutateJustU64 (line 458) | func (rcv *ScalarStuff) MutateJustU64(n uint64) bool { method MaybeU64 (line 462) | func (rcv *ScalarStuff) MaybeU64() *uint64 { method MutateMaybeU64 (line 471) | func (rcv *ScalarStuff) MutateMaybeU64(n uint64) bool { method DefaultU64 (line 475) | func (rcv *ScalarStuff) DefaultU64() uint64 { method MutateDefaultU64 (line 483) | func (rcv *ScalarStuff) MutateDefaultU64(n uint64) bool { method JustF32 (line 487) | func (rcv *ScalarStuff) JustF32() float32 { method MutateJustF32 (line 495) | func (rcv *ScalarStuff) MutateJustF32(n float32) bool { method MaybeF32 (line 499) | func (rcv *ScalarStuff) MaybeF32() *float32 { method MutateMaybeF32 (line 508) | func (rcv *ScalarStuff) MutateMaybeF32(n float32) bool { method DefaultF32 (line 512) | func (rcv *ScalarStuff) DefaultF32() float32 { method MutateDefaultF32 (line 520) | func (rcv *ScalarStuff) MutateDefaultF32(n float32) bool { method JustF64 (line 524) | func (rcv *ScalarStuff) JustF64() float64 { method MutateJustF64 (line 532) | func (rcv *ScalarStuff) MutateJustF64(n float64) bool { method MaybeF64 (line 536) | func (rcv *ScalarStuff) MaybeF64() *float64 { method MutateMaybeF64 (line 545) | func (rcv *ScalarStuff) MutateMaybeF64(n float64) bool { method DefaultF64 (line 549) | func (rcv *ScalarStuff) DefaultF64() float64 { method MutateDefaultF64 (line 557) | func (rcv *ScalarStuff) MutateDefaultF64(n float64) bool { method JustBool (line 561) | func (rcv *ScalarStuff) JustBool() bool { method MutateJustBool (line 569) | func (rcv *ScalarStuff) MutateJustBool(n bool) bool { method MaybeBool (line 573) | func (rcv *ScalarStuff) MaybeBool() *bool { method MutateMaybeBool (line 582) | func (rcv *ScalarStuff) MutateMaybeBool(n bool) bool { method DefaultBool (line 586) | func (rcv *ScalarStuff) DefaultBool() bool { method MutateDefaultBool (line 594) | func (rcv *ScalarStuff) MutateDefaultBool(n bool) bool { method JustEnum (line 598) | func (rcv *ScalarStuff) JustEnum() OptionalByte { method MutateJustEnum (line 606) | func (rcv *ScalarStuff) MutateJustEnum(n OptionalByte) bool { method MaybeEnum (line 610) | func (rcv *ScalarStuff) MaybeEnum() *OptionalByte { method MutateMaybeEnum (line 619) | func (rcv *ScalarStuff) MutateMaybeEnum(n OptionalByte) bool { method DefaultEnum (line 623) | func (rcv *ScalarStuff) DefaultEnum() OptionalByte { method MutateDefaultEnum (line 631) | func (rcv *ScalarStuff) MutateDefaultEnum(n OptionalByte) bool { function GetRootAsScalarStuff (line 168) | func GetRootAsScalarStuff(buf []byte, offset flatbuffers.UOffsetT) *Scal... function GetSizePrefixedRootAsScalarStuff (line 175) | func GetSizePrefixedRootAsScalarStuff(buf []byte, offset flatbuffers.UOf... function ScalarStuffStart (line 635) | func ScalarStuffStart(builder *flatbuffers.Builder) { function ScalarStuffAddJustI8 (line 638) | func ScalarStuffAddJustI8(builder *flatbuffers.Builder, justI8 int8) { function ScalarStuffAddMaybeI8 (line 641) | func ScalarStuffAddMaybeI8(builder *flatbuffers.Builder, maybeI8 int8) { function ScalarStuffAddDefaultI8 (line 645) | func ScalarStuffAddDefaultI8(builder *flatbuffers.Builder, defaultI8 int... function ScalarStuffAddJustU8 (line 648) | func ScalarStuffAddJustU8(builder *flatbuffers.Builder, justU8 byte) { function ScalarStuffAddMaybeU8 (line 651) | func ScalarStuffAddMaybeU8(builder *flatbuffers.Builder, maybeU8 byte) { function ScalarStuffAddDefaultU8 (line 655) | func ScalarStuffAddDefaultU8(builder *flatbuffers.Builder, defaultU8 byt... function ScalarStuffAddJustI16 (line 658) | func ScalarStuffAddJustI16(builder *flatbuffers.Builder, justI16 int16) { function ScalarStuffAddMaybeI16 (line 661) | func ScalarStuffAddMaybeI16(builder *flatbuffers.Builder, maybeI16 int16) { function ScalarStuffAddDefaultI16 (line 665) | func ScalarStuffAddDefaultI16(builder *flatbuffers.Builder, defaultI16 i... function ScalarStuffAddJustU16 (line 668) | func ScalarStuffAddJustU16(builder *flatbuffers.Builder, justU16 uint16) { function ScalarStuffAddMaybeU16 (line 671) | func ScalarStuffAddMaybeU16(builder *flatbuffers.Builder, maybeU16 uint1... function ScalarStuffAddDefaultU16 (line 675) | func ScalarStuffAddDefaultU16(builder *flatbuffers.Builder, defaultU16 u... function ScalarStuffAddJustI32 (line 678) | func ScalarStuffAddJustI32(builder *flatbuffers.Builder, justI32 int32) { function ScalarStuffAddMaybeI32 (line 681) | func ScalarStuffAddMaybeI32(builder *flatbuffers.Builder, maybeI32 int32) { function ScalarStuffAddDefaultI32 (line 685) | func ScalarStuffAddDefaultI32(builder *flatbuffers.Builder, defaultI32 i... function ScalarStuffAddJustU32 (line 688) | func ScalarStuffAddJustU32(builder *flatbuffers.Builder, justU32 uint32) { function ScalarStuffAddMaybeU32 (line 691) | func ScalarStuffAddMaybeU32(builder *flatbuffers.Builder, maybeU32 uint3... function ScalarStuffAddDefaultU32 (line 695) | func ScalarStuffAddDefaultU32(builder *flatbuffers.Builder, defaultU32 u... function ScalarStuffAddJustI64 (line 698) | func ScalarStuffAddJustI64(builder *flatbuffers.Builder, justI64 int64) { function ScalarStuffAddMaybeI64 (line 701) | func ScalarStuffAddMaybeI64(builder *flatbuffers.Builder, maybeI64 int64) { function ScalarStuffAddDefaultI64 (line 705) | func ScalarStuffAddDefaultI64(builder *flatbuffers.Builder, defaultI64 i... function ScalarStuffAddJustU64 (line 708) | func ScalarStuffAddJustU64(builder *flatbuffers.Builder, justU64 uint64) { function ScalarStuffAddMaybeU64 (line 711) | func ScalarStuffAddMaybeU64(builder *flatbuffers.Builder, maybeU64 uint6... function ScalarStuffAddDefaultU64 (line 715) | func ScalarStuffAddDefaultU64(builder *flatbuffers.Builder, defaultU64 u... function ScalarStuffAddJustF32 (line 718) | func ScalarStuffAddJustF32(builder *flatbuffers.Builder, justF32 float32) { function ScalarStuffAddMaybeF32 (line 721) | func ScalarStuffAddMaybeF32(builder *flatbuffers.Builder, maybeF32 float... function ScalarStuffAddDefaultF32 (line 725) | func ScalarStuffAddDefaultF32(builder *flatbuffers.Builder, defaultF32 f... function ScalarStuffAddJustF64 (line 728) | func ScalarStuffAddJustF64(builder *flatbuffers.Builder, justF64 float64) { function ScalarStuffAddMaybeF64 (line 731) | func ScalarStuffAddMaybeF64(builder *flatbuffers.Builder, maybeF64 float... function ScalarStuffAddDefaultF64 (line 735) | func ScalarStuffAddDefaultF64(builder *flatbuffers.Builder, defaultF64 f... function ScalarStuffAddJustBool (line 738) | func ScalarStuffAddJustBool(builder *flatbuffers.Builder, justBool bool) { function ScalarStuffAddMaybeBool (line 741) | func ScalarStuffAddMaybeBool(builder *flatbuffers.Builder, maybeBool boo... function ScalarStuffAddDefaultBool (line 745) | func ScalarStuffAddDefaultBool(builder *flatbuffers.Builder, defaultBool... function ScalarStuffAddJustEnum (line 748) | func ScalarStuffAddJustEnum(builder *flatbuffers.Builder, justEnum Optio... function ScalarStuffAddMaybeEnum (line 751) | func ScalarStuffAddMaybeEnum(builder *flatbuffers.Builder, maybeEnum Opt... function ScalarStuffAddDefaultEnum (line 755) | func ScalarStuffAddDefaultEnum(builder *flatbuffers.Builder, defaultEnum... function ScalarStuffEnd (line 758) | func ScalarStuffEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { FILE: tests/optional_scalars/ScalarStuff.java class ScalarStuff (line 21) | @SuppressWarnings("unused") method ValidateVersion (line 23) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsScalarStuff (line 24) | public static ScalarStuff getRootAsScalarStuff(ByteBuffer _bb) { retur... method getRootAsScalarStuff (line 25) | public static ScalarStuff getRootAsScalarStuff(ByteBuffer _bb, ScalarS... method ScalarStuffBufferHasIdentifier (line 26) | public static boolean ScalarStuffBufferHasIdentifier(ByteBuffer _bb) {... method __init (line 27) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 28) | public ScalarStuff __assign(int _i, ByteBuffer _bb) { __init(_i, _bb);... method justI8 (line 30) | public byte justI8() { int o = __offset(4); return o != 0 ? bb.get(o +... method hasMaybeI8 (line 31) | public boolean hasMaybeI8() { return 0 != __offset(6); } method maybeI8 (line 32) | public byte maybeI8() { int o = __offset(6); return o != 0 ? bb.get(o ... method defaultI8 (line 33) | public byte defaultI8() { int o = __offset(8); return o != 0 ? bb.get(... method justU8 (line 34) | public int justU8() { int o = __offset(10); return o != 0 ? bb.get(o +... method hasMaybeU8 (line 35) | public boolean hasMaybeU8() { return 0 != __offset(12); } method maybeU8 (line 36) | public int maybeU8() { int o = __offset(12); return o != 0 ? bb.get(o ... method defaultU8 (line 37) | public int defaultU8() { int o = __offset(14); return o != 0 ? bb.get(... method justI16 (line 38) | public short justI16() { int o = __offset(16); return o != 0 ? bb.getS... method hasMaybeI16 (line 39) | public boolean hasMaybeI16() { return 0 != __offset(18); } method maybeI16 (line 40) | public short maybeI16() { int o = __offset(18); return o != 0 ? bb.get... method defaultI16 (line 41) | public short defaultI16() { int o = __offset(20); return o != 0 ? bb.g... method justU16 (line 42) | public int justU16() { int o = __offset(22); return o != 0 ? bb.getSho... method hasMaybeU16 (line 43) | public boolean hasMaybeU16() { return 0 != __offset(24); } method maybeU16 (line 44) | public int maybeU16() { int o = __offset(24); return o != 0 ? bb.getSh... method defaultU16 (line 45) | public int defaultU16() { int o = __offset(26); return o != 0 ? bb.get... method justI32 (line 46) | public int justI32() { int o = __offset(28); return o != 0 ? bb.getInt... method hasMaybeI32 (line 47) | public boolean hasMaybeI32() { return 0 != __offset(30); } method maybeI32 (line 48) | public int maybeI32() { int o = __offset(30); return o != 0 ? bb.getIn... method defaultI32 (line 49) | public int defaultI32() { int o = __offset(32); return o != 0 ? bb.get... method justU32 (line 50) | public long justU32() { int o = __offset(34); return o != 0 ? (long)bb... method hasMaybeU32 (line 51) | public boolean hasMaybeU32() { return 0 != __offset(36); } method maybeU32 (line 52) | public long maybeU32() { int o = __offset(36); return o != 0 ? (long)b... method defaultU32 (line 53) | public long defaultU32() { int o = __offset(38); return o != 0 ? (long... method justI64 (line 54) | public long justI64() { int o = __offset(40); return o != 0 ? bb.getLo... method hasMaybeI64 (line 55) | public boolean hasMaybeI64() { return 0 != __offset(42); } method maybeI64 (line 56) | public long maybeI64() { int o = __offset(42); return o != 0 ? bb.getL... method defaultI64 (line 57) | public long defaultI64() { int o = __offset(44); return o != 0 ? bb.ge... method justU64 (line 58) | public long justU64() { int o = __offset(46); return o != 0 ? bb.getLo... method hasMaybeU64 (line 59) | public boolean hasMaybeU64() { return 0 != __offset(48); } method maybeU64 (line 60) | public long maybeU64() { int o = __offset(48); return o != 0 ? bb.getL... method defaultU64 (line 61) | public long defaultU64() { int o = __offset(50); return o != 0 ? bb.ge... method justF32 (line 62) | public float justF32() { int o = __offset(52); return o != 0 ? bb.getF... method hasMaybeF32 (line 63) | public boolean hasMaybeF32() { return 0 != __offset(54); } method maybeF32 (line 64) | public float maybeF32() { int o = __offset(54); return o != 0 ? bb.get... method defaultF32 (line 65) | public float defaultF32() { int o = __offset(56); return o != 0 ? bb.g... method justF64 (line 66) | public double justF64() { int o = __offset(58); return o != 0 ? bb.get... method hasMaybeF64 (line 67) | public boolean hasMaybeF64() { return 0 != __offset(60); } method maybeF64 (line 68) | public double maybeF64() { int o = __offset(60); return o != 0 ? bb.ge... method defaultF64 (line 69) | public double defaultF64() { int o = __offset(62); return o != 0 ? bb.... method justBool (line 70) | public boolean justBool() { int o = __offset(64); return o != 0 ? 0!=b... method hasMaybeBool (line 71) | public boolean hasMaybeBool() { return 0 != __offset(66); } method maybeBool (line 72) | public boolean maybeBool() { int o = __offset(66); return o != 0 ? 0!=... method defaultBool (line 73) | public boolean defaultBool() { int o = __offset(68); return o != 0 ? 0... method justEnum (line 74) | public byte justEnum() { int o = __offset(70); return o != 0 ? bb.get(... method hasMaybeEnum (line 75) | public boolean hasMaybeEnum() { return 0 != __offset(72); } method maybeEnum (line 76) | public byte maybeEnum() { int o = __offset(72); return o != 0 ? bb.get... method defaultEnum (line 77) | public byte defaultEnum() { int o = __offset(74); return o != 0 ? bb.g... method createScalarStuff (line 79) | public static int createScalarStuff(FlatBufferBuilder builder, method startScalarStuff (line 156) | public static void startScalarStuff(FlatBufferBuilder builder) { build... method addJustI8 (line 157) | public static void addJustI8(FlatBufferBuilder builder, byte justI8) {... method addMaybeI8 (line 158) | public static void addMaybeI8(FlatBufferBuilder builder, byte maybeI8)... method addDefaultI8 (line 159) | public static void addDefaultI8(FlatBufferBuilder builder, byte defaul... method addJustU8 (line 160) | public static void addJustU8(FlatBufferBuilder builder, int justU8) { ... method addMaybeU8 (line 161) | public static void addMaybeU8(FlatBufferBuilder builder, int maybeU8) ... method addDefaultU8 (line 162) | public static void addDefaultU8(FlatBufferBuilder builder, int default... method addJustI16 (line 163) | public static void addJustI16(FlatBufferBuilder builder, short justI16... method addMaybeI16 (line 164) | public static void addMaybeI16(FlatBufferBuilder builder, short maybeI... method addDefaultI16 (line 165) | public static void addDefaultI16(FlatBufferBuilder builder, short defa... method addJustU16 (line 166) | public static void addJustU16(FlatBufferBuilder builder, int justU16) ... method addMaybeU16 (line 167) | public static void addMaybeU16(FlatBufferBuilder builder, int maybeU16... method addDefaultU16 (line 168) | public static void addDefaultU16(FlatBufferBuilder builder, int defaul... method addJustI32 (line 169) | public static void addJustI32(FlatBufferBuilder builder, int justI32) ... method addMaybeI32 (line 170) | public static void addMaybeI32(FlatBufferBuilder builder, int maybeI32... method addDefaultI32 (line 171) | public static void addDefaultI32(FlatBufferBuilder builder, int defaul... method addJustU32 (line 172) | public static void addJustU32(FlatBufferBuilder builder, long justU32)... method addMaybeU32 (line 173) | public static void addMaybeU32(FlatBufferBuilder builder, long maybeU3... method addDefaultU32 (line 174) | public static void addDefaultU32(FlatBufferBuilder builder, long defau... method addJustI64 (line 175) | public static void addJustI64(FlatBufferBuilder builder, long justI64)... method addMaybeI64 (line 176) | public static void addMaybeI64(FlatBufferBuilder builder, long maybeI6... method addDefaultI64 (line 177) | public static void addDefaultI64(FlatBufferBuilder builder, long defau... method addJustU64 (line 178) | public static void addJustU64(FlatBufferBuilder builder, long justU64)... method addMaybeU64 (line 179) | public static void addMaybeU64(FlatBufferBuilder builder, long maybeU6... method addDefaultU64 (line 180) | public static void addDefaultU64(FlatBufferBuilder builder, long defau... method addJustF32 (line 181) | public static void addJustF32(FlatBufferBuilder builder, float justF32... method addMaybeF32 (line 182) | public static void addMaybeF32(FlatBufferBuilder builder, float maybeF... method addDefaultF32 (line 183) | public static void addDefaultF32(FlatBufferBuilder builder, float defa... method addJustF64 (line 184) | public static void addJustF64(FlatBufferBuilder builder, double justF6... method addMaybeF64 (line 185) | public static void addMaybeF64(FlatBufferBuilder builder, double maybe... method addDefaultF64 (line 186) | public static void addDefaultF64(FlatBufferBuilder builder, double def... method addJustBool (line 187) | public static void addJustBool(FlatBufferBuilder builder, boolean just... method addMaybeBool (line 188) | public static void addMaybeBool(FlatBufferBuilder builder, boolean may... method addDefaultBool (line 189) | public static void addDefaultBool(FlatBufferBuilder builder, boolean d... method addJustEnum (line 190) | public static void addJustEnum(FlatBufferBuilder builder, byte justEnu... method addMaybeEnum (line 191) | public static void addMaybeEnum(FlatBufferBuilder builder, byte maybeE... method addDefaultEnum (line 192) | public static void addDefaultEnum(FlatBufferBuilder builder, byte defa... method endScalarStuff (line 193) | public static int endScalarStuff(FlatBufferBuilder builder) { method finishScalarStuffBuffer (line 197) | public static void finishScalarStuffBuffer(FlatBufferBuilder builder, ... method finishSizePrefixedScalarStuffBuffer (line 198) | public static void finishSizePrefixedScalarStuffBuffer(FlatBufferBuild... class Vector (line 200) | public static final class Vector extends BaseVector { method __assign (line 201) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 203) | public ScalarStuff get(int j) { return get(new ScalarStuff(), j); } method get (line 204) | public ScalarStuff get(ScalarStuff obj, int j) { return obj.__assig... FILE: tests/optional_scalars/ScalarStuff.py class ScalarStuff (line 9) | class ScalarStuff(object): method GetRootAs (line 13) | def GetRootAs(cls, buf, offset=0): method GetRootAsScalarStuff (line 20) | def GetRootAsScalarStuff(cls, buf, offset=0): method ScalarStuffBufferHasIdentifier (line 24) | def ScalarStuffBufferHasIdentifier(cls, buf, offset, size_prefixed=Fal... method Init (line 28) | def Init(self, buf, pos): method JustI8 (line 32) | def JustI8(self): method MaybeI8 (line 39) | def MaybeI8(self): method DefaultI8 (line 46) | def DefaultI8(self): method JustU8 (line 53) | def JustU8(self): method MaybeU8 (line 60) | def MaybeU8(self): method DefaultU8 (line 67) | def DefaultU8(self): method JustI16 (line 74) | def JustI16(self): method MaybeI16 (line 81) | def MaybeI16(self): method DefaultI16 (line 88) | def DefaultI16(self): method JustU16 (line 95) | def JustU16(self): method MaybeU16 (line 102) | def MaybeU16(self): method DefaultU16 (line 109) | def DefaultU16(self): method JustI32 (line 116) | def JustI32(self): method MaybeI32 (line 123) | def MaybeI32(self): method DefaultI32 (line 130) | def DefaultI32(self): method JustU32 (line 137) | def JustU32(self): method MaybeU32 (line 144) | def MaybeU32(self): method DefaultU32 (line 151) | def DefaultU32(self): method JustI64 (line 158) | def JustI64(self): method MaybeI64 (line 165) | def MaybeI64(self): method DefaultI64 (line 172) | def DefaultI64(self): method JustU64 (line 179) | def JustU64(self): method MaybeU64 (line 186) | def MaybeU64(self): method DefaultU64 (line 193) | def DefaultU64(self): method JustF32 (line 200) | def JustF32(self): method MaybeF32 (line 207) | def MaybeF32(self): method DefaultF32 (line 214) | def DefaultF32(self): method JustF64 (line 221) | def JustF64(self): method MaybeF64 (line 228) | def MaybeF64(self): method DefaultF64 (line 235) | def DefaultF64(self): method JustBool (line 242) | def JustBool(self): method MaybeBool (line 249) | def MaybeBool(self): method DefaultBool (line 256) | def DefaultBool(self): method JustEnum (line 263) | def JustEnum(self): method MaybeEnum (line 270) | def MaybeEnum(self): method DefaultEnum (line 277) | def DefaultEnum(self): function ScalarStuffStart (line 283) | def ScalarStuffStart(builder): function Start (line 286) | def Start(builder): function ScalarStuffAddJustI8 (line 289) | def ScalarStuffAddJustI8(builder, justI8): function AddJustI8 (line 292) | def AddJustI8(builder, justI8): function ScalarStuffAddMaybeI8 (line 295) | def ScalarStuffAddMaybeI8(builder, maybeI8): function AddMaybeI8 (line 298) | def AddMaybeI8(builder, maybeI8): function ScalarStuffAddDefaultI8 (line 301) | def ScalarStuffAddDefaultI8(builder, defaultI8): function AddDefaultI8 (line 304) | def AddDefaultI8(builder, defaultI8): function ScalarStuffAddJustU8 (line 307) | def ScalarStuffAddJustU8(builder, justU8): function AddJustU8 (line 310) | def AddJustU8(builder, justU8): function ScalarStuffAddMaybeU8 (line 313) | def ScalarStuffAddMaybeU8(builder, maybeU8): function AddMaybeU8 (line 316) | def AddMaybeU8(builder, maybeU8): function ScalarStuffAddDefaultU8 (line 319) | def ScalarStuffAddDefaultU8(builder, defaultU8): function AddDefaultU8 (line 322) | def AddDefaultU8(builder, defaultU8): function ScalarStuffAddJustI16 (line 325) | def ScalarStuffAddJustI16(builder, justI16): function AddJustI16 (line 328) | def AddJustI16(builder, justI16): function ScalarStuffAddMaybeI16 (line 331) | def ScalarStuffAddMaybeI16(builder, maybeI16): function AddMaybeI16 (line 334) | def AddMaybeI16(builder, maybeI16): function ScalarStuffAddDefaultI16 (line 337) | def ScalarStuffAddDefaultI16(builder, defaultI16): function AddDefaultI16 (line 340) | def AddDefaultI16(builder, defaultI16): function ScalarStuffAddJustU16 (line 343) | def ScalarStuffAddJustU16(builder, justU16): function AddJustU16 (line 346) | def AddJustU16(builder, justU16): function ScalarStuffAddMaybeU16 (line 349) | def ScalarStuffAddMaybeU16(builder, maybeU16): function AddMaybeU16 (line 352) | def AddMaybeU16(builder, maybeU16): function ScalarStuffAddDefaultU16 (line 355) | def ScalarStuffAddDefaultU16(builder, defaultU16): function AddDefaultU16 (line 358) | def AddDefaultU16(builder, defaultU16): function ScalarStuffAddJustI32 (line 361) | def ScalarStuffAddJustI32(builder, justI32): function AddJustI32 (line 364) | def AddJustI32(builder, justI32): function ScalarStuffAddMaybeI32 (line 367) | def ScalarStuffAddMaybeI32(builder, maybeI32): function AddMaybeI32 (line 370) | def AddMaybeI32(builder, maybeI32): function ScalarStuffAddDefaultI32 (line 373) | def ScalarStuffAddDefaultI32(builder, defaultI32): function AddDefaultI32 (line 376) | def AddDefaultI32(builder, defaultI32): function ScalarStuffAddJustU32 (line 379) | def ScalarStuffAddJustU32(builder, justU32): function AddJustU32 (line 382) | def AddJustU32(builder, justU32): function ScalarStuffAddMaybeU32 (line 385) | def ScalarStuffAddMaybeU32(builder, maybeU32): function AddMaybeU32 (line 388) | def AddMaybeU32(builder, maybeU32): function ScalarStuffAddDefaultU32 (line 391) | def ScalarStuffAddDefaultU32(builder, defaultU32): function AddDefaultU32 (line 394) | def AddDefaultU32(builder, defaultU32): function ScalarStuffAddJustI64 (line 397) | def ScalarStuffAddJustI64(builder, justI64): function AddJustI64 (line 400) | def AddJustI64(builder, justI64): function ScalarStuffAddMaybeI64 (line 403) | def ScalarStuffAddMaybeI64(builder, maybeI64): function AddMaybeI64 (line 406) | def AddMaybeI64(builder, maybeI64): function ScalarStuffAddDefaultI64 (line 409) | def ScalarStuffAddDefaultI64(builder, defaultI64): function AddDefaultI64 (line 412) | def AddDefaultI64(builder, defaultI64): function ScalarStuffAddJustU64 (line 415) | def ScalarStuffAddJustU64(builder, justU64): function AddJustU64 (line 418) | def AddJustU64(builder, justU64): function ScalarStuffAddMaybeU64 (line 421) | def ScalarStuffAddMaybeU64(builder, maybeU64): function AddMaybeU64 (line 424) | def AddMaybeU64(builder, maybeU64): function ScalarStuffAddDefaultU64 (line 427) | def ScalarStuffAddDefaultU64(builder, defaultU64): function AddDefaultU64 (line 430) | def AddDefaultU64(builder, defaultU64): function ScalarStuffAddJustF32 (line 433) | def ScalarStuffAddJustF32(builder, justF32): function AddJustF32 (line 436) | def AddJustF32(builder, justF32): function ScalarStuffAddMaybeF32 (line 439) | def ScalarStuffAddMaybeF32(builder, maybeF32): function AddMaybeF32 (line 442) | def AddMaybeF32(builder, maybeF32): function ScalarStuffAddDefaultF32 (line 445) | def ScalarStuffAddDefaultF32(builder, defaultF32): function AddDefaultF32 (line 448) | def AddDefaultF32(builder, defaultF32): function ScalarStuffAddJustF64 (line 451) | def ScalarStuffAddJustF64(builder, justF64): function AddJustF64 (line 454) | def AddJustF64(builder, justF64): function ScalarStuffAddMaybeF64 (line 457) | def ScalarStuffAddMaybeF64(builder, maybeF64): function AddMaybeF64 (line 460) | def AddMaybeF64(builder, maybeF64): function ScalarStuffAddDefaultF64 (line 463) | def ScalarStuffAddDefaultF64(builder, defaultF64): function AddDefaultF64 (line 466) | def AddDefaultF64(builder, defaultF64): function ScalarStuffAddJustBool (line 469) | def ScalarStuffAddJustBool(builder, justBool): function AddJustBool (line 472) | def AddJustBool(builder, justBool): function ScalarStuffAddMaybeBool (line 475) | def ScalarStuffAddMaybeBool(builder, maybeBool): function AddMaybeBool (line 478) | def AddMaybeBool(builder, maybeBool): function ScalarStuffAddDefaultBool (line 481) | def ScalarStuffAddDefaultBool(builder, defaultBool): function AddDefaultBool (line 484) | def AddDefaultBool(builder, defaultBool): function ScalarStuffAddJustEnum (line 487) | def ScalarStuffAddJustEnum(builder, justEnum): function AddJustEnum (line 490) | def AddJustEnum(builder, justEnum): function ScalarStuffAddMaybeEnum (line 493) | def ScalarStuffAddMaybeEnum(builder, maybeEnum): function AddMaybeEnum (line 496) | def AddMaybeEnum(builder, maybeEnum): function ScalarStuffAddDefaultEnum (line 499) | def ScalarStuffAddDefaultEnum(builder, defaultEnum): function AddDefaultEnum (line 502) | def AddDefaultEnum(builder, defaultEnum): function ScalarStuffEnd (line 505) | def ScalarStuffEnd(builder): function End (line 508) | def End(builder): class ScalarStuffT (line 516) | class ScalarStuffT(object): method __init__ (line 519) | def __init__( method InitFromBuf (line 596) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 602) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 607) | def InitFromObj(cls, scalarStuff): method _UnPack (line 613) | def _UnPack(self, scalarStuff): method Pack (line 654) | def Pack(self, builder): FILE: tests/optional_scalars/optional_scalars/optional_byte_generated.rs constant ENUM_MIN_OPTIONAL_BYTE (line 7) | pub const ENUM_MIN_OPTIONAL_BYTE: i8 = 0; constant ENUM_MAX_OPTIONAL_BYTE (line 10) | pub const ENUM_MAX_OPTIONAL_BYTE: i8 = 2; constant ENUM_VALUES_OPTIONAL_BYTE (line 14) | pub const ENUM_VALUES_OPTIONAL_BYTE: [OptionalByte; 3] = [ type OptionalByte (line 22) | pub struct OptionalByte(pub i8); constant None (line 26) | pub const None: Self = Self(0); constant One (line 27) | pub const One: Self = Self(1); constant Two (line 28) | pub const Two: Self = Self(2); constant ENUM_MIN (line 30) | pub const ENUM_MIN: i8 = 0; constant ENUM_MAX (line 31) | pub const ENUM_MAX: i8 = 2; constant ENUM_VALUES (line 32) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 39) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 50) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 60) | type Inner = Self; method follow (line 63) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 70) | type Output = OptionalByte; method push (line 73) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 79) | type Scalar = i8; method to_little_endian (line 82) | fn to_little_endian(self) -> i8 { method from_little_endian (line 88) | fn from_little_endian(v: i8) -> Self { method run_verifier (line 96) | fn run_verifier( FILE: tests/optional_scalars/optional_scalars/scalar_stuff_generated.rs type ScalarStuffOffset (line 6) | pub enum ScalarStuffOffset {} type ScalarStuff (line 9) | pub struct ScalarStuff<'a> { type Inner (line 14) | type Inner = ScalarStuff<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_JUST_I8 (line 23) | pub const VT_JUST_I8: ::flatbuffers::VOffsetT = 4; constant VT_MAYBE_I8 (line 24) | pub const VT_MAYBE_I8: ::flatbuffers::VOffsetT = 6; constant VT_DEFAULT_I8 (line 25) | pub const VT_DEFAULT_I8: ::flatbuffers::VOffsetT = 8; constant VT_JUST_U8 (line 26) | pub const VT_JUST_U8: ::flatbuffers::VOffsetT = 10; constant VT_MAYBE_U8 (line 27) | pub const VT_MAYBE_U8: ::flatbuffers::VOffsetT = 12; constant VT_DEFAULT_U8 (line 28) | pub const VT_DEFAULT_U8: ::flatbuffers::VOffsetT = 14; constant VT_JUST_I16 (line 29) | pub const VT_JUST_I16: ::flatbuffers::VOffsetT = 16; constant VT_MAYBE_I16 (line 30) | pub const VT_MAYBE_I16: ::flatbuffers::VOffsetT = 18; constant VT_DEFAULT_I16 (line 31) | pub const VT_DEFAULT_I16: ::flatbuffers::VOffsetT = 20; constant VT_JUST_U16 (line 32) | pub const VT_JUST_U16: ::flatbuffers::VOffsetT = 22; constant VT_MAYBE_U16 (line 33) | pub const VT_MAYBE_U16: ::flatbuffers::VOffsetT = 24; constant VT_DEFAULT_U16 (line 34) | pub const VT_DEFAULT_U16: ::flatbuffers::VOffsetT = 26; constant VT_JUST_I32 (line 35) | pub const VT_JUST_I32: ::flatbuffers::VOffsetT = 28; constant VT_MAYBE_I32 (line 36) | pub const VT_MAYBE_I32: ::flatbuffers::VOffsetT = 30; constant VT_DEFAULT_I32 (line 37) | pub const VT_DEFAULT_I32: ::flatbuffers::VOffsetT = 32; constant VT_JUST_U32 (line 38) | pub const VT_JUST_U32: ::flatbuffers::VOffsetT = 34; constant VT_MAYBE_U32 (line 39) | pub const VT_MAYBE_U32: ::flatbuffers::VOffsetT = 36; constant VT_DEFAULT_U32 (line 40) | pub const VT_DEFAULT_U32: ::flatbuffers::VOffsetT = 38; constant VT_JUST_I64 (line 41) | pub const VT_JUST_I64: ::flatbuffers::VOffsetT = 40; constant VT_MAYBE_I64 (line 42) | pub const VT_MAYBE_I64: ::flatbuffers::VOffsetT = 42; constant VT_DEFAULT_I64 (line 43) | pub const VT_DEFAULT_I64: ::flatbuffers::VOffsetT = 44; constant VT_JUST_U64 (line 44) | pub const VT_JUST_U64: ::flatbuffers::VOffsetT = 46; constant VT_MAYBE_U64 (line 45) | pub const VT_MAYBE_U64: ::flatbuffers::VOffsetT = 48; constant VT_DEFAULT_U64 (line 46) | pub const VT_DEFAULT_U64: ::flatbuffers::VOffsetT = 50; constant VT_JUST_F32 (line 47) | pub const VT_JUST_F32: ::flatbuffers::VOffsetT = 52; constant VT_MAYBE_F32 (line 48) | pub const VT_MAYBE_F32: ::flatbuffers::VOffsetT = 54; constant VT_DEFAULT_F32 (line 49) | pub const VT_DEFAULT_F32: ::flatbuffers::VOffsetT = 56; constant VT_JUST_F64 (line 50) | pub const VT_JUST_F64: ::flatbuffers::VOffsetT = 58; constant VT_MAYBE_F64 (line 51) | pub const VT_MAYBE_F64: ::flatbuffers::VOffsetT = 60; constant VT_DEFAULT_F64 (line 52) | pub const VT_DEFAULT_F64: ::flatbuffers::VOffsetT = 62; constant VT_JUST_BOOL (line 53) | pub const VT_JUST_BOOL: ::flatbuffers::VOffsetT = 64; constant VT_MAYBE_BOOL (line 54) | pub const VT_MAYBE_BOOL: ::flatbuffers::VOffsetT = 66; constant VT_DEFAULT_BOOL (line 55) | pub const VT_DEFAULT_BOOL: ::flatbuffers::VOffsetT = 68; constant VT_JUST_ENUM (line 56) | pub const VT_JUST_ENUM: ::flatbuffers::VOffsetT = 70; constant VT_MAYBE_ENUM (line 57) | pub const VT_MAYBE_ENUM: ::flatbuffers::VOffsetT = 72; constant VT_DEFAULT_ENUM (line 58) | pub const VT_DEFAULT_ENUM: ::flatbuffers::VOffsetT = 74; function get_fully_qualified_name (line 60) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 65) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 70) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 114) | pub fn unpack(&self) -> ScalarStuffT { function just_i8 (line 192) | pub fn just_i8(&self) -> i8 { function maybe_i8 (line 200) | pub fn maybe_i8(&self) -> Option { function default_i8 (line 208) | pub fn default_i8(&self) -> i8 { function just_u8 (line 216) | pub fn just_u8(&self) -> u8 { function maybe_u8 (line 224) | pub fn maybe_u8(&self) -> Option { function default_u8 (line 232) | pub fn default_u8(&self) -> u8 { function just_i16 (line 240) | pub fn just_i16(&self) -> i16 { function maybe_i16 (line 248) | pub fn maybe_i16(&self) -> Option { function default_i16 (line 256) | pub fn default_i16(&self) -> i16 { function just_u16 (line 264) | pub fn just_u16(&self) -> u16 { function maybe_u16 (line 272) | pub fn maybe_u16(&self) -> Option { function default_u16 (line 280) | pub fn default_u16(&self) -> u16 { function just_i32 (line 288) | pub fn just_i32(&self) -> i32 { function maybe_i32 (line 296) | pub fn maybe_i32(&self) -> Option { function default_i32 (line 304) | pub fn default_i32(&self) -> i32 { function just_u32 (line 312) | pub fn just_u32(&self) -> u32 { function maybe_u32 (line 320) | pub fn maybe_u32(&self) -> Option { function default_u32 (line 328) | pub fn default_u32(&self) -> u32 { function just_i64 (line 336) | pub fn just_i64(&self) -> i64 { function maybe_i64 (line 344) | pub fn maybe_i64(&self) -> Option { function default_i64 (line 352) | pub fn default_i64(&self) -> i64 { function just_u64 (line 360) | pub fn just_u64(&self) -> u64 { function maybe_u64 (line 368) | pub fn maybe_u64(&self) -> Option { function default_u64 (line 376) | pub fn default_u64(&self) -> u64 { function just_f32 (line 384) | pub fn just_f32(&self) -> f32 { function maybe_f32 (line 392) | pub fn maybe_f32(&self) -> Option { function default_f32 (line 400) | pub fn default_f32(&self) -> f32 { function just_f64 (line 408) | pub fn just_f64(&self) -> f64 { function maybe_f64 (line 416) | pub fn maybe_f64(&self) -> Option { function default_f64 (line 424) | pub fn default_f64(&self) -> f64 { function just_bool (line 432) | pub fn just_bool(&self) -> bool { function maybe_bool (line 440) | pub fn maybe_bool(&self) -> Option { function default_bool (line 448) | pub fn default_bool(&self) -> bool { function just_enum (line 456) | pub fn just_enum(&self) -> OptionalByte { function maybe_enum (line 464) | pub fn maybe_enum(&self) -> Option { function default_enum (line 472) | pub fn default_enum(&self) -> OptionalByte { function run_verifier (line 482) | fn run_verifier( type ScalarStuffArgs (line 527) | pub struct ScalarStuffArgs { method default (line 568) | fn default() -> Self { type ScalarStuffBuilder (line 610) | pub struct ScalarStuffBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + ... function add_just_i8 (line 617) | pub fn add_just_i8(&mut self, just_i8: i8) { function add_maybe_i8 (line 622) | pub fn add_maybe_i8(&mut self, maybe_i8: i8) { function add_default_i8 (line 627) | pub fn add_default_i8(&mut self, default_i8: i8) { function add_just_u8 (line 632) | pub fn add_just_u8(&mut self, just_u8: u8) { function add_maybe_u8 (line 637) | pub fn add_maybe_u8(&mut self, maybe_u8: u8) { function add_default_u8 (line 642) | pub fn add_default_u8(&mut self, default_u8: u8) { function add_just_i16 (line 647) | pub fn add_just_i16(&mut self, just_i16: i16) { function add_maybe_i16 (line 652) | pub fn add_maybe_i16(&mut self, maybe_i16: i16) { function add_default_i16 (line 657) | pub fn add_default_i16(&mut self, default_i16: i16) { function add_just_u16 (line 662) | pub fn add_just_u16(&mut self, just_u16: u16) { function add_maybe_u16 (line 667) | pub fn add_maybe_u16(&mut self, maybe_u16: u16) { function add_default_u16 (line 672) | pub fn add_default_u16(&mut self, default_u16: u16) { function add_just_i32 (line 677) | pub fn add_just_i32(&mut self, just_i32: i32) { function add_maybe_i32 (line 682) | pub fn add_maybe_i32(&mut self, maybe_i32: i32) { function add_default_i32 (line 687) | pub fn add_default_i32(&mut self, default_i32: i32) { function add_just_u32 (line 692) | pub fn add_just_u32(&mut self, just_u32: u32) { function add_maybe_u32 (line 697) | pub fn add_maybe_u32(&mut self, maybe_u32: u32) { function add_default_u32 (line 702) | pub fn add_default_u32(&mut self, default_u32: u32) { function add_just_i64 (line 707) | pub fn add_just_i64(&mut self, just_i64: i64) { function add_maybe_i64 (line 712) | pub fn add_maybe_i64(&mut self, maybe_i64: i64) { function add_default_i64 (line 717) | pub fn add_default_i64(&mut self, default_i64: i64) { function add_just_u64 (line 722) | pub fn add_just_u64(&mut self, just_u64: u64) { function add_maybe_u64 (line 727) | pub fn add_maybe_u64(&mut self, maybe_u64: u64) { function add_default_u64 (line 732) | pub fn add_default_u64(&mut self, default_u64: u64) { function add_just_f32 (line 737) | pub fn add_just_f32(&mut self, just_f32: f32) { function add_maybe_f32 (line 742) | pub fn add_maybe_f32(&mut self, maybe_f32: f32) { function add_default_f32 (line 747) | pub fn add_default_f32(&mut self, default_f32: f32) { function add_just_f64 (line 752) | pub fn add_just_f64(&mut self, just_f64: f64) { function add_maybe_f64 (line 757) | pub fn add_maybe_f64(&mut self, maybe_f64: f64) { function add_default_f64 (line 762) | pub fn add_default_f64(&mut self, default_f64: f64) { function add_just_bool (line 767) | pub fn add_just_bool(&mut self, just_bool: bool) { function add_maybe_bool (line 772) | pub fn add_maybe_bool(&mut self, maybe_bool: bool) { function add_default_bool (line 777) | pub fn add_default_bool(&mut self, default_bool: bool) { function add_just_enum (line 782) | pub fn add_just_enum(&mut self, just_enum: OptionalByte) { function add_maybe_enum (line 787) | pub fn add_maybe_enum(&mut self, maybe_enum: OptionalByte) { function add_default_enum (line 792) | pub fn add_default_enum(&mut self, default_enum: OptionalByte) { function new (line 797) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Sca... function finish (line 806) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 813) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type ScalarStuffT (line 857) | pub struct ScalarStuffT { method pack (line 940) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 897) | fn default() -> Self { function root_as_scalar_stuff (line 1028) | pub fn root_as_scalar_stuff(buf: &[u8]) -> Result, ::fla... function size_prefixed_root_as_scalar_stuff (line 1039) | pub fn size_prefixed_root_as_scalar_stuff(buf: &[u8]) -> Result( function size_prefixed_root_as_scalar_stuff_with_opts (line 1064) | pub fn size_prefixed_root_as_scalar_stuff_with_opts<'b, 'o>( function root_as_scalar_stuff_unchecked (line 1075) | pub unsafe fn root_as_scalar_stuff_unchecked(buf: &[u8]) -> ScalarStuff<... function size_prefixed_root_as_scalar_stuff_unchecked (line 1083) | pub unsafe fn size_prefixed_root_as_scalar_stuff_unchecked(buf: &[u8]) -... constant SCALAR_STUFF_IDENTIFIER (line 1087) | pub const SCALAR_STUFF_IDENTIFIER: &str = "NULL"; function scalar_stuff_buffer_has_identifier (line 1090) | pub fn scalar_stuff_buffer_has_identifier(buf: &[u8]) -> bool { function scalar_stuff_size_prefixed_buffer_has_identifier (line 1095) | pub fn scalar_stuff_size_prefixed_buffer_has_identifier(buf: &[u8]) -> b... constant SCALAR_STUFF_EXTENSION (line 1099) | pub const SCALAR_STUFF_EXTENSION: &str = "mon"; function finish_scalar_stuff_buffer (line 1102) | pub fn finish_scalar_stuff_buffer<'a, 'b, A: ::flatbuffers::Allocator + ... function finish_size_prefixed_scalar_stuff_buffer (line 1110) | pub fn finish_size_prefixed_scalar_stuff_buffer<'a, 'b, A: ::flatbuffers... FILE: tests/optional_scalars_test.cpp type flatbuffers (line 10) | namespace flatbuffers { type tests (line 11) | namespace tests { function OptionalScalarsTest (line 13) | void OptionalScalarsTest() { FILE: tests/optional_scalars_test.h function namespace (line 4) | namespace flatbuffers { FILE: tests/order/Food.go type FoodT (line 11) | type FoodT struct method Pack (line 16) | func (t *FoodT) Pack(builder *flatbuffers.Builder) flatbuffers.UOffsetT { type Food (line 42) | type Food struct method UnPackTo (line 28) | func (rcv *Food) UnPackTo(t *FoodT) { method UnPack (line 33) | func (rcv *Food) UnPack() *FoodT { method Init (line 60) | func (rcv *Food) Init(buf []byte, i flatbuffers.UOffsetT) { method Table (line 65) | func (rcv *Food) Table() flatbuffers.Table { method Pizza (line 69) | func (rcv *Food) Pizza(obj *Pizza.Pizza) *Pizza.Pizza { method PizzaTest (line 82) | func (rcv *Food) PizzaTest(obj *Pizza.Pizza) *Pizza.Pizza { function GetRootAsFood (line 46) | func GetRootAsFood(buf []byte, offset flatbuffers.UOffsetT) *Food { function GetSizePrefixedRootAsFood (line 53) | func GetSizePrefixedRootAsFood(buf []byte, offset flatbuffers.UOffsetT) ... function FoodStart (line 95) | func FoodStart(builder *flatbuffers.Builder) { function FoodAddPizza (line 98) | func FoodAddPizza(builder *flatbuffers.Builder, pizza flatbuffers.UOffse... function FoodAddPizzaTest (line 101) | func FoodAddPizzaTest(builder *flatbuffers.Builder, pizzaTest flatbuffer... function FoodEnd (line 104) | func FoodEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { FILE: tests/parser_test.cpp type flatbuffers (line 10) | namespace flatbuffers { type tests (line 11) | namespace tests { function TestError_ (line 19) | static void TestError_(const char* src, const char* error_substr, function TestError_ (line 36) | static void TestError_(const char* src, const char* error_substr, function FloatCompare (line 49) | static bool FloatCompare(float a, float b) { return fabs(a - b) < 0.... function ErrorTest (line 55) | void ErrorTest() { function EnumOutOfRangeTest (line 158) | void EnumOutOfRangeTest() { function IntegerOutOfRangeTest (line 183) | void IntegerOutOfRangeTest() { function InvalidFloatTest (line 251) | void InvalidFloatTest() { function UnicodeInvalidSurrogatesTest (line 320) | void UnicodeInvalidSurrogatesTest() { function InvalidUTF8Test (line 348) | void InvalidUTF8Test() { function T (line 466) | T TestValue(const char* json, const char* type_name, function ValueTest (line 501) | void ValueTest() { function NestedListTest (line 545) | void NestedListTest() { function EnumStringsTest (line 553) | void EnumStringsTest() { function EnumValueTest (line 573) | void EnumValueTest() { function IntegerBoundaryTest (line 602) | void IntegerBoundaryTest() { function ValidFloatTest (line 651) | void ValidFloatTest() { function UnicodeTest (line 734) | void UnicodeTest() { function UnicodeTestAllowNonUTF8 (line 753) | void UnicodeTestAllowNonUTF8() { function UnicodeTestGenerateTextFailsOnNonUTF8 (line 773) | void UnicodeTestGenerateTextFailsOnNonUTF8() { function UnicodeSurrogatesTest (line 794) | void UnicodeSurrogatesTest() { function UnknownFieldsTest (line 808) | void UnknownFieldsTest() { function ParseUnionTest (line 833) | void ParseUnionTest() { function ValidSameNameDifferentNamespaceTest (line 862) | void ValidSameNameDifferentNamespaceTest() { function WarningsAsErrorsTest (line 876) | void WarningsAsErrorsTest() { function StringVectorDefaultsTest (line 895) | void StringVectorDefaultsTest() { function FieldIdentifierTest (line 913) | void FieldIdentifierTest() { FILE: tests/parser_test.h function namespace (line 4) | namespace flatbuffers { FILE: tests/phpTest.php function main (line 12) | function main() function test_buffer (line 97) | function test_buffer(Assert $assert, Google\FlatBuffers\ByteBuffer $bb) { function fuzzTest1 (line 195) | function fuzzTest1(Assert $assert) function fieldIndexToOffset (line 327) | function fieldIndexToOffset($field_id) { function testByteBuffer (line 333) | function testByteBuffer(Assert $assert) { class Assert (line 601) | class Assert { method ok (line 602) | public function ok($result, $message = "") { method Equal (line 608) | public function Equal($result, $expected, $message = "") { method strictEqual (line 615) | public function strictEqual($result, $expected, $message = "") { method Throws (line 621) | public function Throws($class, Callable $callback) { FILE: tests/phpUnionVectorTest.php class Assert (line 14) | class Assert { method ok (line 15) | public function ok($result, $message = "") { method Equal (line 21) | public function Equal($result, $expected, $message = "") { method strictEqual (line 28) | public function strictEqual($result, $expected, $message = "") { method Throws (line 34) | public function Throws($class, Callable $callback) { function main (line 47) | function main() FILE: tests/private_annotation_test/ab_generated.rs constant ENUM_MIN_AB (line 7) | pub const ENUM_MIN_AB: i8 = 0; constant ENUM_MAX_AB (line 10) | pub const ENUM_MAX_AB: i8 = 1; constant ENUM_VALUES_AB (line 14) | pub const ENUM_VALUES_AB: [AB; 2] = [ type AB (line 21) | pub(crate) struct AB(pub i8); constant A (line 25) | pub const A: Self = Self(0); constant B (line 26) | pub const B: Self = Self(1); constant ENUM_MIN (line 28) | pub const ENUM_MIN: i8 = 0; constant ENUM_MAX (line 29) | pub const ENUM_MAX: i8 = 1; constant ENUM_VALUES (line 30) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 36) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 46) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 56) | type Inner = Self; method follow (line 59) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 66) | type Output = AB; method push (line 69) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 75) | type Scalar = i8; method to_little_endian (line 78) | fn to_little_endian(self) -> i8 { method from_little_endian (line 84) | fn from_little_endian(v: i8) -> Self { method run_verifier (line 92) | fn run_verifier( FILE: tests/private_annotation_test/annotations_generated.rs type AnnotationsOffset (line 6) | pub(crate) enum AnnotationsOffset {} type Annotations (line 9) | pub(crate) struct Annotations<'a> { type Inner (line 14) | type Inner = Annotations<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_VALUE (line 23) | pub const VT_VALUE: ::flatbuffers::VOffsetT = 4; function get_fully_qualified_name (line 25) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 30) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 35) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 44) | pub fn unpack(&self) -> AnnotationsT { function value (line 52) | pub fn value(&self) -> i32 { function run_verifier (line 62) | fn run_verifier( type AnnotationsArgs (line 72) | pub(crate) struct AnnotationsArgs { method default (line 78) | fn default() -> Self { type AnnotationsBuilder (line 85) | pub(crate) struct AnnotationsBuilder<'a: 'b, 'b, A: ::flatbuffers::Alloc... function add_value (line 92) | pub fn add_value(&mut self, value: i32) { function new (line 97) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Ann... function finish (line 106) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 113) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type AnnotationsT (line 122) | pub(crate) struct AnnotationsT { method pack (line 135) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 127) | fn default() -> Self { FILE: tests/private_annotation_test/any_generated.rs constant ENUM_MIN_ANY (line 7) | pub const ENUM_MIN_ANY: u8 = 0; constant ENUM_MAX_ANY (line 10) | pub const ENUM_MAX_ANY: u8 = 2; constant ENUM_VALUES_ANY (line 14) | pub const ENUM_VALUES_ANY: [Any; 3] = [ type Any (line 22) | pub(crate) struct Any(pub u8); constant NONE (line 26) | pub const NONE: Self = Self(0); constant Game (line 27) | pub const Game: Self = Self(1); constant Annotations (line 28) | pub const Annotations: Self = Self(2); constant ENUM_MIN (line 30) | pub const ENUM_MIN: u8 = 0; constant ENUM_MAX (line 31) | pub const ENUM_MAX: u8 = 2; constant ENUM_VALUES (line 32) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 39) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 50) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 60) | type Inner = Self; method follow (line 63) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 70) | type Output = Any; method push (line 73) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 79) | type Scalar = u8; method to_little_endian (line 82) | fn to_little_endian(self) -> u8 { method from_little_endian (line 88) | fn from_little_endian(v: u8) -> Self { method run_verifier (line 96) | fn run_verifier( type AnyUnionTableOffset (line 105) | pub(crate) struct AnyUnionTableOffset {} type AnyT (line 110) | pub(crate) enum AnyT { method any_type (line 123) | pub fn any_type(&self) -> Any { method pack (line 131) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>(&self, fbb: &mut ::f... method take_game (line 140) | pub fn take_game(&mut self) -> Option> { method as_game (line 154) | pub fn as_game(&self) -> Option<&GameT> { method as_game_mut (line 159) | pub fn as_game_mut(&mut self) -> Option<&mut GameT> { method take_annotations (line 164) | pub fn take_annotations(&mut self) -> Option Option<&AnnotationsT> { method as_annotations_mut (line 183) | pub fn as_annotations_mut(&mut self) -> Option<&mut AnnotationsT> { method default (line 117) | fn default() -> Self { FILE: tests/private_annotation_test/game_generated.rs type GameOffset (line 6) | pub(crate) enum GameOffset {} type Game (line 9) | pub(crate) struct Game<'a> { type Inner (line 14) | type Inner = Game<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_VALUE (line 23) | pub const VT_VALUE: ::flatbuffers::VOffsetT = 4; function get_fully_qualified_name (line 25) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 30) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 35) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 44) | pub fn unpack(&self) -> GameT { function value (line 52) | pub fn value(&self) -> i32 { function run_verifier (line 62) | fn run_verifier( type GameArgs (line 72) | pub(crate) struct GameArgs { method default (line 78) | fn default() -> Self { type GameBuilder (line 85) | pub(crate) struct GameBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + ... function add_value (line 92) | pub fn add_value(&mut self, value: i32) { function new (line 97) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Gam... function finish (line 106) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 113) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type GameT (line 122) | pub(crate) struct GameT { method pack (line 135) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 127) | fn default() -> Self { FILE: tests/private_annotation_test/object_generated.rs type Object (line 9) | pub(crate) struct Object(pub [u8; 4]); method fmt (line 18) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 28) | type Inner = &'a Object; method follow (line 31) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 46) | type Output = Object; method push (line 49) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 55) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 62) | fn run_verifier( method new (line 71) | pub fn new( method get_fully_qualified_name (line 79) | pub const fn get_fully_qualified_name() -> &'static str { method value (line 83) | pub fn value(&self) -> i32 { method set_value (line 98) | pub fn set_value(&mut self, x: i32) { method unpack (line 112) | pub fn unpack(&self) -> ObjectT { method default (line 12) | fn default() -> Self { type Inner (line 37) | type Inner = &'a Object; function follow (line 40) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type ObjectT (line 120) | pub(crate) struct ObjectT { method pack (line 132) | pub fn pack(&self) -> Object { method default (line 124) | fn default() -> Self { FILE: tests/proto_test.cpp type flatbuffers (line 7) | namespace flatbuffers { type tests (line 8) | namespace tests { function RunTest (line 10) | void RunTest(const flatbuffers::IDLOptions& opts, const std::string&... function proto_test (line 51) | void proto_test(const std::string& proto_path, const std::string& pr... function proto_test_id (line 66) | void proto_test_id(const std::string& proto_path, function proto_test_union (line 83) | void proto_test_union(const std::string& proto_path, function proto_test_union_id (line 99) | void proto_test_union_id(const std::string& proto_path, function proto_test_union_suffix (line 117) | void proto_test_union_suffix(const std::string& proto_path, function proto_test_union_suffix_id (line 134) | void proto_test_union_suffix_id(const std::string& proto_path, function proto_test_include (line 152) | void proto_test_include(const std::string& proto_path, function proto_test_include_id (line 169) | void proto_test_include_id(const std::string& proto_path, function proto_test_include_union (line 187) | void proto_test_include_union(const std::string& proto_path, function proto_test_include_union_id (line 205) | void proto_test_include_union_id(const std::string& proto_path, function ParseCorruptedProto (line 224) | void ParseCorruptedProto(const std::string& proto_path) { function ParseProtoTest (line 285) | void ParseProtoTest(const std::string& tests_data_path) { function ParseProtoBufAsciiTest (line 314) | void ParseProtoBufAsciiTest() { FILE: tests/proto_test.h function namespace (line 8) | namespace flatbuffers { FILE: tests/py_flexbuffers_test.py function read_test_file (line 41) | def read_test_file(name): function packed_type (line 46) | def packed_type(type_, i): function uint_size (line 50) | def uint_size(value): function int_size (line 60) | def int_size(value): function uint_sizes (line 68) | def uint_sizes(value): function int_sizes (line 72) | def int_sizes(value): function int_bytes (line 76) | def int_bytes(value, byte_width): function uint_bytes (line 82) | def uint_bytes(value, byte_width): function float_bytes (line 88) | def float_bytes(value, byte_width): function min_value (line 92) | def min_value(type_, byte_width): function max_value (line 103) | def max_value(type_, byte_width): function str_bytes (line 114) | def str_bytes(value, byte_width): function key_bytes (line 119) | def key_bytes(value): function encode_type (line 123) | def encode_type(type_, value, byte_width=None): class UtilTest (line 153) | class UtilTest(unittest.TestCase): method _test_type_predicate (line 156) | def _test_type_predicate(self, pred, types): method test_inline_types (line 165) | def test_inline_types(self): method test_typed_vector (line 170) | def test_typed_vector(self): method test_fixed_typed_vector (line 211) | def test_fixed_typed_vector(self): method test_width (line 283) | def test_width(self): method test_padding (line 290) | def test_padding(self): class DecoderTest (line 301) | class DecoderTest(unittest.TestCase): method test_null (line 315) | def test_null(self): method test_bool (line 347) | def test_bool(self): method test_mutate_bool (line 380) | def test_mutate_bool(self): method _check_int (line 393) | def _check_int(self, data, value): method test_int (line 416) | def test_int(self): method test_indirect_int (line 429) | def test_indirect_int(self): method test_uint (line 444) | def test_uint(self): method test_inidirect_uint (line 457) | def test_inidirect_uint(self): method test_mutate_ints (line 473) | def test_mutate_ints(self): method _check_float (line 520) | def _check_float(self, data, value): method test_float (line 541) | def test_float(self): method test_indirect_float (line 554) | def test_indirect_float(self): method test_mutate_float (line 570) | def test_mutate_float(self): method test_string (line 591) | def test_string(self): method test_mutate_string (line 616) | def test_mutate_string(self): method test_empty_blob (line 635) | def test_empty_blob(self): method test_blob (line 654) | def test_blob(self): method test_key (line 675) | def test_key(self): method _check_fixed_typed_vector (line 696) | def _check_fixed_typed_vector(self, data, vector, type_): method test_fixed_typed_vector_float (line 710) | def test_fixed_typed_vector_float(self): method test_fixed_typed_vector_int (line 731) | def test_fixed_typed_vector_int(self): method test_fixed_typed_vector_uint (line 751) | def test_fixed_typed_vector_uint(self): method _check_typed_vector (line 771) | def _check_typed_vector(self, data, vector, type_): method test_empty_typed_vector (line 785) | def test_empty_typed_vector(self): method test_typed_vector_bool (line 811) | def test_typed_vector_bool(self): method test_typed_vector_int (line 828) | def test_typed_vector_int(self): method test_typed_vector_uint (line 845) | def test_typed_vector_uint(self): method test_typed_vector_float (line 862) | def test_typed_vector_float(self): method test_typed_vector_key (line 881) | def test_typed_vector_key(self): method test_typed_vector_string (line 904) | def test_typed_vector_string(self): method test_typed_vector_string_deprecated (line 929) | def test_typed_vector_string_deprecated(self): method test_typed_vector_invalid (line 942) | def test_typed_vector_invalid(self): method test_empty_vector (line 948) | def test_empty_vector(self): method test_vector1 (line 965) | def test_vector1(self): method test_vector2 (line 1018) | def test_vector2(self): method test_empty_map (line 1057) | def test_empty_map(self): method test_map (line 1078) | def test_map(self): method test_alignment (line 1141) | def test_alignment(self): class EncoderTest (line 1164) | class EncoderTest(unittest.TestCase): method test_null (line 1167) | def test_null(self): method test_bool (line 1175) | def test_bool(self): method test_int (line 1180) | def test_int(self): method test_float (line 1192) | def test_float(self): method test_string (line 1205) | def test_string(self): method test_blob (line 1211) | def test_blob(self): method test_key (line 1217) | def test_key(self): method test_vector (line 1226) | def test_vector(self): method test_nested_vectors (line 1267) | def test_nested_vectors(self): method test_big_vector (line 1282) | def test_big_vector(self): method test_typed_vector (line 1290) | def test_typed_vector(self): method test_typed_vector_from_array (line 1335) | def test_typed_vector_from_array(self): method test_fixed_typed_vector (line 1359) | def test_fixed_typed_vector(self): method test_map_builder (line 1397) | def test_map_builder(self): method test_map_python (line 1476) | def test_map_python(self): method test_gold_from_file (line 1497) | def test_gold_from_file(self): method test_gold_from_builder (line 1501) | def test_gold_from_builder(self): method test_min_bit_width (line 1525) | def test_min_bit_width(self): method test_share_keys (line 1542) | def test_share_keys(self): method test_share_strings (line 1562) | def test_share_strings(self): method test_invalid_stack_size (line 1582) | def test_invalid_stack_size(self): FILE: tests/py_test.py function create_namespace_shortcut (line 64) | def create_namespace_shortcut(is_onefile): function assertRaises (line 93) | def assertRaises(test_case, fn, exception_class): function byte_swap_array (line 105) | def byte_swap_array(np_version, arr): class TestWireFormat (line 125) | class TestWireFormat(unittest.TestCase): method test_wire_format (line 127) | def test_wire_format(self): class TestObjectBasedAPI (line 157) | class TestObjectBasedAPI(unittest.TestCase): method test_consistency_with_repeated_pack_and_unpack (line 160) | def test_consistency_with_repeated_pack_and_unpack(self): method test_default_values_with_pack_and_unpack (line 195) | def test_default_values_with_pack_and_unpack(self): method test_optional_scalars_with_pack_and_unpack (line 310) | def test_optional_scalars_with_pack_and_unpack(self): class TestAllMutableCodePathsOfExampleSchema (line 344) | class TestAllMutableCodePathsOfExampleSchema(unittest.TestCase): method setUp (line 353) | def setUp(self, *args, **kwargs): method _pack_and_load_buf_class (line 361) | def _pack_and_load_buf_class(self, monsterT): method _create_and_load_object_class (line 371) | def _create_and_load_object_class(self, b): method test_mutate_pos (line 383) | def test_mutate_pos(self): method test_mutate_mana (line 413) | def test_mutate_mana(self): method test_mutate_hp (line 418) | def test_mutate_hp(self): method test_mutate_name (line 423) | def test_mutate_name(self): method test_mutate_inventory (line 428) | def test_mutate_inventory(self): method test_empty_inventory (line 435) | def test_empty_inventory(self): method test_mutate_color (line 440) | def test_mutate_color(self): method test_mutate_testtype (line 445) | def test_mutate_testtype(self): method test_mutate_test (line 450) | def test_mutate_test(self): method test_mutate_test4 (line 463) | def test_mutate_test4(self): method test_empty_test4 (line 480) | def test_empty_test4(self): method test_mutate_testarrayofstring (line 485) | def test_mutate_testarrayofstring(self): method test_empty_testarrayofstring (line 493) | def test_empty_testarrayofstring(self): method test_mutate_testarrayoftables (line 498) | def test_mutate_testarrayoftables(self): method test_empty_testarrayoftables (line 510) | def test_empty_testarrayoftables(self): method test_mutate_enemy (line 515) | def test_mutate_enemy(self): method test_mutate_testnestedflatbuffer (line 522) | def test_mutate_testnestedflatbuffer(self): method test_empty_testnestedflatbuffer (line 529) | def test_empty_testnestedflatbuffer(self): method test_mutate_testbool (line 534) | def test_mutate_testbool(self): method test_mutate_testhashes (line 539) | def test_mutate_testhashes(self): method test_mutate_testarrayofbools (line 558) | def test_mutate_testarrayofbools(self): method test_empty_testarrayofbools (line 568) | def test_empty_testarrayofbools(self): method test_mutate_testf (line 573) | def test_mutate_testf(self): method test_mutate_vectoroflongs (line 578) | def test_mutate_vectoroflongs(self): method test_empty_vectoroflongs (line 592) | def test_empty_vectoroflongs(self): method test_mutate_vectorofdoubles (line 597) | def test_mutate_vectorofdoubles(self): method test_empty_vectorofdoubles (line 607) | def test_empty_vectorofdoubles(self): method test_mutate_parentnamespacetest (line 612) | def test_mutate_parentnamespacetest(self): method test_mutate_vectorofEnums (line 624) | def test_mutate_vectorofEnums(self): method test_empty_vectorofEnums (line 634) | def test_empty_vectorofEnums(self): function CheckReadBuffer (line 640) | def CheckReadBuffer(buf, offset, sizePrefix=False, file_identifier=None): class TestFuzz (line 798) | class TestFuzz(unittest.TestCase): method test_fuzz (line 829) | def test_fuzz(self): method check_once (line 832) | def check_once(self, fuzzFields, fuzzObjects): class TestByteLayout (line 946) | class TestByteLayout(unittest.TestCase): method assertBuilderEquals (line 949) | def assertBuilderEquals(self, builder, want_chars_or_ints): method test_numbers (line 961) | def test_numbers(self): method test_numbers64 (line 1002) | def test_numbers64(self): method test_1xbyte_vector (line 1015) | def test_1xbyte_vector(self): method test_2xbyte_vector (line 1025) | def test_2xbyte_vector(self): method test_1xuint16_vector (line 1036) | def test_1xuint16_vector(self): method test_2xuint16_vector (line 1045) | def test_2xuint16_vector(self): method test_create_ascii_shared_string (line 1056) | def test_create_ascii_shared_string(self): method test_create_utf8_shared_string (line 1092) | def test_create_utf8_shared_string(self): method test_create_arbitrary_shared_string (line 1112) | def test_create_arbitrary_shared_string(self): method test_create_ascii_string (line 1127) | def test_create_ascii_string(self): method test_create_utf8_string (line 1161) | def test_create_utf8_string(self): method test_create_arbitrary_string (line 1179) | def test_create_arbitrary_string(self): method test_create_byte_vector (line 1192) | def test_create_byte_vector(self): method test_comparison_of_np_arrays (line 1203) | def test_comparison_of_np_arrays(self): method test_create_numpy_vector_int8 (line 1232) | def test_create_numpy_vector_int8(self): method test_create_numpy_vector_uint16 (line 1280) | def test_create_numpy_vector_uint16(self): method test_create_numpy_vector_int64 (line 1336) | def test_create_numpy_vector_int64(self): method test_create_numpy_vector_float32 (line 1425) | def test_create_numpy_vector_float32(self): method test_create_numpy_vector_float64 (line 1490) | def test_create_numpy_vector_float64(self): method test_create_numpy_vector_bool (line 1579) | def test_create_numpy_vector_bool(self): method test_create_numpy_vector_reject_strings (line 1610) | def test_create_numpy_vector_reject_strings(self): method test_create_numpy_vector_reject_object (line 1628) | def test_create_numpy_vector_reject_object(self): method test_empty_vtable (line 1646) | def test_empty_vtable(self): method test_vtable_with_one_true_bool (line 1653) | def test_vtable_with_one_true_bool(self): method test_vtable_with_one_default_bool (line 1680) | def test_vtable_with_one_default_bool(self): method test_vtable_with_one_int16 (line 1702) | def test_vtable_with_one_int16(self): method test_vtable_with_two_int16 (line 1727) | def test_vtable_with_two_int16(self): method test_vtable_with_int16_and_bool (line 1755) | def test_vtable_with_int16_and_bool(self): method test_vtable_with_empty_vector (line 1783) | def test_vtable_with_empty_vector(self): method test_vtable_with_empty_vector_of_byte_and_some_scalars (line 1814) | def test_vtable_with_empty_vector_of_byte_and_some_scalars(self): method test_vtable_with_1_int16_and_2vector_of_int16 (line 1852) | def test_vtable_with_1_int16_and_2vector_of_int16(self): method test_vtable_with_1_struct_of_1_int8__1_int16__1_int32 (line 1896) | def test_vtable_with_1_struct_of_1_int8__1_int16__1_int32(self): method test_vtable_with_1_vector_of_2_struct_of_2_int8 (line 1936) | def test_vtable_with_1_vector_of_2_struct_of_2_int8(self): method test_table_with_some_elements (line 1975) | def test_table_with_some_elements(self): method test__one_unfinished_table_and_one_finished_table (line 2009) | def test__one_unfinished_table_and_one_finished_table(self): method test_a_bunch_of_bools (line 2074) | def test_a_bunch_of_bools(self): method test_three_bools (line 2130) | def test_three_bools(self): method test_some_floats (line 2169) | def test_some_floats(self): function make_monster_from_generated_code (line 2196) | def make_monster_from_generated_code( class TestBuilderForceDefaults (line 2258) | class TestBuilderForceDefaults(unittest.TestCase): method test_default_force_defaults (line 2276) | def test_default_force_defaults(self): method test_force_defaults_true (line 2289) | def test_force_defaults_true(self): class TestAllCodePathsOfExampleSchema (line 2304) | class TestAllCodePathsOfExampleSchema(unittest.TestCase): method setUp (line 2306) | def setUp(self, *args, **kwargs): method test_default_monster_pos (line 2316) | def test_default_monster_pos(self): method test_nondefault_monster_mana (line 2319) | def test_nondefault_monster_mana(self): method test_default_monster_hp (line 2329) | def test_default_monster_hp(self): method test_default_monster_name (line 2332) | def test_default_monster_name(self): method test_default_monster_inventory_item (line 2335) | def test_default_monster_inventory_item(self): method test_default_monster_inventory_length (line 2338) | def test_default_monster_inventory_length(self): method test_empty_monster_inventory_vector (line 2342) | def test_empty_monster_inventory_vector(self): method test_default_monster_color (line 2353) | def test_default_monster_color(self): method test_nondefault_monster_color (line 2356) | def test_nondefault_monster_color(self): method test_default_monster_testtype (line 2367) | def test_default_monster_testtype(self): method test_default_monster_test_field (line 2370) | def test_default_monster_test_field(self): method test_default_monster_test4_item (line 2373) | def test_default_monster_test4_item(self): method test_default_monster_test4_length (line 2376) | def test_default_monster_test4_length(self): method test_empty_monster_test4_vector (line 2380) | def test_empty_monster_test4_vector(self): method test_default_monster_testarrayofstring (line 2391) | def test_default_monster_testarrayofstring(self): method test_default_monster_testarrayofstring_length (line 2394) | def test_default_monster_testarrayofstring_length(self): method test_empty_monster_testarrayofstring_vector (line 2398) | def test_empty_monster_testarrayofstring_vector(self): method test_default_monster_testarrayoftables (line 2409) | def test_default_monster_testarrayoftables(self): method test_nondefault_monster_testarrayoftables (line 2412) | def test_nondefault_monster_testarrayoftables(self): method test_default_monster_testarrayoftables_length (line 2437) | def test_default_monster_testarrayoftables_length(self): method test_empty_monster_testarrayoftables_vector (line 2441) | def test_empty_monster_testarrayoftables_vector(self): method test_default_monster_testarrayoftables_length (line 2452) | def test_default_monster_testarrayoftables_length(self): method test_nondefault_monster_enemy (line 2455) | def test_nondefault_monster_enemy(self): method test_default_monster_testnestedflatbuffer (line 2474) | def test_default_monster_testnestedflatbuffer(self): method test_default_monster_testnestedflatbuffer_length (line 2477) | def test_default_monster_testnestedflatbuffer_length(self): method test_empty_monster_testnestedflatbuffer_vector (line 2481) | def test_empty_monster_testnestedflatbuffer_vector(self): method test_nondefault_monster_testnestedflatbuffer (line 2492) | def test_nondefault_monster_testnestedflatbuffer(self): method test_nested_monster_testnestedflatbuffer (line 2527) | def test_nested_monster_testnestedflatbuffer(self): method test_nondefault_monster_testempty (line 2556) | def test_nondefault_monster_testempty(self): method test_default_monster_testbool (line 2575) | def test_default_monster_testbool(self): method test_nondefault_monster_testbool (line 2578) | def test_nondefault_monster_testbool(self): method test_default_monster_testhashes (line 2589) | def test_default_monster_testhashes(self): method test_nondefault_monster_testhashes (line 2599) | def test_nondefault_monster_testhashes(self): method test_default_monster_parent_namespace_test (line 2624) | def test_default_monster_parent_namespace_test(self): method test_nondefault_monster_parent_namespace_test (line 2627) | def test_nondefault_monster_parent_namespace_test(self): method test_getrootas_for_nonroot_table (line 2645) | def test_getrootas_for_nonroot_table(self): class TestAllCodePathsOfMonsterExtraSchema (line 2663) | class TestAllCodePathsOfMonsterExtraSchema(unittest.TestCase): method setUp (line 2665) | def setUp(self, *args, **kwargs): method test_default_nan_inf (line 2675) | def test_default_nan_inf(self): class TestVtableDeduplication (line 2685) | class TestVtableDeduplication(unittest.TestCase): method test_vtable_deduplication (line 2688) | def test_vtable_deduplication(self): method test_vtable_deduplication_respects_object_size (line 2785) | def test_vtable_deduplication_respects_object_size(self): class TestExceptions (line 2809) | class TestExceptions(unittest.TestCase): method test_object_is_nested_error (line 2811) | def test_object_is_nested_error(self): method test_object_is_not_nested_error (line 2818) | def test_object_is_not_nested_error(self): method test_struct_is_not_inline_error (line 2824) | def test_struct_is_not_inline_error(self): method test_unreachable_error (line 2833) | def test_unreachable_error(self): method test_create_shared_string_is_nested_error (line 2841) | def test_create_shared_string_is_nested_error(self): method test_create_string_is_nested_error (line 2849) | def test_create_string_is_nested_error(self): method test_create_byte_vector_is_nested_error (line 2857) | def test_create_byte_vector_is_nested_error(self): method test_finished_bytes_error (line 2865) | def test_finished_bytes_error(self): class TestFixedLengthArrays (line 2872) | class TestFixedLengthArrays(unittest.TestCase): method test_fixed_length_array (line 2874) | def test_fixed_length_array(self): class TestNestedUnionTables (line 2949) | class TestNestedUnionTables(unittest.TestCase): method test_nested_union_tables (line 2951) | def test_nested_union_tables(self): class TestUnionCreatorNaming (line 3027) | class TestUnionCreatorNaming(unittest.TestCase): method test_union_creator_pack_unpack (line 3034) | def test_union_creator_pack_unpack(self): method test_union_creator_with_bar (line 3052) | def test_union_creator_with_bar(self): class TestBuilderClear (line 3071) | class TestBuilderClear(unittest.TestCase): method test_consistency (line 3073) | def test_consistency(self): method test_repeated_clear_after_builder_reuse (line 3092) | def test_repeated_clear_after_builder_reuse(self): function CheckAgainstGoldDataGo (line 3109) | def CheckAgainstGoldDataGo(): function CheckAgainstGoldDataJava (line 3137) | def CheckAgainstGoldDataJava(): class LCG (line 3157) | class LCG(object): method __init__ (line 3168) | def __init__(self): method Reset (line 3171) | def Reset(self): method Next (line 3174) | def Next(self): function BenchmarkVtableDeduplication (line 3179) | def BenchmarkVtableDeduplication(count): function BenchmarkCheckReadBuffer (line 3223) | def BenchmarkCheckReadBuffer(count, buf, off): function BenchmarkMakeMonsterFromGeneratedCode (line 3243) | def BenchmarkMakeMonsterFromGeneratedCode(count, length): function BenchmarkBuilderClear (line 3261) | def BenchmarkBuilderClear(count, length): function backward_compatible_run_tests (line 3276) | def backward_compatible_run_tests(**kwargs): function main (line 3301) | def main(): FILE: tests/reflection_test.cpp type flatbuffers (line 12) | namespace flatbuffers { type tests (line 13) | namespace tests { function ReflectionTest (line 17) | void ReflectionTest(const std::string& tests_data_path, uint8_t* fla... function MiniReflectFlatBuffersTest (line 251) | void MiniReflectFlatBuffersTest(uint8_t* flatbuf) { function MiniReflectFixedLengthArrayTest (line 301) | void MiniReflectFixedLengthArrayTest() { FILE: tests/reflection_test.h function namespace (line 8) | namespace flatbuffers { FILE: tests/rust_namer_test/rust_namer_test/field_table_generated.rs type FieldTableOffset (line 6) | pub enum FieldTableOffset {} type FieldTable (line 9) | pub struct FieldTable<'a> { type Inner (line 14) | type Inner = FieldTable<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { function get_fully_qualified_name (line 23) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 28) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 33) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 41) | pub fn unpack(&self) -> FieldTableT { function run_verifier (line 49) | fn run_verifier( type FieldTableArgs (line 58) | pub struct FieldTableArgs { method default (line 63) | fn default() -> Self { type FieldTableBuilder (line 69) | pub struct FieldTableBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + '... function new (line 76) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Fie... function finish (line 85) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 92) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type FieldTableT (line 100) | pub struct FieldTableT { method pack (line 111) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 104) | fn default() -> Self { FILE: tests/rust_namer_test/rust_namer_test/field_union_generated.rs constant ENUM_MIN_FIELD_UNION (line 7) | pub const ENUM_MIN_FIELD_UNION: u8 = 0; constant ENUM_MAX_FIELD_UNION (line 10) | pub const ENUM_MAX_FIELD_UNION: u8 = 1; constant ENUM_VALUES_FIELD_UNION (line 14) | pub const ENUM_VALUES_FIELD_UNION: [FieldUnion; 2] = [ type FieldUnion (line 21) | pub struct FieldUnion(pub u8); constant NONE (line 25) | pub const NONE: Self = Self(0); constant f (line 26) | pub const f: Self = Self(1); constant ENUM_MIN (line 28) | pub const ENUM_MIN: u8 = 0; constant ENUM_MAX (line 29) | pub const ENUM_MAX: u8 = 1; constant ENUM_VALUES (line 30) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 36) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 46) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 56) | type Inner = Self; method follow (line 59) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 66) | type Output = FieldUnion; method push (line 69) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 75) | type Scalar = u8; method to_little_endian (line 78) | fn to_little_endian(self) -> u8 { method from_little_endian (line 84) | fn from_little_endian(v: u8) -> Self { method run_verifier (line 92) | fn run_verifier( type FieldUnionUnionTableOffset (line 101) | pub struct FieldUnionUnionTableOffset {} type FieldUnionT (line 106) | pub enum FieldUnionT { method field_union_type (line 118) | pub fn field_union_type(&self) -> FieldUnion { method pack (line 125) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>(&self, fbb: &mut ::f... method take_f (line 133) | pub fn take_f(&mut self) -> Option> { method as_f (line 147) | pub fn as_f(&self) -> Option<&FieldTableT> { method as_f_mut (line 152) | pub fn as_f_mut(&mut self) -> Option<&mut FieldTableT> { method default (line 112) | fn default() -> Self { FILE: tests/rust_namer_test/rust_namer_test/game_message_generated.rs constant ENUM_MIN_GAME_MESSAGE (line 7) | pub const ENUM_MIN_GAME_MESSAGE: u8 = 0; constant ENUM_MAX_GAME_MESSAGE (line 10) | pub const ENUM_MAX_GAME_MESSAGE: u8 = 3; constant ENUM_VALUES_GAME_MESSAGE (line 14) | pub const ENUM_VALUES_GAME_MESSAGE: [GameMessage; 4] = [ type GameMessage (line 23) | pub struct GameMessage(pub u8); constant NONE (line 27) | pub const NONE: Self = Self(0); constant PlayerStatEvent (line 28) | pub const PlayerStatEvent: Self = Self(1); constant PlayerSpectate (line 29) | pub const PlayerSpectate: Self = Self(2); constant PlayerInputChange (line 30) | pub const PlayerInputChange: Self = Self(3); constant ENUM_MIN (line 32) | pub const ENUM_MIN: u8 = 0; constant ENUM_MAX (line 33) | pub const ENUM_MAX: u8 = 3; constant ENUM_VALUES (line 34) | pub const ENUM_VALUES: &'static [Self] = &[ method variant_name (line 42) | pub fn variant_name(self) -> Option<&'static str> { method fmt (line 54) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 64) | type Inner = Self; method follow (line 67) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 74) | type Output = GameMessage; method push (line 77) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { type Scalar (line 83) | type Scalar = u8; method to_little_endian (line 86) | fn to_little_endian(self) -> u8 { method from_little_endian (line 92) | fn from_little_endian(v: u8) -> Self { method run_verifier (line 100) | fn run_verifier( type GameMessageUnionTableOffset (line 109) | pub struct GameMessageUnionTableOffset {} type GameMessageT (line 114) | pub enum GameMessageT { method game_message_type (line 128) | pub fn game_message_type(&self) -> GameMessage { method pack (line 137) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>(&self, fbb: &mut ::f... method take_player_stat_event (line 147) | pub fn take_player_stat_event(&mut self) -> Option Option<&PlayerStatEventT> { method as_player_stat_event_mut (line 166) | pub fn as_player_stat_event_mut(&mut self) -> Option<&mut PlayerStatEv... method take_player_spectate (line 171) | pub fn take_player_spectate(&mut self) -> Option Option<&PlayerSpectateT> { method as_player_spectate_mut (line 190) | pub fn as_player_spectate_mut(&mut self) -> Option<&mut PlayerSpectate... method take_player_input_change (line 195) | pub fn take_player_input_change(&mut self) -> Option Option<&PlayerInputChangeT> { method as_player_input_change_mut (line 214) | pub fn as_player_input_change_mut(&mut self) -> Option<&mut PlayerInpu... method default (line 122) | fn default() -> Self { FILE: tests/rust_namer_test/rust_namer_test/game_message_wrapper_generated.rs type GameMessageWrapperOffset (line 6) | pub enum GameMessageWrapperOffset {} type GameMessageWrapper (line 9) | pub struct GameMessageWrapper<'a> { type Inner (line 14) | type Inner = GameMessageWrapper<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_MESSAGE_TYPE (line 23) | pub const VT_MESSAGE_TYPE: ::flatbuffers::VOffsetT = 4; constant VT_MESSAGE (line 24) | pub const VT_MESSAGE: ::flatbuffers::VOffsetT = 6; function get_fully_qualified_name (line 26) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 31) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 36) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 46) | pub fn unpack(&self) -> GameMessageWrapperT { function Message_type (line 72) | pub fn Message_type(&self) -> GameMessage { function Message (line 80) | pub fn Message(&self) -> Option<::flatbuffers::Table<'a>> { function Message_as_player_stat_event (line 89) | pub fn Message_as_player_stat_event(&self) -> Option> { function Message_as_player_spectate (line 104) | pub fn Message_as_player_spectate(&self) -> Option> { function Message_as_player_input_change (line 119) | pub fn Message_as_player_input_change(&self) -> Option Self { type GameMessageWrapperBuilder (line 167) | pub struct GameMessageWrapperBuilder<'a: 'b, 'b, A: ::flatbuffers::Alloc... function add_Message_type (line 174) | pub fn add_Message_type(&mut self, Message_type: GameMessage) { function add_Message (line 179) | pub fn add_Message(&mut self, Message: ::flatbuffers::WIPOffset<::flatbu... function new (line 184) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Gam... function finish (line 193) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 200) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type GameMessageWrapperT (line 236) | pub struct GameMessageWrapperT { method pack (line 249) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 241) | fn default() -> Self { FILE: tests/rust_namer_test/rust_namer_test/player_input_change_generated.rs type PlayerInputChangeOffset (line 6) | pub enum PlayerInputChangeOffset {} type PlayerInputChange (line 9) | pub struct PlayerInputChange<'a> { type Inner (line 14) | type Inner = PlayerInputChange<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { function get_fully_qualified_name (line 23) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 28) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 33) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 41) | pub fn unpack(&self) -> PlayerInputChangeT { function run_verifier (line 49) | fn run_verifier( type PlayerInputChangeArgs (line 58) | pub struct PlayerInputChangeArgs { method default (line 63) | fn default() -> Self { type PlayerInputChangeBuilder (line 69) | pub struct PlayerInputChangeBuilder<'a: 'b, 'b, A: ::flatbuffers::Alloca... function new (line 76) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Pla... function finish (line 85) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 92) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type PlayerInputChangeT (line 100) | pub struct PlayerInputChangeT { method pack (line 111) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 104) | fn default() -> Self { FILE: tests/rust_namer_test/rust_namer_test/player_spectate_generated.rs type PlayerSpectateOffset (line 6) | pub enum PlayerSpectateOffset {} type PlayerSpectate (line 9) | pub struct PlayerSpectate<'a> { type Inner (line 14) | type Inner = PlayerSpectate<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { function get_fully_qualified_name (line 23) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 28) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 33) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 41) | pub fn unpack(&self) -> PlayerSpectateT { function run_verifier (line 49) | fn run_verifier( type PlayerSpectateArgs (line 58) | pub struct PlayerSpectateArgs { method default (line 63) | fn default() -> Self { type PlayerSpectateBuilder (line 69) | pub struct PlayerSpectateBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator... function new (line 76) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Pla... function finish (line 85) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 92) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type PlayerSpectateT (line 100) | pub struct PlayerSpectateT { method pack (line 111) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 104) | fn default() -> Self { FILE: tests/rust_namer_test/rust_namer_test/player_stat_event_generated.rs type PlayerStatEventOffset (line 6) | pub enum PlayerStatEventOffset {} type PlayerStatEvent (line 9) | pub struct PlayerStatEvent<'a> { type Inner (line 14) | type Inner = PlayerStatEvent<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { function get_fully_qualified_name (line 23) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 28) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 33) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 41) | pub fn unpack(&self) -> PlayerStatEventT { function run_verifier (line 49) | fn run_verifier( type PlayerStatEventArgs (line 58) | pub struct PlayerStatEventArgs { method default (line 63) | fn default() -> Self { type PlayerStatEventBuilder (line 69) | pub struct PlayerStatEventBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocato... function new (line 76) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Pla... function finish (line 85) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 92) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type PlayerStatEventT (line 100) | pub struct PlayerStatEventT { method pack (line 111) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 104) | fn default() -> Self { FILE: tests/rust_namer_test/rust_namer_test/possibly_reserved_words_generated.rs type PossiblyReservedWords (line 9) | pub struct PossiblyReservedWords(pub [u8; 16]); method fmt (line 18) | fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { type Inner (line 31) | type Inner = &'a PossiblyReservedWords; method follow (line 34) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Output (line 49) | type Output = PossiblyReservedWords; method push (line 52) | unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { method alignment (line 58) | fn alignment() -> ::flatbuffers::PushAlignment { method run_verifier (line 65) | fn run_verifier( method new (line 74) | pub fn new( method get_fully_qualified_name (line 88) | pub const fn get_fully_qualified_name() -> &'static str { method follow_ (line 92) | pub fn follow_(&self) -> f32 { method set_follow_ (line 107) | pub fn set_follow_(&mut self, x: f32) { method push_ (line 121) | pub fn push_(&self) -> f32 { method set_push_ (line 136) | pub fn set_push_(&mut self, x: f32) { method size (line 150) | pub fn size(&self) -> f32 { method set_size (line 165) | pub fn set_size(&mut self, x: f32) { method alignment (line 179) | pub fn alignment(&self) -> f32 { method set_alignment (line 194) | pub fn set_alignment(&mut self, x: f32) { method unpack (line 208) | pub fn unpack(&self) -> PossiblyReservedWordsT { method default (line 12) | fn default() -> Self { type Inner (line 40) | type Inner = &'a PossiblyReservedWords; function follow (line 43) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type PossiblyReservedWordsT (line 219) | pub struct PossiblyReservedWordsT { method pack (line 237) | pub fn pack(&self) -> PossiblyReservedWords { method default (line 226) | fn default() -> Self { FILE: tests/rust_namer_test/rust_namer_test/root_table_generated.rs type RootTableOffset (line 6) | pub enum RootTableOffset {} type RootTable (line 9) | pub struct RootTable<'a> { type Inner (line 14) | type Inner = RootTable<'a>; function follow (line 17) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { constant VT_FIELD42_TYPE (line 23) | pub const VT_FIELD42_TYPE: ::flatbuffers::VOffsetT = 4; constant VT_FIELD42 (line 24) | pub const VT_FIELD42: ::flatbuffers::VOffsetT = 6; function get_fully_qualified_name (line 26) | pub const fn get_fully_qualified_name() -> &'static str { function init_from_table (line 31) | pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self { function create (line 36) | pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffer... function unpack (line 46) | pub fn unpack(&self) -> RootTableT { function field42_type (line 62) | pub fn field42_type(&self) -> FieldUnion { function field42 (line 70) | pub fn field42(&self) -> Option<::flatbuffers::Table<'a>> { function field42_as_f (line 79) | pub fn field42_as_f(&self) -> Option> { function run_verifier (line 95) | fn run_verifier( type RootTableArgs (line 110) | pub struct RootTableArgs { method default (line 117) | fn default() -> Self { type RootTableBuilder (line 125) | pub struct RootTableBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> { function add_field42_type (line 132) | pub fn add_field42_type(&mut self, field42_type: FieldUnion) { function add_field42 (line 137) | pub fn add_field42(&mut self, field42: ::flatbuffers::WIPOffset<::flatbu... function new (line 142) | pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> Roo... function finish (line 151) | pub fn finish(self) -> ::flatbuffers::WIPOffset> { function fmt (line 158) | fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { type RootTableT (line 180) | pub struct RootTableT { method pack (line 193) | pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>( method default (line 185) | fn default() -> Self { FILE: tests/rust_no_std_compilation_test/src/main.rs type NullAllocator (line 13) | struct NullAllocator; method alloc (line 15) | unsafe fn alloc(&self, _lt: Layout) -> *mut u8 { method dealloc (line 18) | unsafe fn dealloc(&self, _ptr: *mut u8, _lt: Layout) { function panic (line 27) | fn panic(_info: &core::panic::PanicInfo) -> ! { function main (line 32) | pub extern "C" fn main(_argc: i32, _argv: *const *const u8) -> i32 { FILE: tests/rust_reflection_test/src/lib.rs function test_schema_correct_root_table (line 25) | fn test_schema_correct_root_table() { function test_schema_correct_object (line 36) | fn test_schema_correct_object() { function test_schema_correct_enum (line 63) | fn test_schema_correct_enum() { function test_schema_correct_file (line 81) | fn test_schema_correct_file() { function test_schema_correct_table_field (line 110) | fn test_schema_correct_table_field() { function test_schema_correct_table_field_nullability (line 137) | fn test_schema_correct_table_field_nullability() { function test_schema_correct_child_table_index (line 167) | fn test_schema_correct_child_table_index() { function test_buffer_integer_same_type_succeeds (line 184) | fn test_buffer_integer_same_type_succeeds() { function test_buffer_integer_diff_type_same_size_succeeds (line 197) | fn test_buffer_integer_diff_type_same_size_succeeds() { function test_buffer_integer_diff_size_fails (line 210) | fn test_buffer_integer_diff_size_fails() { function test_buffer_float_same_type_succeeds (line 226) | fn test_buffer_float_same_type_succeeds() { function test_buffer_float_diff_type_fails (line 239) | fn test_buffer_float_diff_type_fails() { function test_buffer_string_same_type_succeeds (line 255) | fn test_buffer_string_same_type_succeeds() { function test_buffer_string_diff_type_fails (line 268) | fn test_buffer_string_diff_type_fails() { function test_buffer_struct_same_type_succeeds (line 284) | fn test_buffer_struct_same_type_succeeds() { function test_buffer_struct_diff_type_fails (line 300) | fn test_buffer_struct_diff_type_fails() { function test_buffer_vector_same_type_succeeds (line 316) | fn test_buffer_vector_same_type_succeeds() { function test_buffer_vector_diff_type_fails (line 337) | fn test_buffer_vector_diff_type_fails() { function test_buffer_table_same_type_succeeds (line 353) | fn test_buffer_table_same_type_succeeds() { function test_buffer_table_diff_type_fails (line 379) | fn test_buffer_table_diff_type_fails() { function test_buffer_nested_struct_same_type_succeeds (line 395) | fn test_buffer_nested_struct_same_type_succeeds() { function test_buffer_nested_struct_diff_type_fails (line 419) | fn test_buffer_nested_struct_diff_type_fails() { function test_buffer_i16_as_integer_succeeds (line 444) | fn test_buffer_i16_as_integer_succeeds() { function test_buffer_f32_as_integer_succeeds (line 457) | fn test_buffer_f32_as_integer_succeeds() { function test_buffer_inf_as_integer_succeeds (line 470) | fn test_buffer_inf_as_integer_succeeds() { function test_buffer_bool_as_integer_succeeds (line 483) | fn test_buffer_bool_as_integer_succeeds() { function test_buffer_nan_as_integer_fails (line 496) | fn test_buffer_nan_as_integer_fails() { function test_buffer_string_as_integer_fails (line 512) | fn test_buffer_string_as_integer_fails() { function test_buffer_i16_as_float_succeeds (line 528) | fn test_buffer_i16_as_float_succeeds() { function test_buffer_f32_as_float_succeeds (line 541) | fn test_buffer_f32_as_float_succeeds() { function test_buffer_string_as_float_fails (line 554) | fn test_buffer_string_as_float_fails() { function test_buffer_i16_as_string_succeeds (line 570) | fn test_buffer_i16_as_string_succeeds() { function test_buffer_f32_as_string_succeeds (line 584) | fn test_buffer_f32_as_string_succeeds() { function test_buffer_string_as_string_succeeds (line 599) | fn test_buffer_string_as_string_succeeds() { function test_buffer_i16_in_struct_as_integer_succeeds (line 617) | fn test_buffer_i16_in_struct_as_integer_succeeds() { function test_buffer_f32_in_struct_as_integer_succeeds (line 649) | fn test_buffer_f32_in_struct_as_integer_succeeds() { function test_buffer_enum_in_struct_as_integer_succeeds (line 671) | fn test_buffer_enum_in_struct_as_integer_succeeds() { function test_buffer_struct_in_struct_as_integer_fails (line 693) | fn test_buffer_struct_in_struct_as_integer_fails() { function test_buffer_i16_in_struct_as_float_succeeds (line 718) | fn test_buffer_i16_in_struct_as_float_succeeds() { function test_buffer_f32_in_struct_as_float_succeeds (line 750) | fn test_buffer_f32_in_struct_as_float_succeeds() { function test_buffer_enum_in_struct_as_float_succeeds (line 772) | fn test_buffer_enum_in_struct_as_float_succeeds() { function test_buffer_struct_in_struct_as_float_fails (line 794) | fn test_buffer_struct_in_struct_as_float_fails() { function test_buffer_i16_in_struct_as_string_succeeds (line 819) | fn test_buffer_i16_in_struct_as_string_succeeds() { function test_buffer_f32_in_struct_as_string_succeeds (line 856) | fn test_buffer_f32_in_struct_as_string_succeeds() { function test_buffer_enum_in_struct_as_string_succeeds (line 883) | fn test_buffer_enum_in_struct_as_string_succeeds() { function test_buffer_struct_in_struct_as_string_succeeds (line 910) | fn test_buffer_struct_in_struct_as_string_succeeds() { function test_buffer_set_valid_int_to_i16_succeeds (line 937) | fn test_buffer_set_valid_int_to_i16_succeeds() { function test_buffer_set_integer_to_f32_succeeds (line 953) | fn test_buffer_set_integer_to_f32_succeeds() { function test_buffer_set_overflow_to_i16_fails (line 969) | fn test_buffer_set_overflow_to_i16_fails() { function test_buffer_set_integer_to_string_fails (line 985) | fn test_buffer_set_integer_to_string_fails() { function test_buffer_set_integer_to_unset_fails (line 998) | fn test_buffer_set_integer_to_unset_fails() { function test_buffer_set_valid_float_to_f32_succeeds (line 1011) | fn test_buffer_set_valid_float_to_f32_succeeds() { function test_buffer_set_float_to_i16_succeeds (line 1027) | fn test_buffer_set_float_to_i16_succeeds() { function test_buffer_set_overflow_to_f32_fails (line 1043) | fn test_buffer_set_overflow_to_f32_fails() { function test_buffer_set_float_to_string_fails (line 1059) | fn test_buffer_set_float_to_string_fails() { function test_buffer_set_float_to_unset_fails (line 1072) | fn test_buffer_set_float_to_unset_fails() { function test_buffer_set_float_str_to_f32_succeeds (line 1085) | fn test_buffer_set_float_str_to_f32_succeeds() { function test_buffer_set_int_str_to_i16_succeeds (line 1101) | fn test_buffer_set_int_str_to_i16_succeeds() { function test_buffer_set_non_num_str_to_f32_fails (line 1117) | fn test_buffer_set_non_num_str_to_f32_fails() { function test_buffer_set_int_str_to_string_fails (line 1130) | fn test_buffer_set_int_str_to_string_fails() { function test_buffer_set_int_str_to_unset_fails (line 1143) | fn test_buffer_set_int_str_to_unset_fails() { function test_buffer_set_i16_to_i16_succeeds (line 1156) | fn test_buffer_set_i16_to_i16_succeeds() { function test_buffer_set_i32_to_i16_fails (line 1172) | fn test_buffer_set_i32_to_i16_fails() { function test_buffer_set_f32_to_f32_succeeds (line 1188) | fn test_buffer_set_f32_to_f32_succeeds() { function test_buffer_set_f64_to_f32_fails (line 1204) | fn test_buffer_set_f64_to_f32_fails() { function test_buffer_set_f32_to_f32_unset_fails (line 1220) | fn test_buffer_set_f32_to_f32_unset_fails() { function test_buffer_set_string_same_str_succeeds (line 1233) | fn test_buffer_set_string_same_str_succeeds() { function test_buffer_set_string_same_size_succeeds (line 1257) | fn test_buffer_set_string_same_size_succeeds() { function test_buffer_set_string_bigger_size_succeeds (line 1281) | fn test_buffer_set_string_bigger_size_succeeds() { function test_buffer_set_string_smaller_size_succeeds (line 1305) | fn test_buffer_set_string_smaller_size_succeeds() { function test_buffer_set_string_diff_type_fails (line 1329) | fn test_buffer_set_string_diff_type_fails() { function test_create_safe_buffer_default_options_succeeds (line 1353) | fn test_create_safe_buffer_default_options_succeeds() { function test_create_safe_buffer_limit_max_depth_fails (line 1364) | fn test_create_safe_buffer_limit_max_depth_fails() { function test_create_safe_buffer_limit_max_table_fails (line 1377) | fn test_create_safe_buffer_limit_max_table_fails() { function test_create_safe_buffer_limit_max_size_fails (line 1390) | fn test_create_safe_buffer_limit_max_size_fails() { function test_safe_buffer_integer_same_type_succeeds (line 1403) | fn test_safe_buffer_integer_same_type_succeeds() { function test_safe_buffer_integer_invalid_field_fails (line 1417) | fn test_safe_buffer_integer_invalid_field_fails() { function test_safe_buffer_integer_diff_size_fails (line 1431) | fn test_safe_buffer_integer_diff_size_fails() { function test_safe_buffer_float_same_type_succeeds (line 1448) | fn test_safe_buffer_float_same_type_succeeds() { function test_safe_buffer_float_invalid_field_fails (line 1462) | fn test_safe_buffer_float_invalid_field_fails() { function test_safe_buffer_float_diff_type_fails (line 1476) | fn test_safe_buffer_float_diff_type_fails() { function test_safe_buffer_string_same_type_succeeds (line 1493) | fn test_safe_buffer_string_same_type_succeeds() { function test_safe_buffer_string_invalid_field_fails (line 1507) | fn test_safe_buffer_string_invalid_field_fails() { function test_safe_buffer_string_diff_type_fails (line 1521) | fn test_safe_buffer_string_diff_type_fails() { function test_safe_buffer_struct_same_type_succeeds (line 1538) | fn test_safe_buffer_struct_same_type_succeeds() { function test_safe_buffer_struct_invalid_field_fails (line 1555) | fn test_safe_buffer_struct_invalid_field_fails() { function test_safe_buffer_struct_diff_type_fails (line 1569) | fn test_safe_buffer_struct_diff_type_fails() { function test_safe_buffer_vector_same_type_succeeds (line 1586) | fn test_safe_buffer_vector_same_type_succeeds() { function test_safe_buffer_vector_invalid_field_fails (line 1608) | fn test_safe_buffer_vector_invalid_field_fails() { function test_safe_buffer_vector_diff_type_fails (line 1622) | fn test_safe_buffer_vector_diff_type_fails() { function test_safe_buffer_table_same_type_succeeds (line 1639) | fn test_safe_buffer_table_same_type_succeeds() { function test_safe_buffer_table_invalid_field_fails (line 1659) | fn test_safe_buffer_table_invalid_field_fails() { function test_safe_buffer_table_diff_type_fails (line 1673) | fn test_safe_buffer_table_diff_type_fails() { function test_safe_buffer_i16_as_integer_succeeds (line 1690) | fn test_safe_buffer_i16_as_integer_succeeds() { function test_safe_buffer_i16_as_integer_invalid_field_fails (line 1704) | fn test_safe_buffer_i16_as_integer_invalid_field_fails() { function test_safe_buffer_string_as_integer_fails (line 1718) | fn test_safe_buffer_string_as_integer_fails() { function test_safe_buffer_i16_as_float_succeeds (line 1735) | fn test_safe_buffer_i16_as_float_succeeds() { function test_safe_buffer_i16_as_float_invalid_field_fails (line 1749) | fn test_safe_buffer_i16_as_float_invalid_field_fails() { function test_safe_buffer_string_as_float_fails (line 1763) | fn test_safe_buffer_string_as_float_fails() { function test_safe_buffer_string_as_string_succeeds (line 1780) | fn test_safe_buffer_string_as_string_succeeds() { function test_safe_buffer_i16_as_string_invalid_field_fails (line 1794) | fn test_safe_buffer_i16_as_string_invalid_field_fails() { function test_safe_buffer_nested_struct_same_type_succeeds (line 1808) | fn test_safe_buffer_nested_struct_same_type_succeeds() { function test_safe_buffer_nested_struct_invalid_field_fails (line 1824) | fn test_safe_buffer_nested_struct_invalid_field_fails() { function test_safe_buffer_nested_struct_diff_type_fails (line 1839) | fn test_safe_buffer_nested_struct_diff_type_fails() { function test_safe_buffer_enum_in_struct_as_integer_succeeds (line 1857) | fn test_safe_buffer_enum_in_struct_as_integer_succeeds() { function test_safe_buffer_enum_in_struct_as_integer_invalid_field_fails (line 1872) | fn test_safe_buffer_enum_in_struct_as_integer_invalid_field_fails() { function test_safe_buffer_struct_in_struct_as_integer_fails (line 1887) | fn test_safe_buffer_struct_in_struct_as_integer_fails() { function test_safe_buffer_i16_in_struct_as_float_succeeds (line 1905) | fn test_safe_buffer_i16_in_struct_as_float_succeeds() { function test_safe_buffer_child_in_struct_as_float_invalid_field_fails (line 1921) | fn test_safe_buffer_child_in_struct_as_float_invalid_field_fails() { function test_safe_buffer_struct_in_struct_as_float_fails (line 1936) | fn test_safe_buffer_struct_in_struct_as_float_fails() { function test_safe_buffer_f32_in_struct_as_string_succeeds (line 1954) | fn test_safe_buffer_f32_in_struct_as_string_succeeds() { function test_safe_buffer_child_in_struct_as_string_invalid_field_fails (line 1969) | fn test_safe_buffer_child_in_struct_as_string_invalid_field_fails() { function load_file_as_buffer (line 1983) | fn load_file_as_buffer(path: &str) -> Vec { function get_schema_field (line 1987) | fn get_schema_field<'a>(schema_buffer: &'a Vec, field_name: &'a str)... function create_test_buffer (line 1994) | fn create_test_buffer() -> Vec { FILE: tests/rust_serialize_test/src/main.rs function create_serialized_example_with_generated_code (line 9) | fn create_serialized_example_with_generated_code(builder: &mut flatbuffe... function main (line 55) | fn main() { FILE: tests/rust_usage_test/benches/flatbuffers_benchmarks.rs function traverse_canonical_buffer (line 25) | fn traverse_canonical_buffer(bench: &mut Bencher) { function create_canonical_buffer_then_reset (line 39) | fn create_canonical_buffer_then_reset(bench: &mut Bencher) { function create_serialized_example_with_generated_code (line 55) | fn create_serialized_example_with_generated_code( function blackbox (line 124) | fn blackbox(t: T) -> T { function traverse_serialized_example_with_generated_code (line 130) | fn traverse_serialized_example_with_generated_code(bytes: &[u8]) { function create_string_10 (line 160) | fn create_string_10(bench: &mut Bencher) { function create_string_100 (line 175) | fn create_string_100(bench: &mut Bencher) { function create_byte_vector_100_naive (line 193) | fn create_byte_vector_100_naive(bench: &mut Bencher) { function create_byte_vector_100_optimal (line 211) | fn create_byte_vector_100_optimal(bench: &mut Bencher) { function create_many_tables (line 229) | fn create_many_tables(bench: &mut Bencher) { FILE: tests/rust_usage_test/benches/flexbuffers_benchmarks.rs function push_vec_u64_to_map (line 18) | fn push_vec_u64_to_map(b: &mut Bencher) { function push_vec_u64_to_map_reused (line 47) | fn push_vec_u64_to_map_reused(b: &mut Bencher) { function push_vec_u64_to_map_direct (line 77) | fn push_vec_u64_to_map_direct(b: &mut Bencher) { function push_vec_u64_to_map_direct_reused (line 94) | fn push_vec_u64_to_map_direct_reused(b: &mut Bencher) { function push_vec_without_indirect (line 113) | fn push_vec_without_indirect(b: &mut Bencher) { function push_vec_with_indirect (line 131) | fn push_vec_with_indirect(b: &mut Bencher) { function example_map (line 148) | fn example_map<'a>(m: &mut MapBuilder<'a>) { function hundred_maps (line 154) | fn hundred_maps(b: &mut Bencher) { function hundred_maps_pooled (line 169) | fn hundred_maps_pooled(b: &mut Bencher) { function make_monster (line 184) | fn make_monster(mut monster: MapBuilder) { function serialize_monsters (line 212) | fn serialize_monsters(b: &mut Bencher) { function validate_monster (line 227) | fn validate_monster(r: MapReader<&[u8]>) { function read_monsters (line 264) | fn read_monsters(b: &mut Bencher) { FILE: tests/rust_usage_test/bin/flatbuffers_alloc_check.rs type TrackingAllocator (line 8) | struct TrackingAllocator; method n_allocs (line 11) | fn n_allocs(&self) -> usize { method alloc (line 17) | unsafe fn alloc(&self, layout: Layout) -> *mut u8 { method dealloc (line 21) | unsafe fn dealloc(&self, ptr: *mut u8, layout: Layout) { function create_serialized_example_with_generated_code (line 40) | fn create_serialized_example_with_generated_code(builder: &mut flatbuffe... function main (line 95) | fn main() { FILE: tests/rust_usage_test/bin/flexbuffers_alloc_check.rs function current_allocs (line 22) | fn current_allocs() -> usize { type TrackingAllocator (line 25) | struct TrackingAllocator; method alloc (line 27) | unsafe fn alloc(&self, layout: Layout) -> *mut u8 { method dealloc (line 31) | unsafe fn dealloc(&self, ptr: *mut u8, layout: Layout) { function make_monster (line 39) | fn make_monster(mut monster: MapBuilder) { function validate_monster (line 70) | fn validate_monster(flexbuffer: &[u8]) { function main (line 111) | fn main() { function no_extra_allocations (line 142) | fn no_extra_allocations() { FILE: tests/rust_usage_test/bin/monster_example.rs function main (line 11) | fn main() { FILE: tests/rust_usage_test/outdir/build.rs function main (line 1) | fn main() { FILE: tests/rust_usage_test/outdir/src/main.rs function main (line 7) | fn main() { function test_main (line 19) | fn test_main() { FILE: tests/rust_usage_test/tests/arrays_test.rs function create_serialized_example_with_generated_code (line 25) | fn create_serialized_example_with_generated_code(builder: &mut flatbuffe... function serialized_example_is_accessible_and_correct (line 51) | fn serialized_example_is_accessible_and_correct( function generated_code_creates_correct_example (line 109) | fn generated_code_creates_correct_example() { function struct_netsted_struct_is_32_bytes (line 117) | fn struct_netsted_struct_is_32_bytes() { function struct_array_struct_is_160_bytes (line 122) | fn struct_array_struct_is_160_bytes() { function test_object_api_reads_correctly (line 127) | fn test_object_api_reads_correctly() { function object_api_defaults (line 166) | fn object_api_defaults() { function generated_code_debug_prints_correctly (line 193) | fn generated_code_debug_prints_correctly() { function assert_on_too_small_array_buf (line 211) | fn assert_on_too_small_array_buf() { function assert_on_too_big_array_buf (line 218) | fn assert_on_too_big_array_buf() { function verify_struct_array_alignment (line 225) | fn verify_struct_array_alignment() { type FakeArray (line 242) | struct FakeArray([T; N]); method arbitrary (line 245) | fn arbitrary(g: &mut G) -> FakeArray { constant MAX_TESTS (line 269) | const MAX_TESTS: u64 = 20; constant ARRAY_SIZE (line 270) | const ARRAY_SIZE: usize = 29; constant NESTED_STRUCT_SIZE (line 306) | const NESTED_STRUCT_SIZE: usize = size_of::(); type NestedStructWrapper (line 309) | struct NestedStructWrapper(NestedStruct); method arbitrary (line 312) | fn arbitrary(g: &mut G) -> NestedStructWrapper { function prop_struct (line 319) | fn prop_struct(xs: FakeArray) { function test_struct (line 337) | fn test_struct() { FILE: tests/rust_usage_test/tests/flexbuffers_tests/binary_format.rs function store_13 (line 19) | fn store_13() { function store_2pow20 (line 24) | fn store_2pow20() { function heterogenous_vector_of_string_because_width (line 40) | fn heterogenous_vector_of_string_because_width() { function store_vec_uint_16 (line 80) | fn store_vec_uint_16() { function singleton_vector_uint_4_16bit (line 123) | fn singleton_vector_uint_4_16bit() { function store_u64 (line 143) | fn store_u64() { function vector_uint4 (line 162) | fn vector_uint4() { function nested_vector (line 184) | fn nested_vector() { function nested_vector_push_direct (line 217) | fn nested_vector_push_direct() { function store_map_index_into_it (line 244) | fn store_map_index_into_it() { function utf8_snowman (line 287) | fn utf8_snowman() { function indirect_numbers (line 317) | fn indirect_numbers() { function indirect_2p5x_smaller (line 370) | fn indirect_2p5x_smaller() { function key_pool (line 390) | fn key_pool() { function serialize_unit (line 450) | fn serialize_unit() { function serialize_i8 (line 459) | fn serialize_i8() { function serialize_tuple_struct_i8 (line 465) | fn serialize_tuple_struct_i8() { function serialize_tuple_tuple_struct_i8_is_inlined (line 473) | fn serialize_tuple_tuple_struct_i8_is_inlined() { function align_8byte (line 483) | fn align_8byte() { function align_4byte (line 498) | fn align_4byte() { function align_2byte (line 513) | fn align_2byte() { function align_1byte (line 528) | fn align_1byte() { FILE: tests/rust_usage_test/tests/flexbuffers_tests/interop.rs function read_golden_flexbuffer (line 18) | fn read_golden_flexbuffer() { FILE: tests/rust_usage_test/tests/flexbuffers_tests/other_api.rs function qc_reader_no_crash (line 23) | fn qc_reader_no_crash() { function as_num (line 36) | fn as_num() { function string_as_num (line 89) | fn string_as_num() { function null_reader (line 137) | fn null_reader() { function get_root_deref_oob (line 158) | fn get_root_deref_oob() { function get_root_deref_u64 (line 167) | fn get_root_deref_u64() { function clone_is_shallow (line 175) | fn clone_is_shallow() { function build_map_panic_on_repeated_key (line 192) | fn build_map_panic_on_repeated_key() { function build_map_panic_on_internal_null (line 201) | fn build_map_panic_on_internal_null() { FILE: tests/rust_usage_test/tests/flexbuffers_tests/qc_serious.rs type Enum (line 10) | enum Enum { method arbitrary (line 34) | fn arbitrary(g: &mut G) -> Self { type Unit (line 89) | struct Unit; type NewType (line 92) | struct NewType(bool); type Tuple (line 95) | struct Tuple(bool, u8, i16, f32, String); type Struct (line 98) | struct Struct { type Array2 (line 107) | struct Array2([A; 2]); type Array3 (line 109) | struct Array3([A; 3]); type Array4 (line 111) | struct Array4([A; 4]); method arbitrary (line 114) | fn arbitrary(g: &mut G) -> Self { method arbitrary (line 119) | fn arbitrary(g: &mut G) -> Self { method arbitrary (line 124) | fn arbitrary(g: &mut G) -> Self { FILE: tests/rust_usage_test/tests/flexbuffers_tests/rwyw.rs type NonNullString (line 26) | pub struct NonNullString(String); method arbitrary (line 28) | fn arbitrary(g: &mut G) -> Self { function empty_vectors (line 193) | fn empty_vectors() { function string (line 205) | fn string() { function store_13 (line 219) | fn store_13() { function singleton_vector_uint_4_16bit (line 225) | fn singleton_vector_uint_4_16bit() { function vector_uint4 (line 243) | fn vector_uint4() { function store_and_read_blob (line 265) | fn store_and_read_blob() { function map_64bit (line 277) | fn map_64bit() { function index_map (line 289) | fn index_map() { function map_strings (line 310) | fn map_strings() { function store_u64 (line 343) | fn store_u64() { function store_indirects (line 349) | fn store_indirects() { type Foo (line 363) | struct Foo { function serde_serious (line 386) | fn serde_serious() { function serialize_serde_with_bytes_as_blob (line 432) | fn serialize_serde_with_bytes_as_blob() { function iter (line 442) | fn iter() { function deserialize_newtype_i8 (line 457) | fn deserialize_newtype_i8() { function deserialize_newtype_str (line 466) | fn deserialize_newtype_str() { function deserialize_tuple_struct_to_vec_uint4 (line 476) | fn deserialize_tuple_struct_to_vec_uint4() { FILE: tests/rust_usage_test/tests/integration_test.rs type LCG (line 86) | struct LCG(u64); method new (line 88) | fn new() -> Self { method next (line 91) | fn next(&mut self) -> u64 { method reset (line 96) | fn reset(&mut self) { function macro_check_eq (line 113) | fn macro_check_eq() { function macro_check_is_some (line 130) | fn macro_check_is_some() { function object_api_defaults (line 138) | fn object_api_defaults() { function create_serialized_example_with_generated_code (line 219) | fn create_serialized_example_with_generated_code(builder: &mut flatbuffe... function create_serialized_example_with_library_code (line 250) | fn create_serialized_example_with_library_code(builder: &mut flatbuffers... function serialized_example_is_accessible_and_correct (line 285) | fn serialized_example_is_accessible_and_correct(bytes: &[u8], identifier... function test_object_api_reads_correctly (line 346) | fn test_object_api_reads_correctly() -> Result<(), &'static str>{ function builder_abort_with_greater_than_maximum_buffer_size (line 397) | fn builder_abort_with_greater_than_maximum_buffer_size() { function builder_collapses_into_vec (line 402) | fn builder_collapses_into_vec() { function verifier_one_byte_errors_do_not_crash (line 411) | fn verifier_one_byte_errors_do_not_crash() { function verifier_too_many_tables (line 438) | fn verifier_too_many_tables() { function verifier_apparent_size_too_large (line 463) | fn verifier_apparent_size_too_large() { function verifier_in_too_deep (line 488) | fn verifier_in_too_deep() { function monster_identifier (line 518) | fn monster_identifier() { function monster_file_extension (line 523) | fn monster_file_extension() { function enum_constants_are_public (line 528) | fn enum_constants_are_public() { function table_get_field_from_static_buffer_1 (line 578) | fn table_get_field_from_static_buffer_1() { function table_get_field_from_static_buffer_2 (line 591) | fn table_get_field_from_static_buffer_2() { function table_object_self_lifetime_in_closure (line 599) | fn table_object_self_lifetime_in_closure() { function build_mon (line 624) | fn build_mon<'a, 'b>(builder: &'a mut flatbuffers::FlatBufferBuilder, ar... function scalar_store (line 631) | fn scalar_store() { function scalar_default (line 638) | fn scalar_default() { function string_store (line 645) | fn string_store() { function struct_store (line 652) | fn struct_store() { function struct_default (line 667) | fn struct_default() { function enum_store (line 674) | fn enum_store() { function enum_default (line 681) | fn enum_default() { function union_store (line 688) | fn union_store() { function union_default (line 717) | fn union_default() { function table_full_namespace_store (line 725) | fn table_full_namespace_store() { function table_full_namespace_default (line 748) | fn table_full_namespace_default() { function table_store (line 755) | fn table_store() { function table_default (line 778) | fn table_default() { function nested_flatbuffer_store (line 785) | fn nested_flatbuffer_store() { function nested_flatbuffer_default (line 826) | fn nested_flatbuffer_default() { function vector_of_string_store_helper_build (line 833) | fn vector_of_string_store_helper_build() { function vector_of_string_store_manual_build (line 858) | fn vector_of_string_store_manual_build() { function vector_of_ubyte_store (line 883) | fn vector_of_ubyte_store() { function vector_of_bool_store (line 894) | fn vector_of_bool_store() { function vector_of_f64_store (line 910) | fn vector_of_f64_store() { function vector_of_struct_store (line 930) | fn vector_of_struct_store() { function vector_of_struct_store_with_type_inference (line 946) | fn vector_of_struct_store_with_type_inference() { function vector_of_enums_store (line 959) | fn vector_of_enums_store() { function vector_of_table_store (line 971) | fn vector_of_table_store() { function enum_color_is_1_byte (line 1017) | fn enum_color_is_1_byte() { function union_any_is_1_byte (line 1022) | fn union_any_is_1_byte() { function union_any_is_aligned_to_1 (line 1027) | fn union_any_is_aligned_to_1() { function struct_test_is_4_bytes (line 1031) | fn struct_test_is_4_bytes() { function struct_vec3_is_32_bytes (line 1035) | fn struct_vec3_is_32_bytes() { function struct_vec3_is_written_with_correct_alignment_in_table (line 1040) | fn struct_vec3_is_written_with_correct_alignment_in_table() { function struct_ability_is_8_bytes (line 1065) | fn struct_ability_is_8_bytes() { function struct_ability_is_written_with_correct_alignment_in_table_vector (line 1070) | fn struct_ability_is_written_with_correct_alignment_in_table_vector() { constant N (line 1148) | const N: u64 = 20; function prop (line 1150) | fn prop(xs: Vec) function easy_u8 (line 1185) | fn easy_u8() { function fuzz_bool (line 1194) | fn fuzz_bool() { quickcheck::QuickCheck::new().max_tests(N).quickcheck(p... function fuzz_u8 (line 1196) | fn fuzz_u8() { quickcheck::QuickCheck::new().max_tests(N).quickcheck(pro... function fuzz_i8 (line 1198) | fn fuzz_i8() { quickcheck::QuickCheck::new().max_tests(N).quickcheck(pro... function fuzz_u16 (line 1200) | fn fuzz_u16() { quickcheck::QuickCheck::new().max_tests(N).quickcheck(pr... function fuzz_i16 (line 1202) | fn fuzz_i16() { quickcheck::QuickCheck::new().max_tests(N).quickcheck(pr... function fuzz_u32 (line 1204) | fn fuzz_u32() { quickcheck::QuickCheck::new().max_tests(N).quickcheck(pr... function fuzz_i32 (line 1206) | fn fuzz_i32() { quickcheck::QuickCheck::new().max_tests(N).quickcheck(pr... function fuzz_u64 (line 1208) | fn fuzz_u64() { quickcheck::QuickCheck::new().max_tests(N).quickcheck(pr... function fuzz_i64 (line 1210) | fn fuzz_i64() { quickcheck::QuickCheck::new().max_tests(N).quickcheck(pr... function fuzz_f32 (line 1212) | fn fuzz_f32() { quickcheck::QuickCheck::new().max_tests(N).quickcheck(pr... function fuzz_f64 (line 1214) | fn fuzz_f64() { quickcheck::QuickCheck::new().max_tests(N).quickcheck(pr... function prop (line 1226) | fn prop(xs: Vec) { function fuzz (line 1253) | fn fuzz() { function prop (line 1267) | fn prop(input: Vec) { function fuzz (line 1286) | fn fuzz() { function fuzz_manual_build (line 1301) | fn fuzz_manual_build() { function test_size_prefixed_buffer (line 1329) | fn test_size_prefixed_buffer() { function table_of_mixed_scalars_fuzz (line 1365) | fn table_of_mixed_scalars_fuzz() { function table_of_byte_strings_fuzz (line 1474) | fn table_of_byte_strings_fuzz() { function fuzz_table_of_strings (line 1511) | fn fuzz_table_of_strings() { constant N (line 1551) | const N: u64 = 20; function prop (line 1553) | fn prop(vecs: Vec>) function fuzz_bool (line 1602) | fn fuzz_bool() { quickcheck::QuickCheck::new().max_tests(N).quickcheck(p... function fuzz_u8 (line 1605) | fn fuzz_u8() { quickcheck::QuickCheck::new().max_tests(N).quickcheck(pro... function fuzz_u16 (line 1607) | fn fuzz_u16() { quickcheck::QuickCheck::new().max_tests(N).quickcheck(pr... function fuzz_u32 (line 1609) | fn fuzz_u32() { quickcheck::QuickCheck::new().max_tests(N).quickcheck(pr... function fuzz_u64 (line 1611) | fn fuzz_u64() { quickcheck::QuickCheck::new().max_tests(N).quickcheck(pr... function fuzz_i8 (line 1614) | fn fuzz_i8() { quickcheck::QuickCheck::new().max_tests(N).quickcheck(pro... function fuzz_i16 (line 1616) | fn fuzz_i16() { quickcheck::QuickCheck::new().max_tests(N).quickcheck(pr... function fuzz_i32 (line 1618) | fn fuzz_i32() { quickcheck::QuickCheck::new().max_tests(N).quickcheck(pr... function fuzz_i64 (line 1620) | fn fuzz_i64() { quickcheck::QuickCheck::new().max_tests(N).quickcheck(pr... function fuzz_f32 (line 1623) | fn fuzz_f32() { quickcheck::QuickCheck::new().max_tests(N).quickcheck(pr... function fuzz_f64 (line 1625) | fn fuzz_f64() { quickcheck::QuickCheck::new().max_tests(N).quickcheck(pr... constant N (line 1636) | const N: u64 = 1000; function prop (line 1638) | fn prop Self { type Inner (line 2099) | type Inner = &'a FooStruct; method follow (line 2101) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { type Inner (line 2106) | type Inner = &'a FooStruct; function follow (line 2108) | unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { function to_u8 (line 2114) | fn to_u8() { function to_u16 (line 2121) | fn to_u16() { function to_f32 (line 2128) | fn to_f32() { function to_string (line 2135) | fn to_string() { function to_byte_slice (line 2142) | fn to_byte_slice() { function to_vector_of_u16 (line 2149) | fn to_vector_of_u16() { function to_struct (line 2158) | fn to_struct() { function to_vector_of_offset_to_string_elements (line 2165) | fn to_vector_of_offset_to_string_elements() { function to_vector_of_struct_elements (line 2173) | fn to_vector_of_struct_elements() { function to_root_to_empty_table (line 2181) | fn to_root_to_empty_table() { function to_root_table_get_slot_scalar_u8 (line 2198) | fn to_root_table_get_slot_scalar_u8() { function to_root_to_table_get_slot_scalar_u8_default_via_vtable_len (line 2218) | fn to_root_to_table_get_slot_scalar_u8_default_via_vtable_len() { function to_root_to_table_get_slot_scalar_u8_default_via_vtable_zero (line 2236) | fn to_root_to_table_get_slot_scalar_u8_default_via_vtable_zero() { function to_root_to_table_get_slot_string_multiple_types (line 2255) | fn to_root_to_table_get_slot_string_multiple_types() { function to_root_to_table_get_slot_string_multiple_types_default_via_vtable_len (line 2285) | fn to_root_to_table_get_slot_string_multiple_types_default_via_vtable_le... function to_root_to_table_get_slot_string_multiple_types_default_via_vtable_zero (line 2315) | fn to_root_to_table_get_slot_string_multiple_types_default_via_vtable_ze... function check (line 2351) | fn check<'a>(b: &'a flatbuffers::FlatBufferBuilder, want: &'a [u8]) { function push_u8 (line 2357) | fn push_u8() { function push_u64 (line 2364) | fn push_u64() { function push_f64 (line 2371) | fn push_f64() { function push_generated_struct (line 2378) | fn push_generated_struct() { function push_u8_vector_with_offset_with_alignment (line 2385) | fn push_u8_vector_with_offset_with_alignment() { function push_u8_u16_alignment (line 2393) | fn push_u8_u16_alignment() { function push_u8_u32_alignment (line 2401) | fn push_u8_u32_alignment() { function push_u8_u64_alignment (line 2409) | fn push_u8_u64_alignment() { function push_u8_generated_struct_alignment (line 2420) | fn push_u8_generated_struct_alignment() { function check (line 2433) | fn check<'a>(b: &'a flatbuffers::FlatBufferBuilder, want: &'a [u8]) { function one_empty_table (line 2439) | fn one_empty_table() { function two_empty_tables_are_deduplicated (line 2452) | fn two_empty_tables_are_deduplicated() { function two_tables_with_two_conveniently_sized_inline_elements_are_deduplicated (line 2469) | fn two_tables_with_two_conveniently_sized_inline_elements_are_deduplicat... function many_identical_tables_use_few_vtables (line 2498) | fn many_identical_tables_use_few_vtables() { function check (line 2515) | fn check<'a>(b: &'a flatbuffers::FlatBufferBuilder, want: &'a [u8]) { function layout_01_basic_numbers (line 2521) | fn layout_01_basic_numbers() { function layout_01b_bigger_numbers (line 2540) | fn layout_01b_bigger_numbers() { function layout_02_1xbyte_vector (line 2547) | fn layout_02_1xbyte_vector() { function layout_03_2xbyte_vector (line 2559) | fn layout_03_2xbyte_vector() { function layout_03b_11xbyte_vector_matches_builder_size (line 2572) | fn layout_03b_11xbyte_vector_matches_builder_size() { function layout_04_1xuint16_vector (line 2589) | fn layout_04_1xuint16_vector() { function layout_05_2xuint16_vector (line 2600) | fn layout_05_2xuint16_vector() { function layout_06_create_string (line 2613) | fn layout_06_create_string() { function layout_06b_create_string_unicode (line 2625) | fn layout_06b_create_string_unicode() { function layout_06c_create_byte_string (line 2638) | fn layout_06c_create_byte_string() { function layout_07_empty_vtable (line 2650) | fn layout_07_empty_vtable() { function layout_08_vtable_with_one_true_bool (line 2661) | fn layout_08_vtable_with_one_true_bool() { function layout_09_vtable_with_one_default_bool (line 2682) | fn layout_09_vtable_with_one_default_bool() { function layout_09b_vtable_with_one_default_bool_force_defaults (line 2698) | fn layout_09b_vtable_with_one_default_bool_force_defaults() { function layout_10_vtable_with_one_int16 (line 2717) | fn layout_10_vtable_with_one_int16() { function layout_11_vtable_with_two_int16 (line 2734) | fn layout_11_vtable_with_two_int16() { function layout_12_vtable_with_int16_and_bool (line 2752) | fn layout_12_vtable_with_int16_and_bool() { function layout_12b_vtable_with_empty_vector (line 2771) | fn layout_12b_vtable_with_empty_vector() { function layout_12c_vtable_with_empty_vector_of_byte_and_some_scalars (line 2789) | fn layout_12c_vtable_with_empty_vector_of_byte_and_some_scalars() { function layout_13_vtable_with_1_int16_and_2_vector_of_i16 (line 2810) | fn layout_13_vtable_with_1_int16_and_2_vector_of_i16() { function layout_14_vtable_with_1_struct_of_int8_and_int16_and_int32 (line 2835) | fn layout_14_vtable_with_1_struct_of_int8_and_int16_and_int32() { function layout_15_vtable_with_1_vector_of_4_int8 (line 2875) | fn layout_15_vtable_with_1_vector_of_4_int8() { function layout_16_table_with_some_elements (line 2902) | fn layout_16_table_with_some_elements() { function layout_17_one_unfinished_table_and_one_finished_table (line 2927) | fn layout_17_one_unfinished_table_and_one_finished_table() { function layout_18_a_bunch_of_bools (line 2974) | fn layout_18_a_bunch_of_bools() { function layout_19_three_bools (line 3015) | fn layout_19_three_bools() { function layout_20_some_floats (line 3044) | fn layout_20_some_floats() { function layout_21_vtable_defaults (line 3061) | fn layout_21_vtable_defaults() { function layout_22_root (line 3081) | fn layout_22_root() { function layout_23_varied_slots_and_root (line 3103) | fn layout_23_varied_slots_and_root() { function follow_types_implement_copy_and_clone (line 3134) | fn follow_types_implement_copy_and_clone() { function fully_qualified_name_generated (line 3149) | fn fully_qualified_name_generated() { function write_example_wire_data_to_file (line 3163) | fn write_example_wire_data_to_file() { function load_file (line 3173) | fn load_file(filename: &str) -> Result, std::io::Error> { function test_shared_strings (line 3182) | fn test_shared_strings() { function lookup_index_by_key_returns_correct_index (line 3228) | fn lookup_index_by_key_returns_correct_index() { function lookup_index_by_key_returns_none_for_missing_key (line 3263) | fn lookup_index_by_key_returns_none_for_missing_key() { function lookup_index_by_key_on_empty_vector (line 3297) | fn lookup_index_by_key_on_empty_vector() { function lookup_index_by_key_single_element (line 3318) | fn lookup_index_by_key_single_element() { function lookup_index_by_key_consistent_with_lookup_by_key (line 3343) | fn lookup_index_by_key_consistent_with_lookup_by_key() { FILE: tests/rust_usage_test/tests/more_defaults_test.rs function object_defaults (line 12) | fn object_defaults() { function nonpresent_values (line 27) | fn nonpresent_values() { FILE: tests/rust_usage_test/tests/optional_scalars_test.rs function object_api_defaults (line 76) | fn object_api_defaults() { FILE: tests/rust_usage_test/tests/vtable_zeroed_test.rs type GarbageFilledAllocator (line 35) | struct GarbageFilledAllocator(Vec); method new (line 38) | fn new(size: usize) -> Self { type Target (line 44) | type Target = [u8]; method deref (line 45) | fn deref(&self) -> &Self::Target { method deref_mut (line 51) | fn deref_mut(&mut self) -> &mut Self::Target { type Error (line 59) | type Error = Infallible; method grow_downwards (line 61) | fn grow_downwards(&mut self) -> Result<(), Self::Error> { method len (line 88) | fn len(&self) -> usize { function test_vtable_zeroed_with_garbage_allocator (line 103) | fn test_vtable_zeroed_with_garbage_allocator() { FILE: tests/service_test_generated.py class HelloRequest (line 6) | class HelloRequest(object): method GetRootAs (line 10) | def GetRootAs(cls, buf, offset=0): method GetRootAsHelloRequest (line 17) | def GetRootAsHelloRequest(cls, buf, offset=0): method Init (line 21) | def Init(self, buf, pos): function HelloRequestStart (line 24) | def HelloRequestStart(builder): function HelloRequestEnd (line 27) | def HelloRequestEnd(builder): class HelloResponse (line 32) | class HelloResponse(object): method GetRootAs (line 36) | def GetRootAs(cls, buf, offset=0): method GetRootAsHelloResponse (line 43) | def GetRootAsHelloResponse(cls, buf, offset=0): method Init (line 47) | def Init(self, buf, pos): function HelloResponseStart (line 50) | def HelloResponseStart(builder): function HelloResponseEnd (line 53) | def HelloResponseEnd(builder): FILE: tests/service_test_generated.pyi class HelloRequest (line 9) | class HelloRequest(object): method GetRootAs (line 11) | def GetRootAs(cls, buf: bytes, offset: int) -> HelloRequest: ... method GetRootAsHelloRequest (line 13) | def GetRootAsHelloRequest(cls, buf: bytes, offset: int) -> HelloReques... method Init (line 14) | def Init(self, buf: bytes, pos: int) -> None: ... function HelloRequestStart (line 15) | def HelloRequestStart(builder: flatbuffers.Builder) -> None: ... function HelloRequestEnd (line 16) | def HelloRequestEnd(builder: flatbuffers.Builder) -> uoffset: ... class HelloResponse (line 17) | class HelloResponse(object): method GetRootAs (line 19) | def GetRootAs(cls, buf: bytes, offset: int) -> HelloResponse: ... method GetRootAsHelloResponse (line 21) | def GetRootAsHelloResponse(cls, buf: bytes, offset: int) -> HelloRespo... method Init (line 22) | def Init(self, buf: bytes, pos: int) -> None: ... function HelloResponseStart (line 23) | def HelloResponseStart(builder: flatbuffers.Builder) -> None: ... function HelloResponseEnd (line 24) | def HelloResponseEnd(builder: flatbuffers.Builder) -> uoffset: ... FILE: tests/service_test_grpc.fb.py function _serialize_to_bytes (line 8) | def _serialize_to_bytes(table): class HelloServiceStub (line 16) | class HelloServiceStub(object): method __init__ (line 19) | def __init__(self, channel): class HelloServiceServicer (line 51) | class HelloServiceServicer(object): method Hello (line 54) | def Hello(self, request, context): method StreamClient (line 59) | def StreamClient(self, request_iterator, context): method StreamServer (line 64) | def StreamServer(self, request, context): method Stream (line 69) | def Stream(self, request_iterator, context): function add_HelloServiceServicer_to_server (line 75) | def add_HelloServiceServicer_to_server(servicer, server): FILE: tests/service_test_grpc.fb.pyi class HelloServiceStub (line 11) | class HelloServiceStub(object): method __init__ (line 12) | def __init__(self, channel: grpc.Channel) -> None: ... method Hello (line 13) | def Hello(self, request: HelloRequest) -> HelloResponse: ... method StreamClient (line 14) | def StreamClient(self, request_iterator: typing.Iterator[HelloRequest]... method StreamServer (line 15) | def StreamServer(self, request: HelloRequest) -> typing.Iterator[Hello... method Stream (line 16) | def Stream(self, request_iterator: typing.Iterator[HelloRequest]) -> t... class HelloServiceServicer (line 19) | class HelloServiceServicer(object): method Hello (line 20) | def Hello(self, request: HelloRequest, context: grpc.ServicerContext) ... method StreamClient (line 21) | def StreamClient(self, request_iterator: typing.Iterator[HelloRequest]... method StreamServer (line 22) | def StreamServer(self, request: HelloRequest, context: grpc.ServicerCo... method Stream (line 23) | def Stream(self, request_iterator: typing.Iterator[HelloRequest], cont... function add_HelloServiceServicer_to_server (line 26) | def add_HelloServiceServicer_to_server(servicer: HelloServiceServicer, s... FILE: tests/test.cpp type flatbuffers (line 74) | namespace flatbuffers { type tests (line 75) | namespace tests { function TriviallyCopyableTest (line 95) | void TriviallyCopyableTest() { function GenerateTableTextTest (line 110) | void GenerateTableTextTest(const std::string& tests_data_path) { function MultiFileNameClashTest (line 164) | void MultiFileNameClashTest(const std::string& tests_data_path) { function InvalidNestedFlatbufferTest (line 193) | void InvalidNestedFlatbufferTest(const std::string& tests_data_path) { function UnionVectorTest (line 212) | void UnionVectorTest(const std::string& tests_data_path) { function EndianSwapTest (line 404) | void EndianSwapTest() { function UninitializedVectorTest (line 413) | void UninitializedVectorTest() { function EqualOperatorTest (line 443) | void EqualOperatorTest() { function CreateSharedStringTest (line 550) | void CreateSharedStringTest() { function FlatbuffersSpanTest (line 607) | void FlatbuffersSpanTest() { function FlatbuffersSpanTest (line 686) | void FlatbuffersSpanTest() {} function FixedLengthArrayTest (line 691) | void FixedLengthArrayTest() { function FixedLengthArrayTest (line 799) | void FixedLengthArrayTest() {} function FixedLengthArrayConstructorTest (line 804) | void FixedLengthArrayConstructorTest() { function FixedLengthArrayConstructorTest (line 867) | void FixedLengthArrayConstructorTest() {} function FixedLengthArrayOperatorEqualTest (line 870) | void FixedLengthArrayOperatorEqualTest() { function NativeTypeTest (line 916) | void NativeTypeTest() { function FixedLengthArrayJsonTest (line 986) | void FixedLengthArrayJsonTest(const std::string& tests_data_path, bo... function FixedLengthArraySpanTest (line 1047) | void FixedLengthArraySpanTest(const std::string& tests_data_path) { function FixedLengthArrayJsonTest (line 1122) | void FixedLengthArrayJsonTest(bool /*binary*/) {} function FixedLengthArraySpanTest (line 1123) | void FixedLengthArraySpanTest() {} function TestEmbeddedBinarySchema (line 1126) | void TestEmbeddedBinarySchema(const std::string& tests_data_path) { function EmbeddedSchemaAccessByType (line 1175) | void EmbeddedSchemaAccessByType() { function EmbeddedSchemaAccess (line 1189) | void EmbeddedSchemaAccess() { function NestedVerifierTest (line 1206) | void NestedVerifierTest() { function SizeVerifierTest (line 1293) | void SizeVerifierTest() { function TestIterators (line 1323) | void TestIterators(const std::vector& expected, const Container& ... function FlatbuffersIteratorsTest (line 1344) | void FlatbuffersIteratorsTest() { function PrivateAnnotationsLeaks (line 1381) | void PrivateAnnotationsLeaks() { function VectorSpanTest (line 1504) | void VectorSpanTest() { function NativeInlineTableVectorTest (line 1575) | void NativeInlineTableVectorTest() { function DoNotRequireEofTest (line 1601) | void DoNotRequireEofTest(const std::string& tests_data_path) { function UnionUnderlyingTypeTest (line 1644) | void UnionUnderlyingTypeTest() { function StructsInHashTableTest (line 1677) | void StructsInHashTableTest() { function Offset64Tests (line 1711) | static void Offset64Tests() { function CrossNamespacePackTest (line 1727) | void CrossNamespacePackTest() { function FlatBufferTests (line 1748) | int FlatBufferTests(const std::string& tests_data_path) { function main (line 1872) | int main(int argc, const char* argv[]) { FILE: tests/test_assert.cpp function TestFail (line 13) | void TestFail(const char* expval, const char* val, const char* exp, function TestEqStr (line 27) | void TestEqStr(const char* expval, const char* val, const char* exp, function InitTestEngine (line 39) | void InitTestEngine(TestFailEventListener listener) { function CloseTestEngine (line 59) | int CloseTestEngine(bool force_report) { FILE: tests/test_assert.h type T (line 72) | typedef T type; type type (line 82) | typedef int64_t type; FILE: tests/test_builder.cpp type OwnedAllocator (line 10) | struct OwnedAllocator : public DefaultAllocator {} class TestHeapBuilder (line 12) | class TestHeapBuilder : public FlatBufferBuilder { method TestHeapBuilder (line 18) | TestHeapBuilder() : FlatBufferBuilder(2048, new OwnedAllocator(), true... method TestHeapBuilder (line 20) | TestHeapBuilder(TestHeapBuilder&& other) method TestHeapBuilder (line 23) | TestHeapBuilder& operator=(TestHeapBuilder&& other) { type AllocatorMember (line 30) | struct AllocatorMember { type GrpcLikeMessageBuilder (line 34) | struct GrpcLikeMessageBuilder : private AllocatorMember, method GrpcLikeMessageBuilder (line 41) | GrpcLikeMessageBuilder() method GrpcLikeMessageBuilder (line 44) | GrpcLikeMessageBuilder(GrpcLikeMessageBuilder&& other) method GrpcLikeMessageBuilder (line 50) | GrpcLikeMessageBuilder& operator=(GrpcLikeMessageBuilder&& other) { method Swap (line 57) | void Swap(GrpcLikeMessageBuilder& other) { function populate1 (line 69) | flatbuffers::Offset populate1( function populate2 (line 75) | flatbuffers::Offset populate2( function free_raw (line 86) | void free_raw(flatbuffers::grpc::MessageBuilder&, uint8_t*) { function free_raw (line 97) | void free_raw(flatbuffers::FlatBufferBuilder&, uint8_t* buf) { function verify (line 101) | bool verify(const flatbuffers::DetachedBuffer& buf, function verify (line 108) | bool verify(const uint8_t* buf, size_t offset, const std::string& expect... function release_n_verify (line 115) | bool release_n_verify(flatbuffers::FlatBufferBuilder& fbb, function FlatBufferBuilderTest (line 124) | void FlatBufferBuilderTest() { function CheckTestGeneratedIsValid (line 148) | void CheckTestGeneratedIsValid(const MyGame::Example::Color&) {} FILE: tests/test_builder.h function namespace (line 14) | namespace flatbuffers { function std (line 20) | inline std::string m1_name() { return "Cyberdemon"; } function std (line 21) | inline std::string m2_name() { return "Imp"; } function MyGame (line 22) | inline MyGame::Example::Color m1_color() { return MyGame::Example::Color... function MyGame (line 23) | inline MyGame::Example::Color m2_color() { function m1_color_check (line 26) | inline void m1_color_check() { function empty_builder_movector_test (line 79) | static void empty_builder_movector_test() { function nonempty_builder_movector_test (line 88) | static void nonempty_builder_movector_test() { function builder_movector_before_finish_test (line 97) | static void builder_movector_before_finish_test() { function builder_movector_after_finish_test (line 106) | static void builder_movector_after_finish_test() { function builder_move_assign_before_finish_test (line 117) | static void builder_move_assign_before_finish_test() { function builder_move_assign_after_finish_test (line 128) | static void builder_move_assign_after_finish_test() { function builder_move_assign_after_release_test (line 142) | static void builder_move_assign_after_release_test() { function all_tests (line 201) | static void all_tests() { type BuilderReuseTestSelector (line 215) | enum BuilderReuseTestSelector { type std (line 224) | typedef std::set TestSelector; function builder_reusable_after_release_test (line 228) | static void builder_reusable_after_release_test(TestSelector selector) { function builder_reusable_after_releaseraw_test (line 243) | static void builder_reusable_after_releaseraw_test(TestSelector selector) { function builder_reusable_after_release_and_move_assign_test (line 259) | static void builder_reusable_after_release_and_move_assign_test( function builder_reusable_after_releaseraw_and_move_assign_test (line 278) | static void builder_reusable_after_releaseraw_and_move_assign_test( function run_tests (line 298) | static void run_tests(TestSelector selector) { FILE: tests/ts/JavaScriptComplexArraysTest.js function fbObjToObj (line 18) | function fbObjToObj(fbObj) { function testBuild (line 31) | function testBuild(monFile, jsFile) { function testParse (line 92) | function testParse(monFile, jsFile, buffer) { FILE: tests/ts/JavaScriptFlexBuffersTest.js function main (line 6) | function main() { function testRootVector (line 22) | function testRootVector() { function testSingleValueBuffers (line 42) | function testSingleValueBuffers() { function testEncode (line 80) | function testEncode() { function testDeduplicationOff (line 142) | function testDeduplicationOff() { function testIndirectAdd (line 178) | function testIndirectAdd() { function testIndirectWithCache (line 218) | function testIndirectWithCache() { function testMapBuilder (line 272) | function testMapBuilder() { function testRoundTrip (line 286) | function testRoundTrip() { function testRoundTripWithBuilder (line 310) | function testRoundTripWithBuilder() { function testGoldBuffer (line 383) | function testGoldBuffer() { function testBugWhereOffestWereStoredAsIntInsteadOfUInt (line 406) | function testBugWhereOffestWereStoredAsIntInsteadOfUInt() { FILE: tests/ts/JavaScriptRequiredStringTest.js function main (line 9) | function main() { function testMissingFirstRequiredString (line 15) | function testMissingFirstRequiredString() { function testMissingSecondRequiredString (line 22) | function testMissingSecondRequiredString() { FILE: tests/ts/JavaScriptTest.js function main (line 13) | function main() { function createMonster (line 55) | function createMonster(fbb) { function serializeAndTest (line 94) | function serializeAndTest(fbb) { function testMutation (line 110) | function testMutation(bb) { function testObjApiPack (line 126) | function testObjApiPack(fbb) { function testObjApiUnpack (line 135) | function testObjApiUnpack(monster) { function testBuffer (line 176) | function testBuffer(bb) { function test64bit (line 240) | function test64bit() { function testUnicode (line 285) | function testUnicode() { function lcg_rand (line 355) | function lcg_rand() { function lcg_reset (line 359) | function lcg_reset() { function fieldIndexToOffset (line 364) | function fieldIndexToOffset(field_id) { function fuzzTest1 (line 372) | function fuzzTest1() { function testSharedStrings (line 499) | function testSharedStrings() { function testNullStrings (line 506) | function testNullStrings() { function testVectorOfStructs (line 514) | function testVectorOfStructs() { function testCreateByteVector (line 529) | function testCreateByteVector() { FILE: tests/ts/JavaScriptTestv1.cjs function main (line 8) | function main() { function createMonster (line 45) | function createMonster(fbb) { function serializeAndTest (line 82) | function serializeAndTest(fbb) { function testMutation (line 97) | function testMutation(bb) { function testBuffer (line 112) | function testBuffer(bb) { function test64bit (line 163) | function test64bit() { function testUnicode (line 207) | function testUnicode() { function lcg_rand (line 266) | function lcg_rand() { function lcg_reset (line 270) | function lcg_reset() { function fieldIndexToOffset (line 275) | function fieldIndexToOffset(field_id) { function fuzzTest1 (line 283) | function fuzzTest1() { FILE: tests/ts/JavaScriptUndefinedForOptionals.js function testScalarStuffBuf (line 8) | function testScalarStuffBuf(scalarStuff) { function testScalarStuffUnpack (line 17) | function testScalarStuffUnpack(scalarStuff) { function createScalarStuff (line 26) | function createScalarStuff(fbb) { function main (line 34) | function main() { FILE: tests/ts/JavaScriptUnionUnderlyingTypeTest.js function main (line 6) | function main() { FILE: tests/ts/JavaScriptUnionVectorTest.js function testMovieBuf (line 12) | function testMovieBuf(movie) { function testMovieUnpack (line 33) | function testMovieUnpack(movie) { function createMovie (line 57) | function createMovie(fbb) { function main (line 78) | function main() { FILE: tests/ts/TypeScriptTest.py function check_call (line 43) | def check_call(args, cwd=tests_path): function flatc (line 48) | def flatc( function esbuild (line 64) | def esbuild(input, output): FILE: tests/ts/arrays_test_complex/arrays_test_complex_generated.cjs method constructor (line 49) | constructor() { method __init (line 53) | __init(i, bb) { method a (line 58) | a() { method b (line 61) | b(index) { method c (line 64) | c() { method dUnderscore (line 67) | dUnderscore() { method getFullyQualifiedName (line 70) | static getFullyQualifiedName() { method sizeOf (line 73) | static sizeOf() { method createInnerStruct (line 76) | static createInnerStruct(builder, a, b, c, d_underscore) { method unpack (line 87) | unpack() { method unpackTo (line 90) | unpackTo(_o) { method constructor (line 98) | constructor(a = 0, b = [], c = 0, dUnderscore = BigInt("0")) { method pack (line 104) | pack(builder) { method constructor (line 111) | constructor() { method __init (line 115) | __init(i, bb) { method a (line 120) | a() { method b (line 123) | b() { method cUnderscore (line 126) | cUnderscore(obj) { method d (line 129) | d(index, obj) { method e (line 132) | e(obj) { method f (line 135) | f(index) { method getFullyQualifiedName (line 138) | static getFullyQualifiedName() { method sizeOf (line 141) | static sizeOf() { method createOuterStruct (line 144) | static createOuterStruct(builder, a, b, c_underscore_a, c_underscore_b, ... method unpack (line 178) | unpack() { method unpackTo (line 181) | unpackTo(_o) { method constructor (line 191) | constructor(a = false, b = 0, cUnderscore = null, d = [], e = null, f = ... method pack (line 199) | pack(builder) { method constructor (line 214) | constructor() { method __init (line 218) | __init(i, bb) { method a (line 223) | a(index) { method b (line 226) | b() { method cUnderscore (line 229) | cUnderscore(index) { method dOuter (line 232) | dOuter(index, obj) { method e (line 235) | e(index) { method getFullyQualifiedName (line 238) | static getFullyQualifiedName() { method sizeOf (line 241) | static sizeOf() { method createNestedStruct (line 244) | static createNestedStruct(builder, a, b, c_underscore, d_outer, e) { method unpack (line 267) | unpack() { method unpackTo (line 270) | unpackTo(_o) { method constructor (line 279) | constructor(a = [], b = TestEnum.A, cUnderscore = [TestEnum.A, TestEnum.... method pack (line 286) | pack(builder) { method constructor (line 293) | constructor() { method __init (line 297) | __init(i, bb) { method aUnderscore (line 302) | aUnderscore() { method bUnderscore (line 305) | bUnderscore(index) { method c (line 308) | c() { method d (line 311) | d(index, obj) { method e (line 314) | e() { method f (line 317) | f(index, obj) { method g (line 320) | g(index) { method getFullyQualifiedName (line 323) | static getFullyQualifiedName() { method sizeOf (line 326) | static sizeOf() { method createArrayStruct (line 329) | static createArrayStruct(builder, a_underscore, b_underscore, c, d, e, f... method unpack (line 360) | unpack() { method unpackTo (line 363) | unpackTo(_o) { method constructor (line 374) | constructor(aUnderscore = 0, bUnderscore = [], c = 0, d = [], e = 0, f =... method pack (line 383) | pack(builder) { method constructor (line 391) | constructor() { method __init (line 395) | __init(i, bb) { method getRootAsArrayTable (line 400) | static getRootAsArrayTable(bb, obj) { method getSizePrefixedRootAsArrayTable (line 403) | static getSizePrefixedRootAsArrayTable(bb, obj) { method bufferHasIdentifier (line 407) | static bufferHasIdentifier(bb) { method a (line 410) | a(optionalEncoding) { method cUnderscore (line 414) | cUnderscore(obj) { method getFullyQualifiedName (line 418) | static getFullyQualifiedName() { method startArrayTable (line 421) | static startArrayTable(builder) { method addA (line 424) | static addA(builder, aOffset) { method addCUnderscore (line 427) | static addCUnderscore(builder, cUnderscoreOffset) { method endArrayTable (line 430) | static endArrayTable(builder) { method finishArrayTableBuffer (line 434) | static finishArrayTableBuffer(builder, offset) { method finishSizePrefixedArrayTableBuffer (line 437) | static finishSizePrefixedArrayTableBuffer(builder, offset) { method unpack (line 440) | unpack() { method unpackTo (line 443) | unpackTo(_o) { method constructor (line 449) | constructor(a = null, cUnderscore = null) { method pack (line 453) | pack(builder) { FILE: tests/ts/arrays_test_complex/my-game/example/array-struct.d.ts class ArrayStruct (line 7) | class ArrayStruct class ArrayStructT (line 35) | class ArrayStructT implements flatbuffers.IGeneratedObject { FILE: tests/ts/arrays_test_complex/my-game/example/array-struct.js class ArrayStruct (line 4) | class ArrayStruct { method constructor (line 5) | constructor() { method __init (line 9) | __init(i, bb) { method aUnderscore (line 14) | aUnderscore() { method bUnderscore (line 17) | bUnderscore(index) { method c (line 20) | c() { method d (line 23) | d(index, obj) { method e (line 27) | e() { method f (line 30) | f(index, obj) { method g (line 34) | g(index) { method getFullyQualifiedName (line 37) | static getFullyQualifiedName() { method sizeOf (line 40) | static sizeOf() { method createArrayStruct (line 43) | static createArrayStruct(builder, a_underscore, b_underscore, c, d, e,... method unpack (line 80) | unpack() { method unpackTo (line 88) | unpackTo(_o) { class ArrayStructT (line 98) | class ArrayStructT { method constructor (line 99) | constructor( method pack (line 110) | pack(builder) { FILE: tests/ts/arrays_test_complex/my-game/example/array-struct.ts class ArrayStruct (line 13) | class ArrayStruct method __init (line 18) | __init(i: number, bb: flatbuffers.ByteBuffer): ArrayStruct { method aUnderscore (line 24) | aUnderscore(): number { method bUnderscore (line 28) | bUnderscore(index: number): number | null { method c (line 32) | c(): number { method d (line 36) | d(index: number, obj?: NestedStruct): NestedStruct | null { method e (line 43) | e(): number { method f (line 47) | f(index: number, obj?: OuterStruct): OuterStruct | null { method g (line 54) | g(index: number): bigint | null { method getFullyQualifiedName (line 58) | static getFullyQualifiedName(): string { method sizeOf (line 62) | static sizeOf(): number { method createArrayStruct (line 66) | static createArrayStruct( method unpack (line 139) | unpack(): ArrayStructT { method unpackTo (line 151) | unpackTo(_o: ArrayStructT): void { class ArrayStructT (line 171) | class ArrayStructT implements flatbuffers.IGeneratedObject { method constructor (line 172) | constructor( method pack (line 182) | pack(builder: flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/arrays_test_complex/my-game/example/array-table.d.ts class ArrayTable (line 3) | class ArrayTable class ArrayTableT (line 40) | class ArrayTableT implements flatbuffers.IGeneratedObject { FILE: tests/ts/arrays_test_complex/my-game/example/array-table.js class ArrayTable (line 8) | class ArrayTable { method constructor (line 9) | constructor() { method __init (line 13) | __init(i, bb) { method getRootAsArrayTable (line 18) | static getRootAsArrayTable(bb, obj) { method getSizePrefixedRootAsArrayTable (line 22) | static getSizePrefixedRootAsArrayTable(bb, obj) { method bufferHasIdentifier (line 27) | static bufferHasIdentifier(bb) { method a (line 30) | a(optionalEncoding) { method cUnderscore (line 35) | cUnderscore(obj) { method getFullyQualifiedName (line 41) | static getFullyQualifiedName() { method startArrayTable (line 44) | static startArrayTable(builder) { method addA (line 47) | static addA(builder, aOffset) { method addCUnderscore (line 50) | static addCUnderscore(builder, cUnderscoreOffset) { method endArrayTable (line 53) | static endArrayTable(builder) { method finishArrayTableBuffer (line 57) | static finishArrayTableBuffer(builder, offset) { method finishSizePrefixedArrayTableBuffer (line 60) | static finishSizePrefixedArrayTableBuffer(builder, offset) { method unpack (line 63) | unpack() { method unpackTo (line 68) | unpackTo(_o) { class ArrayTableT (line 74) | class ArrayTableT { method constructor (line 75) | constructor(a = null, cUnderscore = null) { method pack (line 79) | pack(builder) { FILE: tests/ts/arrays_test_complex/my-game/example/array-table.ts class ArrayTable (line 9) | class ArrayTable implements flatbuffers.IUnpackableObject { method __init (line 12) | __init(i: number, bb: flatbuffers.ByteBuffer): ArrayTable { method getRootAsArrayTable (line 18) | static getRootAsArrayTable( method getSizePrefixedRootAsArrayTable (line 28) | static getSizePrefixedRootAsArrayTable( method bufferHasIdentifier (line 39) | static bufferHasIdentifier(bb: flatbuffers.ByteBuffer): boolean { method a (line 45) | a(optionalEncoding?: any): string | Uint8Array | null { method cUnderscore (line 52) | cUnderscore(obj?: ArrayStruct): ArrayStruct | null { method getFullyQualifiedName (line 59) | static getFullyQualifiedName(): string { method startArrayTable (line 63) | static startArrayTable(builder: flatbuffers.Builder) { method addA (line 67) | static addA(builder: flatbuffers.Builder, aOffset: flatbuffers.Offset) { method addCUnderscore (line 71) | static addCUnderscore( method endArrayTable (line 78) | static endArrayTable(builder: flatbuffers.Builder): flatbuffers.Offset { method finishArrayTableBuffer (line 83) | static finishArrayTableBuffer( method finishSizePrefixedArrayTableBuffer (line 90) | static finishSizePrefixedArrayTableBuffer( method unpack (line 97) | unpack(): ArrayTableT { method unpackTo (line 104) | unpackTo(_o: ArrayTableT): void { class ArrayTableT (line 111) | class ArrayTableT implements flatbuffers.IGeneratedObject { method constructor (line 112) | constructor( method pack (line 117) | pack(builder: flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/arrays_test_complex/my-game/example/inner-struct.d.ts class InnerStruct (line 2) | class InnerStruct class InnerStructT (line 24) | class InnerStructT implements flatbuffers.IGeneratedObject { FILE: tests/ts/arrays_test_complex/my-game/example/inner-struct.js class InnerStruct (line 2) | class InnerStruct { method constructor (line 3) | constructor() { method __init (line 7) | __init(i, bb) { method a (line 12) | a() { method b (line 15) | b(index) { method c (line 18) | c() { method dUnderscore (line 21) | dUnderscore() { method getFullyQualifiedName (line 24) | static getFullyQualifiedName() { method sizeOf (line 27) | static sizeOf() { method createInnerStruct (line 30) | static createInnerStruct(builder, a, b, c, d_underscore) { method unpack (line 41) | unpack() { method unpackTo (line 46) | unpackTo(_o) { class InnerStructT (line 53) | class InnerStructT { method constructor (line 54) | constructor(a = 0.0, b = [], c = 0, dUnderscore = BigInt('0')) { method pack (line 60) | pack(builder) { FILE: tests/ts/arrays_test_complex/my-game/example/inner-struct.ts class InnerStruct (line 7) | class InnerStruct method __init (line 12) | __init(i: number, bb: flatbuffers.ByteBuffer): InnerStruct { method a (line 18) | a(): number { method b (line 22) | b(index: number): number | null { method c (line 26) | c(): number { method dUnderscore (line 30) | dUnderscore(): bigint { method getFullyQualifiedName (line 34) | static getFullyQualifiedName(): string { method sizeOf (line 38) | static sizeOf(): number { method createInnerStruct (line 42) | static createInnerStruct( method unpack (line 62) | unpack(): InnerStructT { method unpackTo (line 71) | unpackTo(_o: InnerStructT): void { class InnerStructT (line 79) | class InnerStructT implements flatbuffers.IGeneratedObject { method constructor (line 80) | constructor( method pack (line 87) | pack(builder: flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/arrays_test_complex/my-game/example/nested-struct.d.ts class NestedStruct (line 4) | class NestedStruct class NestedStructT (line 28) | class NestedStructT implements flatbuffers.IGeneratedObject { FILE: tests/ts/arrays_test_complex/my-game/example/nested-struct.js class NestedStruct (line 4) | class NestedStruct { method constructor (line 5) | constructor() { method __init (line 9) | __init(i, bb) { method a (line 14) | a(index) { method b (line 17) | b() { method cUnderscore (line 20) | cUnderscore(index) { method dOuter (line 23) | dOuter(index, obj) { method e (line 27) | e(index) { method getFullyQualifiedName (line 30) | static getFullyQualifiedName() { method sizeOf (line 33) | static sizeOf() { method createNestedStruct (line 36) | static createNestedStruct(builder, a, b, c_underscore, d_outer, e) { method unpack (line 64) | unpack() { method unpackTo (line 71) | unpackTo(_o) { class NestedStructT (line 79) | class NestedStructT { method constructor (line 80) | constructor( method pack (line 89) | pack(builder) { FILE: tests/ts/arrays_test_complex/my-game/example/nested-struct.ts class NestedStruct (line 10) | class NestedStruct method __init (line 15) | __init(i: number, bb: flatbuffers.ByteBuffer): NestedStruct { method a (line 21) | a(index: number): number | null { method b (line 25) | b(): TestEnum { method cUnderscore (line 29) | cUnderscore(index: number): TestEnum | null { method dOuter (line 33) | dOuter(index: number, obj?: OuterStruct): OuterStruct | null { method e (line 40) | e(index: number): bigint | null { method getFullyQualifiedName (line 44) | static getFullyQualifiedName(): string { method sizeOf (line 48) | static sizeOf(): number { method createNestedStruct (line 52) | static createNestedStruct( method unpack (line 106) | unpack(): NestedStructT { method unpackTo (line 119) | unpackTo(_o: NestedStructT): void { class NestedStructT (line 134) | class NestedStructT implements flatbuffers.IGeneratedObject { method constructor (line 135) | constructor( method pack (line 143) | pack(builder: flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/arrays_test_complex/my-game/example/outer-struct.d.ts class OuterStruct (line 3) | class OuterStruct class OuterStructT (line 35) | class OuterStructT implements flatbuffers.IGeneratedObject { FILE: tests/ts/arrays_test_complex/my-game/example/outer-struct.js class OuterStruct (line 3) | class OuterStruct { method constructor (line 4) | constructor() { method __init (line 8) | __init(i, bb) { method a (line 13) | a() { method b (line 16) | b() { method cUnderscore (line 19) | cUnderscore(obj) { method d (line 22) | d(index, obj) { method e (line 26) | e(obj) { method f (line 29) | f(index) { method getFullyQualifiedName (line 32) | static getFullyQualifiedName() { method sizeOf (line 35) | static sizeOf() { method createOuterStruct (line 38) | static createOuterStruct( method unpack (line 75) | unpack() { method unpackTo (line 83) | unpackTo(_o) { class OuterStructT (line 93) | class OuterStructT { method constructor (line 94) | constructor( method pack (line 103) | pack(builder) { FILE: tests/ts/arrays_test_complex/my-game/example/outer-struct.ts class OuterStruct (line 9) | class OuterStruct method __init (line 14) | __init(i: number, bb: flatbuffers.ByteBuffer): OuterStruct { method a (line 20) | a(): boolean { method b (line 24) | b(): number { method cUnderscore (line 28) | cUnderscore(obj?: InnerStruct): InnerStruct | null { method d (line 32) | d(index: number, obj?: InnerStruct): InnerStruct | null { method e (line 39) | e(obj?: InnerStruct): InnerStruct | null { method f (line 43) | f(index: number): number | null { method getFullyQualifiedName (line 47) | static getFullyQualifiedName(): string { method sizeOf (line 51) | static sizeOf(): number { method createOuterStruct (line 55) | static createOuterStruct( method unpack (line 120) | unpack(): OuterStructT { method unpackTo (line 131) | unpackTo(_o: OuterStructT): void { class OuterStructT (line 145) | class OuterStructT implements flatbuffers.IGeneratedObject { method constructor (line 146) | constructor( method pack (line 155) | pack(builder: flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/arrays_test_complex/my-game/example/test-enum.d.ts type TestEnum (line 1) | enum TestEnum { FILE: tests/ts/arrays_test_complex/my-game/example/test-enum.ts type TestEnum (line 5) | enum TestEnum { FILE: tests/ts/bazel_repository_test_dir/import_test.js function main (line 8) | function main() { FILE: tests/ts/bazel_repository_test_dir/independent_deps_test.js function main (line 11) | function main() { FILE: tests/ts/com/company/test/person.ts class Person (line 7) | class Person { method __init (line 10) | __init(i: number, bb: flatbuffers.ByteBuffer): Person { method getRootAsPerson (line 16) | static getRootAsPerson(bb: flatbuffers.ByteBuffer, obj?: Person): Pers... method getSizePrefixedRootAsPerson (line 23) | static getSizePrefixedRootAsPerson( method name (line 36) | name(optionalEncoding?: any): string | Uint8Array | null { method age (line 43) | age(): number { method startPerson (line 48) | static startPerson(builder: flatbuffers.Builder) { method addName (line 52) | static addName(builder: flatbuffers.Builder, nameOffset: flatbuffers.O... method addAge (line 56) | static addAge(builder: flatbuffers.Builder, age: number) { method endPerson (line 60) | static endPerson(builder: flatbuffers.Builder): flatbuffers.Offset { method finishPersonBuffer (line 65) | static finishPersonBuffer( method finishSizePrefixedPersonBuffer (line 72) | static finishSizePrefixedPersonBuffer( method createPerson (line 79) | static createPerson( FILE: tests/ts/foobar/abc.d.ts type Abc (line 1) | enum Abc { FILE: tests/ts/foobar/abc.ts type Abc (line 5) | enum Abc { FILE: tests/ts/foobar/class.d.ts type class_ (line 1) | enum class_ { FILE: tests/ts/foobar/class.ts type class_ (line 5) | enum class_ { FILE: tests/ts/foobar/tab.ts class Tab (line 10) | class Tab implements flatbuffers.IUnpackableObject { method __init (line 13) | __init(i: number, bb: flatbuffers.ByteBuffer): Tab { method getRootAsTab (line 19) | static getRootAsTab(bb: flatbuffers.ByteBuffer, obj?: Tab): Tab { method getSizePrefixedRootAsTab (line 26) | static getSizePrefixedRootAsTab(bb: flatbuffers.ByteBuffer, obj?: Tab)... method abc (line 34) | abc(): Abc { method mutate_abc (line 39) | mutate_abc(value: Abc): boolean { method arg (line 50) | arg(): class_ { method mutate_arg (line 57) | mutate_arg(value: class_): boolean { method name (line 70) | name(optionalEncoding?: any): string | Uint8Array | null { method getFullyQualifiedName (line 77) | static getFullyQualifiedName(): string { method startTab (line 81) | static startTab(builder: flatbuffers.Builder) { method addAbc (line 85) | static addAbc(builder: flatbuffers.Builder, abc: Abc) { method addArg (line 89) | static addArg(builder: flatbuffers.Builder, arg: class_) { method addName (line 93) | static addName(builder: flatbuffers.Builder, nameOffset: flatbuffers.O... method endTab (line 97) | static endTab(builder: flatbuffers.Builder): flatbuffers.Offset { method createTab (line 102) | static createTab( method unpack (line 115) | unpack(): TabT { method unpackTo (line 119) | unpackTo(_o: TabT): void { class TabT (line 126) | class TabT implements flatbuffers.IGeneratedObject { method constructor (line 127) | constructor( method pack (line 133) | pack(builder: flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/longer-namespace/a/b/c/person.d.ts class Person (line 2) | class Person { FILE: tests/ts/longer-namespace/a/b/c/person.js class Person (line 5) | class Person { method constructor (line 6) | constructor() { method __init (line 10) | __init(i, bb) { method getRootAsPerson (line 15) | static getRootAsPerson(bb, obj) { method getSizePrefixedRootAsPerson (line 19) | static getSizePrefixedRootAsPerson(bb, obj) { method name (line 24) | name(optionalEncoding) { method age (line 29) | age() { method startPerson (line 33) | static startPerson(builder) { method addName (line 36) | static addName(builder, nameOffset) { method addAge (line 39) | static addAge(builder, age) { method endPerson (line 42) | static endPerson(builder) { method finishPersonBuffer (line 46) | static finishPersonBuffer(builder, offset) { method finishSizePrefixedPersonBuffer (line 49) | static finishSizePrefixedPersonBuffer(builder, offset) { method createPerson (line 52) | static createPerson(builder, nameOffset, age) { FILE: tests/ts/longer-namespace/a/b/c/person.ts class Person (line 7) | class Person { method __init (line 10) | __init(i: number, bb: flatbuffers.ByteBuffer): Person { method getRootAsPerson (line 16) | static getRootAsPerson(bb: flatbuffers.ByteBuffer, obj?: Person): Pers... method getSizePrefixedRootAsPerson (line 23) | static getSizePrefixedRootAsPerson( method name (line 36) | name(optionalEncoding?: any): string | Uint8Array | null { method age (line 43) | age(): number { method startPerson (line 48) | static startPerson(builder: flatbuffers.Builder) { method addName (line 52) | static addName(builder: flatbuffers.Builder, nameOffset: flatbuffers.O... method addAge (line 56) | static addAge(builder: flatbuffers.Builder, age: number) { method endPerson (line 60) | static endPerson(builder: flatbuffers.Builder): flatbuffers.Offset { method finishPersonBuffer (line 65) | static finishPersonBuffer( method finishSizePrefixedPersonBuffer (line 72) | static finishSizePrefixedPersonBuffer( method createPerson (line 79) | static createPerson( FILE: tests/ts/monster_test_generated.cjs method constructor (line 45) | constructor() { method __init (line 49) | __init(i, bb) { method getRootAsTableB (line 54) | static getRootAsTableB(bb, obj) { method getSizePrefixedRootAsTableB (line 57) | static getSizePrefixedRootAsTableB(bb, obj) { method a (line 61) | a(obj) { method getFullyQualifiedName (line 65) | static getFullyQualifiedName() { method startTableB (line 68) | static startTableB(builder) { method addA (line 71) | static addA(builder, aOffset) { method endTableB (line 74) | static endTableB(builder) { method createTableB (line 78) | static createTableB(builder, aOffset) { method serialize (line 83) | serialize() { method deserialize (line 86) | static deserialize(buffer) { method unpack (line 89) | unpack() { method unpackTo (line 92) | unpackTo(_o) { method constructor (line 97) | constructor(a = null) { method pack (line 100) | pack(builder) { method constructor (line 108) | constructor() { method __init (line 112) | __init(i, bb) { method getRootAsTableA (line 117) | static getRootAsTableA(bb, obj) { method getSizePrefixedRootAsTableA (line 120) | static getSizePrefixedRootAsTableA(bb, obj) { method b (line 124) | b(obj) { method getFullyQualifiedName (line 128) | static getFullyQualifiedName() { method startTableA (line 131) | static startTableA(builder) { method addB (line 134) | static addB(builder, bOffset) { method endTableA (line 137) | static endTableA(builder) { method createTableA (line 141) | static createTableA(builder, bOffset) { method serialize (line 146) | serialize() { method deserialize (line 149) | static deserialize(buffer) { method unpack (line 152) | unpack() { method unpackTo (line 155) | unpackTo(_o) { method constructor (line 160) | constructor(b = null) { method pack (line 163) | pack(builder) { method constructor (line 182) | constructor() { method __init (line 186) | __init(i, bb) { method getRootAsInParentNamespace (line 191) | static getRootAsInParentNamespace(bb, obj) { method getSizePrefixedRootAsInParentNamespace (line 194) | static getSizePrefixedRootAsInParentNamespace(bb, obj) { method getFullyQualifiedName (line 198) | static getFullyQualifiedName() { method startInParentNamespace (line 201) | static startInParentNamespace(builder) { method endInParentNamespace (line 204) | static endInParentNamespace(builder) { method createInParentNamespace (line 208) | static createInParentNamespace(builder) { method serialize (line 212) | serialize() { method deserialize (line 215) | static deserialize(buffer) { method unpack (line 218) | unpack() { method unpackTo (line 221) | unpackTo(_o) { method constructor (line 225) | constructor() { method pack (line 227) | pack(builder) { method constructor (line 265) | constructor() { method __init (line 269) | __init(i, bb) { method id (line 274) | id() { method mutate_id (line 277) | mutate_id(value) { method distance (line 281) | distance() { method mutate_distance (line 284) | mutate_distance(value) { method getFullyQualifiedName (line 288) | static getFullyQualifiedName() { method sizeOf (line 291) | static sizeOf() { method createAbility (line 294) | static createAbility(builder, id, distance) { method unpack (line 300) | unpack() { method unpackTo (line 303) | unpackTo(_o) { method constructor (line 309) | constructor(id = 0, distance = 0) { method pack (line 313) | pack(builder) { method constructor (line 321) | constructor() { method __init (line 325) | __init(i, bb) { method getRootAsMonster (line 330) | static getRootAsMonster(bb, obj) { method getSizePrefixedRootAsMonster (line 333) | static getSizePrefixedRootAsMonster(bb, obj) { method getFullyQualifiedName (line 337) | static getFullyQualifiedName() { method startMonster (line 340) | static startMonster(builder) { method endMonster (line 343) | static endMonster(builder) { method createMonster (line 347) | static createMonster(builder) { method serialize (line 351) | serialize() { method deserialize (line 354) | static deserialize(buffer) { method unpack (line 357) | unpack() { method unpackTo (line 360) | unpackTo(_o) { method constructor (line 364) | constructor() { method pack (line 366) | pack(builder) { function unionToAnyAmbiguousAliases (line 382) | function unionToAnyAmbiguousAliases(type, accessor) { method constructor (line 410) | constructor() { method __init (line 414) | __init(i, bb) { method getRootAsTestSimpleTableWithEnum (line 419) | static getRootAsTestSimpleTableWithEnum(bb, obj) { method getSizePrefixedRootAsTestSimpleTableWithEnum (line 422) | static getSizePrefixedRootAsTestSimpleTableWithEnum(bb, obj) { method color (line 426) | color() { method mutate_color (line 430) | mutate_color(value) { method getFullyQualifiedName (line 438) | static getFullyQualifiedName() { method startTestSimpleTableWithEnum (line 441) | static startTestSimpleTableWithEnum(builder) { method addColor (line 444) | static addColor(builder, color) { method endTestSimpleTableWithEnum (line 447) | static endTestSimpleTableWithEnum(builder) { method createTestSimpleTableWithEnum (line 451) | static createTestSimpleTableWithEnum(builder, color) { method serialize (line 456) | serialize() { method deserialize (line 459) | static deserialize(buffer) { method unpack (line 462) | unpack() { method unpackTo (line 465) | unpackTo(_o) { method constructor (line 470) | constructor(color = Color.Green) { method pack (line 473) | pack(builder) { function unionToAnyUniqueAliases (line 486) | function unionToAnyUniqueAliases(type, accessor) { method constructor (line 513) | constructor() { method __init (line 517) | __init(i, bb) { method getRootAsReferrable (line 522) | static getRootAsReferrable(bb, obj) { method getSizePrefixedRootAsReferrable (line 525) | static getSizePrefixedRootAsReferrable(bb, obj) { method id (line 529) | id() { method mutate_id (line 533) | mutate_id(value) { method getFullyQualifiedName (line 541) | static getFullyQualifiedName() { method startReferrable (line 544) | static startReferrable(builder) { method addId (line 547) | static addId(builder, id) { method endReferrable (line 550) | static endReferrable(builder) { method createReferrable (line 554) | static createReferrable(builder, id) { method serialize (line 559) | serialize() { method deserialize (line 562) | static deserialize(buffer) { method unpack (line 565) | unpack() { method unpackTo (line 568) | unpackTo(_o) { method constructor (line 573) | constructor(id = BigInt("0")) { method pack (line 576) | pack(builder) { method constructor (line 584) | constructor() { method __init (line 588) | __init(i, bb) { method getRootAsStat (line 593) | static getRootAsStat(bb, obj) { method getSizePrefixedRootAsStat (line 596) | static getSizePrefixedRootAsStat(bb, obj) { method id (line 600) | id(optionalEncoding) { method val (line 604) | val() { method mutate_val (line 608) | mutate_val(value) { method count (line 616) | count() { method mutate_count (line 620) | mutate_count(value) { method getFullyQualifiedName (line 628) | static getFullyQualifiedName() { method startStat (line 631) | static startStat(builder) { method addId (line 634) | static addId(builder, idOffset) { method addVal (line 637) | static addVal(builder, val) { method addCount (line 640) | static addCount(builder, count) { method endStat (line 643) | static endStat(builder) { method createStat (line 647) | static createStat(builder, idOffset, val, count) { method serialize (line 654) | serialize() { method deserialize (line 657) | static deserialize(buffer) { method unpack (line 660) | unpack() { method unpackTo (line 663) | unpackTo(_o) { method constructor (line 670) | constructor(id = null, val = BigInt("0"), count = 0) { method pack (line 675) | pack(builder) { method constructor (line 683) | constructor() { method __init (line 687) | __init(i, bb) { method a (line 692) | a() { method mutate_a (line 695) | mutate_a(value) { method b (line 699) | b() { method mutate_b (line 702) | mutate_b(value) { method getFullyQualifiedName (line 706) | static getFullyQualifiedName() { method sizeOf (line 709) | static sizeOf() { method createTest (line 712) | static createTest(builder, a, b) { method unpack (line 719) | unpack() { method unpackTo (line 722) | unpackTo(_o) { method constructor (line 728) | constructor(a = 0, b = 0) { method pack (line 732) | pack(builder) { method constructor (line 739) | constructor() { method __init (line 743) | __init(i, bb) { method x (line 748) | x() { method mutate_x (line 751) | mutate_x(value) { method y (line 755) | y() { method mutate_y (line 758) | mutate_y(value) { method z (line 762) | z() { method mutate_z (line 765) | mutate_z(value) { method test1 (line 769) | test1() { method mutate_test1 (line 772) | mutate_test1(value) { method test2 (line 776) | test2() { method mutate_test2 (line 779) | mutate_test2(value) { method test3 (line 783) | test3(obj) { method getFullyQualifiedName (line 786) | static getFullyQualifiedName() { method sizeOf (line 789) | static sizeOf() { method createVec3 (line 792) | static createVec3(builder, x, y, z, test1, test2, test3_a, test3_b) { method unpack (line 808) | unpack() { method unpackTo (line 811) | unpackTo(_o) { method constructor (line 821) | constructor(x = 0, y = 0, z = 0, test1 = 0, test2 = Color.Red, test3 = n... method pack (line 829) | pack(builder) { method constructor (line 836) | constructor() { method __init (line 840) | __init(i, bb) { method getRootAsMonster (line 845) | static getRootAsMonster(bb, obj) { method getSizePrefixedRootAsMonster (line 848) | static getSizePrefixedRootAsMonster(bb, obj) { method bufferHasIdentifier (line 852) | static bufferHasIdentifier(bb) { method pos (line 855) | pos(obj) { method mana (line 859) | mana() { method mutate_mana (line 863) | mutate_mana(value) { method hp (line 871) | hp() { method mutate_hp (line 875) | mutate_hp(value) { method name (line 883) | name(optionalEncoding) { method inventory (line 887) | inventory(index) { method inventoryLength (line 891) | inventoryLength() { method inventoryArray (line 895) | inventoryArray() { method color (line 899) | color() { method mutate_color (line 903) | mutate_color(value) { method testType (line 911) | testType() { method test (line 915) | test(obj) { method test4 (line 919) | test4(index, obj) { method test4Length (line 923) | test4Length() { method testarrayofstring (line 927) | testarrayofstring(index, optionalEncoding) { method testarrayofstringLength (line 931) | testarrayofstringLength() { method testarrayoftables (line 939) | testarrayoftables(index, obj) { method testarrayoftablesLength (line 943) | testarrayoftablesLength() { method enemy (line 947) | enemy(obj) { method testnestedflatbuffer (line 951) | testnestedflatbuffer(index) { method testnestedflatbufferLength (line 955) | testnestedflatbufferLength() { method testnestedflatbufferArray (line 959) | testnestedflatbufferArray() { method testempty (line 963) | testempty(obj) { method testbool (line 967) | testbool() { method mutate_testbool (line 971) | mutate_testbool(value) { method testhashs32Fnv1 (line 979) | testhashs32Fnv1() { method mutate_testhashs32_fnv1 (line 983) | mutate_testhashs32_fnv1(value) { method testhashu32Fnv1 (line 991) | testhashu32Fnv1() { method mutate_testhashu32_fnv1 (line 995) | mutate_testhashu32_fnv1(value) { method testhashs64Fnv1 (line 1003) | testhashs64Fnv1() { method mutate_testhashs64_fnv1 (line 1007) | mutate_testhashs64_fnv1(value) { method testhashu64Fnv1 (line 1015) | testhashu64Fnv1() { method mutate_testhashu64_fnv1 (line 1019) | mutate_testhashu64_fnv1(value) { method testhashs32Fnv1a (line 1027) | testhashs32Fnv1a() { method mutate_testhashs32_fnv1a (line 1031) | mutate_testhashs32_fnv1a(value) { method testhashu32Fnv1a (line 1039) | testhashu32Fnv1a() { method mutate_testhashu32_fnv1a (line 1043) | mutate_testhashu32_fnv1a(value) { method testhashs64Fnv1a (line 1051) | testhashs64Fnv1a() { method mutate_testhashs64_fnv1a (line 1055) | mutate_testhashs64_fnv1a(value) { method testhashu64Fnv1a (line 1063) | testhashu64Fnv1a() { method mutate_testhashu64_fnv1a (line 1067) | mutate_testhashu64_fnv1a(value) { method testarrayofbools (line 1075) | testarrayofbools(index) { method testarrayofboolsLength (line 1079) | testarrayofboolsLength() { method testarrayofboolsArray (line 1083) | testarrayofboolsArray() { method testf (line 1087) | testf() { method mutate_testf (line 1091) | mutate_testf(value) { method testf2 (line 1099) | testf2() { method mutate_testf2 (line 1103) | mutate_testf2(value) { method testf3 (line 1111) | testf3() { method mutate_testf3 (line 1115) | mutate_testf3(value) { method testarrayofstring2 (line 1123) | testarrayofstring2(index, optionalEncoding) { method testarrayofstring2Length (line 1127) | testarrayofstring2Length() { method testarrayofsortedstruct (line 1131) | testarrayofsortedstruct(index, obj) { method testarrayofsortedstructLength (line 1135) | testarrayofsortedstructLength() { method flex (line 1139) | flex(index) { method flexLength (line 1143) | flexLength() { method flexArray (line 1147) | flexArray() { method test5 (line 1151) | test5(index, obj) { method test5Length (line 1155) | test5Length() { method vectorOfLongs (line 1159) | vectorOfLongs(index) { method vectorOfLongsLength (line 1163) | vectorOfLongsLength() { method vectorOfDoubles (line 1167) | vectorOfDoubles(index) { method vectorOfDoublesLength (line 1171) | vectorOfDoublesLength() { method vectorOfDoublesArray (line 1175) | vectorOfDoublesArray() { method parentNamespaceTest (line 1179) | parentNamespaceTest(obj) { method vectorOfReferrables (line 1183) | vectorOfReferrables(index, obj) { method vectorOfReferrablesLength (line 1187) | vectorOfReferrablesLength() { method singleWeakReference (line 1191) | singleWeakReference() { method mutate_single_weak_reference (line 1195) | mutate_single_weak_reference(value) { method vectorOfWeakReferences (line 1203) | vectorOfWeakReferences(index) { method vectorOfWeakReferencesLength (line 1207) | vectorOfWeakReferencesLength() { method vectorOfStrongReferrables (line 1211) | vectorOfStrongReferrables(index, obj) { method vectorOfStrongReferrablesLength (line 1215) | vectorOfStrongReferrablesLength() { method coOwningReference (line 1219) | coOwningReference() { method mutate_co_owning_reference (line 1223) | mutate_co_owning_reference(value) { method vectorOfCoOwningReferences (line 1231) | vectorOfCoOwningReferences(index) { method vectorOfCoOwningReferencesLength (line 1235) | vectorOfCoOwningReferencesLength() { method nonOwningReference (line 1239) | nonOwningReference() { method mutate_non_owning_reference (line 1243) | mutate_non_owning_reference(value) { method vectorOfNonOwningReferences (line 1251) | vectorOfNonOwningReferences(index) { method vectorOfNonOwningReferencesLength (line 1255) | vectorOfNonOwningReferencesLength() { method anyUniqueType (line 1259) | anyUniqueType() { method anyUnique (line 1263) | anyUnique(obj) { method anyAmbiguousType (line 1267) | anyAmbiguousType() { method anyAmbiguous (line 1271) | anyAmbiguous(obj) { method vectorOfEnums (line 1275) | vectorOfEnums(index) { method vectorOfEnumsLength (line 1279) | vectorOfEnumsLength() { method vectorOfEnumsArray (line 1283) | vectorOfEnumsArray() { method signedEnum (line 1287) | signedEnum() { method mutate_signed_enum (line 1291) | mutate_signed_enum(value) { method testrequirednestedflatbuffer (line 1299) | testrequirednestedflatbuffer(index) { method testrequirednestedflatbufferLength (line 1303) | testrequirednestedflatbufferLength() { method testrequirednestedflatbufferArray (line 1307) | testrequirednestedflatbufferArray() { method scalarKeySortedTables (line 1311) | scalarKeySortedTables(index, obj) { method scalarKeySortedTablesLength (line 1315) | scalarKeySortedTablesLength() { method nativeInline (line 1319) | nativeInline(obj) { method longEnumNonEnumDefault (line 1323) | longEnumNonEnumDefault() { method mutate_long_enum_non_enum_default (line 1327) | mutate_long_enum_non_enum_default(value) { method longEnumNormalDefault (line 1335) | longEnumNormalDefault() { method mutate_long_enum_normal_default (line 1339) | mutate_long_enum_normal_default(value) { method nanDefault (line 1347) | nanDefault() { method mutate_nan_default (line 1351) | mutate_nan_default(value) { method infDefault (line 1359) | infDefault() { method mutate_inf_default (line 1363) | mutate_inf_default(value) { method positiveInfDefault (line 1371) | positiveInfDefault() { method mutate_positive_inf_default (line 1375) | mutate_positive_inf_default(value) { method infinityDefault (line 1383) | infinityDefault() { method mutate_infinity_default (line 1387) | mutate_infinity_default(value) { method positiveInfinityDefault (line 1395) | positiveInfinityDefault() { method mutate_positive_infinity_default (line 1399) | mutate_positive_infinity_default(value) { method negativeInfDefault (line 1407) | negativeInfDefault() { method mutate_negative_inf_default (line 1411) | mutate_negative_inf_default(value) { method negativeInfinityDefault (line 1419) | negativeInfinityDefault() { method mutate_negative_infinity_default (line 1423) | mutate_negative_infinity_default(value) { method doubleInfDefault (line 1431) | doubleInfDefault() { method mutate_double_inf_default (line 1435) | mutate_double_inf_default(value) { method getFullyQualifiedName (line 1443) | static getFullyQualifiedName() { method startMonster (line 1446) | static startMonster(builder) { method addPos (line 1449) | static addPos(builder, posOffset) { method addMana (line 1452) | static addMana(builder, mana) { method addHp (line 1455) | static addHp(builder, hp) { method addName (line 1458) | static addName(builder, nameOffset) { method addInventory (line 1461) | static addInventory(builder, inventoryOffset) { method createInventoryVector (line 1464) | static createInventoryVector(builder, data) { method startInventoryVector (line 1471) | static startInventoryVector(builder, numElems) { method addColor (line 1474) | static addColor(builder, color) { method addTestType (line 1477) | static addTestType(builder, testType) { method addTest (line 1480) | static addTest(builder, testOffset) { method addTest4 (line 1483) | static addTest4(builder, test4Offset) { method startTest4Vector (line 1486) | static startTest4Vector(builder, numElems) { method addTestarrayofstring (line 1489) | static addTestarrayofstring(builder, testarrayofstringOffset) { method createTestarrayofstringVector (line 1492) | static createTestarrayofstringVector(builder, data) { method startTestarrayofstringVector (line 1499) | static startTestarrayofstringVector(builder, numElems) { method addTestarrayoftables (line 1502) | static addTestarrayoftables(builder, testarrayoftablesOffset) { method createTestarrayoftablesVector (line 1505) | static createTestarrayoftablesVector(builder, data) { method startTestarrayoftablesVector (line 1512) | static startTestarrayoftablesVector(builder, numElems) { method addEnemy (line 1515) | static addEnemy(builder, enemyOffset) { method addTestnestedflatbuffer (line 1518) | static addTestnestedflatbuffer(builder, testnestedflatbufferOffset) { method createTestnestedflatbufferVector (line 1521) | static createTestnestedflatbufferVector(builder, data) { method startTestnestedflatbufferVector (line 1528) | static startTestnestedflatbufferVector(builder, numElems) { method addTestempty (line 1531) | static addTestempty(builder, testemptyOffset) { method addTestbool (line 1534) | static addTestbool(builder, testbool) { method addTesthashs32Fnv1 (line 1537) | static addTesthashs32Fnv1(builder, testhashs32Fnv1) { method addTesthashu32Fnv1 (line 1540) | static addTesthashu32Fnv1(builder, testhashu32Fnv1) { method addTesthashs64Fnv1 (line 1543) | static addTesthashs64Fnv1(builder, testhashs64Fnv1) { method addTesthashu64Fnv1 (line 1546) | static addTesthashu64Fnv1(builder, testhashu64Fnv1) { method addTesthashs32Fnv1a (line 1549) | static addTesthashs32Fnv1a(builder, testhashs32Fnv1a) { method addTesthashu32Fnv1a (line 1552) | static addTesthashu32Fnv1a(builder, testhashu32Fnv1a) { method addTesthashs64Fnv1a (line 1555) | static addTesthashs64Fnv1a(builder, testhashs64Fnv1a) { method addTesthashu64Fnv1a (line 1558) | static addTesthashu64Fnv1a(builder, testhashu64Fnv1a) { method addTestarrayofbools (line 1561) | static addTestarrayofbools(builder, testarrayofboolsOffset) { method createTestarrayofboolsVector (line 1564) | static createTestarrayofboolsVector(builder, data) { method startTestarrayofboolsVector (line 1571) | static startTestarrayofboolsVector(builder, numElems) { method addTestf (line 1574) | static addTestf(builder, testf) { method addTestf2 (line 1577) | static addTestf2(builder, testf2) { method addTestf3 (line 1580) | static addTestf3(builder, testf3) { method addTestarrayofstring2 (line 1583) | static addTestarrayofstring2(builder, testarrayofstring2Offset) { method createTestarrayofstring2Vector (line 1586) | static createTestarrayofstring2Vector(builder, data) { method startTestarrayofstring2Vector (line 1593) | static startTestarrayofstring2Vector(builder, numElems) { method addTestarrayofsortedstruct (line 1596) | static addTestarrayofsortedstruct(builder, testarrayofsortedstructOffset) { method startTestarrayofsortedstructVector (line 1599) | static startTestarrayofsortedstructVector(builder, numElems) { method addFlex (line 1602) | static addFlex(builder, flexOffset) { method createFlexVector (line 1605) | static createFlexVector(builder, data) { method startFlexVector (line 1612) | static startFlexVector(builder, numElems) { method addTest5 (line 1615) | static addTest5(builder, test5Offset) { method startTest5Vector (line 1618) | static startTest5Vector(builder, numElems) { method addVectorOfLongs (line 1621) | static addVectorOfLongs(builder, vectorOfLongsOffset) { method createVectorOfLongsVector (line 1624) | static createVectorOfLongsVector(builder, data) { method startVectorOfLongsVector (line 1631) | static startVectorOfLongsVector(builder, numElems) { method addVectorOfDoubles (line 1634) | static addVectorOfDoubles(builder, vectorOfDoublesOffset) { method createVectorOfDoublesVector (line 1637) | static createVectorOfDoublesVector(builder, data) { method startVectorOfDoublesVector (line 1644) | static startVectorOfDoublesVector(builder, numElems) { method addParentNamespaceTest (line 1647) | static addParentNamespaceTest(builder, parentNamespaceTestOffset) { method addVectorOfReferrables (line 1650) | static addVectorOfReferrables(builder, vectorOfReferrablesOffset) { method createVectorOfReferrablesVector (line 1653) | static createVectorOfReferrablesVector(builder, data) { method startVectorOfReferrablesVector (line 1660) | static startVectorOfReferrablesVector(builder, numElems) { method addSingleWeakReference (line 1663) | static addSingleWeakReference(builder, singleWeakReference) { method addVectorOfWeakReferences (line 1666) | static addVectorOfWeakReferences(builder, vectorOfWeakReferencesOffset) { method createVectorOfWeakReferencesVector (line 1669) | static createVectorOfWeakReferencesVector(builder, data) { method startVectorOfWeakReferencesVector (line 1676) | static startVectorOfWeakReferencesVector(builder, numElems) { method addVectorOfStrongReferrables (line 1679) | static addVectorOfStrongReferrables(builder, vectorOfStrongReferrablesOf... method createVectorOfStrongReferrablesVector (line 1682) | static createVectorOfStrongReferrablesVector(builder, data) { method startVectorOfStrongReferrablesVector (line 1689) | static startVectorOfStrongReferrablesVector(builder, numElems) { method addCoOwningReference (line 1692) | static addCoOwningReference(builder, coOwningReference) { method addVectorOfCoOwningReferences (line 1695) | static addVectorOfCoOwningReferences(builder, vectorOfCoOwningReferences... method createVectorOfCoOwningReferencesVector (line 1698) | static createVectorOfCoOwningReferencesVector(builder, data) { method startVectorOfCoOwningReferencesVector (line 1705) | static startVectorOfCoOwningReferencesVector(builder, numElems) { method addNonOwningReference (line 1708) | static addNonOwningReference(builder, nonOwningReference) { method addVectorOfNonOwningReferences (line 1711) | static addVectorOfNonOwningReferences(builder, vectorOfNonOwningReferenc... method createVectorOfNonOwningReferencesVector (line 1714) | static createVectorOfNonOwningReferencesVector(builder, data) { method startVectorOfNonOwningReferencesVector (line 1721) | static startVectorOfNonOwningReferencesVector(builder, numElems) { method addAnyUniqueType (line 1724) | static addAnyUniqueType(builder, anyUniqueType) { method addAnyUnique (line 1727) | static addAnyUnique(builder, anyUniqueOffset) { method addAnyAmbiguousType (line 1730) | static addAnyAmbiguousType(builder, anyAmbiguousType) { method addAnyAmbiguous (line 1733) | static addAnyAmbiguous(builder, anyAmbiguousOffset) { method addVectorOfEnums (line 1736) | static addVectorOfEnums(builder, vectorOfEnumsOffset) { method createVectorOfEnumsVector (line 1739) | static createVectorOfEnumsVector(builder, data) { method startVectorOfEnumsVector (line 1746) | static startVectorOfEnumsVector(builder, numElems) { method addSignedEnum (line 1749) | static addSignedEnum(builder, signedEnum) { method addTestrequirednestedflatbuffer (line 1752) | static addTestrequirednestedflatbuffer(builder, testrequirednestedflatbu... method createTestrequirednestedflatbufferVector (line 1755) | static createTestrequirednestedflatbufferVector(builder, data) { method startTestrequirednestedflatbufferVector (line 1762) | static startTestrequirednestedflatbufferVector(builder, numElems) { method addScalarKeySortedTables (line 1765) | static addScalarKeySortedTables(builder, scalarKeySortedTablesOffset) { method createScalarKeySortedTablesVector (line 1768) | static createScalarKeySortedTablesVector(builder, data) { method startScalarKeySortedTablesVector (line 1775) | static startScalarKeySortedTablesVector(builder, numElems) { method addNativeInline (line 1778) | static addNativeInline(builder, nativeInlineOffset) { method addLongEnumNonEnumDefault (line 1781) | static addLongEnumNonEnumDefault(builder, longEnumNonEnumDefault) { method addLongEnumNormalDefault (line 1784) | static addLongEnumNormalDefault(builder, longEnumNormalDefault) { method addNanDefault (line 1787) | static addNanDefault(builder, nanDefault) { method addInfDefault (line 1790) | static addInfDefault(builder, infDefault) { method addPositiveInfDefault (line 1793) | static addPositiveInfDefault(builder, positiveInfDefault) { method addInfinityDefault (line 1796) | static addInfinityDefault(builder, infinityDefault) { method addPositiveInfinityDefault (line 1799) | static addPositiveInfinityDefault(builder, positiveInfinityDefault) { method addNegativeInfDefault (line 1802) | static addNegativeInfDefault(builder, negativeInfDefault) { method addNegativeInfinityDefault (line 1805) | static addNegativeInfinityDefault(builder, negativeInfinityDefault) { method addDoubleInfDefault (line 1808) | static addDoubleInfDefault(builder, doubleInfDefault) { method endMonster (line 1811) | static endMonster(builder) { method finishMonsterBuffer (line 1816) | static finishMonsterBuffer(builder, offset) { method finishSizePrefixedMonsterBuffer (line 1819) | static finishSizePrefixedMonsterBuffer(builder, offset) { method serialize (line 1822) | serialize() { method deserialize (line 1825) | static deserialize(buffer) { method unpack (line 1828) | unpack() { method unpackTo (line 1849) | unpackTo(_o) { method constructor (line 1932) | constructor(pos = null, mana = 150, hp = 100, name = null, inventory = [... method pack (line 1995) | pack(builder) { function unionToAny (line 2097) | function unionToAny(type, accessor) { method constructor (line 2122) | constructor() { method __init (line 2126) | __init(i, bb) { method a (line 2131) | a(obj) { method b (line 2134) | b(obj) { method c (line 2137) | c(obj) { method getFullyQualifiedName (line 2140) | static getFullyQualifiedName() { method sizeOf (line 2143) | static sizeOf() { method createStructOfStructs (line 2146) | static createStructOfStructs(builder, a_id, a_distance, b_a, b_b, c_id, ... method unpack (line 2160) | unpack() { method unpackTo (line 2163) | unpackTo(_o) { method constructor (line 2170) | constructor(a = null, b = null, c = null) { method pack (line 2175) | pack(builder) { method constructor (line 2182) | constructor() { method __init (line 2186) | __init(i, bb) { method a (line 2191) | a(obj) { method getFullyQualifiedName (line 2194) | static getFullyQualifiedName() { method sizeOf (line 2197) | static sizeOf() { method createStructOfStructsOfStructs (line 2200) | static createStructOfStructsOfStructs(builder, a_a_id, a_a_distance, a_b... method unpack (line 2215) | unpack() { method unpackTo (line 2218) | unpackTo(_o) { method constructor (line 2223) | constructor(a = null) { method pack (line 2226) | pack(builder) { method constructor (line 2234) | constructor() { method __init (line 2238) | __init(i, bb) { method getRootAsTypeAliases (line 2243) | static getRootAsTypeAliases(bb, obj) { method getSizePrefixedRootAsTypeAliases (line 2246) | static getSizePrefixedRootAsTypeAliases(bb, obj) { method i8 (line 2250) | i8() { method mutate_i8 (line 2254) | mutate_i8(value) { method u8 (line 2262) | u8() { method mutate_u8 (line 2266) | mutate_u8(value) { method i16 (line 2274) | i16() { method mutate_i16 (line 2278) | mutate_i16(value) { method u16 (line 2286) | u16() { method mutate_u16 (line 2290) | mutate_u16(value) { method i32 (line 2298) | i32() { method mutate_i32 (line 2302) | mutate_i32(value) { method u32 (line 2310) | u32() { method mutate_u32 (line 2314) | mutate_u32(value) { method i64 (line 2322) | i64() { method mutate_i64 (line 2326) | mutate_i64(value) { method u64 (line 2334) | u64() { method mutate_u64 (line 2338) | mutate_u64(value) { method f32 (line 2346) | f32() { method mutate_f32 (line 2350) | mutate_f32(value) { method f64 (line 2358) | f64() { method mutate_f64 (line 2362) | mutate_f64(value) { method v8 (line 2370) | v8(index) { method v8Length (line 2374) | v8Length() { method v8Array (line 2378) | v8Array() { method vf64 (line 2382) | vf64(index) { method vf64Length (line 2386) | vf64Length() { method vf64Array (line 2390) | vf64Array() { method getFullyQualifiedName (line 2394) | static getFullyQualifiedName() { method startTypeAliases (line 2397) | static startTypeAliases(builder) { method addI8 (line 2400) | static addI8(builder, i8) { method addU8 (line 2403) | static addU8(builder, u8) { method addI16 (line 2406) | static addI16(builder, i16) { method addU16 (line 2409) | static addU16(builder, u16) { method addI32 (line 2412) | static addI32(builder, i32) { method addU32 (line 2415) | static addU32(builder, u32) { method addI64 (line 2418) | static addI64(builder, i64) { method addU64 (line 2421) | static addU64(builder, u64) { method addF32 (line 2424) | static addF32(builder, f32) { method addF64 (line 2427) | static addF64(builder, f64) { method addV8 (line 2430) | static addV8(builder, v8Offset) { method createV8Vector (line 2433) | static createV8Vector(builder, data) { method startV8Vector (line 2440) | static startV8Vector(builder, numElems) { method addVf64 (line 2443) | static addVf64(builder, vf64Offset) { method createVf64Vector (line 2446) | static createVf64Vector(builder, data) { method startVf64Vector (line 2453) | static startVf64Vector(builder, numElems) { method endTypeAliases (line 2456) | static endTypeAliases(builder) { method createTypeAliases (line 2460) | static createTypeAliases(builder, i8, u8, i16, u16, i32, u32, i64, u64, ... method serialize (line 2476) | serialize() { method deserialize (line 2479) | static deserialize(buffer) { method unpack (line 2482) | unpack() { method unpackTo (line 2485) | unpackTo(_o) { method constructor (line 2501) | constructor(i8 = 0, u8 = 0, i16 = 0, u16 = 0, i32 = 0, u32 = 0, i64 = Bi... method pack (line 2515) | pack(builder) { method constructor (line 2547) | constructor() { method __init (line 2551) | __init(i, bb) { method a (line 2556) | a() { method mutate_a (line 2559) | mutate_a(value) { method getFullyQualifiedName (line 2563) | static getFullyQualifiedName() { method sizeOf (line 2566) | static sizeOf() { method createUnused (line 2569) | static createUnused(builder, a) { method unpack (line 2574) | unpack() { method unpackTo (line 2577) | unpackTo(_o) { method constructor (line 2582) | constructor(a = 0) { method pack (line 2585) | pack(builder) { FILE: tests/ts/my-game/example/ability.d.ts class Ability (line 2) | class Ability class AbilityT (line 22) | class AbilityT implements flatbuffers.IGeneratedObject { FILE: tests/ts/my-game/example/ability.js class Ability (line 2) | class Ability { method constructor (line 3) | constructor() { method __init (line 7) | __init(i, bb) { method id (line 12) | id() { method mutate_id (line 15) | mutate_id(value) { method distance (line 19) | distance() { method mutate_distance (line 22) | mutate_distance(value) { method getFullyQualifiedName (line 26) | static getFullyQualifiedName() { method sizeOf (line 29) | static sizeOf() { method createAbility (line 32) | static createAbility(builder, id, distance) { method unpack (line 38) | unpack() { method unpackTo (line 41) | unpackTo(_o) { class AbilityT (line 46) | class AbilityT { method constructor (line 47) | constructor(id = 0, distance = 0) { method pack (line 51) | pack(builder) { FILE: tests/ts/my-game/example/ability.ts class Ability (line 9) | class Ability implements flatbuffers.IUnpackableObject { method __init (line 12) | __init(i:number, bb:flatbuffers.ByteBuffer):Ability { method id (line 18) | id():number { method mutate_id (line 22) | mutate_id(value:number):boolean { method distance (line 27) | distance():number { method mutate_distance (line 31) | mutate_distance(value:number):boolean { method getFullyQualifiedName (line 36) | static getFullyQualifiedName(): "MyGame.Example.Ability" { method sizeOf (line 40) | static sizeOf():number { method createAbility (line 44) | static createAbility(builder:flatbuffers.Builder, id: number, distance... method unpack (line 52) | unpack(): AbilityT { method unpackTo (line 60) | unpackTo(_o: AbilityT): void { class AbilityT (line 66) | class AbilityT implements flatbuffers.IGeneratedObject { method constructor (line 67) | constructor( method pack (line 73) | pack(builder:flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/my-game/example/any-ambiguous-aliases.d.ts type AnyAmbiguousAliases (line 2) | enum AnyAmbiguousAliases { FILE: tests/ts/my-game/example/any-ambiguous-aliases.js function unionToAnyAmbiguousAliases (line 12) | function unionToAnyAmbiguousAliases(type, accessor) { function unionListToAnyAmbiguousAliases (line 26) | function unionListToAnyAmbiguousAliases(type, accessor, index) { FILE: tests/ts/my-game/example/any-ambiguous-aliases.ts type AnyAmbiguousAliases (line 8) | enum AnyAmbiguousAliases { function unionToAnyAmbiguousAliases (line 15) | function unionToAnyAmbiguousAliases( function unionListToAnyAmbiguousAliases (line 28) | function unionListToAnyAmbiguousAliases( FILE: tests/ts/my-game/example/any-unique-aliases.d.ts type AnyUniqueAliases (line 4) | enum AnyUniqueAliases { FILE: tests/ts/my-game/example/any-unique-aliases.js function unionToAnyUniqueAliases (line 15) | function unionToAnyUniqueAliases(type, accessor) { function unionListToAnyUniqueAliases (line 29) | function unionListToAnyUniqueAliases(type, accessor, index) { FILE: tests/ts/my-game/example/any-unique-aliases.ts type AnyUniqueAliases (line 10) | enum AnyUniqueAliases { function unionToAnyUniqueAliases (line 17) | function unionToAnyUniqueAliases( function unionListToAnyUniqueAliases (line 30) | function unionListToAnyUniqueAliases( FILE: tests/ts/my-game/example/any.d.ts type Any (line 4) | enum Any { FILE: tests/ts/my-game/example/any.js function unionToAny (line 15) | function unionToAny(type, accessor) { function unionListToAny (line 29) | function unionListToAny(type, accessor, index) { FILE: tests/ts/my-game/example/any.ts type Any (line 10) | enum Any { function unionToAny (line 17) | function unionToAny( function unionListToAny (line 30) | function unionListToAny( FILE: tests/ts/my-game/example/color.d.ts type Color (line 4) | enum Color { FILE: tests/ts/my-game/example/color.ts type Color (line 8) | enum Color { FILE: tests/ts/my-game/example/long-enum.d.ts type LongEnum (line 1) | enum LongEnum { FILE: tests/ts/my-game/example/long-enum.ts type LongEnum (line 5) | enum LongEnum { FILE: tests/ts/my-game/example/monster.d.ts class Monster (line 21) | class Monster class MonsterT (line 536) | class MonsterT implements flatbuffers.IGeneratedObject { FILE: tests/ts/my-game/example/monster.js class Monster (line 21) | class Monster { method constructor (line 22) | constructor() { method __init (line 26) | __init(i, bb) { method getRootAsMonster (line 31) | static getRootAsMonster(bb, obj) { method getSizePrefixedRootAsMonster (line 35) | static getSizePrefixedRootAsMonster(bb, obj) { method bufferHasIdentifier (line 40) | static bufferHasIdentifier(bb) { method pos (line 43) | pos(obj) { method mana (line 48) | mana() { method mutate_mana (line 52) | mutate_mana(value) { method hp (line 60) | hp() { method mutate_hp (line 64) | mutate_hp(value) { method name (line 72) | name(optionalEncoding) { method inventory (line 77) | inventory(index) { method inventoryLength (line 83) | inventoryLength() { method inventoryArray (line 87) | inventoryArray() { method color (line 96) | color() { method mutate_color (line 100) | mutate_color(value) { method testType (line 108) | testType() { method test (line 112) | test(obj) { method test4 (line 116) | test4(index, obj) { method test4Length (line 124) | test4Length() { method testarrayofstring (line 128) | testarrayofstring(index, optionalEncoding) { method testarrayofstringLength (line 135) | testarrayofstringLength() { method testarrayoftables (line 143) | testarrayoftables(index, obj) { method testarrayoftablesLength (line 153) | testarrayoftablesLength() { method enemy (line 157) | enemy(obj) { method testnestedflatbuffer (line 164) | testnestedflatbuffer(index) { method testnestedflatbufferLength (line 170) | testnestedflatbufferLength() { method testnestedflatbufferArray (line 174) | testnestedflatbufferArray() { method testempty (line 183) | testempty(obj) { method testbool (line 190) | testbool() { method mutate_testbool (line 194) | mutate_testbool(value) { method testhashs32Fnv1 (line 202) | testhashs32Fnv1() { method mutate_testhashs32_fnv1 (line 206) | mutate_testhashs32_fnv1(value) { method testhashu32Fnv1 (line 214) | testhashu32Fnv1() { method mutate_testhashu32_fnv1 (line 218) | mutate_testhashu32_fnv1(value) { method testhashs64Fnv1 (line 226) | testhashs64Fnv1() { method mutate_testhashs64_fnv1 (line 230) | mutate_testhashs64_fnv1(value) { method testhashu64Fnv1 (line 238) | testhashu64Fnv1() { method mutate_testhashu64_fnv1 (line 242) | mutate_testhashu64_fnv1(value) { method testhashs32Fnv1a (line 250) | testhashs32Fnv1a() { method mutate_testhashs32_fnv1a (line 254) | mutate_testhashs32_fnv1a(value) { method testhashu32Fnv1a (line 262) | testhashu32Fnv1a() { method mutate_testhashu32_fnv1a (line 266) | mutate_testhashu32_fnv1a(value) { method testhashs64Fnv1a (line 274) | testhashs64Fnv1a() { method mutate_testhashs64_fnv1a (line 278) | mutate_testhashs64_fnv1a(value) { method testhashu64Fnv1a (line 286) | testhashu64Fnv1a() { method mutate_testhashu64_fnv1a (line 290) | mutate_testhashu64_fnv1a(value) { method testarrayofbools (line 298) | testarrayofbools(index) { method testarrayofboolsLength (line 304) | testarrayofboolsLength() { method testarrayofboolsArray (line 308) | testarrayofboolsArray() { method testf (line 317) | testf() { method mutate_testf (line 321) | mutate_testf(value) { method testf2 (line 329) | testf2() { method mutate_testf2 (line 333) | mutate_testf2(value) { method testf3 (line 341) | testf3() { method mutate_testf3 (line 345) | mutate_testf3(value) { method testarrayofstring2 (line 353) | testarrayofstring2(index, optionalEncoding) { method testarrayofstring2Length (line 360) | testarrayofstring2Length() { method testarrayofsortedstruct (line 364) | testarrayofsortedstruct(index, obj) { method testarrayofsortedstructLength (line 372) | testarrayofsortedstructLength() { method flex (line 376) | flex(index) { method flexLength (line 382) | flexLength() { method flexArray (line 386) | flexArray() { method test5 (line 395) | test5(index, obj) { method test5Length (line 403) | test5Length() { method vectorOfLongs (line 407) | vectorOfLongs(index) { method vectorOfLongsLength (line 413) | vectorOfLongsLength() { method vectorOfDoubles (line 417) | vectorOfDoubles(index) { method vectorOfDoublesLength (line 423) | vectorOfDoublesLength() { method vectorOfDoublesArray (line 427) | vectorOfDoublesArray() { method parentNamespaceTest (line 436) | parentNamespaceTest(obj) { method vectorOfReferrables (line 443) | vectorOfReferrables(index, obj) { method vectorOfReferrablesLength (line 453) | vectorOfReferrablesLength() { method singleWeakReference (line 457) | singleWeakReference() { method mutate_single_weak_reference (line 461) | mutate_single_weak_reference(value) { method vectorOfWeakReferences (line 469) | vectorOfWeakReferences(index) { method vectorOfWeakReferencesLength (line 475) | vectorOfWeakReferencesLength() { method vectorOfStrongReferrables (line 479) | vectorOfStrongReferrables(index, obj) { method vectorOfStrongReferrablesLength (line 489) | vectorOfStrongReferrablesLength() { method coOwningReference (line 493) | coOwningReference() { method mutate_co_owning_reference (line 497) | mutate_co_owning_reference(value) { method vectorOfCoOwningReferences (line 505) | vectorOfCoOwningReferences(index) { method vectorOfCoOwningReferencesLength (line 511) | vectorOfCoOwningReferencesLength() { method nonOwningReference (line 515) | nonOwningReference() { method mutate_non_owning_reference (line 519) | mutate_non_owning_reference(value) { method vectorOfNonOwningReferences (line 527) | vectorOfNonOwningReferences(index) { method vectorOfNonOwningReferencesLength (line 533) | vectorOfNonOwningReferencesLength() { method anyUniqueType (line 537) | anyUniqueType() { method anyUnique (line 542) | anyUnique(obj) { method anyAmbiguousType (line 546) | anyAmbiguousType() { method anyAmbiguous (line 551) | anyAmbiguous(obj) { method vectorOfEnums (line 555) | vectorOfEnums(index) { method vectorOfEnumsLength (line 561) | vectorOfEnumsLength() { method vectorOfEnumsArray (line 565) | vectorOfEnumsArray() { method signedEnum (line 574) | signedEnum() { method mutate_signed_enum (line 578) | mutate_signed_enum(value) { method testrequirednestedflatbuffer (line 586) | testrequirednestedflatbuffer(index) { method testrequirednestedflatbufferLength (line 592) | testrequirednestedflatbufferLength() { method testrequirednestedflatbufferArray (line 596) | testrequirednestedflatbufferArray() { method scalarKeySortedTables (line 605) | scalarKeySortedTables(index, obj) { method scalarKeySortedTablesLength (line 615) | scalarKeySortedTablesLength() { method nativeInline (line 619) | nativeInline(obj) { method longEnumNonEnumDefault (line 624) | longEnumNonEnumDefault() { method mutate_long_enum_non_enum_default (line 628) | mutate_long_enum_non_enum_default(value) { method longEnumNormalDefault (line 636) | longEnumNormalDefault() { method mutate_long_enum_normal_default (line 640) | mutate_long_enum_normal_default(value) { method nanDefault (line 648) | nanDefault() { method mutate_nan_default (line 652) | mutate_nan_default(value) { method infDefault (line 660) | infDefault() { method mutate_inf_default (line 664) | mutate_inf_default(value) { method positiveInfDefault (line 672) | positiveInfDefault() { method mutate_positive_inf_default (line 676) | mutate_positive_inf_default(value) { method infinityDefault (line 684) | infinityDefault() { method mutate_infinity_default (line 688) | mutate_infinity_default(value) { method positiveInfinityDefault (line 696) | positiveInfinityDefault() { method mutate_positive_infinity_default (line 700) | mutate_positive_infinity_default(value) { method negativeInfDefault (line 708) | negativeInfDefault() { method mutate_negative_inf_default (line 712) | mutate_negative_inf_default(value) { method negativeInfinityDefault (line 720) | negativeInfinityDefault() { method mutate_negative_infinity_default (line 724) | mutate_negative_infinity_default(value) { method doubleInfDefault (line 732) | doubleInfDefault() { method mutate_double_inf_default (line 736) | mutate_double_inf_default(value) { method getFullyQualifiedName (line 744) | static getFullyQualifiedName() { method startMonster (line 747) | static startMonster(builder) { method addPos (line 750) | static addPos(builder, posOffset) { method addMana (line 753) | static addMana(builder, mana) { method addHp (line 756) | static addHp(builder, hp) { method addName (line 759) | static addName(builder, nameOffset) { method addInventory (line 762) | static addInventory(builder, inventoryOffset) { method createInventoryVector (line 765) | static createInventoryVector(builder, data) { method startInventoryVector (line 772) | static startInventoryVector(builder, numElems) { method addColor (line 775) | static addColor(builder, color) { method addTestType (line 778) | static addTestType(builder, testType) { method addTest (line 781) | static addTest(builder, testOffset) { method addTest4 (line 784) | static addTest4(builder, test4Offset) { method startTest4Vector (line 787) | static startTest4Vector(builder, numElems) { method addTestarrayofstring (line 790) | static addTestarrayofstring(builder, testarrayofstringOffset) { method createTestarrayofstringVector (line 793) | static createTestarrayofstringVector(builder, data) { method startTestarrayofstringVector (line 800) | static startTestarrayofstringVector(builder, numElems) { method addTestarrayoftables (line 803) | static addTestarrayoftables(builder, testarrayoftablesOffset) { method createTestarrayoftablesVector (line 806) | static createTestarrayoftablesVector(builder, data) { method startTestarrayoftablesVector (line 813) | static startTestarrayoftablesVector(builder, numElems) { method addEnemy (line 816) | static addEnemy(builder, enemyOffset) { method addTestnestedflatbuffer (line 819) | static addTestnestedflatbuffer(builder, testnestedflatbufferOffset) { method createTestnestedflatbufferVector (line 822) | static createTestnestedflatbufferVector(builder, data) { method startTestnestedflatbufferVector (line 829) | static startTestnestedflatbufferVector(builder, numElems) { method addTestempty (line 832) | static addTestempty(builder, testemptyOffset) { method addTestbool (line 835) | static addTestbool(builder, testbool) { method addTesthashs32Fnv1 (line 838) | static addTesthashs32Fnv1(builder, testhashs32Fnv1) { method addTesthashu32Fnv1 (line 841) | static addTesthashu32Fnv1(builder, testhashu32Fnv1) { method addTesthashs64Fnv1 (line 844) | static addTesthashs64Fnv1(builder, testhashs64Fnv1) { method addTesthashu64Fnv1 (line 847) | static addTesthashu64Fnv1(builder, testhashu64Fnv1) { method addTesthashs32Fnv1a (line 850) | static addTesthashs32Fnv1a(builder, testhashs32Fnv1a) { method addTesthashu32Fnv1a (line 853) | static addTesthashu32Fnv1a(builder, testhashu32Fnv1a) { method addTesthashs64Fnv1a (line 856) | static addTesthashs64Fnv1a(builder, testhashs64Fnv1a) { method addTesthashu64Fnv1a (line 859) | static addTesthashu64Fnv1a(builder, testhashu64Fnv1a) { method addTestarrayofbools (line 862) | static addTestarrayofbools(builder, testarrayofboolsOffset) { method createTestarrayofboolsVector (line 865) | static createTestarrayofboolsVector(builder, data) { method startTestarrayofboolsVector (line 872) | static startTestarrayofboolsVector(builder, numElems) { method addTestf (line 875) | static addTestf(builder, testf) { method addTestf2 (line 878) | static addTestf2(builder, testf2) { method addTestf3 (line 881) | static addTestf3(builder, testf3) { method addTestarrayofstring2 (line 884) | static addTestarrayofstring2(builder, testarrayofstring2Offset) { method createTestarrayofstring2Vector (line 887) | static createTestarrayofstring2Vector(builder, data) { method startTestarrayofstring2Vector (line 894) | static startTestarrayofstring2Vector(builder, numElems) { method addTestarrayofsortedstruct (line 897) | static addTestarrayofsortedstruct(builder, testarrayofsortedstructOffs... method startTestarrayofsortedstructVector (line 900) | static startTestarrayofsortedstructVector(builder, numElems) { method addFlex (line 903) | static addFlex(builder, flexOffset) { method createFlexVector (line 906) | static createFlexVector(builder, data) { method startFlexVector (line 913) | static startFlexVector(builder, numElems) { method addTest5 (line 916) | static addTest5(builder, test5Offset) { method startTest5Vector (line 919) | static startTest5Vector(builder, numElems) { method addVectorOfLongs (line 922) | static addVectorOfLongs(builder, vectorOfLongsOffset) { method createVectorOfLongsVector (line 925) | static createVectorOfLongsVector(builder, data) { method startVectorOfLongsVector (line 932) | static startVectorOfLongsVector(builder, numElems) { method addVectorOfDoubles (line 935) | static addVectorOfDoubles(builder, vectorOfDoublesOffset) { method createVectorOfDoublesVector (line 938) | static createVectorOfDoublesVector(builder, data) { method startVectorOfDoublesVector (line 945) | static startVectorOfDoublesVector(builder, numElems) { method addParentNamespaceTest (line 948) | static addParentNamespaceTest(builder, parentNamespaceTestOffset) { method addVectorOfReferrables (line 951) | static addVectorOfReferrables(builder, vectorOfReferrablesOffset) { method createVectorOfReferrablesVector (line 954) | static createVectorOfReferrablesVector(builder, data) { method startVectorOfReferrablesVector (line 961) | static startVectorOfReferrablesVector(builder, numElems) { method addSingleWeakReference (line 964) | static addSingleWeakReference(builder, singleWeakReference) { method addVectorOfWeakReferences (line 967) | static addVectorOfWeakReferences(builder, vectorOfWeakReferencesOffset) { method createVectorOfWeakReferencesVector (line 970) | static createVectorOfWeakReferencesVector(builder, data) { method startVectorOfWeakReferencesVector (line 977) | static startVectorOfWeakReferencesVector(builder, numElems) { method addVectorOfStrongReferrables (line 980) | static addVectorOfStrongReferrables( method createVectorOfStrongReferrablesVector (line 984) | static createVectorOfStrongReferrablesVector(builder, data) { method startVectorOfStrongReferrablesVector (line 991) | static startVectorOfStrongReferrablesVector(builder, numElems) { method addCoOwningReference (line 994) | static addCoOwningReference(builder, coOwningReference) { method addVectorOfCoOwningReferences (line 997) | static addVectorOfCoOwningReferences( method createVectorOfCoOwningReferencesVector (line 1001) | static createVectorOfCoOwningReferencesVector(builder, data) { method startVectorOfCoOwningReferencesVector (line 1008) | static startVectorOfCoOwningReferencesVector(builder, numElems) { method addNonOwningReference (line 1011) | static addNonOwningReference(builder, nonOwningReference) { method addVectorOfNonOwningReferences (line 1014) | static addVectorOfNonOwningReferences( method createVectorOfNonOwningReferencesVector (line 1018) | static createVectorOfNonOwningReferencesVector(builder, data) { method startVectorOfNonOwningReferencesVector (line 1025) | static startVectorOfNonOwningReferencesVector(builder, numElems) { method addAnyUniqueType (line 1028) | static addAnyUniqueType(builder, anyUniqueType) { method addAnyUnique (line 1031) | static addAnyUnique(builder, anyUniqueOffset) { method addAnyAmbiguousType (line 1034) | static addAnyAmbiguousType(builder, anyAmbiguousType) { method addAnyAmbiguous (line 1037) | static addAnyAmbiguous(builder, anyAmbiguousOffset) { method addVectorOfEnums (line 1040) | static addVectorOfEnums(builder, vectorOfEnumsOffset) { method createVectorOfEnumsVector (line 1043) | static createVectorOfEnumsVector(builder, data) { method startVectorOfEnumsVector (line 1050) | static startVectorOfEnumsVector(builder, numElems) { method addSignedEnum (line 1053) | static addSignedEnum(builder, signedEnum) { method addTestrequirednestedflatbuffer (line 1056) | static addTestrequirednestedflatbuffer( method createTestrequirednestedflatbufferVector (line 1060) | static createTestrequirednestedflatbufferVector(builder, data) { method startTestrequirednestedflatbufferVector (line 1067) | static startTestrequirednestedflatbufferVector(builder, numElems) { method addScalarKeySortedTables (line 1070) | static addScalarKeySortedTables(builder, scalarKeySortedTablesOffset) { method createScalarKeySortedTablesVector (line 1073) | static createScalarKeySortedTablesVector(builder, data) { method startScalarKeySortedTablesVector (line 1080) | static startScalarKeySortedTablesVector(builder, numElems) { method addNativeInline (line 1083) | static addNativeInline(builder, nativeInlineOffset) { method addLongEnumNonEnumDefault (line 1086) | static addLongEnumNonEnumDefault(builder, longEnumNonEnumDefault) { method addLongEnumNormalDefault (line 1089) | static addLongEnumNormalDefault(builder, longEnumNormalDefault) { method addNanDefault (line 1092) | static addNanDefault(builder, nanDefault) { method addInfDefault (line 1095) | static addInfDefault(builder, infDefault) { method addPositiveInfDefault (line 1098) | static addPositiveInfDefault(builder, positiveInfDefault) { method addInfinityDefault (line 1101) | static addInfinityDefault(builder, infinityDefault) { method addPositiveInfinityDefault (line 1104) | static addPositiveInfinityDefault(builder, positiveInfinityDefault) { method addNegativeInfDefault (line 1107) | static addNegativeInfDefault(builder, negativeInfDefault) { method addNegativeInfinityDefault (line 1110) | static addNegativeInfinityDefault(builder, negativeInfinityDefault) { method addDoubleInfDefault (line 1113) | static addDoubleInfDefault(builder, doubleInfDefault) { method endMonster (line 1116) | static endMonster(builder) { method finishMonsterBuffer (line 1121) | static finishMonsterBuffer(builder, offset) { method finishSizePrefixedMonsterBuffer (line 1124) | static finishSizePrefixedMonsterBuffer(builder, offset) { method serialize (line 1127) | serialize() { method deserialize (line 1130) | static deserialize(buffer) { method unpack (line 1133) | unpack() { method unpackTo (line 1228) | unpackTo(_o) { class MonsterT (line 1342) | class MonsterT { method constructor (line 1343) | constructor( method pack (line 1430) | pack(builder) { FILE: tests/ts/my-game/example/monster.ts class Monster (line 25) | class Monster implements flatbuffers.IUnpackableObject { method __init (line 28) | __init(i:number, bb:flatbuffers.ByteBuffer):Monster { method getRootAsMonster (line 34) | static getRootAsMonster(bb:flatbuffers.ByteBuffer, obj?:Monster):Monst... method getSizePrefixedRootAsMonster (line 38) | static getSizePrefixedRootAsMonster(bb:flatbuffers.ByteBuffer, obj?:Mo... method bufferHasIdentifier (line 43) | static bufferHasIdentifier(bb:flatbuffers.ByteBuffer):boolean { method pos (line 47) | pos(obj?:Vec3):Vec3|null { method mana (line 52) | mana():number { method mutate_mana (line 57) | mutate_mana(value:number):boolean { method hp (line 68) | hp():number { method mutate_hp (line 73) | mutate_hp(value:number):boolean { method name (line 86) | name(optionalEncoding?:any):string|Uint8Array { method inventory (line 91) | inventory(index: number):number|null { method inventoryLength (line 96) | inventoryLength():number { method inventoryArray (line 101) | inventoryArray():Uint8Array|null { method color (line 106) | color():Color { method mutate_color (line 111) | mutate_color(value:Color):boolean { method testType (line 122) | testType():Any { method test (line 127) | test(obj:any):any|null { method test4 (line 132) | test4(index: number, obj?:Test):Test|null { method test4Length (line 137) | test4Length():number { method testarrayofstring (line 144) | testarrayofstring(index: number,optionalEncoding?:any):string|Uint8Arr... method testarrayofstringLength (line 149) | testarrayofstringLength():number { method testarrayoftables (line 158) | testarrayoftables(index: number, obj?:Monster):Monster|null { method testarrayoftablesLength (line 163) | testarrayoftablesLength():number { method enemy (line 168) | enemy(obj?:Monster):Monster|null { method testnestedflatbuffer (line 173) | testnestedflatbuffer(index: number):number|null { method testnestedflatbufferLength (line 178) | testnestedflatbufferLength():number { method testnestedflatbufferArray (line 183) | testnestedflatbufferArray():Uint8Array|null { method testempty (line 188) | testempty(obj?:Stat):Stat|null { method testbool (line 193) | testbool():boolean { method mutate_testbool (line 198) | mutate_testbool(value:boolean):boolean { method testhashs32Fnv1 (line 209) | testhashs32Fnv1():number { method mutate_testhashs32_fnv1 (line 214) | mutate_testhashs32_fnv1(value:number):boolean { method testhashu32Fnv1 (line 225) | testhashu32Fnv1():number { method mutate_testhashu32_fnv1 (line 230) | mutate_testhashu32_fnv1(value:number):boolean { method testhashs64Fnv1 (line 241) | testhashs64Fnv1():bigint { method mutate_testhashs64_fnv1 (line 246) | mutate_testhashs64_fnv1(value:bigint):boolean { method testhashu64Fnv1 (line 257) | testhashu64Fnv1():bigint { method mutate_testhashu64_fnv1 (line 262) | mutate_testhashu64_fnv1(value:bigint):boolean { method testhashs32Fnv1a (line 273) | testhashs32Fnv1a():number { method mutate_testhashs32_fnv1a (line 278) | mutate_testhashs32_fnv1a(value:number):boolean { method testhashu32Fnv1a (line 289) | testhashu32Fnv1a():number { method mutate_testhashu32_fnv1a (line 294) | mutate_testhashu32_fnv1a(value:number):boolean { method testhashs64Fnv1a (line 305) | testhashs64Fnv1a():bigint { method mutate_testhashs64_fnv1a (line 310) | mutate_testhashs64_fnv1a(value:bigint):boolean { method testhashu64Fnv1a (line 321) | testhashu64Fnv1a():bigint { method mutate_testhashu64_fnv1a (line 326) | mutate_testhashu64_fnv1a(value:bigint):boolean { method testarrayofbools (line 337) | testarrayofbools(index: number):boolean|null { method testarrayofboolsLength (line 342) | testarrayofboolsLength():number { method testarrayofboolsArray (line 347) | testarrayofboolsArray():Int8Array|null { method testf (line 352) | testf():number { method mutate_testf (line 357) | mutate_testf(value:number):boolean { method testf2 (line 368) | testf2():number { method mutate_testf2 (line 373) | mutate_testf2(value:number):boolean { method testf3 (line 384) | testf3():number { method mutate_testf3 (line 389) | mutate_testf3(value:number):boolean { method testarrayofstring2 (line 402) | testarrayofstring2(index: number,optionalEncoding?:any):string|Uint8Ar... method testarrayofstring2Length (line 407) | testarrayofstring2Length():number { method testarrayofsortedstruct (line 412) | testarrayofsortedstruct(index: number, obj?:Ability):Ability|null { method testarrayofsortedstructLength (line 417) | testarrayofsortedstructLength():number { method flex (line 422) | flex(index: number):number|null { method flexLength (line 427) | flexLength():number { method flexArray (line 432) | flexArray():Uint8Array|null { method test5 (line 437) | test5(index: number, obj?:Test):Test|null { method test5Length (line 442) | test5Length():number { method vectorOfLongs (line 447) | vectorOfLongs(index: number):bigint|null { method vectorOfLongsLength (line 452) | vectorOfLongsLength():number { method vectorOfDoubles (line 457) | vectorOfDoubles(index: number):number|null { method vectorOfDoublesLength (line 462) | vectorOfDoublesLength():number { method vectorOfDoublesArray (line 467) | vectorOfDoublesArray():Float64Array|null { method parentNamespaceTest (line 472) | parentNamespaceTest(obj?:InParentNamespace):InParentNamespace|null { method vectorOfReferrables (line 477) | vectorOfReferrables(index: number, obj?:Referrable):Referrable|null { method vectorOfReferrablesLength (line 482) | vectorOfReferrablesLength():number { method singleWeakReference (line 487) | singleWeakReference():bigint { method mutate_single_weak_reference (line 492) | mutate_single_weak_reference(value:bigint):boolean { method vectorOfWeakReferences (line 503) | vectorOfWeakReferences(index: number):bigint|null { method vectorOfWeakReferencesLength (line 508) | vectorOfWeakReferencesLength():number { method vectorOfStrongReferrables (line 513) | vectorOfStrongReferrables(index: number, obj?:Referrable):Referrable|n... method vectorOfStrongReferrablesLength (line 518) | vectorOfStrongReferrablesLength():number { method coOwningReference (line 523) | coOwningReference():bigint { method mutate_co_owning_reference (line 528) | mutate_co_owning_reference(value:bigint):boolean { method vectorOfCoOwningReferences (line 539) | vectorOfCoOwningReferences(index: number):bigint|null { method vectorOfCoOwningReferencesLength (line 544) | vectorOfCoOwningReferencesLength():number { method nonOwningReference (line 549) | nonOwningReference():bigint { method mutate_non_owning_reference (line 554) | mutate_non_owning_reference(value:bigint):boolean { method vectorOfNonOwningReferences (line 565) | vectorOfNonOwningReferences(index: number):bigint|null { method vectorOfNonOwningReferencesLength (line 570) | vectorOfNonOwningReferencesLength():number { method anyUniqueType (line 575) | anyUniqueType():AnyUniqueAliases { method anyUnique (line 580) | anyUnique(obj:any):any|null { method anyAmbiguousType (line 585) | anyAmbiguousType():AnyAmbiguousAliases { method anyAmbiguous (line 590) | anyAmbiguous(obj:any):any|null { method vectorOfEnums (line 595) | vectorOfEnums(index: number):Color|null { method vectorOfEnumsLength (line 600) | vectorOfEnumsLength():number { method vectorOfEnumsArray (line 605) | vectorOfEnumsArray():Uint8Array|null { method signedEnum (line 610) | signedEnum():Race { method mutate_signed_enum (line 615) | mutate_signed_enum(value:Race):boolean { method testrequirednestedflatbuffer (line 626) | testrequirednestedflatbuffer(index: number):number|null { method testrequirednestedflatbufferLength (line 631) | testrequirednestedflatbufferLength():number { method testrequirednestedflatbufferArray (line 636) | testrequirednestedflatbufferArray():Uint8Array|null { method scalarKeySortedTables (line 641) | scalarKeySortedTables(index: number, obj?:Stat):Stat|null { method scalarKeySortedTablesLength (line 646) | scalarKeySortedTablesLength():number { method nativeInline (line 651) | nativeInline(obj?:Test):Test|null { method longEnumNonEnumDefault (line 656) | longEnumNonEnumDefault():bigint { method mutate_long_enum_non_enum_default (line 661) | mutate_long_enum_non_enum_default(value:bigint):boolean { method longEnumNormalDefault (line 672) | longEnumNormalDefault():bigint { method mutate_long_enum_normal_default (line 677) | mutate_long_enum_normal_default(value:bigint):boolean { method nanDefault (line 688) | nanDefault():number { method mutate_nan_default (line 693) | mutate_nan_default(value:number):boolean { method infDefault (line 704) | infDefault():number { method mutate_inf_default (line 709) | mutate_inf_default(value:number):boolean { method positiveInfDefault (line 720) | positiveInfDefault():number { method mutate_positive_inf_default (line 725) | mutate_positive_inf_default(value:number):boolean { method infinityDefault (line 736) | infinityDefault():number { method mutate_infinity_default (line 741) | mutate_infinity_default(value:number):boolean { method positiveInfinityDefault (line 752) | positiveInfinityDefault():number { method mutate_positive_infinity_default (line 757) | mutate_positive_infinity_default(value:number):boolean { method negativeInfDefault (line 768) | negativeInfDefault():number { method mutate_negative_inf_default (line 773) | mutate_negative_inf_default(value:number):boolean { method negativeInfinityDefault (line 784) | negativeInfinityDefault():number { method mutate_negative_infinity_default (line 789) | mutate_negative_infinity_default(value:number):boolean { method doubleInfDefault (line 800) | doubleInfDefault():number { method mutate_double_inf_default (line 805) | mutate_double_inf_default(value:number):boolean { method getFullyQualifiedName (line 816) | static getFullyQualifiedName(): "MyGame.Example.Monster" { method startMonster (line 820) | static startMonster(builder:flatbuffers.Builder) { method addPos (line 824) | static addPos(builder:flatbuffers.Builder, posOffset:flatbuffers.Offse... method addMana (line 828) | static addMana(builder:flatbuffers.Builder, mana:number) { method addHp (line 832) | static addHp(builder:flatbuffers.Builder, hp:number) { method addName (line 836) | static addName(builder:flatbuffers.Builder, nameOffset:flatbuffers.Off... method addInventory (line 840) | static addInventory(builder:flatbuffers.Builder, inventoryOffset:flatb... method createInventoryVector (line 844) | static createInventoryVector(builder:flatbuffers.Builder, data:number[... method startInventoryVector (line 852) | static startInventoryVector(builder:flatbuffers.Builder, numElems:numb... method addColor (line 856) | static addColor(builder:flatbuffers.Builder, color:Color) { method addTestType (line 860) | static addTestType(builder:flatbuffers.Builder, testType:Any) { method addTest (line 864) | static addTest(builder:flatbuffers.Builder, testOffset:flatbuffers.Off... method addTest4 (line 868) | static addTest4(builder:flatbuffers.Builder, test4Offset:flatbuffers.O... method startTest4Vector (line 872) | static startTest4Vector(builder:flatbuffers.Builder, numElems:number) { method addTestarrayofstring (line 876) | static addTestarrayofstring(builder:flatbuffers.Builder, testarrayofst... method createTestarrayofstringVector (line 880) | static createTestarrayofstringVector(builder:flatbuffers.Builder, data... method startTestarrayofstringVector (line 888) | static startTestarrayofstringVector(builder:flatbuffers.Builder, numEl... method addTestarrayoftables (line 892) | static addTestarrayoftables(builder:flatbuffers.Builder, testarrayofta... method createTestarrayoftablesVector (line 896) | static createTestarrayoftablesVector(builder:flatbuffers.Builder, data... method startTestarrayoftablesVector (line 904) | static startTestarrayoftablesVector(builder:flatbuffers.Builder, numEl... method addEnemy (line 908) | static addEnemy(builder:flatbuffers.Builder, enemyOffset:flatbuffers.O... method addTestnestedflatbuffer (line 912) | static addTestnestedflatbuffer(builder:flatbuffers.Builder, testnested... method createTestnestedflatbufferVector (line 916) | static createTestnestedflatbufferVector(builder:flatbuffers.Builder, d... method startTestnestedflatbufferVector (line 924) | static startTestnestedflatbufferVector(builder:flatbuffers.Builder, nu... method addTestempty (line 928) | static addTestempty(builder:flatbuffers.Builder, testemptyOffset:flatb... method addTestbool (line 932) | static addTestbool(builder:flatbuffers.Builder, testbool:boolean) { method addTesthashs32Fnv1 (line 936) | static addTesthashs32Fnv1(builder:flatbuffers.Builder, testhashs32Fnv1... method addTesthashu32Fnv1 (line 940) | static addTesthashu32Fnv1(builder:flatbuffers.Builder, testhashu32Fnv1... method addTesthashs64Fnv1 (line 944) | static addTesthashs64Fnv1(builder:flatbuffers.Builder, testhashs64Fnv1... method addTesthashu64Fnv1 (line 948) | static addTesthashu64Fnv1(builder:flatbuffers.Builder, testhashu64Fnv1... method addTesthashs32Fnv1a (line 952) | static addTesthashs32Fnv1a(builder:flatbuffers.Builder, testhashs32Fnv... method addTesthashu32Fnv1a (line 956) | static addTesthashu32Fnv1a(builder:flatbuffers.Builder, testhashu32Fnv... method addTesthashs64Fnv1a (line 960) | static addTesthashs64Fnv1a(builder:flatbuffers.Builder, testhashs64Fnv... method addTesthashu64Fnv1a (line 964) | static addTesthashu64Fnv1a(builder:flatbuffers.Builder, testhashu64Fnv... method addTestarrayofbools (line 968) | static addTestarrayofbools(builder:flatbuffers.Builder, testarrayofboo... method createTestarrayofboolsVector (line 972) | static createTestarrayofboolsVector(builder:flatbuffers.Builder, data:... method startTestarrayofboolsVector (line 980) | static startTestarrayofboolsVector(builder:flatbuffers.Builder, numEle... method addTestf (line 984) | static addTestf(builder:flatbuffers.Builder, testf:number) { method addTestf2 (line 988) | static addTestf2(builder:flatbuffers.Builder, testf2:number) { method addTestf3 (line 992) | static addTestf3(builder:flatbuffers.Builder, testf3:number) { method addTestarrayofstring2 (line 996) | static addTestarrayofstring2(builder:flatbuffers.Builder, testarrayofs... method createTestarrayofstring2Vector (line 1000) | static createTestarrayofstring2Vector(builder:flatbuffers.Builder, dat... method startTestarrayofstring2Vector (line 1008) | static startTestarrayofstring2Vector(builder:flatbuffers.Builder, numE... method addTestarrayofsortedstruct (line 1012) | static addTestarrayofsortedstruct(builder:flatbuffers.Builder, testarr... method startTestarrayofsortedstructVector (line 1016) | static startTestarrayofsortedstructVector(builder:flatbuffers.Builder,... method addFlex (line 1020) | static addFlex(builder:flatbuffers.Builder, flexOffset:flatbuffers.Off... method createFlexVector (line 1024) | static createFlexVector(builder:flatbuffers.Builder, data:number[]|Uin... method startFlexVector (line 1032) | static startFlexVector(builder:flatbuffers.Builder, numElems:number) { method addTest5 (line 1036) | static addTest5(builder:flatbuffers.Builder, test5Offset:flatbuffers.O... method startTest5Vector (line 1040) | static startTest5Vector(builder:flatbuffers.Builder, numElems:number) { method addVectorOfLongs (line 1044) | static addVectorOfLongs(builder:flatbuffers.Builder, vectorOfLongsOffs... method createVectorOfLongsVector (line 1048) | static createVectorOfLongsVector(builder:flatbuffers.Builder, data:big... method startVectorOfLongsVector (line 1056) | static startVectorOfLongsVector(builder:flatbuffers.Builder, numElems:... method addVectorOfDoubles (line 1060) | static addVectorOfDoubles(builder:flatbuffers.Builder, vectorOfDoubles... method createVectorOfDoublesVector (line 1069) | static createVectorOfDoublesVector(builder:flatbuffers.Builder, data:n... method startVectorOfDoublesVector (line 1077) | static startVectorOfDoublesVector(builder:flatbuffers.Builder, numElem... method addParentNamespaceTest (line 1081) | static addParentNamespaceTest(builder:flatbuffers.Builder, parentNames... method addVectorOfReferrables (line 1085) | static addVectorOfReferrables(builder:flatbuffers.Builder, vectorOfRef... method createVectorOfReferrablesVector (line 1089) | static createVectorOfReferrablesVector(builder:flatbuffers.Builder, da... method startVectorOfReferrablesVector (line 1097) | static startVectorOfReferrablesVector(builder:flatbuffers.Builder, num... method addSingleWeakReference (line 1101) | static addSingleWeakReference(builder:flatbuffers.Builder, singleWeakR... method addVectorOfWeakReferences (line 1105) | static addVectorOfWeakReferences(builder:flatbuffers.Builder, vectorOf... method createVectorOfWeakReferencesVector (line 1109) | static createVectorOfWeakReferencesVector(builder:flatbuffers.Builder,... method startVectorOfWeakReferencesVector (line 1117) | static startVectorOfWeakReferencesVector(builder:flatbuffers.Builder, ... method addVectorOfStrongReferrables (line 1121) | static addVectorOfStrongReferrables(builder:flatbuffers.Builder, vecto... method createVectorOfStrongReferrablesVector (line 1125) | static createVectorOfStrongReferrablesVector(builder:flatbuffers.Build... method startVectorOfStrongReferrablesVector (line 1133) | static startVectorOfStrongReferrablesVector(builder:flatbuffers.Builde... method addCoOwningReference (line 1137) | static addCoOwningReference(builder:flatbuffers.Builder, coOwningRefer... method addVectorOfCoOwningReferences (line 1141) | static addVectorOfCoOwningReferences(builder:flatbuffers.Builder, vect... method createVectorOfCoOwningReferencesVector (line 1145) | static createVectorOfCoOwningReferencesVector(builder:flatbuffers.Buil... method startVectorOfCoOwningReferencesVector (line 1153) | static startVectorOfCoOwningReferencesVector(builder:flatbuffers.Build... method addNonOwningReference (line 1157) | static addNonOwningReference(builder:flatbuffers.Builder, nonOwningRef... method addVectorOfNonOwningReferences (line 1161) | static addVectorOfNonOwningReferences(builder:flatbuffers.Builder, vec... method createVectorOfNonOwningReferencesVector (line 1165) | static createVectorOfNonOwningReferencesVector(builder:flatbuffers.Bui... method startVectorOfNonOwningReferencesVector (line 1173) | static startVectorOfNonOwningReferencesVector(builder:flatbuffers.Buil... method addAnyUniqueType (line 1177) | static addAnyUniqueType(builder:flatbuffers.Builder, anyUniqueType:Any... method addAnyUnique (line 1181) | static addAnyUnique(builder:flatbuffers.Builder, anyUniqueOffset:flatb... method addAnyAmbiguousType (line 1185) | static addAnyAmbiguousType(builder:flatbuffers.Builder, anyAmbiguousTy... method addAnyAmbiguous (line 1189) | static addAnyAmbiguous(builder:flatbuffers.Builder, anyAmbiguousOffset... method addVectorOfEnums (line 1193) | static addVectorOfEnums(builder:flatbuffers.Builder, vectorOfEnumsOffs... method createVectorOfEnumsVector (line 1197) | static createVectorOfEnumsVector(builder:flatbuffers.Builder, data:Col... method startVectorOfEnumsVector (line 1205) | static startVectorOfEnumsVector(builder:flatbuffers.Builder, numElems:... method addSignedEnum (line 1209) | static addSignedEnum(builder:flatbuffers.Builder, signedEnum:Race) { method addTestrequirednestedflatbuffer (line 1213) | static addTestrequirednestedflatbuffer(builder:flatbuffers.Builder, te... method createTestrequirednestedflatbufferVector (line 1217) | static createTestrequirednestedflatbufferVector(builder:flatbuffers.Bu... method startTestrequirednestedflatbufferVector (line 1225) | static startTestrequirednestedflatbufferVector(builder:flatbuffers.Bui... method addScalarKeySortedTables (line 1229) | static addScalarKeySortedTables(builder:flatbuffers.Builder, scalarKey... method createScalarKeySortedTablesVector (line 1233) | static createScalarKeySortedTablesVector(builder:flatbuffers.Builder, ... method startScalarKeySortedTablesVector (line 1241) | static startScalarKeySortedTablesVector(builder:flatbuffers.Builder, n... method addNativeInline (line 1245) | static addNativeInline(builder:flatbuffers.Builder, nativeInlineOffset... method addLongEnumNonEnumDefault (line 1249) | static addLongEnumNonEnumDefault(builder:flatbuffers.Builder, longEnum... method addLongEnumNormalDefault (line 1253) | static addLongEnumNormalDefault(builder:flatbuffers.Builder, longEnumN... method addNanDefault (line 1257) | static addNanDefault(builder:flatbuffers.Builder, nanDefault:number) { method addInfDefault (line 1261) | static addInfDefault(builder:flatbuffers.Builder, infDefault:number) { method addPositiveInfDefault (line 1265) | static addPositiveInfDefault(builder:flatbuffers.Builder, positiveInfD... method addInfinityDefault (line 1269) | static addInfinityDefault(builder:flatbuffers.Builder, infinityDefault... method addPositiveInfinityDefault (line 1273) | static addPositiveInfinityDefault(builder:flatbuffers.Builder, positiv... method addNegativeInfDefault (line 1277) | static addNegativeInfDefault(builder:flatbuffers.Builder, negativeInfD... method addNegativeInfinityDefault (line 1281) | static addNegativeInfinityDefault(builder:flatbuffers.Builder, negativ... method addDoubleInfDefault (line 1285) | static addDoubleInfDefault(builder:flatbuffers.Builder, doubleInfDefau... method endMonster (line 1289) | static endMonster(builder:flatbuffers.Builder):flatbuffers.Offset { method finishMonsterBuffer (line 1295) | static finishMonsterBuffer(builder:flatbuffers.Builder, offset:flatbuf... method finishSizePrefixedMonsterBuffer (line 1299) | static finishSizePrefixedMonsterBuffer(builder:flatbuffers.Builder, of... method serialize (line 1304) | serialize():Uint8Array { method deserialize (line 1308) | static deserialize(buffer: Uint8Array):Monster { method unpack (line 1312) | unpack(): MonsterT { method unpackTo (line 1391) | unpackTo(_o: MonsterT): void { class MonsterT (line 1468) | class MonsterT implements flatbuffers.IGeneratedObject { method constructor (line 1469) | constructor( method pack (line 1534) | pack(builder:flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/my-game/example/race.d.ts type Race (line 1) | enum Race { FILE: tests/ts/my-game/example/race.ts type Race (line 5) | enum Race { FILE: tests/ts/my-game/example/referrable.d.ts class Referrable (line 2) | class Referrable class ReferrableT (line 31) | class ReferrableT implements flatbuffers.IGeneratedObject { FILE: tests/ts/my-game/example/referrable.js class Referrable (line 5) | class Referrable { method constructor (line 6) | constructor() { method __init (line 10) | __init(i, bb) { method getRootAsReferrable (line 15) | static getRootAsReferrable(bb, obj) { method getSizePrefixedRootAsReferrable (line 19) | static getSizePrefixedRootAsReferrable(bb, obj) { method id (line 24) | id() { method mutate_id (line 28) | mutate_id(value) { method getFullyQualifiedName (line 36) | static getFullyQualifiedName() { method startReferrable (line 39) | static startReferrable(builder) { method addId (line 42) | static addId(builder, id) { method endReferrable (line 45) | static endReferrable(builder) { method createReferrable (line 49) | static createReferrable(builder, id) { method serialize (line 54) | serialize() { method deserialize (line 57) | static deserialize(buffer) { method unpack (line 60) | unpack() { method unpackTo (line 63) | unpackTo(_o) { class ReferrableT (line 67) | class ReferrableT { method constructor (line 68) | constructor(id = BigInt('0')) { method pack (line 71) | pack(builder) { FILE: tests/ts/my-game/example/referrable.ts class Referrable (line 9) | class Referrable implements flatbuffers.IUnpackableObject { method __init (line 12) | __init(i:number, bb:flatbuffers.ByteBuffer):Referrable { method getRootAsReferrable (line 18) | static getRootAsReferrable(bb:flatbuffers.ByteBuffer, obj?:Referrable)... method getSizePrefixedRootAsReferrable (line 22) | static getSizePrefixedRootAsReferrable(bb:flatbuffers.ByteBuffer, obj?... method id (line 27) | id():bigint { method mutate_id (line 32) | mutate_id(value:bigint):boolean { method getFullyQualifiedName (line 43) | static getFullyQualifiedName(): "MyGame.Example.Referrable" { method startReferrable (line 47) | static startReferrable(builder:flatbuffers.Builder) { method addId (line 51) | static addId(builder:flatbuffers.Builder, id:bigint) { method endReferrable (line 55) | static endReferrable(builder:flatbuffers.Builder):flatbuffers.Offset { method createReferrable (line 60) | static createReferrable(builder:flatbuffers.Builder, id:bigint):flatbu... method serialize (line 66) | serialize():Uint8Array { method deserialize (line 70) | static deserialize(buffer: Uint8Array):Referrable { method unpack (line 74) | unpack(): ReferrableT { method unpackTo (line 81) | unpackTo(_o: ReferrableT): void { class ReferrableT (line 86) | class ReferrableT implements flatbuffers.IGeneratedObject { method constructor (line 87) | constructor( method pack (line 92) | pack(builder:flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/my-game/example/stat.d.ts class Stat (line 2) | class Stat implements flatbuffers.IUnpackableObject { class StatT (line 37) | class StatT implements flatbuffers.IGeneratedObject { FILE: tests/ts/my-game/example/stat.js class Stat (line 5) | class Stat { method constructor (line 6) | constructor() { method __init (line 10) | __init(i, bb) { method getRootAsStat (line 15) | static getRootAsStat(bb, obj) { method getSizePrefixedRootAsStat (line 19) | static getSizePrefixedRootAsStat(bb, obj) { method id (line 24) | id(optionalEncoding) { method val (line 29) | val() { method mutate_val (line 33) | mutate_val(value) { method count (line 41) | count() { method mutate_count (line 45) | mutate_count(value) { method getFullyQualifiedName (line 53) | static getFullyQualifiedName() { method startStat (line 56) | static startStat(builder) { method addId (line 59) | static addId(builder, idOffset) { method addVal (line 62) | static addVal(builder, val) { method addCount (line 65) | static addCount(builder, count) { method endStat (line 68) | static endStat(builder) { method createStat (line 72) | static createStat(builder, idOffset, val, count) { method serialize (line 79) | serialize() { method deserialize (line 82) | static deserialize(buffer) { method unpack (line 85) | unpack() { method unpackTo (line 88) | unpackTo(_o) { class StatT (line 94) | class StatT { method constructor (line 95) | constructor(id = null, val = BigInt('0'), count = 0) { method pack (line 100) | pack(builder) { FILE: tests/ts/my-game/example/stat.ts class Stat (line 9) | class Stat implements flatbuffers.IUnpackableObject { method __init (line 12) | __init(i:number, bb:flatbuffers.ByteBuffer):Stat { method getRootAsStat (line 18) | static getRootAsStat(bb:flatbuffers.ByteBuffer, obj?:Stat):Stat { method getSizePrefixedRootAsStat (line 22) | static getSizePrefixedRootAsStat(bb:flatbuffers.ByteBuffer, obj?:Stat)... method id (line 29) | id(optionalEncoding?:any):string|Uint8Array|null { method val (line 34) | val():bigint { method mutate_val (line 39) | mutate_val(value:bigint):boolean { method count (line 50) | count():number { method mutate_count (line 55) | mutate_count(value:number):boolean { method getFullyQualifiedName (line 66) | static getFullyQualifiedName(): "MyGame.Example.Stat" { method startStat (line 70) | static startStat(builder:flatbuffers.Builder) { method addId (line 74) | static addId(builder:flatbuffers.Builder, idOffset:flatbuffers.Offset) { method addVal (line 78) | static addVal(builder:flatbuffers.Builder, val:bigint) { method addCount (line 82) | static addCount(builder:flatbuffers.Builder, count:number) { method endStat (line 86) | static endStat(builder:flatbuffers.Builder):flatbuffers.Offset { method createStat (line 91) | static createStat(builder:flatbuffers.Builder, idOffset:flatbuffers.Of... method serialize (line 99) | serialize():Uint8Array { method deserialize (line 103) | static deserialize(buffer: Uint8Array):Stat { method unpack (line 107) | unpack(): StatT { method unpackTo (line 116) | unpackTo(_o: StatT): void { class StatT (line 123) | class StatT implements flatbuffers.IGeneratedObject { method constructor (line 124) | constructor( method pack (line 131) | pack(builder:flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/my-game/example/struct-of-structs-of-structs.d.ts class StructOfStructsOfStructs (line 6) | class StructOfStructsOfStructs class StructOfStructsOfStructsT (line 27) | class StructOfStructsOfStructsT FILE: tests/ts/my-game/example/struct-of-structs-of-structs.js class StructOfStructsOfStructs (line 3) | class StructOfStructsOfStructs { method constructor (line 4) | constructor() { method __init (line 8) | __init(i, bb) { method a (line 13) | a(obj) { method getFullyQualifiedName (line 16) | static getFullyQualifiedName() { method sizeOf (line 19) | static sizeOf() { method createStructOfStructsOfStructs (line 22) | static createStructOfStructsOfStructs( method unpack (line 38) | unpack() { method unpackTo (line 42) | unpackTo(_o) { class StructOfStructsOfStructsT (line 46) | class StructOfStructsOfStructsT { method constructor (line 47) | constructor(a = null) { method pack (line 50) | pack(builder) { FILE: tests/ts/my-game/example/struct-of-structs-of-structs.ts class StructOfStructsOfStructs (line 10) | class StructOfStructsOfStructs implements flatbuffers.IUnpackableObject<... method __init (line 13) | __init(i:number, bb:flatbuffers.ByteBuffer):StructOfStructsOfStructs { method a (line 19) | a(obj?:StructOfStructs):StructOfStructs|null { method getFullyQualifiedName (line 23) | static getFullyQualifiedName(): "MyGame.Example.StructOfStructsOfStruc... method sizeOf (line 27) | static sizeOf():number { method createStructOfStructsOfStructs (line 31) | static createStructOfStructsOfStructs(builder:flatbuffers.Builder, a_a... method unpack (line 48) | unpack(): StructOfStructsOfStructsT { method unpackTo (line 55) | unpackTo(_o: StructOfStructsOfStructsT): void { class StructOfStructsOfStructsT (line 60) | class StructOfStructsOfStructsT implements flatbuffers.IGeneratedObject { method constructor (line 61) | constructor( method pack (line 66) | pack(builder:flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/my-game/example/struct-of-structs.d.ts class StructOfStructs (line 4) | class StructOfStructs class StructOfStructsT (line 27) | class StructOfStructsT implements flatbuffers.IGeneratedObject { FILE: tests/ts/my-game/example/struct-of-structs.js class StructOfStructs (line 4) | class StructOfStructs { method constructor (line 5) | constructor() { method __init (line 9) | __init(i, bb) { method a (line 14) | a(obj) { method b (line 17) | b(obj) { method c (line 20) | c(obj) { method getFullyQualifiedName (line 23) | static getFullyQualifiedName() { method sizeOf (line 26) | static sizeOf() { method createStructOfStructs (line 29) | static createStructOfStructs( method unpack (line 44) | unpack() { method unpackTo (line 50) | unpackTo(_o) { class StructOfStructsT (line 56) | class StructOfStructsT { method constructor (line 57) | constructor(a = null, b = null, c = null) { method pack (line 62) | pack(builder) { FILE: tests/ts/my-game/example/struct-of-structs.ts class StructOfStructs (line 11) | class StructOfStructs implements flatbuffers.IUnpackableObject { class TestT (line 20) | class TestT implements flatbuffers.IGeneratedObject { FILE: tests/ts/my-game/example/test.js class Test (line 2) | class Test { method constructor (line 3) | constructor() { method __init (line 7) | __init(i, bb) { method a (line 12) | a() { method mutate_a (line 15) | mutate_a(value) { method b (line 19) | b() { method mutate_b (line 22) | mutate_b(value) { method getFullyQualifiedName (line 26) | static getFullyQualifiedName() { method sizeOf (line 29) | static sizeOf() { method createTest (line 32) | static createTest(builder, a, b) { method unpack (line 39) | unpack() { method unpackTo (line 42) | unpackTo(_o) { class TestT (line 47) | class TestT { method constructor (line 48) | constructor(a = 0, b = 0) { method pack (line 52) | pack(builder) { FILE: tests/ts/my-game/example/test.ts class Test (line 9) | class Test implements flatbuffers.IUnpackableObject { method __init (line 12) | __init(i:number, bb:flatbuffers.ByteBuffer):Test { method a (line 18) | a():number { method mutate_a (line 22) | mutate_a(value:number):boolean { method b (line 27) | b():number { method mutate_b (line 31) | mutate_b(value:number):boolean { method getFullyQualifiedName (line 36) | static getFullyQualifiedName(): "MyGame.Example.Test" { method sizeOf (line 40) | static sizeOf():number { method createTest (line 44) | static createTest(builder:flatbuffers.Builder, a: number, b: number):f... method unpack (line 53) | unpack(): TestT { method unpackTo (line 61) | unpackTo(_o: TestT): void { class TestT (line 67) | class TestT implements flatbuffers.IGeneratedObject { method constructor (line 68) | constructor( method pack (line 74) | pack(builder:flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/my-game/example/type-aliases.d.ts class TypeAliases (line 2) | class TypeAliases class TypeAliasesT (line 107) | class TypeAliasesT implements flatbuffers.IGeneratedObject { FILE: tests/ts/my-game/example/type-aliases.js class TypeAliases (line 5) | class TypeAliases { method constructor (line 6) | constructor() { method __init (line 10) | __init(i, bb) { method getRootAsTypeAliases (line 15) | static getRootAsTypeAliases(bb, obj) { method getSizePrefixedRootAsTypeAliases (line 19) | static getSizePrefixedRootAsTypeAliases(bb, obj) { method i8 (line 24) | i8() { method mutate_i8 (line 28) | mutate_i8(value) { method u8 (line 36) | u8() { method mutate_u8 (line 40) | mutate_u8(value) { method i16 (line 48) | i16() { method mutate_i16 (line 52) | mutate_i16(value) { method u16 (line 60) | u16() { method mutate_u16 (line 64) | mutate_u16(value) { method i32 (line 72) | i32() { method mutate_i32 (line 76) | mutate_i32(value) { method u32 (line 84) | u32() { method mutate_u32 (line 88) | mutate_u32(value) { method i64 (line 96) | i64() { method mutate_i64 (line 100) | mutate_i64(value) { method u64 (line 108) | u64() { method mutate_u64 (line 112) | mutate_u64(value) { method f32 (line 120) | f32() { method mutate_f32 (line 124) | mutate_f32(value) { method f64 (line 132) | f64() { method mutate_f64 (line 136) | mutate_f64(value) { method v8 (line 144) | v8(index) { method v8Length (line 150) | v8Length() { method v8Array (line 154) | v8Array() { method vf64 (line 163) | vf64(index) { method vf64Length (line 169) | vf64Length() { method vf64Array (line 173) | vf64Array() { method getFullyQualifiedName (line 182) | static getFullyQualifiedName() { method startTypeAliases (line 185) | static startTypeAliases(builder) { method addI8 (line 188) | static addI8(builder, i8) { method addU8 (line 191) | static addU8(builder, u8) { method addI16 (line 194) | static addI16(builder, i16) { method addU16 (line 197) | static addU16(builder, u16) { method addI32 (line 200) | static addI32(builder, i32) { method addU32 (line 203) | static addU32(builder, u32) { method addI64 (line 206) | static addI64(builder, i64) { method addU64 (line 209) | static addU64(builder, u64) { method addF32 (line 212) | static addF32(builder, f32) { method addF64 (line 215) | static addF64(builder, f64) { method addV8 (line 218) | static addV8(builder, v8Offset) { method createV8Vector (line 221) | static createV8Vector(builder, data) { method startV8Vector (line 228) | static startV8Vector(builder, numElems) { method addVf64 (line 231) | static addVf64(builder, vf64Offset) { method createVf64Vector (line 234) | static createVf64Vector(builder, data) { method startVf64Vector (line 241) | static startVf64Vector(builder, numElems) { method endTypeAliases (line 244) | static endTypeAliases(builder) { method createTypeAliases (line 248) | static createTypeAliases( method serialize (line 266) | serialize() { method deserialize (line 269) | static deserialize(buffer) { method unpack (line 272) | unpack() { method unpackTo (line 279) | unpackTo(_o) { class TypeAliasesT (line 294) | class TypeAliasesT { method constructor (line 295) | constructor( method pack (line 311) | pack(builder) { FILE: tests/ts/my-game/example/type-aliases.ts class TypeAliases (line 9) | class TypeAliases implements flatbuffers.IUnpackableObject { method __init (line 12) | __init(i:number, bb:flatbuffers.ByteBuffer):TypeAliases { method getRootAsTypeAliases (line 18) | static getRootAsTypeAliases(bb:flatbuffers.ByteBuffer, obj?:TypeAliase... method getSizePrefixedRootAsTypeAliases (line 22) | static getSizePrefixedRootAsTypeAliases(bb:flatbuffers.ByteBuffer, obj... method i8 (line 27) | i8():number { method mutate_i8 (line 32) | mutate_i8(value:number):boolean { method u8 (line 43) | u8():number { method mutate_u8 (line 48) | mutate_u8(value:number):boolean { method i16 (line 59) | i16():number { method mutate_i16 (line 64) | mutate_i16(value:number):boolean { method u16 (line 75) | u16():number { method mutate_u16 (line 80) | mutate_u16(value:number):boolean { method i32 (line 91) | i32():number { method mutate_i32 (line 96) | mutate_i32(value:number):boolean { method u32 (line 107) | u32():number { method mutate_u32 (line 112) | mutate_u32(value:number):boolean { method i64 (line 123) | i64():bigint { method mutate_i64 (line 128) | mutate_i64(value:bigint):boolean { method u64 (line 139) | u64():bigint { method mutate_u64 (line 144) | mutate_u64(value:bigint):boolean { method f32 (line 155) | f32():number { method mutate_f32 (line 160) | mutate_f32(value:number):boolean { method f64 (line 171) | f64():number { method mutate_f64 (line 176) | mutate_f64(value:number):boolean { method v8 (line 187) | v8(index: number):number|null { method v8Length (line 192) | v8Length():number { method v8Array (line 197) | v8Array():Int8Array|null { method vf64 (line 202) | vf64(index: number):number|null { method vf64Length (line 207) | vf64Length():number { method vf64Array (line 212) | vf64Array():Float64Array|null { method getFullyQualifiedName (line 217) | static getFullyQualifiedName(): "MyGame.Example.TypeAliases" { method startTypeAliases (line 221) | static startTypeAliases(builder:flatbuffers.Builder) { method addI8 (line 225) | static addI8(builder:flatbuffers.Builder, i8:number) { method addU8 (line 229) | static addU8(builder:flatbuffers.Builder, u8:number) { method addI16 (line 233) | static addI16(builder:flatbuffers.Builder, i16:number) { method addU16 (line 237) | static addU16(builder:flatbuffers.Builder, u16:number) { method addI32 (line 241) | static addI32(builder:flatbuffers.Builder, i32:number) { method addU32 (line 245) | static addU32(builder:flatbuffers.Builder, u32:number) { method addI64 (line 249) | static addI64(builder:flatbuffers.Builder, i64:bigint) { method addU64 (line 253) | static addU64(builder:flatbuffers.Builder, u64:bigint) { method addF32 (line 257) | static addF32(builder:flatbuffers.Builder, f32:number) { method addF64 (line 261) | static addF64(builder:flatbuffers.Builder, f64:number) { method addV8 (line 265) | static addV8(builder:flatbuffers.Builder, v8Offset:flatbuffers.Offset) { method createV8Vector (line 274) | static createV8Vector(builder:flatbuffers.Builder, data:number[]|Int8A... method startV8Vector (line 282) | static startV8Vector(builder:flatbuffers.Builder, numElems:number) { method addVf64 (line 286) | static addVf64(builder:flatbuffers.Builder, vf64Offset:flatbuffers.Off... method createVf64Vector (line 295) | static createVf64Vector(builder:flatbuffers.Builder, data:number[]|Flo... method startVf64Vector (line 303) | static startVf64Vector(builder:flatbuffers.Builder, numElems:number) { method endTypeAliases (line 307) | static endTypeAliases(builder:flatbuffers.Builder):flatbuffers.Offset { method createTypeAliases (line 312) | static createTypeAliases(builder:flatbuffers.Builder, i8:number, u8:nu... method serialize (line 329) | serialize():Uint8Array { method deserialize (line 333) | static deserialize(buffer: Uint8Array):TypeAliases { method unpack (line 337) | unpack(): TypeAliasesT { method unpackTo (line 355) | unpackTo(_o: TypeAliasesT): void { class TypeAliasesT (line 371) | class TypeAliasesT implements flatbuffers.IGeneratedObject { method constructor (line 372) | constructor( method pack (line 388) | pack(builder:flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/my-game/example/vec3.d.ts class Vec3 (line 4) | class Vec3 implements flatbuffers.IUnpackableObject { class Vec3T (line 34) | class Vec3T implements flatbuffers.IGeneratedObject { FILE: tests/ts/my-game/example/vec3.js class Vec3 (line 4) | class Vec3 { method constructor (line 5) | constructor() { method __init (line 9) | __init(i, bb) { method x (line 14) | x() { method mutate_x (line 17) | mutate_x(value) { method y (line 21) | y() { method mutate_y (line 24) | mutate_y(value) { method z (line 28) | z() { method mutate_z (line 31) | mutate_z(value) { method test1 (line 35) | test1() { method mutate_test1 (line 38) | mutate_test1(value) { method test2 (line 42) | test2() { method mutate_test2 (line 45) | mutate_test2(value) { method test3 (line 49) | test3(obj) { method getFullyQualifiedName (line 52) | static getFullyQualifiedName() { method sizeOf (line 55) | static sizeOf() { method createVec3 (line 58) | static createVec3(builder, x, y, z, test1, test2, test3_a, test3_b) { method unpack (line 74) | unpack() { method unpackTo (line 79) | unpackTo(_o) { class Vec3T (line 88) | class Vec3T { method constructor (line 89) | constructor( method pack (line 98) | pack(builder) { FILE: tests/ts/my-game/example/vec3.ts class Vec3 (line 11) | class Vec3 implements flatbuffers.IUnpackableObject { method __init (line 14) | __init(i:number, bb:flatbuffers.ByteBuffer):Vec3 { method x (line 20) | x():number { method mutate_x (line 24) | mutate_x(value:number):boolean { method y (line 29) | y():number { method mutate_y (line 33) | mutate_y(value:number):boolean { method z (line 38) | z():number { method mutate_z (line 42) | mutate_z(value:number):boolean { method test1 (line 47) | test1():number { method mutate_test1 (line 51) | mutate_test1(value:number):boolean { method test2 (line 56) | test2():Color { method mutate_test2 (line 60) | mutate_test2(value:Color):boolean { method test3 (line 65) | test3(obj?:Test):Test|null { method getFullyQualifiedName (line 69) | static getFullyQualifiedName(): "MyGame.Example.Vec3" { method sizeOf (line 73) | static sizeOf():number { method createVec3 (line 77) | static createVec3(builder:flatbuffers.Builder, x: number, y: number, z... method unpack (line 95) | unpack(): Vec3T { method unpackTo (line 107) | unpackTo(_o: Vec3T): void { class Vec3T (line 117) | class Vec3T implements flatbuffers.IGeneratedObject { method constructor (line 118) | constructor( method pack (line 128) | pack(builder:flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/my-game/example2/monster.d.ts class Monster (line 2) | class Monster class MonsterT (line 22) | class MonsterT implements flatbuffers.IGeneratedObject { FILE: tests/ts/my-game/example2/monster.js class Monster (line 5) | class Monster { method constructor (line 6) | constructor() { method __init (line 10) | __init(i, bb) { method getRootAsMonster (line 15) | static getRootAsMonster(bb, obj) { method getSizePrefixedRootAsMonster (line 19) | static getSizePrefixedRootAsMonster(bb, obj) { method getFullyQualifiedName (line 24) | static getFullyQualifiedName() { method startMonster (line 27) | static startMonster(builder) { method endMonster (line 30) | static endMonster(builder) { method createMonster (line 34) | static createMonster(builder) { method serialize (line 38) | serialize() { method deserialize (line 41) | static deserialize(buffer) { method unpack (line 44) | unpack() { method unpackTo (line 47) | unpackTo(_o) {} class MonsterT (line 49) | class MonsterT { method constructor (line 50) | constructor() {} method pack (line 51) | pack(builder) { FILE: tests/ts/my-game/example2/monster.ts class Monster (line 9) | class Monster implements flatbuffers.IUnpackableObject { method __init (line 12) | __init(i:number, bb:flatbuffers.ByteBuffer):Monster { method getRootAsMonster (line 18) | static getRootAsMonster(bb:flatbuffers.ByteBuffer, obj?:Monster):Monst... method getSizePrefixedRootAsMonster (line 22) | static getSizePrefixedRootAsMonster(bb:flatbuffers.ByteBuffer, obj?:Mo... method getFullyQualifiedName (line 27) | static getFullyQualifiedName(): "MyGame.Example2.Monster" { method startMonster (line 31) | static startMonster(builder:flatbuffers.Builder) { method endMonster (line 35) | static endMonster(builder:flatbuffers.Builder):flatbuffers.Offset { method createMonster (line 40) | static createMonster(builder:flatbuffers.Builder):flatbuffers.Offset { method serialize (line 45) | serialize():Uint8Array { method deserialize (line 49) | static deserialize(buffer: Uint8Array):Monster { method unpack (line 53) | unpack(): MonsterT { method unpackTo (line 58) | unpackTo(_o: MonsterT): void {} class MonsterT (line 61) | class MonsterT implements flatbuffers.IGeneratedObject { method constructor (line 62) | constructor(){} method pack (line 65) | pack(builder:flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/my-game/in-parent-namespace.d.ts class InParentNamespace (line 2) | class InParentNamespace class InParentNamespaceT (line 27) | class InParentNamespaceT FILE: tests/ts/my-game/in-parent-namespace.js class InParentNamespace (line 5) | class InParentNamespace { method constructor (line 6) | constructor() { method __init (line 10) | __init(i, bb) { method getRootAsInParentNamespace (line 15) | static getRootAsInParentNamespace(bb, obj) { method getSizePrefixedRootAsInParentNamespace (line 19) | static getSizePrefixedRootAsInParentNamespace(bb, obj) { method getFullyQualifiedName (line 24) | static getFullyQualifiedName() { method startInParentNamespace (line 27) | static startInParentNamespace(builder) { method endInParentNamespace (line 30) | static endInParentNamespace(builder) { method createInParentNamespace (line 34) | static createInParentNamespace(builder) { method serialize (line 38) | serialize() { method deserialize (line 41) | static deserialize(buffer) { method unpack (line 45) | unpack() { method unpackTo (line 48) | unpackTo(_o) {} class InParentNamespaceT (line 50) | class InParentNamespaceT { method constructor (line 51) | constructor() {} method pack (line 52) | pack(builder) { FILE: tests/ts/my-game/in-parent-namespace.ts class InParentNamespace (line 9) | class InParentNamespace implements flatbuffers.IUnpackableObject { class TableBT (line 26) | class TableBT implements flatbuffers.IGeneratedObject { FILE: tests/ts/my-game/other-name-space/table-b.js class TableB (line 8) | class TableB { method constructor (line 9) | constructor() { method __init (line 13) | __init(i, bb) { method getRootAsTableB (line 18) | static getRootAsTableB(bb, obj) { method getSizePrefixedRootAsTableB (line 22) | static getSizePrefixedRootAsTableB(bb, obj) { method a (line 27) | a(obj) { method getFullyQualifiedName (line 34) | static getFullyQualifiedName() { method startTableB (line 37) | static startTableB(builder) { method addA (line 40) | static addA(builder, aOffset) { method endTableB (line 43) | static endTableB(builder) { method createTableB (line 47) | static createTableB(builder, aOffset) { method serialize (line 52) | serialize() { method deserialize (line 55) | static deserialize(buffer) { method unpack (line 58) | unpack() { method unpackTo (line 61) | unpackTo(_o) { class TableBT (line 65) | class TableBT { method constructor (line 66) | constructor(a = null) { method pack (line 69) | pack(builder) { FILE: tests/ts/my-game/other-name-space/table-b.ts class TableB (line 9) | class TableB implements flatbuffers.IUnpackableObject { method __init (line 12) | __init(i: number, bb: flatbuffers.ByteBuffer): TableB { method getRootAsTableB (line 18) | static getRootAsTableB(bb: flatbuffers.ByteBuffer, obj?: TableB): Tabl... method getSizePrefixedRootAsTableB (line 25) | static getSizePrefixedRootAsTableB( method a (line 36) | a(obj?: TableA): TableA | null { method getFullyQualifiedName (line 46) | static getFullyQualifiedName(): string { method startTableB (line 50) | static startTableB(builder: flatbuffers.Builder) { method addA (line 54) | static addA(builder: flatbuffers.Builder, aOffset: flatbuffers.Offset) { method endTableB (line 58) | static endTableB(builder: flatbuffers.Builder): flatbuffers.Offset { method createTableB (line 63) | static createTableB( method serialize (line 72) | serialize(): Uint8Array { method deserialize (line 76) | static deserialize(buffer: Uint8Array): TableB { method unpack (line 80) | unpack(): TableBT { method unpackTo (line 84) | unpackTo(_o: TableBT): void { class TableBT (line 89) | class TableBT implements flatbuffers.IGeneratedObject { method constructor (line 90) | constructor(public a: TableAT | null = null) {} method pack (line 92) | pack(builder: flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/my-game/other-name-space/unused.d.ts class Unused (line 2) | class Unused implements flatbuffers.IUnpackableObject { class UnusedT (line 17) | class UnusedT implements flatbuffers.IGeneratedObject { FILE: tests/ts/my-game/other-name-space/unused.js class Unused (line 2) | class Unused { method constructor (line 3) | constructor() { method __init (line 7) | __init(i, bb) { method a (line 12) | a() { method mutate_a (line 15) | mutate_a(value) { method getFullyQualifiedName (line 19) | static getFullyQualifiedName() { method sizeOf (line 22) | static sizeOf() { method createUnused (line 25) | static createUnused(builder, a) { method unpack (line 30) | unpack() { method unpackTo (line 33) | unpackTo(_o) { class UnusedT (line 37) | class UnusedT { method constructor (line 38) | constructor(a = 0) { method pack (line 41) | pack(builder) { FILE: tests/ts/my-game/other-name-space/unused.ts class Unused (line 7) | class Unused implements flatbuffers.IUnpackableObject { method __init (line 10) | __init(i: number, bb: flatbuffers.ByteBuffer): Unused { method a (line 16) | a(): number { method mutate_a (line 20) | mutate_a(value: number): boolean { method getFullyQualifiedName (line 25) | static getFullyQualifiedName(): string { method sizeOf (line 29) | static sizeOf(): number { method createUnused (line 33) | static createUnused( method unpack (line 42) | unpack(): UnusedT { method unpackTo (line 46) | unpackTo(_o: UnusedT): void { class UnusedT (line 51) | class UnusedT implements flatbuffers.IGeneratedObject { method constructor (line 52) | constructor(public a: number = 0) {} method pack (line 54) | pack(builder: flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/no_import_ext/optional-scalars/optional-byte.d.ts type OptionalByte (line 1) | enum OptionalByte { FILE: tests/ts/no_import_ext/optional-scalars/optional-byte.ts type OptionalByte (line 5) | enum OptionalByte { FILE: tests/ts/no_import_ext/optional-scalars/scalar-stuff.d.ts class ScalarStuff (line 3) | class ScalarStuff { FILE: tests/ts/no_import_ext/optional-scalars/scalar-stuff.js class ScalarStuff (line 8) | class ScalarStuff { method constructor (line 9) | constructor() { method __init (line 13) | __init(i, bb) { method getRootAsScalarStuff (line 18) | static getRootAsScalarStuff(bb, obj) { method getSizePrefixedRootAsScalarStuff (line 22) | static getSizePrefixedRootAsScalarStuff(bb, obj) { method bufferHasIdentifier (line 27) | static bufferHasIdentifier(bb) { method justI8 (line 30) | justI8() { method maybeI8 (line 34) | maybeI8() { method defaultI8 (line 38) | defaultI8() { method justU8 (line 42) | justU8() { method maybeU8 (line 46) | maybeU8() { method defaultU8 (line 50) | defaultU8() { method justI16 (line 54) | justI16() { method maybeI16 (line 58) | maybeI16() { method defaultI16 (line 62) | defaultI16() { method justU16 (line 66) | justU16() { method maybeU16 (line 70) | maybeU16() { method defaultU16 (line 74) | defaultU16() { method justI32 (line 78) | justI32() { method maybeI32 (line 82) | maybeI32() { method defaultI32 (line 86) | defaultI32() { method justU32 (line 90) | justU32() { method maybeU32 (line 94) | maybeU32() { method defaultU32 (line 98) | defaultU32() { method justI64 (line 102) | justI64() { method maybeI64 (line 106) | maybeI64() { method defaultI64 (line 110) | defaultI64() { method justU64 (line 114) | justU64() { method maybeU64 (line 118) | maybeU64() { method defaultU64 (line 122) | defaultU64() { method justF32 (line 126) | justF32() { method maybeF32 (line 130) | maybeF32() { method defaultF32 (line 134) | defaultF32() { method justF64 (line 138) | justF64() { method maybeF64 (line 142) | maybeF64() { method defaultF64 (line 146) | defaultF64() { method justBool (line 150) | justBool() { method maybeBool (line 154) | maybeBool() { method defaultBool (line 158) | defaultBool() { method justEnum (line 162) | justEnum() { method maybeEnum (line 166) | maybeEnum() { method defaultEnum (line 170) | defaultEnum() { method getFullyQualifiedName (line 174) | static getFullyQualifiedName() { method startScalarStuff (line 177) | static startScalarStuff(builder) { method addJustI8 (line 180) | static addJustI8(builder, justI8) { method addMaybeI8 (line 183) | static addMaybeI8(builder, maybeI8) { method addDefaultI8 (line 186) | static addDefaultI8(builder, defaultI8) { method addJustU8 (line 189) | static addJustU8(builder, justU8) { method addMaybeU8 (line 192) | static addMaybeU8(builder, maybeU8) { method addDefaultU8 (line 195) | static addDefaultU8(builder, defaultU8) { method addJustI16 (line 198) | static addJustI16(builder, justI16) { method addMaybeI16 (line 201) | static addMaybeI16(builder, maybeI16) { method addDefaultI16 (line 204) | static addDefaultI16(builder, defaultI16) { method addJustU16 (line 207) | static addJustU16(builder, justU16) { method addMaybeU16 (line 210) | static addMaybeU16(builder, maybeU16) { method addDefaultU16 (line 213) | static addDefaultU16(builder, defaultU16) { method addJustI32 (line 216) | static addJustI32(builder, justI32) { method addMaybeI32 (line 219) | static addMaybeI32(builder, maybeI32) { method addDefaultI32 (line 222) | static addDefaultI32(builder, defaultI32) { method addJustU32 (line 225) | static addJustU32(builder, justU32) { method addMaybeU32 (line 228) | static addMaybeU32(builder, maybeU32) { method addDefaultU32 (line 231) | static addDefaultU32(builder, defaultU32) { method addJustI64 (line 234) | static addJustI64(builder, justI64) { method addMaybeI64 (line 237) | static addMaybeI64(builder, maybeI64) { method addDefaultI64 (line 240) | static addDefaultI64(builder, defaultI64) { method addJustU64 (line 243) | static addJustU64(builder, justU64) { method addMaybeU64 (line 246) | static addMaybeU64(builder, maybeU64) { method addDefaultU64 (line 249) | static addDefaultU64(builder, defaultU64) { method addJustF32 (line 252) | static addJustF32(builder, justF32) { method addMaybeF32 (line 255) | static addMaybeF32(builder, maybeF32) { method addDefaultF32 (line 258) | static addDefaultF32(builder, defaultF32) { method addJustF64 (line 261) | static addJustF64(builder, justF64) { method addMaybeF64 (line 264) | static addMaybeF64(builder, maybeF64) { method addDefaultF64 (line 267) | static addDefaultF64(builder, defaultF64) { method addJustBool (line 270) | static addJustBool(builder, justBool) { method addMaybeBool (line 273) | static addMaybeBool(builder, maybeBool) { method addDefaultBool (line 276) | static addDefaultBool(builder, defaultBool) { method addJustEnum (line 279) | static addJustEnum(builder, justEnum) { method addMaybeEnum (line 282) | static addMaybeEnum(builder, maybeEnum) { method addDefaultEnum (line 285) | static addDefaultEnum(builder, defaultEnum) { method endScalarStuff (line 288) | static endScalarStuff(builder) { method finishScalarStuffBuffer (line 292) | static finishScalarStuffBuffer(builder, offset) { method finishSizePrefixedScalarStuffBuffer (line 295) | static finishSizePrefixedScalarStuffBuffer(builder, offset) { method createScalarStuff (line 298) | static createScalarStuff( FILE: tests/ts/no_import_ext/optional-scalars/scalar-stuff.ts class ScalarStuff (line 9) | class ScalarStuff { method __init (line 12) | __init(i: number, bb: flatbuffers.ByteBuffer): ScalarStuff { method getRootAsScalarStuff (line 18) | static getRootAsScalarStuff( method getSizePrefixedRootAsScalarStuff (line 28) | static getSizePrefixedRootAsScalarStuff( method bufferHasIdentifier (line 39) | static bufferHasIdentifier(bb: flatbuffers.ByteBuffer): boolean { method justI8 (line 43) | justI8(): number { method maybeI8 (line 48) | maybeI8(): number | null { method defaultI8 (line 53) | defaultI8(): number { method justU8 (line 58) | justU8(): number { method maybeU8 (line 63) | maybeU8(): number | null { method defaultU8 (line 68) | defaultU8(): number { method justI16 (line 73) | justI16(): number { method maybeI16 (line 78) | maybeI16(): number | null { method defaultI16 (line 83) | defaultI16(): number { method justU16 (line 88) | justU16(): number { method maybeU16 (line 93) | maybeU16(): number | null { method defaultU16 (line 98) | defaultU16(): number { method justI32 (line 103) | justI32(): number { method maybeI32 (line 108) | maybeI32(): number | null { method defaultI32 (line 113) | defaultI32(): number { method justU32 (line 118) | justU32(): number { method maybeU32 (line 123) | maybeU32(): number | null { method defaultU32 (line 128) | defaultU32(): number { method justI64 (line 133) | justI64(): bigint { method maybeI64 (line 138) | maybeI64(): bigint | null { method defaultI64 (line 143) | defaultI64(): bigint { method justU64 (line 148) | justU64(): bigint { method maybeU64 (line 153) | maybeU64(): bigint | null { method defaultU64 (line 158) | defaultU64(): bigint { method justF32 (line 163) | justF32(): number { method maybeF32 (line 168) | maybeF32(): number | null { method defaultF32 (line 173) | defaultF32(): number { method justF64 (line 178) | justF64(): number { method maybeF64 (line 183) | maybeF64(): number | null { method defaultF64 (line 188) | defaultF64(): number { method justBool (line 193) | justBool(): boolean { method maybeBool (line 198) | maybeBool(): boolean | null { method defaultBool (line 203) | defaultBool(): boolean { method justEnum (line 208) | justEnum(): OptionalByte { method maybeEnum (line 213) | maybeEnum(): OptionalByte | null { method defaultEnum (line 218) | defaultEnum(): OptionalByte { method getFullyQualifiedName (line 223) | static getFullyQualifiedName(): string { method startScalarStuff (line 227) | static startScalarStuff(builder: flatbuffers.Builder) { method addJustI8 (line 231) | static addJustI8(builder: flatbuffers.Builder, justI8: number) { method addMaybeI8 (line 235) | static addMaybeI8(builder: flatbuffers.Builder, maybeI8: number) { method addDefaultI8 (line 239) | static addDefaultI8(builder: flatbuffers.Builder, defaultI8: number) { method addJustU8 (line 243) | static addJustU8(builder: flatbuffers.Builder, justU8: number) { method addMaybeU8 (line 247) | static addMaybeU8(builder: flatbuffers.Builder, maybeU8: number) { method addDefaultU8 (line 251) | static addDefaultU8(builder: flatbuffers.Builder, defaultU8: number) { method addJustI16 (line 255) | static addJustI16(builder: flatbuffers.Builder, justI16: number) { method addMaybeI16 (line 259) | static addMaybeI16(builder: flatbuffers.Builder, maybeI16: number) { method addDefaultI16 (line 263) | static addDefaultI16(builder: flatbuffers.Builder, defaultI16: number) { method addJustU16 (line 267) | static addJustU16(builder: flatbuffers.Builder, justU16: number) { method addMaybeU16 (line 271) | static addMaybeU16(builder: flatbuffers.Builder, maybeU16: number) { method addDefaultU16 (line 275) | static addDefaultU16(builder: flatbuffers.Builder, defaultU16: number) { method addJustI32 (line 279) | static addJustI32(builder: flatbuffers.Builder, justI32: number) { method addMaybeI32 (line 283) | static addMaybeI32(builder: flatbuffers.Builder, maybeI32: number) { method addDefaultI32 (line 287) | static addDefaultI32(builder: flatbuffers.Builder, defaultI32: number) { method addJustU32 (line 291) | static addJustU32(builder: flatbuffers.Builder, justU32: number) { method addMaybeU32 (line 295) | static addMaybeU32(builder: flatbuffers.Builder, maybeU32: number) { method addDefaultU32 (line 299) | static addDefaultU32(builder: flatbuffers.Builder, defaultU32: number) { method addJustI64 (line 303) | static addJustI64(builder: flatbuffers.Builder, justI64: bigint) { method addMaybeI64 (line 307) | static addMaybeI64(builder: flatbuffers.Builder, maybeI64: bigint) { method addDefaultI64 (line 311) | static addDefaultI64(builder: flatbuffers.Builder, defaultI64: bigint) { method addJustU64 (line 315) | static addJustU64(builder: flatbuffers.Builder, justU64: bigint) { method addMaybeU64 (line 319) | static addMaybeU64(builder: flatbuffers.Builder, maybeU64: bigint) { method addDefaultU64 (line 323) | static addDefaultU64(builder: flatbuffers.Builder, defaultU64: bigint) { method addJustF32 (line 327) | static addJustF32(builder: flatbuffers.Builder, justF32: number) { method addMaybeF32 (line 331) | static addMaybeF32(builder: flatbuffers.Builder, maybeF32: number) { method addDefaultF32 (line 335) | static addDefaultF32(builder: flatbuffers.Builder, defaultF32: number) { method addJustF64 (line 339) | static addJustF64(builder: flatbuffers.Builder, justF64: number) { method addMaybeF64 (line 343) | static addMaybeF64(builder: flatbuffers.Builder, maybeF64: number) { method addDefaultF64 (line 347) | static addDefaultF64(builder: flatbuffers.Builder, defaultF64: number) { method addJustBool (line 351) | static addJustBool(builder: flatbuffers.Builder, justBool: boolean) { method addMaybeBool (line 355) | static addMaybeBool(builder: flatbuffers.Builder, maybeBool: boolean) { method addDefaultBool (line 359) | static addDefaultBool(builder: flatbuffers.Builder, defaultBool: boole... method addJustEnum (line 363) | static addJustEnum(builder: flatbuffers.Builder, justEnum: OptionalByt... method addMaybeEnum (line 367) | static addMaybeEnum(builder: flatbuffers.Builder, maybeEnum: OptionalB... method addDefaultEnum (line 371) | static addDefaultEnum( method endScalarStuff (line 378) | static endScalarStuff(builder: flatbuffers.Builder): flatbuffers.Offset { method finishScalarStuffBuffer (line 383) | static finishScalarStuffBuffer( method finishSizePrefixedScalarStuffBuffer (line 390) | static finishSizePrefixedScalarStuffBuffer( method createScalarStuff (line 397) | static createScalarStuff( FILE: tests/ts/optional-scalars/optional-byte.ts type OptionalByte (line 5) | enum OptionalByte { FILE: tests/ts/optional-scalars/scalar-stuff.ts class ScalarStuff (line 10) | class ScalarStuff { method __init (line 13) | __init(i:number, bb:flatbuffers.ByteBuffer):ScalarStuff { method getRootAsScalarStuff (line 19) | static getRootAsScalarStuff(bb:flatbuffers.ByteBuffer, obj?:ScalarStuf... method getSizePrefixedRootAsScalarStuff (line 23) | static getSizePrefixedRootAsScalarStuff(bb:flatbuffers.ByteBuffer, obj... method bufferHasIdentifier (line 28) | static bufferHasIdentifier(bb:flatbuffers.ByteBuffer):boolean { method justI8 (line 32) | justI8():number { method maybeI8 (line 37) | maybeI8():number|null { method defaultI8 (line 42) | defaultI8():number { method justU8 (line 47) | justU8():number { method maybeU8 (line 52) | maybeU8():number|null { method defaultU8 (line 57) | defaultU8():number { method justI16 (line 62) | justI16():number { method maybeI16 (line 67) | maybeI16():number|null { method defaultI16 (line 72) | defaultI16():number { method justU16 (line 77) | justU16():number { method maybeU16 (line 82) | maybeU16():number|null { method defaultU16 (line 87) | defaultU16():number { method justI32 (line 92) | justI32():number { method maybeI32 (line 97) | maybeI32():number|null { method defaultI32 (line 102) | defaultI32():number { method justU32 (line 107) | justU32():number { method maybeU32 (line 112) | maybeU32():number|null { method defaultU32 (line 117) | defaultU32():number { method justI64 (line 122) | justI64():bigint { method maybeI64 (line 127) | maybeI64():bigint|null { method defaultI64 (line 132) | defaultI64():bigint { method justU64 (line 137) | justU64():bigint { method maybeU64 (line 142) | maybeU64():bigint|null { method defaultU64 (line 147) | defaultU64():bigint { method justF32 (line 152) | justF32():number { method maybeF32 (line 157) | maybeF32():number|null { method defaultF32 (line 162) | defaultF32():number { method justF64 (line 167) | justF64():number { method maybeF64 (line 172) | maybeF64():number|null { method defaultF64 (line 177) | defaultF64():number { method justBool (line 182) | justBool():boolean { method maybeBool (line 187) | maybeBool():boolean|null { method defaultBool (line 192) | defaultBool():boolean { method justEnum (line 197) | justEnum():OptionalByte { method maybeEnum (line 202) | maybeEnum():OptionalByte|null { method defaultEnum (line 207) | defaultEnum():OptionalByte { method getFullyQualifiedName (line 212) | static getFullyQualifiedName(): "optional_scalars.ScalarStuff" { method startScalarStuff (line 216) | static startScalarStuff(builder:flatbuffers.Builder) { method addJustI8 (line 220) | static addJustI8(builder:flatbuffers.Builder, justI8:number) { method addMaybeI8 (line 224) | static addMaybeI8(builder:flatbuffers.Builder, maybeI8:number) { method addDefaultI8 (line 228) | static addDefaultI8(builder:flatbuffers.Builder, defaultI8:number) { method addJustU8 (line 232) | static addJustU8(builder:flatbuffers.Builder, justU8:number) { method addMaybeU8 (line 236) | static addMaybeU8(builder:flatbuffers.Builder, maybeU8:number) { method addDefaultU8 (line 240) | static addDefaultU8(builder:flatbuffers.Builder, defaultU8:number) { method addJustI16 (line 244) | static addJustI16(builder:flatbuffers.Builder, justI16:number) { method addMaybeI16 (line 248) | static addMaybeI16(builder:flatbuffers.Builder, maybeI16:number) { method addDefaultI16 (line 252) | static addDefaultI16(builder:flatbuffers.Builder, defaultI16:number) { method addJustU16 (line 256) | static addJustU16(builder:flatbuffers.Builder, justU16:number) { method addMaybeU16 (line 260) | static addMaybeU16(builder:flatbuffers.Builder, maybeU16:number) { method addDefaultU16 (line 264) | static addDefaultU16(builder:flatbuffers.Builder, defaultU16:number) { method addJustI32 (line 268) | static addJustI32(builder:flatbuffers.Builder, justI32:number) { method addMaybeI32 (line 272) | static addMaybeI32(builder:flatbuffers.Builder, maybeI32:number) { method addDefaultI32 (line 276) | static addDefaultI32(builder:flatbuffers.Builder, defaultI32:number) { method addJustU32 (line 280) | static addJustU32(builder:flatbuffers.Builder, justU32:number) { method addMaybeU32 (line 284) | static addMaybeU32(builder:flatbuffers.Builder, maybeU32:number) { method addDefaultU32 (line 288) | static addDefaultU32(builder:flatbuffers.Builder, defaultU32:number) { method addJustI64 (line 292) | static addJustI64(builder:flatbuffers.Builder, justI64:bigint) { method addMaybeI64 (line 296) | static addMaybeI64(builder:flatbuffers.Builder, maybeI64:bigint) { method addDefaultI64 (line 300) | static addDefaultI64(builder:flatbuffers.Builder, defaultI64:bigint) { method addJustU64 (line 304) | static addJustU64(builder:flatbuffers.Builder, justU64:bigint) { method addMaybeU64 (line 308) | static addMaybeU64(builder:flatbuffers.Builder, maybeU64:bigint) { method addDefaultU64 (line 312) | static addDefaultU64(builder:flatbuffers.Builder, defaultU64:bigint) { method addJustF32 (line 316) | static addJustF32(builder:flatbuffers.Builder, justF32:number) { method addMaybeF32 (line 320) | static addMaybeF32(builder:flatbuffers.Builder, maybeF32:number) { method addDefaultF32 (line 324) | static addDefaultF32(builder:flatbuffers.Builder, defaultF32:number) { method addJustF64 (line 328) | static addJustF64(builder:flatbuffers.Builder, justF64:number) { method addMaybeF64 (line 332) | static addMaybeF64(builder:flatbuffers.Builder, maybeF64:number) { method addDefaultF64 (line 336) | static addDefaultF64(builder:flatbuffers.Builder, defaultF64:number) { method addJustBool (line 340) | static addJustBool(builder:flatbuffers.Builder, justBool:boolean) { method addMaybeBool (line 344) | static addMaybeBool(builder:flatbuffers.Builder, maybeBool:boolean) { method addDefaultBool (line 348) | static addDefaultBool(builder:flatbuffers.Builder, defaultBool:boolean) { method addJustEnum (line 352) | static addJustEnum(builder:flatbuffers.Builder, justEnum:OptionalByte) { method addMaybeEnum (line 356) | static addMaybeEnum(builder:flatbuffers.Builder, maybeEnum:OptionalByt... method addDefaultEnum (line 360) | static addDefaultEnum(builder:flatbuffers.Builder, defaultEnum:Optiona... method endScalarStuff (line 364) | static endScalarStuff(builder:flatbuffers.Builder):flatbuffers.Offset { method finishScalarStuffBuffer (line 369) | static finishScalarStuffBuffer(builder:flatbuffers.Builder, offset:fla... method finishSizePrefixedScalarStuffBuffer (line 373) | static finishSizePrefixedScalarStuffBuffer(builder:flatbuffers.Builder... method createScalarStuff (line 377) | static createScalarStuff(builder:flatbuffers.Builder, justI8:number, m... FILE: tests/ts/reflection/advanced-features.d.ts type AdvancedFeatures (line 4) | enum AdvancedFeatures { FILE: tests/ts/reflection/advanced-features.ts type AdvancedFeatures (line 8) | enum AdvancedFeatures { FILE: tests/ts/reflection/base-type.d.ts type BaseType (line 1) | enum BaseType { FILE: tests/ts/reflection/base-type.ts type BaseType (line 5) | enum BaseType { FILE: tests/ts/reflection/enum-val.d.ts class EnumVal (line 4) | class EnumVal class EnumValT (line 67) | class EnumValT implements flatbuffers.IGeneratedObject { FILE: tests/ts/reflection/enum-val.js class EnumVal (line 9) | class EnumVal { method constructor (line 10) | constructor() { method __init (line 14) | __init(i, bb) { method getRootAsEnumVal (line 19) | static getRootAsEnumVal(bb, obj) { method getSizePrefixedRootAsEnumVal (line 23) | static getSizePrefixedRootAsEnumVal(bb, obj) { method name (line 28) | name(optionalEncoding) { method value (line 33) | value() { method mutate_value (line 37) | mutate_value(value) { method unionType (line 45) | unionType(obj) { method documentation (line 52) | documentation(index, optionalEncoding) { method documentationLength (line 59) | documentationLength() { method attributes (line 63) | attributes(index, obj) { method attributesLength (line 73) | attributesLength() { method getFullyQualifiedName (line 77) | static getFullyQualifiedName() { method startEnumVal (line 80) | static startEnumVal(builder) { method addName (line 83) | static addName(builder, nameOffset) { method addValue (line 86) | static addValue(builder, value) { method addUnionType (line 89) | static addUnionType(builder, unionTypeOffset) { method addDocumentation (line 92) | static addDocumentation(builder, documentationOffset) { method createDocumentationVector (line 95) | static createDocumentationVector(builder, data) { method startDocumentationVector (line 102) | static startDocumentationVector(builder, numElems) { method addAttributes (line 105) | static addAttributes(builder, attributesOffset) { method createAttributesVector (line 108) | static createAttributesVector(builder, data) { method startAttributesVector (line 115) | static startAttributesVector(builder, numElems) { method endEnumVal (line 118) | static endEnumVal(builder) { method unpack (line 123) | unpack() { method unpackTo (line 132) | unpackTo(_o) { class EnumValT (line 143) | class EnumValT { method constructor (line 144) | constructor( method pack (line 153) | pack(builder) { FILE: tests/ts/reflection/enum-val.ts class EnumVal (line 10) | class EnumVal implements flatbuffers.IUnpackableObject { method __init (line 13) | __init(i: number, bb: flatbuffers.ByteBuffer): EnumVal { method getRootAsEnumVal (line 19) | static getRootAsEnumVal(bb: flatbuffers.ByteBuffer, obj?: EnumVal): En... method getSizePrefixedRootAsEnumVal (line 26) | static getSizePrefixedRootAsEnumVal( method name (line 39) | name(optionalEncoding?: any): string | Uint8Array | null { method value (line 46) | value(): bigint { method mutate_value (line 51) | mutate_value(value: bigint): boolean { method unionType (line 62) | unionType(obj?: Type): Type | null { method documentation (line 77) | documentation( method documentationLength (line 90) | documentationLength(): number { method attributes (line 95) | attributes(index: number, obj?: KeyValue): KeyValue | null { method attributesLength (line 107) | attributesLength(): number { method getFullyQualifiedName (line 112) | static getFullyQualifiedName(): string { method startEnumVal (line 116) | static startEnumVal(builder: flatbuffers.Builder) { method addName (line 120) | static addName(builder: flatbuffers.Builder, nameOffset: flatbuffers.O... method addValue (line 124) | static addValue(builder: flatbuffers.Builder, value: bigint) { method addUnionType (line 128) | static addUnionType( method addDocumentation (line 135) | static addDocumentation( method createDocumentationVector (line 142) | static createDocumentationVector( method startDocumentationVector (line 153) | static startDocumentationVector( method addAttributes (line 160) | static addAttributes( method createAttributesVector (line 167) | static createAttributesVector( method startAttributesVector (line 178) | static startAttributesVector(builder: flatbuffers.Builder, numElems: n... method endEnumVal (line 182) | static endEnumVal(builder: flatbuffers.Builder): flatbuffers.Offset { method unpack (line 188) | unpack(): EnumValT { method unpackTo (line 204) | unpackTo(_o: EnumValT): void { class EnumValT (line 220) | class EnumValT implements flatbuffers.IGeneratedObject { method constructor (line 221) | constructor( method pack (line 229) | pack(builder: flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/reflection/enum.d.ts class Enum (line 5) | class Enum implements flatbuffers.IUnpackableObject { class EnumT (line 91) | class EnumT implements flatbuffers.IGeneratedObject { FILE: tests/ts/reflection/enum.js class Enum (line 10) | class Enum { method constructor (line 11) | constructor() { method __init (line 15) | __init(i, bb) { method getRootAsEnum (line 20) | static getRootAsEnum(bb, obj) { method getSizePrefixedRootAsEnum (line 24) | static getSizePrefixedRootAsEnum(bb, obj) { method name (line 29) | name(optionalEncoding) { method values (line 34) | values(index, obj) { method valuesLength (line 44) | valuesLength() { method isUnion (line 48) | isUnion() { method mutate_is_union (line 52) | mutate_is_union(value) { method underlyingType (line 60) | underlyingType(obj) { method attributes (line 67) | attributes(index, obj) { method attributesLength (line 77) | attributesLength() { method documentation (line 81) | documentation(index, optionalEncoding) { method documentationLength (line 88) | documentationLength() { method declarationFile (line 92) | declarationFile(optionalEncoding) { method getFullyQualifiedName (line 97) | static getFullyQualifiedName() { method startEnum (line 100) | static startEnum(builder) { method addName (line 103) | static addName(builder, nameOffset) { method addValues (line 106) | static addValues(builder, valuesOffset) { method createValuesVector (line 109) | static createValuesVector(builder, data) { method startValuesVector (line 116) | static startValuesVector(builder, numElems) { method addIsUnion (line 119) | static addIsUnion(builder, isUnion) { method addUnderlyingType (line 122) | static addUnderlyingType(builder, underlyingTypeOffset) { method addAttributes (line 125) | static addAttributes(builder, attributesOffset) { method createAttributesVector (line 128) | static createAttributesVector(builder, data) { method startAttributesVector (line 135) | static startAttributesVector(builder, numElems) { method addDocumentation (line 138) | static addDocumentation(builder, documentationOffset) { method createDocumentationVector (line 141) | static createDocumentationVector(builder, data) { method startDocumentationVector (line 148) | static startDocumentationVector(builder, numElems) { method addDeclarationFile (line 151) | static addDeclarationFile(builder, declarationFileOffset) { method endEnum (line 154) | static endEnum(builder) { method unpack (line 161) | unpack() { method unpackTo (line 174) | unpackTo(_o) { class EnumT (line 189) | class EnumT { method constructor (line 190) | constructor( method pack (line 201) | pack(builder) { FILE: tests/ts/reflection/enum.ts class Enum (line 11) | class Enum implements flatbuffers.IUnpackableObject { method __init (line 14) | __init(i: number, bb: flatbuffers.ByteBuffer): Enum { method getRootAsEnum (line 20) | static getRootAsEnum(bb: flatbuffers.ByteBuffer, obj?: Enum): Enum { method getSizePrefixedRootAsEnum (line 27) | static getSizePrefixedRootAsEnum( method name (line 40) | name(optionalEncoding?: any): string | Uint8Array | null { method values (line 47) | values(index: number, obj?: EnumVal): EnumVal | null { method valuesLength (line 59) | valuesLength(): number { method isUnion (line 64) | isUnion(): boolean { method mutate_is_union (line 69) | mutate_is_union(value: boolean): boolean { method underlyingType (line 80) | underlyingType(obj?: Type): Type | null { method attributes (line 90) | attributes(index: number, obj?: KeyValue): KeyValue | null { method attributesLength (line 102) | attributesLength(): number { method documentation (line 112) | documentation( method documentationLength (line 125) | documentationLength(): number { method declarationFile (line 137) | declarationFile(optionalEncoding?: any): string | Uint8Array | null { method getFullyQualifiedName (line 144) | static getFullyQualifiedName(): string { method startEnum (line 148) | static startEnum(builder: flatbuffers.Builder) { method addName (line 152) | static addName(builder: flatbuffers.Builder, nameOffset: flatbuffers.O... method addValues (line 156) | static addValues( method createValuesVector (line 163) | static createValuesVector( method startValuesVector (line 174) | static startValuesVector(builder: flatbuffers.Builder, numElems: numbe... method addIsUnion (line 178) | static addIsUnion(builder: flatbuffers.Builder, isUnion: boolean) { method addUnderlyingType (line 182) | static addUnderlyingType( method addAttributes (line 189) | static addAttributes( method createAttributesVector (line 196) | static createAttributesVector( method startAttributesVector (line 207) | static startAttributesVector(builder: flatbuffers.Builder, numElems: n... method addDocumentation (line 211) | static addDocumentation( method createDocumentationVector (line 218) | static createDocumentationVector( method startDocumentationVector (line 229) | static startDocumentationVector( method addDeclarationFile (line 236) | static addDeclarationFile( method endEnum (line 243) | static endEnum(builder: flatbuffers.Builder): flatbuffers.Offset { method unpack (line 251) | unpack(): EnumT { method unpackTo (line 272) | unpackTo(_o: EnumT): void { class EnumT (line 293) | class EnumT implements flatbuffers.IGeneratedObject { method constructor (line 294) | constructor( method pack (line 304) | pack(builder: flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/reflection/field.d.ts class Field (line 4) | class Field implements flatbuffers.IUnpackableObject { class FieldT (line 104) | class FieldT implements flatbuffers.IGeneratedObject { FILE: tests/ts/reflection/field.js class Field (line 9) | class Field { method constructor (line 10) | constructor() { method __init (line 14) | __init(i, bb) { method getRootAsField (line 19) | static getRootAsField(bb, obj) { method getSizePrefixedRootAsField (line 23) | static getSizePrefixedRootAsField(bb, obj) { method name (line 28) | name(optionalEncoding) { method type (line 33) | type(obj) { method id (line 40) | id() { method mutate_id (line 44) | mutate_id(value) { method offset (line 52) | offset() { method mutate_offset (line 56) | mutate_offset(value) { method defaultInteger (line 64) | defaultInteger() { method mutate_default_integer (line 68) | mutate_default_integer(value) { method defaultReal (line 76) | defaultReal() { method mutate_default_real (line 80) | mutate_default_real(value) { method deprecated (line 88) | deprecated() { method mutate_deprecated (line 92) | mutate_deprecated(value) { method required (line 100) | required() { method mutate_required (line 104) | mutate_required(value) { method key (line 112) | key() { method mutate_key (line 116) | mutate_key(value) { method attributes (line 124) | attributes(index, obj) { method attributesLength (line 134) | attributesLength() { method documentation (line 138) | documentation(index, optionalEncoding) { method documentationLength (line 145) | documentationLength() { method optional (line 149) | optional() { method mutate_optional (line 153) | mutate_optional(value) { method padding (line 164) | padding() { method mutate_padding (line 168) | mutate_padding(value) { method offset64 (line 179) | offset64() { method mutate_offset64 (line 183) | mutate_offset64(value) { method getFullyQualifiedName (line 191) | static getFullyQualifiedName() { method startField (line 194) | static startField(builder) { method addName (line 197) | static addName(builder, nameOffset) { method addType (line 200) | static addType(builder, typeOffset) { method addId (line 203) | static addId(builder, id) { method addOffset (line 206) | static addOffset(builder, offset) { method addDefaultInteger (line 209) | static addDefaultInteger(builder, defaultInteger) { method addDefaultReal (line 212) | static addDefaultReal(builder, defaultReal) { method addDeprecated (line 215) | static addDeprecated(builder, deprecated) { method addRequired (line 218) | static addRequired(builder, required) { method addKey (line 221) | static addKey(builder, key) { method addAttributes (line 224) | static addAttributes(builder, attributesOffset) { method createAttributesVector (line 227) | static createAttributesVector(builder, data) { method startAttributesVector (line 234) | static startAttributesVector(builder, numElems) { method addDocumentation (line 237) | static addDocumentation(builder, documentationOffset) { method createDocumentationVector (line 240) | static createDocumentationVector(builder, data) { method startDocumentationVector (line 247) | static startDocumentationVector(builder, numElems) { method addOptional (line 250) | static addOptional(builder, optional) { method addPadding (line 253) | static addPadding(builder, padding) { method addOffset64 (line 256) | static addOffset64(builder, offset64) { method endField (line 259) | static endField(builder) { method unpack (line 265) | unpack() { method unpackTo (line 276) | unpackTo(_o) { class FieldT (line 295) | class FieldT { method constructor (line 296) | constructor( method pack (line 316) | pack(builder) { FILE: tests/ts/reflection/field.ts class Field (line 10) | class Field implements flatbuffers.IUnpackableObject { method __init (line 13) | __init(i: number, bb: flatbuffers.ByteBuffer): Field { method getRootAsField (line 19) | static getRootAsField(bb: flatbuffers.ByteBuffer, obj?: Field): Field { method getSizePrefixedRootAsField (line 26) | static getSizePrefixedRootAsField( method name (line 39) | name(optionalEncoding?: any): string | Uint8Array | null { method type (line 46) | type(obj?: Type): Type | null { method id (line 56) | id(): number { method mutate_id (line 61) | mutate_id(value: number): boolean { method offset (line 72) | offset(): number { method mutate_offset (line 77) | mutate_offset(value: number): boolean { method defaultInteger (line 88) | defaultInteger(): bigint { method mutate_default_integer (line 93) | mutate_default_integer(value: bigint): boolean { method defaultReal (line 104) | defaultReal(): number { method mutate_default_real (line 109) | mutate_default_real(value: number): boolean { method deprecated (line 120) | deprecated(): boolean { method mutate_deprecated (line 125) | mutate_deprecated(value: boolean): boolean { method required (line 136) | required(): boolean { method mutate_required (line 141) | mutate_required(value: boolean): boolean { method key (line 152) | key(): boolean { method mutate_key (line 157) | mutate_key(value: boolean): boolean { method attributes (line 168) | attributes(index: number, obj?: KeyValue): KeyValue | null { method attributesLength (line 180) | attributesLength(): number { method documentation (line 190) | documentation( method documentationLength (line 203) | documentationLength(): number { method optional (line 208) | optional(): boolean { method mutate_optional (line 213) | mutate_optional(value: boolean): boolean { method padding (line 227) | padding(): number { method mutate_padding (line 232) | mutate_padding(value: number): boolean { method offset64 (line 246) | offset64(): boolean { method mutate_offset64 (line 251) | mutate_offset64(value: boolean): boolean { method getFullyQualifiedName (line 262) | static getFullyQualifiedName(): string { method startField (line 266) | static startField(builder: flatbuffers.Builder) { method addName (line 270) | static addName(builder: flatbuffers.Builder, nameOffset: flatbuffers.O... method addType (line 274) | static addType(builder: flatbuffers.Builder, typeOffset: flatbuffers.O... method addId (line 278) | static addId(builder: flatbuffers.Builder, id: number) { method addOffset (line 282) | static addOffset(builder: flatbuffers.Builder, offset: number) { method addDefaultInteger (line 286) | static addDefaultInteger( method addDefaultReal (line 293) | static addDefaultReal(builder: flatbuffers.Builder, defaultReal: numbe... method addDeprecated (line 297) | static addDeprecated(builder: flatbuffers.Builder, deprecated: boolean) { method addRequired (line 301) | static addRequired(builder: flatbuffers.Builder, required: boolean) { method addKey (line 305) | static addKey(builder: flatbuffers.Builder, key: boolean) { method addAttributes (line 309) | static addAttributes( method createAttributesVector (line 316) | static createAttributesVector( method startAttributesVector (line 327) | static startAttributesVector(builder: flatbuffers.Builder, numElems: n... method addDocumentation (line 331) | static addDocumentation( method createDocumentationVector (line 338) | static createDocumentationVector( method startDocumentationVector (line 349) | static startDocumentationVector( method addOptional (line 356) | static addOptional(builder: flatbuffers.Builder, optional: boolean) { method addPadding (line 360) | static addPadding(builder: flatbuffers.Builder, padding: number) { method addOffset64 (line 364) | static addOffset64(builder: flatbuffers.Builder, offset64: boolean) { method endField (line 368) | static endField(builder: flatbuffers.Builder): flatbuffers.Offset { method unpack (line 375) | unpack(): FieldT { method unpackTo (line 400) | unpackTo(_o: FieldT): void { class FieldT (line 424) | class FieldT implements flatbuffers.IGeneratedObject { method constructor (line 425) | constructor( method pack (line 442) | pack(builder: flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/reflection/key-value.d.ts class KeyValue (line 2) | class KeyValue class KeyValueT (line 39) | class KeyValueT implements flatbuffers.IGeneratedObject { FILE: tests/ts/reflection/key-value.js class KeyValue (line 5) | class KeyValue { method constructor (line 6) | constructor() { method __init (line 10) | __init(i, bb) { method getRootAsKeyValue (line 15) | static getRootAsKeyValue(bb, obj) { method getSizePrefixedRootAsKeyValue (line 19) | static getSizePrefixedRootAsKeyValue(bb, obj) { method key (line 24) | key(optionalEncoding) { method value (line 29) | value(optionalEncoding) { method getFullyQualifiedName (line 34) | static getFullyQualifiedName() { method startKeyValue (line 37) | static startKeyValue(builder) { method addKey (line 40) | static addKey(builder, keyOffset) { method addValue (line 43) | static addValue(builder, valueOffset) { method endKeyValue (line 46) | static endKeyValue(builder) { method createKeyValue (line 51) | static createKeyValue(builder, keyOffset, valueOffset) { method unpack (line 57) | unpack() { method unpackTo (line 60) | unpackTo(_o) { class KeyValueT (line 65) | class KeyValueT { method constructor (line 66) | constructor(key = null, value = null) { method pack (line 70) | pack(builder) { FILE: tests/ts/reflection/key-value.ts class KeyValue (line 7) | class KeyValue implements flatbuffers.IUnpackableObject { method __init (line 10) | __init(i: number, bb: flatbuffers.ByteBuffer): KeyValue { method getRootAsKeyValue (line 16) | static getRootAsKeyValue( method getSizePrefixedRootAsKeyValue (line 26) | static getSizePrefixedRootAsKeyValue( method key (line 39) | key(optionalEncoding?: any): string | Uint8Array | null { method value (line 48) | value(optionalEncoding?: any): string | Uint8Array | null { method getFullyQualifiedName (line 55) | static getFullyQualifiedName(): string { method startKeyValue (line 59) | static startKeyValue(builder: flatbuffers.Builder) { method addKey (line 63) | static addKey(builder: flatbuffers.Builder, keyOffset: flatbuffers.Off... method addValue (line 67) | static addValue( method endKeyValue (line 74) | static endKeyValue(builder: flatbuffers.Builder): flatbuffers.Offset { method createKeyValue (line 80) | static createKeyValue( method unpack (line 91) | unpack(): KeyValueT { method unpackTo (line 95) | unpackTo(_o: KeyValueT): void { class KeyValueT (line 101) | class KeyValueT implements flatbuffers.IGeneratedObject { method constructor (line 102) | constructor( method pack (line 107) | pack(builder: flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/reflection/object.d.ts class Object_ (line 4) | class Object_ class Object_T (line 104) | class Object_T implements flatbuffers.IGeneratedObject { FILE: tests/ts/reflection/object.js class Object_ (line 9) | class Object_ { method constructor (line 10) | constructor() { method __init (line 14) | __init(i, bb) { method getRootAsObject (line 19) | static getRootAsObject(bb, obj) { method getSizePrefixedRootAsObject (line 23) | static getSizePrefixedRootAsObject(bb, obj) { method name (line 28) | name(optionalEncoding) { method fields (line 33) | fields(index, obj) { method fieldsLength (line 43) | fieldsLength() { method isStruct (line 47) | isStruct() { method mutate_is_struct (line 51) | mutate_is_struct(value) { method minalign (line 59) | minalign() { method mutate_minalign (line 63) | mutate_minalign(value) { method bytesize (line 71) | bytesize() { method mutate_bytesize (line 75) | mutate_bytesize(value) { method attributes (line 83) | attributes(index, obj) { method attributesLength (line 93) | attributesLength() { method documentation (line 97) | documentation(index, optionalEncoding) { method documentationLength (line 104) | documentationLength() { method declarationFile (line 108) | declarationFile(optionalEncoding) { method getFullyQualifiedName (line 113) | static getFullyQualifiedName() { method startObject (line 116) | static startObject(builder) { method addName (line 119) | static addName(builder, nameOffset) { method addFields (line 122) | static addFields(builder, fieldsOffset) { method createFieldsVector (line 125) | static createFieldsVector(builder, data) { method startFieldsVector (line 132) | static startFieldsVector(builder, numElems) { method addIsStruct (line 135) | static addIsStruct(builder, isStruct) { method addMinalign (line 138) | static addMinalign(builder, minalign) { method addBytesize (line 141) | static addBytesize(builder, bytesize) { method addAttributes (line 144) | static addAttributes(builder, attributesOffset) { method createAttributesVector (line 147) | static createAttributesVector(builder, data) { method startAttributesVector (line 154) | static startAttributesVector(builder, numElems) { method addDocumentation (line 157) | static addDocumentation(builder, documentationOffset) { method createDocumentationVector (line 160) | static createDocumentationVector(builder, data) { method startDocumentationVector (line 167) | static startDocumentationVector(builder, numElems) { method addDeclarationFile (line 170) | static addDeclarationFile(builder, declarationFileOffset) { method endObject (line 173) | static endObject(builder) { method createObject (line 179) | static createObject( method unpack (line 193) | unpack() { method unpackTo (line 204) | unpackTo(_o) { class Object_T (line 218) | class Object_T { method constructor (line 219) | constructor( method pack (line 231) | pack(builder) { FILE: tests/ts/reflection/object.ts class Object_ (line 10) | class Object_ implements flatbuffers.IUnpackableObject { method __init (line 13) | __init(i: number, bb: flatbuffers.ByteBuffer): Object_ { method getRootAsObject (line 19) | static getRootAsObject(bb: flatbuffers.ByteBuffer, obj?: Object_): Obj... method getSizePrefixedRootAsObject (line 26) | static getSizePrefixedRootAsObject( method name (line 39) | name(optionalEncoding?: any): string | Uint8Array | null { method fields (line 46) | fields(index: number, obj?: Field): Field | null { method fieldsLength (line 58) | fieldsLength(): number { method isStruct (line 63) | isStruct(): boolean { method mutate_is_struct (line 68) | mutate_is_struct(value: boolean): boolean { method minalign (line 79) | minalign(): number { method mutate_minalign (line 84) | mutate_minalign(value: number): boolean { method bytesize (line 95) | bytesize(): number { method mutate_bytesize (line 100) | mutate_bytesize(value: number): boolean { method attributes (line 111) | attributes(index: number, obj?: KeyValue): KeyValue | null { method attributesLength (line 123) | attributesLength(): number { method documentation (line 133) | documentation( method documentationLength (line 146) | documentationLength(): number { method declarationFile (line 158) | declarationFile(optionalEncoding?: any): string | Uint8Array | null { method getFullyQualifiedName (line 165) | static getFullyQualifiedName(): string { method startObject (line 169) | static startObject(builder: flatbuffers.Builder) { method addName (line 173) | static addName(builder: flatbuffers.Builder, nameOffset: flatbuffers.O... method addFields (line 177) | static addFields( method createFieldsVector (line 184) | static createFieldsVector( method startFieldsVector (line 195) | static startFieldsVector(builder: flatbuffers.Builder, numElems: numbe... method addIsStruct (line 199) | static addIsStruct(builder: flatbuffers.Builder, isStruct: boolean) { method addMinalign (line 203) | static addMinalign(builder: flatbuffers.Builder, minalign: number) { method addBytesize (line 207) | static addBytesize(builder: flatbuffers.Builder, bytesize: number) { method addAttributes (line 211) | static addAttributes( method createAttributesVector (line 218) | static createAttributesVector( method startAttributesVector (line 229) | static startAttributesVector(builder: flatbuffers.Builder, numElems: n... method addDocumentation (line 233) | static addDocumentation( method createDocumentationVector (line 240) | static createDocumentationVector( method startDocumentationVector (line 251) | static startDocumentationVector( method addDeclarationFile (line 258) | static addDeclarationFile( method endObject (line 265) | static endObject(builder: flatbuffers.Builder): flatbuffers.Offset { method createObject (line 272) | static createObject( method unpack (line 295) | unpack(): Object_T { method unpackTo (line 317) | unpackTo(_o: Object_T): void { class Object_T (line 338) | class Object_T implements flatbuffers.IGeneratedObject { method constructor (line 339) | constructor( method pack (line 350) | pack(builder: flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/reflection/rpccall.d.ts class RPCCall (line 4) | class RPCCall class RPCCallT (line 69) | class RPCCallT implements flatbuffers.IGeneratedObject { FILE: tests/ts/reflection/rpccall.js class RPCCall (line 9) | class RPCCall { method constructor (line 10) | constructor() { method __init (line 14) | __init(i, bb) { method getRootAsRPCCall (line 19) | static getRootAsRPCCall(bb, obj) { method getSizePrefixedRootAsRPCCall (line 23) | static getSizePrefixedRootAsRPCCall(bb, obj) { method name (line 28) | name(optionalEncoding) { method request (line 33) | request(obj) { method response (line 40) | response(obj) { method attributes (line 47) | attributes(index, obj) { method attributesLength (line 57) | attributesLength() { method documentation (line 61) | documentation(index, optionalEncoding) { method documentationLength (line 68) | documentationLength() { method getFullyQualifiedName (line 72) | static getFullyQualifiedName() { method startRPCCall (line 75) | static startRPCCall(builder) { method addName (line 78) | static addName(builder, nameOffset) { method addRequest (line 81) | static addRequest(builder, requestOffset) { method addResponse (line 84) | static addResponse(builder, responseOffset) { method addAttributes (line 87) | static addAttributes(builder, attributesOffset) { method createAttributesVector (line 90) | static createAttributesVector(builder, data) { method startAttributesVector (line 97) | static startAttributesVector(builder, numElems) { method addDocumentation (line 100) | static addDocumentation(builder, documentationOffset) { method createDocumentationVector (line 103) | static createDocumentationVector(builder, data) { method startDocumentationVector (line 110) | static startDocumentationVector(builder, numElems) { method endRPCCall (line 113) | static endRPCCall(builder) { method unpack (line 120) | unpack() { method unpackTo (line 129) | unpackTo(_o) { class RPCCallT (line 139) | class RPCCallT { method constructor (line 140) | constructor( method pack (line 149) | pack(builder) { FILE: tests/ts/reflection/rpccall.ts class RPCCall (line 10) | class RPCCall implements flatbuffers.IUnpackableObject { method __init (line 13) | __init(i: number, bb: flatbuffers.ByteBuffer): RPCCall { method getRootAsRPCCall (line 19) | static getRootAsRPCCall(bb: flatbuffers.ByteBuffer, obj?: RPCCall): RP... method getSizePrefixedRootAsRPCCall (line 26) | static getSizePrefixedRootAsRPCCall( method name (line 39) | name(optionalEncoding?: any): string | Uint8Array | null { method request (line 46) | request(obj?: Object_): Object_ | null { method response (line 56) | response(obj?: Object_): Object_ | null { method attributes (line 66) | attributes(index: number, obj?: KeyValue): KeyValue | null { method attributesLength (line 78) | attributesLength(): number { method documentation (line 88) | documentation( method documentationLength (line 101) | documentationLength(): number { method getFullyQualifiedName (line 106) | static getFullyQualifiedName(): string { method startRPCCall (line 110) | static startRPCCall(builder: flatbuffers.Builder) { method addName (line 114) | static addName(builder: flatbuffers.Builder, nameOffset: flatbuffers.O... method addRequest (line 118) | static addRequest( method addResponse (line 125) | static addResponse( method addAttributes (line 132) | static addAttributes( method createAttributesVector (line 139) | static createAttributesVector( method startAttributesVector (line 150) | static startAttributesVector(builder: flatbuffers.Builder, numElems: n... method addDocumentation (line 154) | static addDocumentation( method createDocumentationVector (line 161) | static createDocumentationVector( method startDocumentationVector (line 172) | static startDocumentationVector( method endRPCCall (line 179) | static endRPCCall(builder: flatbuffers.Builder): flatbuffers.Offset { method unpack (line 187) | unpack(): RPCCallT { method unpackTo (line 203) | unpackTo(_o: RPCCallT): void { class RPCCallT (line 218) | class RPCCallT implements flatbuffers.IGeneratedObject { method constructor (line 219) | constructor( method pack (line 227) | pack(builder: flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/reflection/schema-file.d.ts class SchemaFile (line 7) | class SchemaFile class SchemaFileT (line 62) | class SchemaFileT implements flatbuffers.IGeneratedObject { FILE: tests/ts/reflection/schema-file.js class SchemaFile (line 10) | class SchemaFile { method constructor (line 11) | constructor() { method __init (line 15) | __init(i, bb) { method getRootAsSchemaFile (line 20) | static getRootAsSchemaFile(bb, obj) { method getSizePrefixedRootAsSchemaFile (line 24) | static getSizePrefixedRootAsSchemaFile(bb, obj) { method filename (line 29) | filename(optionalEncoding) { method includedFilenames (line 34) | includedFilenames(index, optionalEncoding) { method includedFilenamesLength (line 41) | includedFilenamesLength() { method getFullyQualifiedName (line 45) | static getFullyQualifiedName() { method startSchemaFile (line 48) | static startSchemaFile(builder) { method addFilename (line 51) | static addFilename(builder, filenameOffset) { method addIncludedFilenames (line 54) | static addIncludedFilenames(builder, includedFilenamesOffset) { method createIncludedFilenamesVector (line 57) | static createIncludedFilenamesVector(builder, data) { method startIncludedFilenamesVector (line 64) | static startIncludedFilenamesVector(builder, numElems) { method endSchemaFile (line 67) | static endSchemaFile(builder) { method createSchemaFile (line 72) | static createSchemaFile(builder, filenameOffset, includedFilenamesOffs... method unpack (line 78) | unpack() { method unpackTo (line 84) | unpackTo(_o) { class SchemaFileT (line 90) | class SchemaFileT { method constructor (line 91) | constructor(filename = null, includedFilenames = []) { method pack (line 95) | pack(builder) { FILE: tests/ts/reflection/schema-file.ts class SchemaFile (line 12) | class SchemaFile implements flatbuffers.IUnpackableObject { method __init (line 15) | __init(i: number, bb: flatbuffers.ByteBuffer): SchemaFile { method getRootAsSchemaFile (line 21) | static getRootAsSchemaFile( method getSizePrefixedRootAsSchemaFile (line 31) | static getSizePrefixedRootAsSchemaFile( method filename (line 47) | filename(optionalEncoding?: any): string | Uint8Array | null { method includedFilenames (line 62) | includedFilenames( method includedFilenamesLength (line 75) | includedFilenamesLength(): number { method getFullyQualifiedName (line 80) | static getFullyQualifiedName(): string { method startSchemaFile (line 84) | static startSchemaFile(builder: flatbuffers.Builder) { method addFilename (line 88) | static addFilename( method addIncludedFilenames (line 95) | static addIncludedFilenames( method createIncludedFilenamesVector (line 102) | static createIncludedFilenamesVector( method startIncludedFilenamesVector (line 113) | static startIncludedFilenamesVector( method endSchemaFile (line 120) | static endSchemaFile(builder: flatbuffers.Builder): flatbuffers.Offset { method createSchemaFile (line 126) | static createSchemaFile( method unpack (line 137) | unpack(): SchemaFileT { method unpackTo (line 147) | unpackTo(_o: SchemaFileT): void { class SchemaFileT (line 156) | class SchemaFileT implements flatbuffers.IGeneratedObject { method constructor (line 157) | constructor( method pack (line 162) | pack(builder: flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/reflection/schema.d.ts class Schema (line 6) | class Schema implements flatbuffers.IUnpackableObject { class SchemaT (line 110) | class SchemaT implements flatbuffers.IGeneratedObject { FILE: tests/ts/reflection/schema.js class Schema (line 11) | class Schema { method constructor (line 12) | constructor() { method __init (line 16) | __init(i, bb) { method getRootAsSchema (line 21) | static getRootAsSchema(bb, obj) { method getSizePrefixedRootAsSchema (line 25) | static getSizePrefixedRootAsSchema(bb, obj) { method bufferHasIdentifier (line 30) | static bufferHasIdentifier(bb) { method objects (line 33) | objects(index, obj) { method objectsLength (line 43) | objectsLength() { method enums (line 47) | enums(index, obj) { method enumsLength (line 57) | enumsLength() { method fileIdent (line 61) | fileIdent(optionalEncoding) { method fileExt (line 66) | fileExt(optionalEncoding) { method rootTable (line 71) | rootTable(obj) { method services (line 78) | services(index, obj) { method servicesLength (line 88) | servicesLength() { method advancedFeatures (line 92) | advancedFeatures() { method mutate_advanced_features (line 96) | mutate_advanced_features(value) { method fbsFiles (line 108) | fbsFiles(index, obj) { method fbsFilesLength (line 118) | fbsFilesLength() { method getFullyQualifiedName (line 122) | static getFullyQualifiedName() { method startSchema (line 125) | static startSchema(builder) { method addObjects (line 128) | static addObjects(builder, objectsOffset) { method createObjectsVector (line 131) | static createObjectsVector(builder, data) { method startObjectsVector (line 138) | static startObjectsVector(builder, numElems) { method addEnums (line 141) | static addEnums(builder, enumsOffset) { method createEnumsVector (line 144) | static createEnumsVector(builder, data) { method startEnumsVector (line 151) | static startEnumsVector(builder, numElems) { method addFileIdent (line 154) | static addFileIdent(builder, fileIdentOffset) { method addFileExt (line 157) | static addFileExt(builder, fileExtOffset) { method addRootTable (line 160) | static addRootTable(builder, rootTableOffset) { method addServices (line 163) | static addServices(builder, servicesOffset) { method createServicesVector (line 166) | static createServicesVector(builder, data) { method startServicesVector (line 173) | static startServicesVector(builder, numElems) { method addAdvancedFeatures (line 176) | static addAdvancedFeatures(builder, advancedFeatures) { method addFbsFiles (line 179) | static addFbsFiles(builder, fbsFilesOffset) { method createFbsFilesVector (line 182) | static createFbsFilesVector(builder, data) { method startFbsFilesVector (line 189) | static startFbsFilesVector(builder, numElems) { method endSchema (line 192) | static endSchema(builder) { method finishSchemaBuffer (line 198) | static finishSchemaBuffer(builder, offset) { method finishSizePrefixedSchemaBuffer (line 201) | static finishSizePrefixedSchemaBuffer(builder, offset) { method unpack (line 204) | unpack() { method unpackTo (line 214) | unpackTo(_o) { class SchemaT (line 229) | class SchemaT { method constructor (line 230) | constructor( method pack (line 243) | pack(builder) { FILE: tests/ts/reflection/schema.ts class Schema (line 12) | class Schema implements flatbuffers.IUnpackableObject { method __init (line 15) | __init(i: number, bb: flatbuffers.ByteBuffer): Schema { method getRootAsSchema (line 21) | static getRootAsSchema(bb: flatbuffers.ByteBuffer, obj?: Schema): Sche... method getSizePrefixedRootAsSchema (line 28) | static getSizePrefixedRootAsSchema( method bufferHasIdentifier (line 39) | static bufferHasIdentifier(bb: flatbuffers.ByteBuffer): boolean { method objects (line 43) | objects(index: number, obj?: Object_): Object_ | null { method objectsLength (line 55) | objectsLength(): number { method enums (line 60) | enums(index: number, obj?: Enum): Enum | null { method enumsLength (line 72) | enumsLength(): number { method fileIdent (line 79) | fileIdent(optionalEncoding?: any): string | Uint8Array | null { method fileExt (line 88) | fileExt(optionalEncoding?: any): string | Uint8Array | null { method rootTable (line 95) | rootTable(obj?: Object_): Object_ | null { method services (line 105) | services(index: number, obj?: Service): Service | null { method servicesLength (line 117) | servicesLength(): number { method advancedFeatures (line 122) | advancedFeatures(): bigint { method mutate_advanced_features (line 127) | mutate_advanced_features(value: bigint): boolean { method fbsFiles (line 142) | fbsFiles(index: number, obj?: SchemaFile): SchemaFile | null { method fbsFilesLength (line 154) | fbsFilesLength(): number { method getFullyQualifiedName (line 159) | static getFullyQualifiedName(): string { method startSchema (line 163) | static startSchema(builder: flatbuffers.Builder) { method addObjects (line 167) | static addObjects( method createObjectsVector (line 174) | static createObjectsVector( method startObjectsVector (line 185) | static startObjectsVector(builder: flatbuffers.Builder, numElems: numb... method addEnums (line 189) | static addEnums( method createEnumsVector (line 196) | static createEnumsVector( method startEnumsVector (line 207) | static startEnumsVector(builder: flatbuffers.Builder, numElems: number) { method addFileIdent (line 211) | static addFileIdent( method addFileExt (line 218) | static addFileExt( method addRootTable (line 225) | static addRootTable( method addServices (line 232) | static addServices( method createServicesVector (line 239) | static createServicesVector( method startServicesVector (line 250) | static startServicesVector(builder: flatbuffers.Builder, numElems: num... method addAdvancedFeatures (line 254) | static addAdvancedFeatures( method addFbsFiles (line 261) | static addFbsFiles( method createFbsFilesVector (line 268) | static createFbsFilesVector( method startFbsFilesVector (line 279) | static startFbsFilesVector(builder: flatbuffers.Builder, numElems: num... method endSchema (line 283) | static endSchema(builder: flatbuffers.Builder): flatbuffers.Offset { method finishSchemaBuffer (line 290) | static finishSchemaBuffer( method finishSizePrefixedSchemaBuffer (line 297) | static finishSizePrefixedSchemaBuffer( method unpack (line 304) | unpack(): SchemaT { method unpackTo (line 329) | unpackTo(_o: SchemaT): void { class SchemaT (line 354) | class SchemaT implements flatbuffers.IGeneratedObject { method constructor (line 355) | constructor( method pack (line 366) | pack(builder: flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/reflection/service.d.ts class Service (line 4) | class Service class ServiceT (line 89) | class ServiceT implements flatbuffers.IGeneratedObject { FILE: tests/ts/reflection/service.js class Service (line 9) | class Service { method constructor (line 10) | constructor() { method __init (line 14) | __init(i, bb) { method getRootAsService (line 19) | static getRootAsService(bb, obj) { method getSizePrefixedRootAsService (line 23) | static getSizePrefixedRootAsService(bb, obj) { method name (line 28) | name(optionalEncoding) { method calls (line 33) | calls(index, obj) { method callsLength (line 43) | callsLength() { method attributes (line 47) | attributes(index, obj) { method attributesLength (line 57) | attributesLength() { method documentation (line 61) | documentation(index, optionalEncoding) { method documentationLength (line 68) | documentationLength() { method declarationFile (line 72) | declarationFile(optionalEncoding) { method getFullyQualifiedName (line 77) | static getFullyQualifiedName() { method startService (line 80) | static startService(builder) { method addName (line 83) | static addName(builder, nameOffset) { method addCalls (line 86) | static addCalls(builder, callsOffset) { method createCallsVector (line 89) | static createCallsVector(builder, data) { method startCallsVector (line 96) | static startCallsVector(builder, numElems) { method addAttributes (line 99) | static addAttributes(builder, attributesOffset) { method createAttributesVector (line 102) | static createAttributesVector(builder, data) { method startAttributesVector (line 109) | static startAttributesVector(builder, numElems) { method addDocumentation (line 112) | static addDocumentation(builder, documentationOffset) { method createDocumentationVector (line 115) | static createDocumentationVector(builder, data) { method startDocumentationVector (line 122) | static startDocumentationVector(builder, numElems) { method addDeclarationFile (line 125) | static addDeclarationFile(builder, declarationFileOffset) { method endService (line 128) | static endService(builder) { method createService (line 133) | static createService( method unpack (line 144) | unpack() { method unpackTo (line 154) | unpackTo(_o) { class ServiceT (line 164) | class ServiceT { method constructor (line 165) | constructor( method pack (line 174) | pack(builder) { FILE: tests/ts/reflection/service.ts class Service (line 10) | class Service implements flatbuffers.IUnpackableObject { method __init (line 13) | __init(i: number, bb: flatbuffers.ByteBuffer): Service { method getRootAsService (line 19) | static getRootAsService(bb: flatbuffers.ByteBuffer, obj?: Service): Se... method getSizePrefixedRootAsService (line 26) | static getSizePrefixedRootAsService( method name (line 39) | name(optionalEncoding?: any): string | Uint8Array | null { method calls (line 46) | calls(index: number, obj?: RPCCall): RPCCall | null { method callsLength (line 58) | callsLength(): number { method attributes (line 63) | attributes(index: number, obj?: KeyValue): KeyValue | null { method attributesLength (line 75) | attributesLength(): number { method documentation (line 85) | documentation( method documentationLength (line 98) | documentationLength(): number { method declarationFile (line 110) | declarationFile(optionalEncoding?: any): string | Uint8Array | null { method getFullyQualifiedName (line 117) | static getFullyQualifiedName(): string { method startService (line 121) | static startService(builder: flatbuffers.Builder) { method addName (line 125) | static addName(builder: flatbuffers.Builder, nameOffset: flatbuffers.O... method addCalls (line 129) | static addCalls( method createCallsVector (line 136) | static createCallsVector( method startCallsVector (line 147) | static startCallsVector(builder: flatbuffers.Builder, numElems: number) { method addAttributes (line 151) | static addAttributes( method createAttributesVector (line 158) | static createAttributesVector( method startAttributesVector (line 169) | static startAttributesVector(builder: flatbuffers.Builder, numElems: n... method addDocumentation (line 173) | static addDocumentation( method createDocumentationVector (line 180) | static createDocumentationVector( method startDocumentationVector (line 191) | static startDocumentationVector( method addDeclarationFile (line 198) | static addDeclarationFile( method endService (line 205) | static endService(builder: flatbuffers.Builder): flatbuffers.Offset { method createService (line 211) | static createService( method unpack (line 228) | unpack(): ServiceT { method unpackTo (line 247) | unpackTo(_o: ServiceT): void { class ServiceT (line 265) | class ServiceT implements flatbuffers.IGeneratedObject { method constructor (line 266) | constructor( method pack (line 274) | pack(builder: flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/reflection/type.d.ts class Type (line 3) | class Type implements flatbuffers.IUnpackableObject { class TypeT (line 57) | class TypeT implements flatbuffers.IGeneratedObject { FILE: tests/ts/reflection/type.js class Type (line 8) | class Type { method constructor (line 9) | constructor() { method __init (line 13) | __init(i, bb) { method getRootAsType (line 18) | static getRootAsType(bb, obj) { method getSizePrefixedRootAsType (line 22) | static getSizePrefixedRootAsType(bb, obj) { method baseType (line 27) | baseType() { method mutate_base_type (line 31) | mutate_base_type(value) { method element (line 39) | element() { method mutate_element (line 43) | mutate_element(value) { method index (line 51) | index() { method mutate_index (line 55) | mutate_index(value) { method fixedLength (line 63) | fixedLength() { method mutate_fixed_length (line 67) | mutate_fixed_length(value) { method baseSize (line 78) | baseSize() { method mutate_base_size (line 82) | mutate_base_size(value) { method elementSize (line 93) | elementSize() { method mutate_element_size (line 97) | mutate_element_size(value) { method getFullyQualifiedName (line 105) | static getFullyQualifiedName() { method startType (line 108) | static startType(builder) { method addBaseType (line 111) | static addBaseType(builder, baseType) { method addElement (line 114) | static addElement(builder, element) { method addIndex (line 117) | static addIndex(builder, index) { method addFixedLength (line 120) | static addFixedLength(builder, fixedLength) { method addBaseSize (line 123) | static addBaseSize(builder, baseSize) { method addElementSize (line 126) | static addElementSize(builder, elementSize) { method endType (line 129) | static endType(builder) { method createType (line 133) | static createType( method unpack (line 144) | unpack() { method unpackTo (line 149) | unpackTo(_o) { class TypeT (line 158) | class TypeT { method constructor (line 159) | constructor( method pack (line 169) | pack(builder) { FILE: tests/ts/reflection/type.ts class Type (line 9) | class Type implements flatbuffers.IUnpackableObject { method __init (line 12) | __init(i: number, bb: flatbuffers.ByteBuffer): Type { method getRootAsType (line 18) | static getRootAsType(bb: flatbuffers.ByteBuffer, obj?: Type): Type { method getSizePrefixedRootAsType (line 25) | static getSizePrefixedRootAsType( method baseType (line 36) | baseType(): BaseType { method mutate_base_type (line 41) | mutate_base_type(value: BaseType): boolean { method element (line 52) | element(): BaseType { method mutate_element (line 57) | mutate_element(value: BaseType): boolean { method index (line 68) | index(): number { method mutate_index (line 73) | mutate_index(value: number): boolean { method fixedLength (line 84) | fixedLength(): number { method mutate_fixed_length (line 89) | mutate_fixed_length(value: number): boolean { method baseSize (line 103) | baseSize(): number { method mutate_base_size (line 108) | mutate_base_size(value: number): boolean { method elementSize (line 122) | elementSize(): number { method mutate_element_size (line 127) | mutate_element_size(value: number): boolean { method getFullyQualifiedName (line 138) | static getFullyQualifiedName(): string { method startType (line 142) | static startType(builder: flatbuffers.Builder) { method addBaseType (line 146) | static addBaseType(builder: flatbuffers.Builder, baseType: BaseType) { method addElement (line 150) | static addElement(builder: flatbuffers.Builder, element: BaseType) { method addIndex (line 154) | static addIndex(builder: flatbuffers.Builder, index: number) { method addFixedLength (line 158) | static addFixedLength(builder: flatbuffers.Builder, fixedLength: numbe... method addBaseSize (line 162) | static addBaseSize(builder: flatbuffers.Builder, baseSize: number) { method addElementSize (line 166) | static addElementSize(builder: flatbuffers.Builder, elementSize: numbe... method endType (line 170) | static endType(builder: flatbuffers.Builder): flatbuffers.Offset { method createType (line 175) | static createType( method unpack (line 194) | unpack(): TypeT { method unpackTo (line 205) | unpackTo(_o: TypeT): void { class TypeT (line 215) | class TypeT implements flatbuffers.IGeneratedObject { method constructor (line 216) | constructor( method pack (line 225) | pack(builder: flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/reflection_generated.cjs method constructor (line 86) | constructor() { method __init (line 90) | __init(i, bb) { method getRootAsKeyValue (line 95) | static getRootAsKeyValue(bb, obj) { method getSizePrefixedRootAsKeyValue (line 98) | static getSizePrefixedRootAsKeyValue(bb, obj) { method key (line 102) | key(optionalEncoding) { method value (line 106) | value(optionalEncoding) { method getFullyQualifiedName (line 110) | static getFullyQualifiedName() { method startKeyValue (line 113) | static startKeyValue(builder) { method addKey (line 116) | static addKey(builder, keyOffset) { method addValue (line 119) | static addValue(builder, valueOffset) { method endKeyValue (line 122) | static endKeyValue(builder) { method createKeyValue (line 127) | static createKeyValue(builder, keyOffset, valueOffset) { method unpack (line 133) | unpack() { method unpackTo (line 136) | unpackTo(_o) { method constructor (line 142) | constructor(key = null, value = null) { method pack (line 146) | pack(builder) { method constructor (line 156) | constructor() { method __init (line 160) | __init(i, bb) { method getRootAsType (line 165) | static getRootAsType(bb, obj) { method getSizePrefixedRootAsType (line 168) | static getSizePrefixedRootAsType(bb, obj) { method baseType (line 172) | baseType() { method mutate_base_type (line 176) | mutate_base_type(value) { method element (line 184) | element() { method mutate_element (line 188) | mutate_element(value) { method index (line 196) | index() { method mutate_index (line 200) | mutate_index(value) { method fixedLength (line 208) | fixedLength() { method mutate_fixed_length (line 212) | mutate_fixed_length(value) { method baseSize (line 220) | baseSize() { method mutate_base_size (line 224) | mutate_base_size(value) { method elementSize (line 232) | elementSize() { method mutate_element_size (line 236) | mutate_element_size(value) { method getFullyQualifiedName (line 244) | static getFullyQualifiedName() { method startType (line 247) | static startType(builder) { method addBaseType (line 250) | static addBaseType(builder, baseType) { method addElement (line 253) | static addElement(builder, element) { method addIndex (line 256) | static addIndex(builder, index) { method addFixedLength (line 259) | static addFixedLength(builder, fixedLength) { method addBaseSize (line 262) | static addBaseSize(builder, baseSize) { method addElementSize (line 265) | static addElementSize(builder, elementSize) { method endType (line 268) | static endType(builder) { method createType (line 272) | static createType(builder, baseType, element, index, fixedLength, baseSi... method unpack (line 282) | unpack() { method unpackTo (line 285) | unpackTo(_o) { method constructor (line 295) | constructor(baseType = BaseType.None, element = BaseType.None, index = -... method pack (line 303) | pack(builder) { method constructor (line 310) | constructor() { method __init (line 314) | __init(i, bb) { method getRootAsEnumVal (line 319) | static getRootAsEnumVal(bb, obj) { method getSizePrefixedRootAsEnumVal (line 322) | static getSizePrefixedRootAsEnumVal(bb, obj) { method name (line 326) | name(optionalEncoding) { method value (line 330) | value() { method mutate_value (line 334) | mutate_value(value) { method unionType (line 342) | unionType(obj) { method documentation (line 346) | documentation(index, optionalEncoding) { method documentationLength (line 350) | documentationLength() { method attributes (line 354) | attributes(index, obj) { method attributesLength (line 358) | attributesLength() { method getFullyQualifiedName (line 362) | static getFullyQualifiedName() { method startEnumVal (line 365) | static startEnumVal(builder) { method addName (line 368) | static addName(builder, nameOffset) { method addValue (line 371) | static addValue(builder, value) { method addUnionType (line 374) | static addUnionType(builder, unionTypeOffset) { method addDocumentation (line 377) | static addDocumentation(builder, documentationOffset) { method createDocumentationVector (line 380) | static createDocumentationVector(builder, data) { method startDocumentationVector (line 387) | static startDocumentationVector(builder, numElems) { method addAttributes (line 390) | static addAttributes(builder, attributesOffset) { method createAttributesVector (line 393) | static createAttributesVector(builder, data) { method startAttributesVector (line 400) | static startAttributesVector(builder, numElems) { method endEnumVal (line 403) | static endEnumVal(builder) { method unpack (line 408) | unpack() { method unpackTo (line 411) | unpackTo(_o) { method constructor (line 420) | constructor(name = null, value = BigInt("0"), unionType = null, document... method pack (line 427) | pack(builder) { method constructor (line 444) | constructor() { method __init (line 448) | __init(i, bb) { method getRootAsEnum (line 453) | static getRootAsEnum(bb, obj) { method getSizePrefixedRootAsEnum (line 456) | static getSizePrefixedRootAsEnum(bb, obj) { method name (line 460) | name(optionalEncoding) { method values (line 464) | values(index, obj) { method valuesLength (line 468) | valuesLength() { method isUnion (line 472) | isUnion() { method mutate_is_union (line 476) | mutate_is_union(value) { method underlyingType (line 484) | underlyingType(obj) { method attributes (line 488) | attributes(index, obj) { method attributesLength (line 492) | attributesLength() { method documentation (line 496) | documentation(index, optionalEncoding) { method documentationLength (line 500) | documentationLength() { method declarationFile (line 504) | declarationFile(optionalEncoding) { method getFullyQualifiedName (line 508) | static getFullyQualifiedName() { method startEnum (line 511) | static startEnum(builder) { method addName (line 514) | static addName(builder, nameOffset) { method addValues (line 517) | static addValues(builder, valuesOffset) { method createValuesVector (line 520) | static createValuesVector(builder, data) { method startValuesVector (line 527) | static startValuesVector(builder, numElems) { method addIsUnion (line 530) | static addIsUnion(builder, isUnion) { method addUnderlyingType (line 533) | static addUnderlyingType(builder, underlyingTypeOffset) { method addAttributes (line 536) | static addAttributes(builder, attributesOffset) { method createAttributesVector (line 539) | static createAttributesVector(builder, data) { method startAttributesVector (line 546) | static startAttributesVector(builder, numElems) { method addDocumentation (line 549) | static addDocumentation(builder, documentationOffset) { method createDocumentationVector (line 552) | static createDocumentationVector(builder, data) { method startDocumentationVector (line 559) | static startDocumentationVector(builder, numElems) { method addDeclarationFile (line 562) | static addDeclarationFile(builder, declarationFileOffset) { method endEnum (line 565) | static endEnum(builder) { method unpack (line 572) | unpack() { method unpackTo (line 575) | unpackTo(_o) { method constructor (line 586) | constructor(name = null, values = [], isUnion = false, underlyingType = ... method pack (line 595) | pack(builder) { method constructor (line 617) | constructor() { method __init (line 621) | __init(i, bb) { method getRootAsField (line 626) | static getRootAsField(bb, obj) { method getSizePrefixedRootAsField (line 629) | static getSizePrefixedRootAsField(bb, obj) { method name (line 633) | name(optionalEncoding) { method type (line 637) | type(obj) { method id (line 641) | id() { method mutate_id (line 645) | mutate_id(value) { method offset (line 653) | offset() { method mutate_offset (line 657) | mutate_offset(value) { method defaultInteger (line 665) | defaultInteger() { method mutate_default_integer (line 669) | mutate_default_integer(value) { method defaultReal (line 677) | defaultReal() { method mutate_default_real (line 681) | mutate_default_real(value) { method deprecated (line 689) | deprecated() { method mutate_deprecated (line 693) | mutate_deprecated(value) { method required (line 701) | required() { method mutate_required (line 705) | mutate_required(value) { method key (line 713) | key() { method mutate_key (line 717) | mutate_key(value) { method attributes (line 725) | attributes(index, obj) { method attributesLength (line 729) | attributesLength() { method documentation (line 733) | documentation(index, optionalEncoding) { method documentationLength (line 737) | documentationLength() { method optional (line 741) | optional() { method mutate_optional (line 745) | mutate_optional(value) { method padding (line 753) | padding() { method mutate_padding (line 757) | mutate_padding(value) { method getFullyQualifiedName (line 765) | static getFullyQualifiedName() { method startField (line 768) | static startField(builder) { method addName (line 771) | static addName(builder, nameOffset) { method addType (line 774) | static addType(builder, typeOffset) { method addId (line 777) | static addId(builder, id) { method addOffset (line 780) | static addOffset(builder, offset) { method addDefaultInteger (line 783) | static addDefaultInteger(builder, defaultInteger) { method addDefaultReal (line 786) | static addDefaultReal(builder, defaultReal) { method addDeprecated (line 789) | static addDeprecated(builder, deprecated) { method addRequired (line 792) | static addRequired(builder, required) { method addKey (line 795) | static addKey(builder, key) { method addAttributes (line 798) | static addAttributes(builder, attributesOffset) { method createAttributesVector (line 801) | static createAttributesVector(builder, data) { method startAttributesVector (line 808) | static startAttributesVector(builder, numElems) { method addDocumentation (line 811) | static addDocumentation(builder, documentationOffset) { method createDocumentationVector (line 814) | static createDocumentationVector(builder, data) { method startDocumentationVector (line 821) | static startDocumentationVector(builder, numElems) { method addOptional (line 824) | static addOptional(builder, optional) { method addPadding (line 827) | static addPadding(builder, padding) { method endField (line 830) | static endField(builder) { method unpack (line 836) | unpack() { method unpackTo (line 839) | unpackTo(_o) { method constructor (line 856) | constructor(name = null, type = null, id = 0, offset = 0, defaultInteger... method pack (line 871) | pack(builder) { method constructor (line 897) | constructor() { method __init (line 901) | __init(i, bb) { method getRootAsObject (line 906) | static getRootAsObject(bb, obj) { method getSizePrefixedRootAsObject (line 909) | static getSizePrefixedRootAsObject(bb, obj) { method name (line 913) | name(optionalEncoding) { method fields (line 917) | fields(index, obj) { method fieldsLength (line 921) | fieldsLength() { method isStruct (line 925) | isStruct() { method mutate_is_struct (line 929) | mutate_is_struct(value) { method minalign (line 937) | minalign() { method mutate_minalign (line 941) | mutate_minalign(value) { method bytesize (line 949) | bytesize() { method mutate_bytesize (line 953) | mutate_bytesize(value) { method attributes (line 961) | attributes(index, obj) { method attributesLength (line 965) | attributesLength() { method documentation (line 969) | documentation(index, optionalEncoding) { method documentationLength (line 973) | documentationLength() { method declarationFile (line 977) | declarationFile(optionalEncoding) { method getFullyQualifiedName (line 981) | static getFullyQualifiedName() { method startObject (line 984) | static startObject(builder) { method addName (line 987) | static addName(builder, nameOffset) { method addFields (line 990) | static addFields(builder, fieldsOffset) { method createFieldsVector (line 993) | static createFieldsVector(builder, data) { method startFieldsVector (line 1000) | static startFieldsVector(builder, numElems) { method addIsStruct (line 1003) | static addIsStruct(builder, isStruct) { method addMinalign (line 1006) | static addMinalign(builder, minalign) { method addBytesize (line 1009) | static addBytesize(builder, bytesize) { method addAttributes (line 1012) | static addAttributes(builder, attributesOffset) { method createAttributesVector (line 1015) | static createAttributesVector(builder, data) { method startAttributesVector (line 1022) | static startAttributesVector(builder, numElems) { method addDocumentation (line 1025) | static addDocumentation(builder, documentationOffset) { method createDocumentationVector (line 1028) | static createDocumentationVector(builder, data) { method startDocumentationVector (line 1035) | static startDocumentationVector(builder, numElems) { method addDeclarationFile (line 1038) | static addDeclarationFile(builder, declarationFileOffset) { method endObject (line 1041) | static endObject(builder) { method createObject (line 1047) | static createObject(builder, nameOffset, fieldsOffset, isStruct, minalig... method unpack (line 1059) | unpack() { method unpackTo (line 1062) | unpackTo(_o) { method constructor (line 1074) | constructor(name = null, fields = [], isStruct = false, minalign = 0, by... method pack (line 1084) | pack(builder) { method constructor (line 1097) | constructor() { method __init (line 1101) | __init(i, bb) { method getRootAsRPCCall (line 1106) | static getRootAsRPCCall(bb, obj) { method getSizePrefixedRootAsRPCCall (line 1109) | static getSizePrefixedRootAsRPCCall(bb, obj) { method name (line 1113) | name(optionalEncoding) { method request (line 1117) | request(obj) { method response (line 1121) | response(obj) { method attributes (line 1125) | attributes(index, obj) { method attributesLength (line 1129) | attributesLength() { method documentation (line 1133) | documentation(index, optionalEncoding) { method documentationLength (line 1137) | documentationLength() { method getFullyQualifiedName (line 1141) | static getFullyQualifiedName() { method startRPCCall (line 1144) | static startRPCCall(builder) { method addName (line 1147) | static addName(builder, nameOffset) { method addRequest (line 1150) | static addRequest(builder, requestOffset) { method addResponse (line 1153) | static addResponse(builder, responseOffset) { method addAttributes (line 1156) | static addAttributes(builder, attributesOffset) { method createAttributesVector (line 1159) | static createAttributesVector(builder, data) { method startAttributesVector (line 1166) | static startAttributesVector(builder, numElems) { method addDocumentation (line 1169) | static addDocumentation(builder, documentationOffset) { method createDocumentationVector (line 1172) | static createDocumentationVector(builder, data) { method startDocumentationVector (line 1179) | static startDocumentationVector(builder, numElems) { method endRPCCall (line 1182) | static endRPCCall(builder) { method unpack (line 1189) | unpack() { method unpackTo (line 1192) | unpackTo(_o) { method constructor (line 1201) | constructor(name = null, request = null, response = null, attributes = [... method pack (line 1208) | pack(builder) { method constructor (line 1230) | constructor() { method __init (line 1234) | __init(i, bb) { method getRootAsSchemaFile (line 1239) | static getRootAsSchemaFile(bb, obj) { method getSizePrefixedRootAsSchemaFile (line 1242) | static getSizePrefixedRootAsSchemaFile(bb, obj) { method filename (line 1246) | filename(optionalEncoding) { method includedFilenames (line 1250) | includedFilenames(index, optionalEncoding) { method includedFilenamesLength (line 1254) | includedFilenamesLength() { method getFullyQualifiedName (line 1258) | static getFullyQualifiedName() { method startSchemaFile (line 1261) | static startSchemaFile(builder) { method addFilename (line 1264) | static addFilename(builder, filenameOffset) { method addIncludedFilenames (line 1267) | static addIncludedFilenames(builder, includedFilenamesOffset) { method createIncludedFilenamesVector (line 1270) | static createIncludedFilenamesVector(builder, data) { method startIncludedFilenamesVector (line 1277) | static startIncludedFilenamesVector(builder, numElems) { method endSchemaFile (line 1280) | static endSchemaFile(builder) { method createSchemaFile (line 1285) | static createSchemaFile(builder, filenameOffset, includedFilenamesOffset) { method unpack (line 1291) | unpack() { method unpackTo (line 1294) | unpackTo(_o) { method constructor (line 1300) | constructor(filename = null, includedFilenames = []) { method pack (line 1304) | pack(builder) { method constructor (line 1314) | constructor() { method __init (line 1318) | __init(i, bb) { method getRootAsService (line 1323) | static getRootAsService(bb, obj) { method getSizePrefixedRootAsService (line 1326) | static getSizePrefixedRootAsService(bb, obj) { method name (line 1330) | name(optionalEncoding) { method calls (line 1334) | calls(index, obj) { method callsLength (line 1338) | callsLength() { method attributes (line 1342) | attributes(index, obj) { method attributesLength (line 1346) | attributesLength() { method documentation (line 1350) | documentation(index, optionalEncoding) { method documentationLength (line 1354) | documentationLength() { method declarationFile (line 1358) | declarationFile(optionalEncoding) { method getFullyQualifiedName (line 1362) | static getFullyQualifiedName() { method startService (line 1365) | static startService(builder) { method addName (line 1368) | static addName(builder, nameOffset) { method addCalls (line 1371) | static addCalls(builder, callsOffset) { method createCallsVector (line 1374) | static createCallsVector(builder, data) { method startCallsVector (line 1381) | static startCallsVector(builder, numElems) { method addAttributes (line 1384) | static addAttributes(builder, attributesOffset) { method createAttributesVector (line 1387) | static createAttributesVector(builder, data) { method startAttributesVector (line 1394) | static startAttributesVector(builder, numElems) { method addDocumentation (line 1397) | static addDocumentation(builder, documentationOffset) { method createDocumentationVector (line 1400) | static createDocumentationVector(builder, data) { method startDocumentationVector (line 1407) | static startDocumentationVector(builder, numElems) { method addDeclarationFile (line 1410) | static addDeclarationFile(builder, declarationFileOffset) { method endService (line 1413) | static endService(builder) { method createService (line 1418) | static createService(builder, nameOffset, callsOffset, attributesOffset,... method unpack (line 1427) | unpack() { method unpackTo (line 1430) | unpackTo(_o) { method constructor (line 1439) | constructor(name = null, calls = [], attributes = [], documentation = []... method pack (line 1446) | pack(builder) { method constructor (line 1458) | constructor() { method __init (line 1462) | __init(i, bb) { method getRootAsSchema (line 1467) | static getRootAsSchema(bb, obj) { method getSizePrefixedRootAsSchema (line 1470) | static getSizePrefixedRootAsSchema(bb, obj) { method bufferHasIdentifier (line 1474) | static bufferHasIdentifier(bb) { method objects (line 1477) | objects(index, obj) { method objectsLength (line 1481) | objectsLength() { method enums (line 1485) | enums(index, obj) { method enumsLength (line 1489) | enumsLength() { method fileIdent (line 1493) | fileIdent(optionalEncoding) { method fileExt (line 1497) | fileExt(optionalEncoding) { method rootTable (line 1501) | rootTable(obj) { method services (line 1505) | services(index, obj) { method servicesLength (line 1509) | servicesLength() { method advancedFeatures (line 1513) | advancedFeatures() { method mutate_advanced_features (line 1517) | mutate_advanced_features(value) { method fbsFiles (line 1525) | fbsFiles(index, obj) { method fbsFilesLength (line 1529) | fbsFilesLength() { method getFullyQualifiedName (line 1533) | static getFullyQualifiedName() { method startSchema (line 1536) | static startSchema(builder) { method addObjects (line 1539) | static addObjects(builder, objectsOffset) { method createObjectsVector (line 1542) | static createObjectsVector(builder, data) { method startObjectsVector (line 1549) | static startObjectsVector(builder, numElems) { method addEnums (line 1552) | static addEnums(builder, enumsOffset) { method createEnumsVector (line 1555) | static createEnumsVector(builder, data) { method startEnumsVector (line 1562) | static startEnumsVector(builder, numElems) { method addFileIdent (line 1565) | static addFileIdent(builder, fileIdentOffset) { method addFileExt (line 1568) | static addFileExt(builder, fileExtOffset) { method addRootTable (line 1571) | static addRootTable(builder, rootTableOffset) { method addServices (line 1574) | static addServices(builder, servicesOffset) { method createServicesVector (line 1577) | static createServicesVector(builder, data) { method startServicesVector (line 1584) | static startServicesVector(builder, numElems) { method addAdvancedFeatures (line 1587) | static addAdvancedFeatures(builder, advancedFeatures) { method addFbsFiles (line 1590) | static addFbsFiles(builder, fbsFilesOffset) { method createFbsFilesVector (line 1593) | static createFbsFilesVector(builder, data) { method startFbsFilesVector (line 1600) | static startFbsFilesVector(builder, numElems) { method endSchema (line 1603) | static endSchema(builder) { method finishSchemaBuffer (line 1609) | static finishSchemaBuffer(builder, offset) { method finishSizePrefixedSchemaBuffer (line 1612) | static finishSizePrefixedSchemaBuffer(builder, offset) { method unpack (line 1615) | unpack() { method unpackTo (line 1618) | unpackTo(_o) { method constructor (line 1630) | constructor(objects = [], enums = [], fileIdent = null, fileExt = null, ... method pack (line 1640) | pack(builder) { FILE: tests/ts/required-strings/foo.js class Foo (line 3) | class Foo { method constructor (line 4) | constructor() { method __init (line 8) | __init(i, bb) { method getRootAsFoo (line 13) | static getRootAsFoo(bb, obj) { method getSizePrefixedRootAsFoo (line 17) | static getSizePrefixedRootAsFoo(bb, obj) { method strA (line 22) | strA(optionalEncoding) { method strB (line 27) | strB(optionalEncoding) { method startFoo (line 32) | static startFoo(builder) { method addStrA (line 35) | static addStrA(builder, strAOffset) { method addStrB (line 38) | static addStrB(builder, strBOffset) { method endFoo (line 41) | static endFoo(builder) { method createFoo (line 47) | static createFoo(builder, strAOffset, strBOffset) { FILE: tests/ts/required-strings/foo.ts class Foo (line 5) | class Foo { method __init (line 8) | __init(i: number, bb: flatbuffers.ByteBuffer): Foo { method getRootAsFoo (line 14) | static getRootAsFoo(bb: flatbuffers.ByteBuffer, obj?: Foo): Foo { method getSizePrefixedRootAsFoo (line 21) | static getSizePrefixedRootAsFoo(bb: flatbuffers.ByteBuffer, obj?: Foo)... method strA (line 31) | strA(optionalEncoding?: any): string | Uint8Array | null { method strB (line 40) | strB(optionalEncoding?: any): string | Uint8Array | null { method startFoo (line 47) | static startFoo(builder: flatbuffers.Builder) { method addStrA (line 51) | static addStrA(builder: flatbuffers.Builder, strAOffset: flatbuffers.O... method addStrB (line 55) | static addStrB(builder: flatbuffers.Builder, strBOffset: flatbuffers.O... method endFoo (line 59) | static endFoo(builder: flatbuffers.Builder): flatbuffers.Offset { method createFoo (line 66) | static createFoo( FILE: tests/ts/table-a.d.ts class TableA (line 3) | class TableA implements flatbuffers.IUnpackableObject { class TableAT (line 26) | class TableAT implements flatbuffers.IGeneratedObject { FILE: tests/ts/table-a.js class TableA (line 8) | class TableA { method constructor (line 9) | constructor() { method __init (line 13) | __init(i, bb) { method getRootAsTableA (line 18) | static getRootAsTableA(bb, obj) { method getSizePrefixedRootAsTableA (line 22) | static getSizePrefixedRootAsTableA(bb, obj) { method b (line 27) | b(obj) { method getFullyQualifiedName (line 34) | static getFullyQualifiedName() { method startTableA (line 37) | static startTableA(builder) { method addB (line 40) | static addB(builder, bOffset) { method endTableA (line 43) | static endTableA(builder) { method createTableA (line 47) | static createTableA(builder, bOffset) { method serialize (line 52) | serialize() { method deserialize (line 55) | static deserialize(buffer) { method unpack (line 58) | unpack() { method unpackTo (line 61) | unpackTo(_o) { class TableAT (line 65) | class TableAT { method constructor (line 66) | constructor(b = null) { method pack (line 69) | pack(builder) { FILE: tests/ts/table-a.ts class TableA (line 9) | class TableA implements flatbuffers.IUnpackableObject { method __init (line 12) | __init(i: number, bb: flatbuffers.ByteBuffer): TableA { method getRootAsTableA (line 18) | static getRootAsTableA(bb: flatbuffers.ByteBuffer, obj?: TableA): Tabl... method getSizePrefixedRootAsTableA (line 25) | static getSizePrefixedRootAsTableA( method b (line 36) | b(obj?: TableB): TableB | null { method getFullyQualifiedName (line 46) | static getFullyQualifiedName(): string { method startTableA (line 50) | static startTableA(builder: flatbuffers.Builder) { method addB (line 54) | static addB(builder: flatbuffers.Builder, bOffset: flatbuffers.Offset) { method endTableA (line 58) | static endTableA(builder: flatbuffers.Builder): flatbuffers.Offset { method createTableA (line 63) | static createTableA( method serialize (line 72) | serialize(): Uint8Array { method deserialize (line 76) | static deserialize(buffer: Uint8Array): TableA { method unpack (line 80) | unpack(): TableAT { method unpackTo (line 84) | unpackTo(_o: TableAT): void { class TableAT (line 89) | class TableAT implements flatbuffers.IGeneratedObject { method constructor (line 90) | constructor(public b: TableBT | null = null) {} method pack (line 92) | pack(builder: flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/test_dir/import_test.js function main (line 8) | function main() { FILE: tests/ts/ts-undefined-for-optionals/optional-scalars/optional-byte.ts type OptionalByte (line 5) | enum OptionalByte { FILE: tests/ts/ts-undefined-for-optionals/optional-scalars/scalar-stuff.ts class ScalarStuff (line 10) | class ScalarStuff implements flatbuffers.IUnpackableObject { method __init (line 13) | __init(i:number, bb:flatbuffers.ByteBuffer):ScalarStuff { method getRootAsScalarStuff (line 19) | static getRootAsScalarStuff(bb:flatbuffers.ByteBuffer, obj?:ScalarStuf... method getSizePrefixedRootAsScalarStuff (line 23) | static getSizePrefixedRootAsScalarStuff(bb:flatbuffers.ByteBuffer, obj... method bufferHasIdentifier (line 28) | static bufferHasIdentifier(bb:flatbuffers.ByteBuffer):boolean { method justI8 (line 32) | justI8():number { method maybeI8 (line 37) | maybeI8():number|undefined { method defaultI8 (line 42) | defaultI8():number { method justU8 (line 47) | justU8():number { method maybeU8 (line 52) | maybeU8():number|undefined { method defaultU8 (line 57) | defaultU8():number { method justI16 (line 62) | justI16():number { method maybeI16 (line 67) | maybeI16():number|undefined { method defaultI16 (line 72) | defaultI16():number { method justU16 (line 77) | justU16():number { method maybeU16 (line 82) | maybeU16():number|undefined { method defaultU16 (line 87) | defaultU16():number { method justI32 (line 92) | justI32():number { method maybeI32 (line 97) | maybeI32():number|undefined { method defaultI32 (line 102) | defaultI32():number { method justU32 (line 107) | justU32():number { method maybeU32 (line 112) | maybeU32():number|undefined { method defaultU32 (line 117) | defaultU32():number { method justI64 (line 122) | justI64():bigint { method maybeI64 (line 127) | maybeI64():bigint|undefined { method defaultI64 (line 132) | defaultI64():bigint { method justU64 (line 137) | justU64():bigint { method maybeU64 (line 142) | maybeU64():bigint|undefined { method defaultU64 (line 147) | defaultU64():bigint { method justF32 (line 152) | justF32():number { method maybeF32 (line 157) | maybeF32():number|undefined { method defaultF32 (line 162) | defaultF32():number { method justF64 (line 167) | justF64():number { method maybeF64 (line 172) | maybeF64():number|undefined { method defaultF64 (line 177) | defaultF64():number { method justBool (line 182) | justBool():boolean { method maybeBool (line 187) | maybeBool():boolean|undefined { method defaultBool (line 192) | defaultBool():boolean { method justEnum (line 197) | justEnum():OptionalByte { method maybeEnum (line 202) | maybeEnum():OptionalByte|undefined { method defaultEnum (line 207) | defaultEnum():OptionalByte { method startScalarStuff (line 212) | static startScalarStuff(builder:flatbuffers.Builder) { method addJustI8 (line 216) | static addJustI8(builder:flatbuffers.Builder, justI8:number) { method addMaybeI8 (line 220) | static addMaybeI8(builder:flatbuffers.Builder, maybeI8:number) { method addDefaultI8 (line 224) | static addDefaultI8(builder:flatbuffers.Builder, defaultI8:number) { method addJustU8 (line 228) | static addJustU8(builder:flatbuffers.Builder, justU8:number) { method addMaybeU8 (line 232) | static addMaybeU8(builder:flatbuffers.Builder, maybeU8:number) { method addDefaultU8 (line 236) | static addDefaultU8(builder:flatbuffers.Builder, defaultU8:number) { method addJustI16 (line 240) | static addJustI16(builder:flatbuffers.Builder, justI16:number) { method addMaybeI16 (line 244) | static addMaybeI16(builder:flatbuffers.Builder, maybeI16:number) { method addDefaultI16 (line 248) | static addDefaultI16(builder:flatbuffers.Builder, defaultI16:number) { method addJustU16 (line 252) | static addJustU16(builder:flatbuffers.Builder, justU16:number) { method addMaybeU16 (line 256) | static addMaybeU16(builder:flatbuffers.Builder, maybeU16:number) { method addDefaultU16 (line 260) | static addDefaultU16(builder:flatbuffers.Builder, defaultU16:number) { method addJustI32 (line 264) | static addJustI32(builder:flatbuffers.Builder, justI32:number) { method addMaybeI32 (line 268) | static addMaybeI32(builder:flatbuffers.Builder, maybeI32:number) { method addDefaultI32 (line 272) | static addDefaultI32(builder:flatbuffers.Builder, defaultI32:number) { method addJustU32 (line 276) | static addJustU32(builder:flatbuffers.Builder, justU32:number) { method addMaybeU32 (line 280) | static addMaybeU32(builder:flatbuffers.Builder, maybeU32:number) { method addDefaultU32 (line 284) | static addDefaultU32(builder:flatbuffers.Builder, defaultU32:number) { method addJustI64 (line 288) | static addJustI64(builder:flatbuffers.Builder, justI64:bigint) { method addMaybeI64 (line 292) | static addMaybeI64(builder:flatbuffers.Builder, maybeI64:bigint) { method addDefaultI64 (line 296) | static addDefaultI64(builder:flatbuffers.Builder, defaultI64:bigint) { method addJustU64 (line 300) | static addJustU64(builder:flatbuffers.Builder, justU64:bigint) { method addMaybeU64 (line 304) | static addMaybeU64(builder:flatbuffers.Builder, maybeU64:bigint) { method addDefaultU64 (line 308) | static addDefaultU64(builder:flatbuffers.Builder, defaultU64:bigint) { method addJustF32 (line 312) | static addJustF32(builder:flatbuffers.Builder, justF32:number) { method addMaybeF32 (line 316) | static addMaybeF32(builder:flatbuffers.Builder, maybeF32:number) { method addDefaultF32 (line 320) | static addDefaultF32(builder:flatbuffers.Builder, defaultF32:number) { method addJustF64 (line 324) | static addJustF64(builder:flatbuffers.Builder, justF64:number) { method addMaybeF64 (line 328) | static addMaybeF64(builder:flatbuffers.Builder, maybeF64:number) { method addDefaultF64 (line 332) | static addDefaultF64(builder:flatbuffers.Builder, defaultF64:number) { method addJustBool (line 336) | static addJustBool(builder:flatbuffers.Builder, justBool:boolean) { method addMaybeBool (line 340) | static addMaybeBool(builder:flatbuffers.Builder, maybeBool:boolean) { method addDefaultBool (line 344) | static addDefaultBool(builder:flatbuffers.Builder, defaultBool:boolean) { method addJustEnum (line 348) | static addJustEnum(builder:flatbuffers.Builder, justEnum:OptionalByte) { method addMaybeEnum (line 352) | static addMaybeEnum(builder:flatbuffers.Builder, maybeEnum:OptionalByt... method addDefaultEnum (line 356) | static addDefaultEnum(builder:flatbuffers.Builder, defaultEnum:Optiona... method endScalarStuff (line 360) | static endScalarStuff(builder:flatbuffers.Builder):flatbuffers.Offset { method finishScalarStuffBuffer (line 365) | static finishScalarStuffBuffer(builder:flatbuffers.Builder, offset:fla... method finishSizePrefixedScalarStuffBuffer (line 369) | static finishSizePrefixedScalarStuffBuffer(builder:flatbuffers.Builder... method createScalarStuff (line 373) | static createScalarStuff(builder:flatbuffers.Builder, justI8:number, m... method unpack (line 426) | unpack(): ScalarStuffT { method unpackTo (line 468) | unpackTo(_o: ScalarStuffT): void { class ScalarStuffT (line 508) | class ScalarStuffT implements flatbuffers.IGeneratedObject { method constructor (line 509) | constructor( method pack (line 549) | pack(builder:flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/ts-undefined-for-optionals/optional_scalars_generated.cjs method constructor (line 56) | constructor() { method __init (line 60) | __init(i, bb) { method getRootAsScalarStuff (line 65) | static getRootAsScalarStuff(bb, obj) { method getSizePrefixedRootAsScalarStuff (line 68) | static getSizePrefixedRootAsScalarStuff(bb, obj) { method bufferHasIdentifier (line 72) | static bufferHasIdentifier(bb) { method justI8 (line 75) | justI8() { method maybeI8 (line 79) | maybeI8() { method defaultI8 (line 83) | defaultI8() { method justU8 (line 87) | justU8() { method maybeU8 (line 91) | maybeU8() { method defaultU8 (line 95) | defaultU8() { method justI16 (line 99) | justI16() { method maybeI16 (line 103) | maybeI16() { method defaultI16 (line 107) | defaultI16() { method justU16 (line 111) | justU16() { method maybeU16 (line 115) | maybeU16() { method defaultU16 (line 119) | defaultU16() { method justI32 (line 123) | justI32() { method maybeI32 (line 127) | maybeI32() { method defaultI32 (line 131) | defaultI32() { method justU32 (line 135) | justU32() { method maybeU32 (line 139) | maybeU32() { method defaultU32 (line 143) | defaultU32() { method justI64 (line 147) | justI64() { method maybeI64 (line 151) | maybeI64() { method defaultI64 (line 155) | defaultI64() { method justU64 (line 159) | justU64() { method maybeU64 (line 163) | maybeU64() { method defaultU64 (line 167) | defaultU64() { method justF32 (line 171) | justF32() { method maybeF32 (line 175) | maybeF32() { method defaultF32 (line 179) | defaultF32() { method justF64 (line 183) | justF64() { method maybeF64 (line 187) | maybeF64() { method defaultF64 (line 191) | defaultF64() { method justBool (line 195) | justBool() { method maybeBool (line 199) | maybeBool() { method defaultBool (line 203) | defaultBool() { method justEnum (line 207) | justEnum() { method maybeEnum (line 211) | maybeEnum() { method defaultEnum (line 215) | defaultEnum() { method startScalarStuff (line 219) | static startScalarStuff(builder) { method addJustI8 (line 222) | static addJustI8(builder, justI8) { method addMaybeI8 (line 225) | static addMaybeI8(builder, maybeI8) { method addDefaultI8 (line 228) | static addDefaultI8(builder, defaultI8) { method addJustU8 (line 231) | static addJustU8(builder, justU8) { method addMaybeU8 (line 234) | static addMaybeU8(builder, maybeU8) { method addDefaultU8 (line 237) | static addDefaultU8(builder, defaultU8) { method addJustI16 (line 240) | static addJustI16(builder, justI16) { method addMaybeI16 (line 243) | static addMaybeI16(builder, maybeI16) { method addDefaultI16 (line 246) | static addDefaultI16(builder, defaultI16) { method addJustU16 (line 249) | static addJustU16(builder, justU16) { method addMaybeU16 (line 252) | static addMaybeU16(builder, maybeU16) { method addDefaultU16 (line 255) | static addDefaultU16(builder, defaultU16) { method addJustI32 (line 258) | static addJustI32(builder, justI32) { method addMaybeI32 (line 261) | static addMaybeI32(builder, maybeI32) { method addDefaultI32 (line 264) | static addDefaultI32(builder, defaultI32) { method addJustU32 (line 267) | static addJustU32(builder, justU32) { method addMaybeU32 (line 270) | static addMaybeU32(builder, maybeU32) { method addDefaultU32 (line 273) | static addDefaultU32(builder, defaultU32) { method addJustI64 (line 276) | static addJustI64(builder, justI64) { method addMaybeI64 (line 279) | static addMaybeI64(builder, maybeI64) { method addDefaultI64 (line 282) | static addDefaultI64(builder, defaultI64) { method addJustU64 (line 285) | static addJustU64(builder, justU64) { method addMaybeU64 (line 288) | static addMaybeU64(builder, maybeU64) { method addDefaultU64 (line 291) | static addDefaultU64(builder, defaultU64) { method addJustF32 (line 294) | static addJustF32(builder, justF32) { method addMaybeF32 (line 297) | static addMaybeF32(builder, maybeF32) { method addDefaultF32 (line 300) | static addDefaultF32(builder, defaultF32) { method addJustF64 (line 303) | static addJustF64(builder, justF64) { method addMaybeF64 (line 306) | static addMaybeF64(builder, maybeF64) { method addDefaultF64 (line 309) | static addDefaultF64(builder, defaultF64) { method addJustBool (line 312) | static addJustBool(builder, justBool) { method addMaybeBool (line 315) | static addMaybeBool(builder, maybeBool) { method addDefaultBool (line 318) | static addDefaultBool(builder, defaultBool) { method addJustEnum (line 321) | static addJustEnum(builder, justEnum) { method addMaybeEnum (line 324) | static addMaybeEnum(builder, maybeEnum) { method addDefaultEnum (line 327) | static addDefaultEnum(builder, defaultEnum) { method endScalarStuff (line 330) | static endScalarStuff(builder) { method finishScalarStuffBuffer (line 334) | static finishScalarStuffBuffer(builder, offset) { method finishSizePrefixedScalarStuffBuffer (line 337) | static finishSizePrefixedScalarStuffBuffer(builder, offset) { method createScalarStuff (line 340) | static createScalarStuff(builder, justI8, maybeI8, defaultI8, justU8, ma... method unpack (line 392) | unpack() { method unpackTo (line 432) | unpackTo(_o) { method constructor (line 472) | constructor(justI8 = 0, maybeI8 = void 0, defaultI8 = 42, justU8 = 0, ma... method pack (line 510) | pack(builder) { FILE: tests/ts/typescript/class.d.ts type class_ (line 1) | enum class_ { FILE: tests/ts/typescript/class.ts type class_ (line 5) | enum class_ { FILE: tests/ts/typescript/object.d.ts class Object_ (line 6) | class Object_ class Object_T (line 46) | class Object_T implements flatbuffers.IGeneratedObject { FILE: tests/ts/typescript/object.js class Object_ (line 11) | class Object_ { method constructor (line 12) | constructor() { method __init (line 16) | __init(i, bb) { method getRootAsObject (line 21) | static getRootAsObject(bb, obj) { method getSizePrefixedRootAsObject (line 25) | static getSizePrefixedRootAsObject(bb, obj) { method return_ (line 30) | return_() { method mutate_return (line 34) | mutate_return(value) { method if_ (line 42) | if_() { method mutate_if (line 46) | mutate_if(value) { method switch_ (line 54) | switch_() { method mutate_switch (line 58) | mutate_switch(value) { method enum_ (line 66) | enum_() { method mutate_enum (line 70) | mutate_enum(value) { method enum2 (line 78) | enum2() { method mutate_enum2 (line 83) | mutate_enum2(value) { method enum3 (line 91) | enum3() { method mutate_enum3 (line 95) | mutate_enum3(value) { method reflect (line 103) | reflect(obj) { method getFullyQualifiedName (line 110) | static getFullyQualifiedName() { method startObject (line 113) | static startObject(builder) { method addReturn (line 116) | static addReturn(builder, return_) { method addIf (line 119) | static addIf(builder, if_) { method addSwitch (line 122) | static addSwitch(builder, switch_) { method addEnum (line 125) | static addEnum(builder, enum_) { method addEnum2 (line 128) | static addEnum2(builder, enum2) { method addEnum3 (line 131) | static addEnum3(builder, enum3) { method addReflect (line 134) | static addReflect(builder, reflectOffset) { method endObject (line 137) | static endObject(builder) { method unpack (line 141) | unpack() { method unpackTo (line 147) | unpackTo(_o) { class Object_T (line 157) | class Object_T { method constructor (line 158) | constructor( method pack (line 169) | pack(builder) { FILE: tests/ts/typescript/object.ts class Object_ (line 12) | class Object_ implements flatbuffers.IUnpackableObject { method __init (line 15) | __init(i: number, bb: flatbuffers.ByteBuffer): Object_ { method getRootAsObject (line 21) | static getRootAsObject(bb: flatbuffers.ByteBuffer, obj?: Object_): Obj... method getSizePrefixedRootAsObject (line 28) | static getSizePrefixedRootAsObject( method return_ (line 39) | return_(): number { method mutate_return (line 44) | mutate_return(value: number): boolean { method if_ (line 55) | if_(): number { method mutate_if (line 60) | mutate_if(value: number): boolean { method switch_ (line 71) | switch_(): number { method mutate_switch (line 76) | mutate_switch(value: number): boolean { method enum_ (line 87) | enum_(): class_ { method mutate_enum (line 92) | mutate_enum(value: class_): boolean { method enum2 (line 103) | enum2(): foobar_class_ { method mutate_enum2 (line 110) | mutate_enum2(value: foobar_class_): boolean { method enum3 (line 121) | enum3(): Abc { method mutate_enum3 (line 126) | mutate_enum3(value: Abc): boolean { method reflect (line 137) | reflect(obj?: Schema): Schema | null { method getFullyQualifiedName (line 147) | static getFullyQualifiedName(): string { method startObject (line 151) | static startObject(builder: flatbuffers.Builder) { method addReturn (line 155) | static addReturn(builder: flatbuffers.Builder, return_: number) { method addIf (line 159) | static addIf(builder: flatbuffers.Builder, if_: number) { method addSwitch (line 163) | static addSwitch(builder: flatbuffers.Builder, switch_: number) { method addEnum (line 167) | static addEnum(builder: flatbuffers.Builder, enum_: class_) { method addEnum2 (line 171) | static addEnum2(builder: flatbuffers.Builder, enum2: foobar_class_) { method addEnum3 (line 175) | static addEnum3(builder: flatbuffers.Builder, enum3: Abc) { method addReflect (line 179) | static addReflect( method endObject (line 186) | static endObject(builder: flatbuffers.Builder): flatbuffers.Offset { method unpack (line 191) | unpack(): Object_T { method unpackTo (line 203) | unpackTo(_o: Object_T): void { class Object_T (line 214) | class Object_T implements flatbuffers.IGeneratedObject { method constructor (line 215) | constructor( method pack (line 225) | pack(builder: flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/typescript_keywords_generated.cjs method constructor (line 120) | constructor() { method __init (line 124) | __init(i, bb) { method getRootAsKeyValue (line 129) | static getRootAsKeyValue(bb, obj) { method getSizePrefixedRootAsKeyValue (line 132) | static getSizePrefixedRootAsKeyValue(bb, obj) { method key (line 136) | key(optionalEncoding) { method value (line 140) | value(optionalEncoding) { method getFullyQualifiedName (line 144) | static getFullyQualifiedName() { method startKeyValue (line 147) | static startKeyValue(builder) { method addKey (line 150) | static addKey(builder, keyOffset) { method addValue (line 153) | static addValue(builder, valueOffset) { method endKeyValue (line 156) | static endKeyValue(builder) { method createKeyValue (line 161) | static createKeyValue(builder, keyOffset, valueOffset) { method unpack (line 167) | unpack() { method unpackTo (line 170) | unpackTo(_o) { method constructor (line 176) | constructor(key = null, value = null) { method pack (line 180) | pack(builder) { method constructor (line 190) | constructor() { method __init (line 194) | __init(i, bb) { method getRootAsType (line 199) | static getRootAsType(bb, obj) { method getSizePrefixedRootAsType (line 202) | static getSizePrefixedRootAsType(bb, obj) { method baseType (line 206) | baseType() { method mutate_base_type (line 210) | mutate_base_type(value) { method element (line 218) | element() { method mutate_element (line 222) | mutate_element(value) { method index (line 230) | index() { method mutate_index (line 234) | mutate_index(value) { method fixedLength (line 242) | fixedLength() { method mutate_fixed_length (line 246) | mutate_fixed_length(value) { method baseSize (line 257) | baseSize() { method mutate_base_size (line 261) | mutate_base_size(value) { method elementSize (line 272) | elementSize() { method mutate_element_size (line 276) | mutate_element_size(value) { method getFullyQualifiedName (line 284) | static getFullyQualifiedName() { method startType (line 287) | static startType(builder) { method addBaseType (line 290) | static addBaseType(builder, baseType) { method addElement (line 293) | static addElement(builder, element) { method addIndex (line 296) | static addIndex(builder, index) { method addFixedLength (line 299) | static addFixedLength(builder, fixedLength) { method addBaseSize (line 302) | static addBaseSize(builder, baseSize) { method addElementSize (line 305) | static addElementSize(builder, elementSize) { method endType (line 308) | static endType(builder) { method createType (line 312) | static createType(builder, baseType, element, index, fixedLength, baseSi... method unpack (line 322) | unpack() { method unpackTo (line 325) | unpackTo(_o) { method constructor (line 335) | constructor(baseType = BaseType.None, element = BaseType.None, index = -... method pack (line 343) | pack(builder) { method constructor (line 350) | constructor() { method __init (line 354) | __init(i, bb) { method getRootAsEnumVal (line 359) | static getRootAsEnumVal(bb, obj) { method getSizePrefixedRootAsEnumVal (line 362) | static getSizePrefixedRootAsEnumVal(bb, obj) { method name (line 366) | name(optionalEncoding) { method value (line 370) | value() { method mutate_value (line 374) | mutate_value(value) { method unionType (line 382) | unionType(obj) { method documentation (line 386) | documentation(index, optionalEncoding) { method documentationLength (line 390) | documentationLength() { method attributes (line 394) | attributes(index, obj) { method attributesLength (line 398) | attributesLength() { method getFullyQualifiedName (line 402) | static getFullyQualifiedName() { method startEnumVal (line 405) | static startEnumVal(builder) { method addName (line 408) | static addName(builder, nameOffset) { method addValue (line 411) | static addValue(builder, value) { method addUnionType (line 414) | static addUnionType(builder, unionTypeOffset) { method addDocumentation (line 417) | static addDocumentation(builder, documentationOffset) { method createDocumentationVector (line 420) | static createDocumentationVector(builder, data) { method startDocumentationVector (line 427) | static startDocumentationVector(builder, numElems) { method addAttributes (line 430) | static addAttributes(builder, attributesOffset) { method createAttributesVector (line 433) | static createAttributesVector(builder, data) { method startAttributesVector (line 440) | static startAttributesVector(builder, numElems) { method endEnumVal (line 443) | static endEnumVal(builder) { method unpack (line 448) | unpack() { method unpackTo (line 451) | unpackTo(_o) { method constructor (line 460) | constructor(name = null, value = BigInt("0"), unionType = null, document... method pack (line 467) | pack(builder) { method constructor (line 484) | constructor() { method __init (line 488) | __init(i, bb) { method getRootAsEnum (line 493) | static getRootAsEnum(bb, obj) { method getSizePrefixedRootAsEnum (line 496) | static getSizePrefixedRootAsEnum(bb, obj) { method name (line 500) | name(optionalEncoding) { method values (line 504) | values(index, obj) { method valuesLength (line 508) | valuesLength() { method isUnion (line 512) | isUnion() { method mutate_is_union (line 516) | mutate_is_union(value) { method underlyingType (line 524) | underlyingType(obj) { method attributes (line 528) | attributes(index, obj) { method attributesLength (line 532) | attributesLength() { method documentation (line 536) | documentation(index, optionalEncoding) { method documentationLength (line 540) | documentationLength() { method declarationFile (line 544) | declarationFile(optionalEncoding) { method getFullyQualifiedName (line 548) | static getFullyQualifiedName() { method startEnum (line 551) | static startEnum(builder) { method addName (line 554) | static addName(builder, nameOffset) { method addValues (line 557) | static addValues(builder, valuesOffset) { method createValuesVector (line 560) | static createValuesVector(builder, data) { method startValuesVector (line 567) | static startValuesVector(builder, numElems) { method addIsUnion (line 570) | static addIsUnion(builder, isUnion) { method addUnderlyingType (line 573) | static addUnderlyingType(builder, underlyingTypeOffset) { method addAttributes (line 576) | static addAttributes(builder, attributesOffset) { method createAttributesVector (line 579) | static createAttributesVector(builder, data) { method startAttributesVector (line 586) | static startAttributesVector(builder, numElems) { method addDocumentation (line 589) | static addDocumentation(builder, documentationOffset) { method createDocumentationVector (line 592) | static createDocumentationVector(builder, data) { method startDocumentationVector (line 599) | static startDocumentationVector(builder, numElems) { method addDeclarationFile (line 602) | static addDeclarationFile(builder, declarationFileOffset) { method endEnum (line 605) | static endEnum(builder) { method unpack (line 612) | unpack() { method unpackTo (line 615) | unpackTo(_o) { method constructor (line 626) | constructor(name = null, values = [], isUnion = false, underlyingType = ... method pack (line 635) | pack(builder) { method constructor (line 657) | constructor() { method __init (line 661) | __init(i, bb) { method getRootAsField (line 666) | static getRootAsField(bb, obj) { method getSizePrefixedRootAsField (line 669) | static getSizePrefixedRootAsField(bb, obj) { method name (line 673) | name(optionalEncoding) { method type (line 677) | type(obj) { method id (line 681) | id() { method mutate_id (line 685) | mutate_id(value) { method offset (line 693) | offset() { method mutate_offset (line 697) | mutate_offset(value) { method defaultInteger (line 705) | defaultInteger() { method mutate_default_integer (line 709) | mutate_default_integer(value) { method defaultReal (line 717) | defaultReal() { method mutate_default_real (line 721) | mutate_default_real(value) { method deprecated (line 729) | deprecated() { method mutate_deprecated (line 733) | mutate_deprecated(value) { method required (line 741) | required() { method mutate_required (line 745) | mutate_required(value) { method key (line 753) | key() { method mutate_key (line 757) | mutate_key(value) { method attributes (line 765) | attributes(index, obj) { method attributesLength (line 769) | attributesLength() { method documentation (line 773) | documentation(index, optionalEncoding) { method documentationLength (line 777) | documentationLength() { method optional (line 781) | optional() { method mutate_optional (line 785) | mutate_optional(value) { method padding (line 796) | padding() { method mutate_padding (line 800) | mutate_padding(value) { method offset64 (line 811) | offset64() { method mutate_offset64 (line 815) | mutate_offset64(value) { method getFullyQualifiedName (line 823) | static getFullyQualifiedName() { method startField (line 826) | static startField(builder) { method addName (line 829) | static addName(builder, nameOffset) { method addType (line 832) | static addType(builder, typeOffset) { method addId (line 835) | static addId(builder, id) { method addOffset (line 838) | static addOffset(builder, offset) { method addDefaultInteger (line 841) | static addDefaultInteger(builder, defaultInteger) { method addDefaultReal (line 844) | static addDefaultReal(builder, defaultReal) { method addDeprecated (line 847) | static addDeprecated(builder, deprecated) { method addRequired (line 850) | static addRequired(builder, required) { method addKey (line 853) | static addKey(builder, key) { method addAttributes (line 856) | static addAttributes(builder, attributesOffset) { method createAttributesVector (line 859) | static createAttributesVector(builder, data) { method startAttributesVector (line 866) | static startAttributesVector(builder, numElems) { method addDocumentation (line 869) | static addDocumentation(builder, documentationOffset) { method createDocumentationVector (line 872) | static createDocumentationVector(builder, data) { method startDocumentationVector (line 879) | static startDocumentationVector(builder, numElems) { method addOptional (line 882) | static addOptional(builder, optional) { method addPadding (line 885) | static addPadding(builder, padding) { method addOffset64 (line 888) | static addOffset64(builder, offset64) { method endField (line 891) | static endField(builder) { method unpack (line 897) | unpack() { method unpackTo (line 900) | unpackTo(_o) { method constructor (line 918) | constructor(name = null, type = null, id = 0, offset = 0, defaultInteger... method pack (line 934) | pack(builder) { method constructor (line 961) | constructor() { method __init (line 965) | __init(i, bb) { method getRootAsObject (line 970) | static getRootAsObject(bb, obj) { method getSizePrefixedRootAsObject (line 973) | static getSizePrefixedRootAsObject(bb, obj) { method name (line 977) | name(optionalEncoding) { method fields (line 981) | fields(index, obj) { method fieldsLength (line 985) | fieldsLength() { method isStruct (line 989) | isStruct() { method mutate_is_struct (line 993) | mutate_is_struct(value) { method minalign (line 1001) | minalign() { method mutate_minalign (line 1005) | mutate_minalign(value) { method bytesize (line 1013) | bytesize() { method mutate_bytesize (line 1017) | mutate_bytesize(value) { method attributes (line 1025) | attributes(index, obj) { method attributesLength (line 1029) | attributesLength() { method documentation (line 1033) | documentation(index, optionalEncoding) { method documentationLength (line 1037) | documentationLength() { method declarationFile (line 1041) | declarationFile(optionalEncoding) { method getFullyQualifiedName (line 1045) | static getFullyQualifiedName() { method startObject (line 1048) | static startObject(builder) { method addName (line 1051) | static addName(builder, nameOffset) { method addFields (line 1054) | static addFields(builder, fieldsOffset) { method createFieldsVector (line 1057) | static createFieldsVector(builder, data) { method startFieldsVector (line 1064) | static startFieldsVector(builder, numElems) { method addIsStruct (line 1067) | static addIsStruct(builder, isStruct) { method addMinalign (line 1070) | static addMinalign(builder, minalign) { method addBytesize (line 1073) | static addBytesize(builder, bytesize) { method addAttributes (line 1076) | static addAttributes(builder, attributesOffset) { method createAttributesVector (line 1079) | static createAttributesVector(builder, data) { method startAttributesVector (line 1086) | static startAttributesVector(builder, numElems) { method addDocumentation (line 1089) | static addDocumentation(builder, documentationOffset) { method createDocumentationVector (line 1092) | static createDocumentationVector(builder, data) { method startDocumentationVector (line 1099) | static startDocumentationVector(builder, numElems) { method addDeclarationFile (line 1102) | static addDeclarationFile(builder, declarationFileOffset) { method endObject (line 1105) | static endObject(builder) { method createObject (line 1111) | static createObject(builder, nameOffset, fieldsOffset, isStruct, minalig... method unpack (line 1123) | unpack() { method unpackTo (line 1126) | unpackTo(_o) { method constructor (line 1138) | constructor(name = null, fields = [], isStruct = false, minalign = 0, by... method pack (line 1148) | pack(builder) { method constructor (line 1161) | constructor() { method __init (line 1165) | __init(i, bb) { method getRootAsRPCCall (line 1170) | static getRootAsRPCCall(bb, obj) { method getSizePrefixedRootAsRPCCall (line 1173) | static getSizePrefixedRootAsRPCCall(bb, obj) { method name (line 1177) | name(optionalEncoding) { method request (line 1181) | request(obj) { method response (line 1185) | response(obj) { method attributes (line 1189) | attributes(index, obj) { method attributesLength (line 1193) | attributesLength() { method documentation (line 1197) | documentation(index, optionalEncoding) { method documentationLength (line 1201) | documentationLength() { method getFullyQualifiedName (line 1205) | static getFullyQualifiedName() { method startRPCCall (line 1208) | static startRPCCall(builder) { method addName (line 1211) | static addName(builder, nameOffset) { method addRequest (line 1214) | static addRequest(builder, requestOffset) { method addResponse (line 1217) | static addResponse(builder, responseOffset) { method addAttributes (line 1220) | static addAttributes(builder, attributesOffset) { method createAttributesVector (line 1223) | static createAttributesVector(builder, data) { method startAttributesVector (line 1230) | static startAttributesVector(builder, numElems) { method addDocumentation (line 1233) | static addDocumentation(builder, documentationOffset) { method createDocumentationVector (line 1236) | static createDocumentationVector(builder, data) { method startDocumentationVector (line 1243) | static startDocumentationVector(builder, numElems) { method endRPCCall (line 1246) | static endRPCCall(builder) { method unpack (line 1253) | unpack() { method unpackTo (line 1256) | unpackTo(_o) { method constructor (line 1265) | constructor(name = null, request = null, response = null, attributes = [... method pack (line 1272) | pack(builder) { method constructor (line 1294) | constructor() { method __init (line 1298) | __init(i, bb) { method getRootAsSchemaFile (line 1303) | static getRootAsSchemaFile(bb, obj) { method getSizePrefixedRootAsSchemaFile (line 1306) | static getSizePrefixedRootAsSchemaFile(bb, obj) { method filename (line 1310) | filename(optionalEncoding) { method includedFilenames (line 1314) | includedFilenames(index, optionalEncoding) { method includedFilenamesLength (line 1318) | includedFilenamesLength() { method getFullyQualifiedName (line 1322) | static getFullyQualifiedName() { method startSchemaFile (line 1325) | static startSchemaFile(builder) { method addFilename (line 1328) | static addFilename(builder, filenameOffset) { method addIncludedFilenames (line 1331) | static addIncludedFilenames(builder, includedFilenamesOffset) { method createIncludedFilenamesVector (line 1334) | static createIncludedFilenamesVector(builder, data) { method startIncludedFilenamesVector (line 1341) | static startIncludedFilenamesVector(builder, numElems) { method endSchemaFile (line 1344) | static endSchemaFile(builder) { method createSchemaFile (line 1349) | static createSchemaFile(builder, filenameOffset, includedFilenamesOffset) { method unpack (line 1355) | unpack() { method unpackTo (line 1358) | unpackTo(_o) { method constructor (line 1364) | constructor(filename = null, includedFilenames = []) { method pack (line 1368) | pack(builder) { method constructor (line 1378) | constructor() { method __init (line 1382) | __init(i, bb) { method getRootAsService (line 1387) | static getRootAsService(bb, obj) { method getSizePrefixedRootAsService (line 1390) | static getSizePrefixedRootAsService(bb, obj) { method name (line 1394) | name(optionalEncoding) { method calls (line 1398) | calls(index, obj) { method callsLength (line 1402) | callsLength() { method attributes (line 1406) | attributes(index, obj) { method attributesLength (line 1410) | attributesLength() { method documentation (line 1414) | documentation(index, optionalEncoding) { method documentationLength (line 1418) | documentationLength() { method declarationFile (line 1422) | declarationFile(optionalEncoding) { method getFullyQualifiedName (line 1426) | static getFullyQualifiedName() { method startService (line 1429) | static startService(builder) { method addName (line 1432) | static addName(builder, nameOffset) { method addCalls (line 1435) | static addCalls(builder, callsOffset) { method createCallsVector (line 1438) | static createCallsVector(builder, data) { method startCallsVector (line 1445) | static startCallsVector(builder, numElems) { method addAttributes (line 1448) | static addAttributes(builder, attributesOffset) { method createAttributesVector (line 1451) | static createAttributesVector(builder, data) { method startAttributesVector (line 1458) | static startAttributesVector(builder, numElems) { method addDocumentation (line 1461) | static addDocumentation(builder, documentationOffset) { method createDocumentationVector (line 1464) | static createDocumentationVector(builder, data) { method startDocumentationVector (line 1471) | static startDocumentationVector(builder, numElems) { method addDeclarationFile (line 1474) | static addDeclarationFile(builder, declarationFileOffset) { method endService (line 1477) | static endService(builder) { method createService (line 1482) | static createService(builder, nameOffset, callsOffset, attributesOffset,... method unpack (line 1491) | unpack() { method unpackTo (line 1494) | unpackTo(_o) { method constructor (line 1503) | constructor(name = null, calls = [], attributes = [], documentation = []... method pack (line 1510) | pack(builder) { method constructor (line 1522) | constructor() { method __init (line 1526) | __init(i, bb) { method getRootAsSchema (line 1531) | static getRootAsSchema(bb, obj) { method getSizePrefixedRootAsSchema (line 1534) | static getSizePrefixedRootAsSchema(bb, obj) { method bufferHasIdentifier (line 1538) | static bufferHasIdentifier(bb) { method objects (line 1541) | objects(index, obj) { method objectsLength (line 1545) | objectsLength() { method enums (line 1549) | enums(index, obj) { method enumsLength (line 1553) | enumsLength() { method fileIdent (line 1557) | fileIdent(optionalEncoding) { method fileExt (line 1561) | fileExt(optionalEncoding) { method rootTable (line 1565) | rootTable(obj) { method services (line 1569) | services(index, obj) { method servicesLength (line 1573) | servicesLength() { method advancedFeatures (line 1577) | advancedFeatures() { method mutate_advanced_features (line 1581) | mutate_advanced_features(value) { method fbsFiles (line 1593) | fbsFiles(index, obj) { method fbsFilesLength (line 1597) | fbsFilesLength() { method getFullyQualifiedName (line 1601) | static getFullyQualifiedName() { method startSchema (line 1604) | static startSchema(builder) { method addObjects (line 1607) | static addObjects(builder, objectsOffset) { method createObjectsVector (line 1610) | static createObjectsVector(builder, data) { method startObjectsVector (line 1617) | static startObjectsVector(builder, numElems) { method addEnums (line 1620) | static addEnums(builder, enumsOffset) { method createEnumsVector (line 1623) | static createEnumsVector(builder, data) { method startEnumsVector (line 1630) | static startEnumsVector(builder, numElems) { method addFileIdent (line 1633) | static addFileIdent(builder, fileIdentOffset) { method addFileExt (line 1636) | static addFileExt(builder, fileExtOffset) { method addRootTable (line 1639) | static addRootTable(builder, rootTableOffset) { method addServices (line 1642) | static addServices(builder, servicesOffset) { method createServicesVector (line 1645) | static createServicesVector(builder, data) { method startServicesVector (line 1652) | static startServicesVector(builder, numElems) { method addAdvancedFeatures (line 1655) | static addAdvancedFeatures(builder, advancedFeatures) { method addFbsFiles (line 1658) | static addFbsFiles(builder, fbsFilesOffset) { method createFbsFilesVector (line 1661) | static createFbsFilesVector(builder, data) { method startFbsFilesVector (line 1668) | static startFbsFilesVector(builder, numElems) { method endSchema (line 1671) | static endSchema(builder) { method finishSchemaBuffer (line 1677) | static finishSchemaBuffer(builder, offset) { method finishSizePrefixedSchemaBuffer (line 1680) | static finishSizePrefixedSchemaBuffer(builder, offset) { method unpack (line 1683) | unpack() { method unpackTo (line 1686) | unpackTo(_o) { method constructor (line 1698) | constructor(objects = [], enums = [], fileIdent = null, fileExt = null, ... method pack (line 1708) | pack(builder) { method constructor (line 1754) | constructor() { method __init (line 1758) | __init(i, bb) { method getRootAsObject (line 1763) | static getRootAsObject(bb, obj) { method getSizePrefixedRootAsObject (line 1766) | static getSizePrefixedRootAsObject(bb, obj) { method return_ (line 1770) | return_() { method mutate_return (line 1774) | mutate_return(value) { method if_ (line 1782) | if_() { method mutate_if (line 1786) | mutate_if(value) { method switch_ (line 1794) | switch_() { method mutate_switch (line 1798) | mutate_switch(value) { method enum_ (line 1806) | enum_() { method mutate_enum (line 1810) | mutate_enum(value) { method enum2 (line 1818) | enum2() { method mutate_enum2 (line 1822) | mutate_enum2(value) { method enum3 (line 1830) | enum3() { method mutate_enum3 (line 1834) | mutate_enum3(value) { method reflect (line 1842) | reflect(obj) { method getFullyQualifiedName (line 1846) | static getFullyQualifiedName() { method startObject (line 1849) | static startObject(builder) { method addReturn (line 1852) | static addReturn(builder, return_) { method addIf (line 1855) | static addIf(builder, if_) { method addSwitch (line 1858) | static addSwitch(builder, switch_) { method addEnum (line 1861) | static addEnum(builder, enum_) { method addEnum2 (line 1864) | static addEnum2(builder, enum2) { method addEnum3 (line 1867) | static addEnum3(builder, enum3) { method addReflect (line 1870) | static addReflect(builder, reflectOffset) { method endObject (line 1873) | static endObject(builder) { method unpack (line 1877) | unpack() { method unpackTo (line 1880) | unpackTo(_o) { method constructor (line 1891) | constructor(return_ = 0, if_ = 0, switch_ = 0, enum_ = class_2.new_, enu... method pack (line 1900) | pack(builder) { FILE: tests/ts/union-underlying-type/a.d.ts class A (line 2) | class A implements flatbuffers.IUnpackableObject { class AT (line 18) | class AT implements flatbuffers.IGeneratedObject { FILE: tests/ts/union-underlying-type/a.js class A (line 5) | class A { method constructor (line 6) | constructor() { method __init (line 10) | __init(i, bb) { method getRootAsA (line 15) | static getRootAsA(bb, obj) { method getSizePrefixedRootAsA (line 19) | static getSizePrefixedRootAsA(bb, obj) { method a (line 24) | a() { method mutate_a (line 28) | mutate_a(value) { method getFullyQualifiedName (line 36) | static getFullyQualifiedName() { method startA (line 39) | static startA(builder) { method addA (line 42) | static addA(builder, a) { method endA (line 45) | static endA(builder) { method createA (line 49) | static createA(builder, a) { method unpack (line 54) | unpack() { method unpackTo (line 57) | unpackTo(_o) { class AT (line 61) | class AT { method constructor (line 62) | constructor(a = 0) { method pack (line 65) | pack(builder) { FILE: tests/ts/union-underlying-type/a.ts class A (line 7) | class A implements flatbuffers.IUnpackableObject { method __init (line 10) | __init(i: number, bb: flatbuffers.ByteBuffer): A { method getRootAsA (line 16) | static getRootAsA(bb: flatbuffers.ByteBuffer, obj?: A): A { method getSizePrefixedRootAsA (line 23) | static getSizePrefixedRootAsA(bb: flatbuffers.ByteBuffer, obj?: A): A { method a (line 31) | a(): number { method mutate_a (line 36) | mutate_a(value: number): boolean { method getFullyQualifiedName (line 47) | static getFullyQualifiedName(): string { method startA (line 51) | static startA(builder: flatbuffers.Builder) { method addA (line 55) | static addA(builder: flatbuffers.Builder, a: number) { method endA (line 59) | static endA(builder: flatbuffers.Builder): flatbuffers.Offset { method createA (line 64) | static createA(builder: flatbuffers.Builder, a: number): flatbuffers.O... method unpack (line 70) | unpack(): AT { method unpackTo (line 74) | unpackTo(_o: AT): void { class AT (line 79) | class AT implements flatbuffers.IGeneratedObject { method constructor (line 80) | constructor(public a: number = 0) {} method pack (line 82) | pack(builder: flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/union-underlying-type/abc.d.ts type ABC (line 4) | enum ABC { FILE: tests/ts/union-underlying-type/abc.js function unionToAbc (line 14) | function unionToAbc(type, accessor) { function unionListToAbc (line 28) | function unionListToAbc(type, accessor, index) { FILE: tests/ts/union-underlying-type/abc.ts type ABC (line 9) | enum ABC { function unionToAbc (line 16) | function unionToAbc( function unionListToAbc (line 34) | function unionListToAbc( FILE: tests/ts/union-underlying-type/b.d.ts class B (line 2) | class B implements flatbuffers.IUnpackableObject { class BT (line 21) | class BT implements flatbuffers.IGeneratedObject { FILE: tests/ts/union-underlying-type/b.js class B (line 5) | class B { method constructor (line 6) | constructor() { method __init (line 10) | __init(i, bb) { method getRootAsB (line 15) | static getRootAsB(bb, obj) { method getSizePrefixedRootAsB (line 19) | static getSizePrefixedRootAsB(bb, obj) { method b (line 24) | b(optionalEncoding) { method getFullyQualifiedName (line 29) | static getFullyQualifiedName() { method startB (line 32) | static startB(builder) { method addB (line 35) | static addB(builder, bOffset) { method endB (line 38) | static endB(builder) { method createB (line 42) | static createB(builder, bOffset) { method unpack (line 47) | unpack() { method unpackTo (line 50) | unpackTo(_o) { class BT (line 54) | class BT { method constructor (line 55) | constructor(b = null) { method pack (line 58) | pack(builder) { FILE: tests/ts/union-underlying-type/b.ts class B (line 7) | class B implements flatbuffers.IUnpackableObject { method __init (line 10) | __init(i: number, bb: flatbuffers.ByteBuffer): B { method getRootAsB (line 16) | static getRootAsB(bb: flatbuffers.ByteBuffer, obj?: B): B { method getSizePrefixedRootAsB (line 23) | static getSizePrefixedRootAsB(bb: flatbuffers.ByteBuffer, obj?: B): B { method b (line 33) | b(optionalEncoding?: any): string | Uint8Array | null { method getFullyQualifiedName (line 40) | static getFullyQualifiedName(): string { method startB (line 44) | static startB(builder: flatbuffers.Builder) { method addB (line 48) | static addB(builder: flatbuffers.Builder, bOffset: flatbuffers.Offset) { method endB (line 52) | static endB(builder: flatbuffers.Builder): flatbuffers.Offset { method createB (line 57) | static createB( method unpack (line 66) | unpack(): BT { method unpackTo (line 70) | unpackTo(_o: BT): void { class BT (line 75) | class BT implements flatbuffers.IGeneratedObject { method constructor (line 76) | constructor(public b: string | Uint8Array | null = null) {} method pack (line 78) | pack(builder: flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/union-underlying-type/c.d.ts class C (line 2) | class C implements flatbuffers.IUnpackableObject { class CT (line 18) | class CT implements flatbuffers.IGeneratedObject { FILE: tests/ts/union-underlying-type/c.js class C (line 5) | class C { method constructor (line 6) | constructor() { method __init (line 10) | __init(i, bb) { method getRootAsC (line 15) | static getRootAsC(bb, obj) { method getSizePrefixedRootAsC (line 19) | static getSizePrefixedRootAsC(bb, obj) { method c (line 24) | c() { method mutate_c (line 28) | mutate_c(value) { method getFullyQualifiedName (line 36) | static getFullyQualifiedName() { method startC (line 39) | static startC(builder) { method addC (line 42) | static addC(builder, c) { method endC (line 45) | static endC(builder) { method createC (line 49) | static createC(builder, c) { method unpack (line 54) | unpack() { method unpackTo (line 57) | unpackTo(_o) { class CT (line 61) | class CT { method constructor (line 62) | constructor(c = false) { method pack (line 65) | pack(builder) { FILE: tests/ts/union-underlying-type/c.ts class C (line 7) | class C implements flatbuffers.IUnpackableObject { method __init (line 10) | __init(i: number, bb: flatbuffers.ByteBuffer): C { method getRootAsC (line 16) | static getRootAsC(bb: flatbuffers.ByteBuffer, obj?: C): C { method getSizePrefixedRootAsC (line 23) | static getSizePrefixedRootAsC(bb: flatbuffers.ByteBuffer, obj?: C): C { method c (line 31) | c(): boolean { method mutate_c (line 36) | mutate_c(value: boolean): boolean { method getFullyQualifiedName (line 47) | static getFullyQualifiedName(): string { method startC (line 51) | static startC(builder: flatbuffers.Builder) { method addC (line 55) | static addC(builder: flatbuffers.Builder, c: boolean) { method endC (line 59) | static endC(builder: flatbuffers.Builder): flatbuffers.Offset { method createC (line 64) | static createC(builder: flatbuffers.Builder, c: boolean): flatbuffers.... method unpack (line 70) | unpack(): CT { method unpackTo (line 74) | unpackTo(_o: CT): void { class CT (line 79) | class CT implements flatbuffers.IGeneratedObject { method constructor (line 80) | constructor(public c: boolean = false) {} method pack (line 82) | pack(builder: flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/union-underlying-type/d.d.ts class D (line 6) | class D implements flatbuffers.IUnpackableObject
{ class DT (line 64) | class DT implements flatbuffers.IGeneratedObject { FILE: tests/ts/union-underlying-type/d.js class D (line 8) | class D { method constructor (line 9) | constructor() { method __init (line 13) | __init(i, bb) { method getRootAsD (line 18) | static getRootAsD(bb, obj) { method getSizePrefixedRootAsD (line 22) | static getSizePrefixedRootAsD(bb, obj) { method testUnionType (line 27) | testUnionType() { method testUnion (line 31) | testUnion(obj) { method testVectorOfUnionType (line 35) | testVectorOfUnionType(index) { method testVectorOfUnionTypeLength (line 41) | testVectorOfUnionTypeLength() { method testVectorOfUnionTypeArray (line 45) | testVectorOfUnionTypeArray() { method testVectorOfUnion (line 54) | testVectorOfUnion(index, obj) { method testVectorOfUnionLength (line 61) | testVectorOfUnionLength() { method getFullyQualifiedName (line 65) | static getFullyQualifiedName() { method startD (line 68) | static startD(builder) { method addTestUnionType (line 71) | static addTestUnionType(builder, testUnionType) { method addTestUnion (line 74) | static addTestUnion(builder, testUnionOffset) { method addTestVectorOfUnionType (line 77) | static addTestVectorOfUnionType(builder, testVectorOfUnionTypeOffset) { method createTestVectorOfUnionTypeVector (line 80) | static createTestVectorOfUnionTypeVector(builder, data) { method startTestVectorOfUnionTypeVector (line 87) | static startTestVectorOfUnionTypeVector(builder, numElems) { method addTestVectorOfUnion (line 90) | static addTestVectorOfUnion(builder, testVectorOfUnionOffset) { method createTestVectorOfUnionVector (line 93) | static createTestVectorOfUnionVector(builder, data) { method startTestVectorOfUnionVector (line 100) | static startTestVectorOfUnionVector(builder, numElems) { method endD (line 103) | static endD(builder) { method createD (line 107) | static createD( method unpack (line 117) | unpack() { method unpackTo (line 149) | unpackTo(_o) { class DT (line 181) | class DT { method constructor (line 182) | constructor( method pack (line 190) | pack(builder) { FILE: tests/ts/union-underlying-type/d.ts class D (line 12) | class D implements flatbuffers.IUnpackableObject
{ method __init (line 15) | __init(i: number, bb: flatbuffers.ByteBuffer): D { method getRootAsD (line 21) | static getRootAsD(bb: flatbuffers.ByteBuffer, obj?: D): D { method getSizePrefixedRootAsD (line 28) | static getSizePrefixedRootAsD(bb: flatbuffers.ByteBuffer, obj?: D): D { method testUnionType (line 36) | testUnionType(): ABC { method testUnion (line 41) | testUnion(obj: any): any | null { method testVectorOfUnionType (line 46) | testVectorOfUnionType(index: number): ABC | null { method testVectorOfUnionTypeLength (line 53) | testVectorOfUnionTypeLength(): number { method testVectorOfUnionTypeArray (line 58) | testVectorOfUnionTypeArray(): Int32Array | null { method testVectorOfUnion (line 69) | testVectorOfUnion(index: number, obj: any): any | null { method testVectorOfUnionLength (line 79) | testVectorOfUnionLength(): number { method getFullyQualifiedName (line 84) | static getFullyQualifiedName(): string { method startD (line 88) | static startD(builder: flatbuffers.Builder) { method addTestUnionType (line 92) | static addTestUnionType(builder: flatbuffers.Builder, testUnionType: A... method addTestUnion (line 96) | static addTestUnion( method addTestVectorOfUnionType (line 103) | static addTestVectorOfUnionType( method createTestVectorOfUnionTypeVector (line 110) | static createTestVectorOfUnionTypeVector( method startTestVectorOfUnionTypeVector (line 121) | static startTestVectorOfUnionTypeVector( method addTestVectorOfUnion (line 128) | static addTestVectorOfUnion( method createTestVectorOfUnionVector (line 135) | static createTestVectorOfUnionVector( method startTestVectorOfUnionVector (line 146) | static startTestVectorOfUnionVector( method endD (line 153) | static endD(builder: flatbuffers.Builder): flatbuffers.Offset { method createD (line 158) | static createD( method unpack (line 173) | unpack(): DT { method unpackTo (line 217) | unpackTo(_o: DT): void { class DT (line 257) | class DT implements flatbuffers.IGeneratedObject { method constructor (line 258) | constructor( method pack (line 265) | pack(builder: flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/union_vector/attacker.d.ts class Attacker (line 2) | class Attacker class AttackerT (line 32) | class AttackerT implements flatbuffers.IGeneratedObject { FILE: tests/ts/union_vector/attacker.js class Attacker (line 5) | class Attacker { method constructor (line 6) | constructor() { method __init (line 10) | __init(i, bb) { method getRootAsAttacker (line 15) | static getRootAsAttacker(bb, obj) { method getSizePrefixedRootAsAttacker (line 19) | static getSizePrefixedRootAsAttacker(bb, obj) { method swordAttackDamage (line 24) | swordAttackDamage() { method mutate_sword_attack_damage (line 28) | mutate_sword_attack_damage(value) { method getFullyQualifiedName (line 36) | static getFullyQualifiedName() { method startAttacker (line 39) | static startAttacker(builder) { method addSwordAttackDamage (line 42) | static addSwordAttackDamage(builder, swordAttackDamage) { method endAttacker (line 45) | static endAttacker(builder) { method createAttacker (line 49) | static createAttacker(builder, swordAttackDamage) { method unpack (line 54) | unpack() { method unpackTo (line 57) | unpackTo(_o) { class AttackerT (line 61) | class AttackerT { method constructor (line 62) | constructor(swordAttackDamage = 0) { method pack (line 65) | pack(builder) { FILE: tests/ts/union_vector/attacker.ts class Attacker (line 9) | class Attacker implements flatbuffers.IUnpackableObject { method __init (line 12) | __init(i:number, bb:flatbuffers.ByteBuffer):Attacker { method getRootAsAttacker (line 18) | static getRootAsAttacker(bb:flatbuffers.ByteBuffer, obj?:Attacker):Att... method getSizePrefixedRootAsAttacker (line 22) | static getSizePrefixedRootAsAttacker(bb:flatbuffers.ByteBuffer, obj?:A... method swordAttackDamage (line 27) | swordAttackDamage():number { method mutate_sword_attack_damage (line 32) | mutate_sword_attack_damage(value:number):boolean { method getFullyQualifiedName (line 43) | static getFullyQualifiedName(): "Attacker" { method startAttacker (line 47) | static startAttacker(builder:flatbuffers.Builder) { method addSwordAttackDamage (line 51) | static addSwordAttackDamage(builder:flatbuffers.Builder, swordAttackDa... method endAttacker (line 55) | static endAttacker(builder:flatbuffers.Builder):flatbuffers.Offset { method createAttacker (line 60) | static createAttacker(builder:flatbuffers.Builder, swordAttackDamage:n... method unpack (line 66) | unpack(): AttackerT { method unpackTo (line 73) | unpackTo(_o: AttackerT): void { class AttackerT (line 78) | class AttackerT implements flatbuffers.IGeneratedObject { method constructor (line 79) | constructor( method pack (line 84) | pack(builder:flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/union_vector/book-reader.d.ts class BookReader (line 2) | class BookReader class BookReaderT (line 19) | class BookReaderT implements flatbuffers.IGeneratedObject { FILE: tests/ts/union_vector/book-reader.js class BookReader (line 2) | class BookReader { method constructor (line 3) | constructor() { method __init (line 7) | __init(i, bb) { method booksRead (line 12) | booksRead() { method mutate_books_read (line 15) | mutate_books_read(value) { method getFullyQualifiedName (line 19) | static getFullyQualifiedName() { method sizeOf (line 22) | static sizeOf() { method createBookReader (line 25) | static createBookReader(builder, books_read) { method unpack (line 30) | unpack() { method unpackTo (line 33) | unpackTo(_o) { class BookReaderT (line 37) | class BookReaderT { method constructor (line 38) | constructor(booksRead = 0) { method pack (line 41) | pack(builder) { FILE: tests/ts/union_vector/book-reader.ts class BookReader (line 9) | class BookReader implements flatbuffers.IUnpackableObject { method __init (line 12) | __init(i:number, bb:flatbuffers.ByteBuffer):BookReader { method booksRead (line 18) | booksRead():number { method mutate_books_read (line 22) | mutate_books_read(value:number):boolean { method getFullyQualifiedName (line 27) | static getFullyQualifiedName(): "BookReader" { method sizeOf (line 31) | static sizeOf():number { method createBookReader (line 35) | static createBookReader(builder:flatbuffers.Builder, books_read: numbe... method unpack (line 42) | unpack(): BookReaderT { method unpackTo (line 49) | unpackTo(_o: BookReaderT): void { class BookReaderT (line 54) | class BookReaderT implements flatbuffers.IGeneratedObject { method constructor (line 55) | constructor( method pack (line 60) | pack(builder:flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/union_vector/character.d.ts type Character (line 4) | enum Character { FILE: tests/ts/union_vector/character.js function unionToCharacter (line 17) | function unionToCharacter(type, accessor) { function unionListToCharacter (line 37) | function unionListToCharacter(type, accessor, index) { FILE: tests/ts/union_vector/character.ts type Character (line 10) | enum Character { function unionToCharacter (line 20) | function unionToCharacter( function unionListToCharacter (line 36) | function unionListToCharacter( FILE: tests/ts/union_vector/falling-tub.d.ts class FallingTub (line 2) | class FallingTub class FallingTubT (line 19) | class FallingTubT implements flatbuffers.IGeneratedObject { FILE: tests/ts/union_vector/falling-tub.js class FallingTub (line 2) | class FallingTub { method constructor (line 3) | constructor() { method __init (line 7) | __init(i, bb) { method weight (line 12) | weight() { method mutate_weight (line 15) | mutate_weight(value) { method getFullyQualifiedName (line 19) | static getFullyQualifiedName() { method sizeOf (line 22) | static sizeOf() { method createFallingTub (line 25) | static createFallingTub(builder, weight) { method unpack (line 30) | unpack() { method unpackTo (line 33) | unpackTo(_o) { class FallingTubT (line 37) | class FallingTubT { method constructor (line 38) | constructor(weight = 0) { method pack (line 41) | pack(builder) { FILE: tests/ts/union_vector/falling-tub.ts class FallingTub (line 9) | class FallingTub implements flatbuffers.IUnpackableObject { method __init (line 12) | __init(i:number, bb:flatbuffers.ByteBuffer):FallingTub { method weight (line 18) | weight():number { method mutate_weight (line 22) | mutate_weight(value:number):boolean { method getFullyQualifiedName (line 27) | static getFullyQualifiedName(): "FallingTub" { method sizeOf (line 31) | static sizeOf():number { method createFallingTub (line 35) | static createFallingTub(builder:flatbuffers.Builder, weight: number):f... method unpack (line 42) | unpack(): FallingTubT { method unpackTo (line 49) | unpackTo(_o: FallingTubT): void { class FallingTubT (line 54) | class FallingTubT implements flatbuffers.IGeneratedObject { method constructor (line 55) | constructor( method pack (line 60) | pack(builder:flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/union_vector/gadget.d.ts type Gadget (line 3) | enum Gadget { FILE: tests/ts/union_vector/gadget.js function unionToGadget (line 12) | function unionToGadget(type, accessor) { function unionListToGadget (line 24) | function unionListToGadget(type, accessor, index) { FILE: tests/ts/union_vector/gadget.ts type Gadget (line 9) | enum Gadget { function unionToGadget (line 15) | function unionToGadget( function unionListToGadget (line 27) | function unionListToGadget( FILE: tests/ts/union_vector/hand-fan.d.ts class HandFan (line 2) | class HandFan class HandFanT (line 26) | class HandFanT implements flatbuffers.IGeneratedObject { FILE: tests/ts/union_vector/hand-fan.js class HandFan (line 5) | class HandFan { method constructor (line 6) | constructor() { method __init (line 10) | __init(i, bb) { method getRootAsHandFan (line 15) | static getRootAsHandFan(bb, obj) { method getSizePrefixedRootAsHandFan (line 19) | static getSizePrefixedRootAsHandFan(bb, obj) { method length (line 24) | length() { method mutate_length (line 28) | mutate_length(value) { method getFullyQualifiedName (line 36) | static getFullyQualifiedName() { method startHandFan (line 39) | static startHandFan(builder) { method addLength (line 42) | static addLength(builder, length) { method endHandFan (line 45) | static endHandFan(builder) { method createHandFan (line 49) | static createHandFan(builder, length) { method unpack (line 54) | unpack() { method unpackTo (line 57) | unpackTo(_o) { class HandFanT (line 61) | class HandFanT { method constructor (line 62) | constructor(length = 0) { method pack (line 65) | pack(builder) { FILE: tests/ts/union_vector/hand-fan.ts class HandFan (line 9) | class HandFan implements flatbuffers.IUnpackableObject { method __init (line 12) | __init(i:number, bb:flatbuffers.ByteBuffer):HandFan { method getRootAsHandFan (line 18) | static getRootAsHandFan(bb:flatbuffers.ByteBuffer, obj?:HandFan):HandF... method getSizePrefixedRootAsHandFan (line 22) | static getSizePrefixedRootAsHandFan(bb:flatbuffers.ByteBuffer, obj?:Ha... method length (line 27) | length():number { method mutate_length (line 32) | mutate_length(value:number):boolean { method getFullyQualifiedName (line 43) | static getFullyQualifiedName(): "HandFan" { method startHandFan (line 47) | static startHandFan(builder:flatbuffers.Builder) { method addLength (line 51) | static addLength(builder:flatbuffers.Builder, length:number) { method endHandFan (line 55) | static endHandFan(builder:flatbuffers.Builder):flatbuffers.Offset { method createHandFan (line 60) | static createHandFan(builder:flatbuffers.Builder, length:number):flatb... method unpack (line 66) | unpack(): HandFanT { method unpackTo (line 73) | unpackTo(_o: HandFanT): void { class HandFanT (line 78) | class HandFanT implements flatbuffers.IGeneratedObject { method constructor (line 79) | constructor( method pack (line 84) | pack(builder:flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/union_vector/movie.d.ts class Movie (line 6) | class Movie implements flatbuffers.IUnpackableObject { class MovieT (line 78) | class MovieT implements flatbuffers.IGeneratedObject { FILE: tests/ts/union_vector/movie.js class Movie (line 8) | class Movie { method constructor (line 9) | constructor() { method __init (line 13) | __init(i, bb) { method getRootAsMovie (line 18) | static getRootAsMovie(bb, obj) { method getSizePrefixedRootAsMovie (line 22) | static getSizePrefixedRootAsMovie(bb, obj) { method bufferHasIdentifier (line 27) | static bufferHasIdentifier(bb) { method mainCharacterType (line 30) | mainCharacterType() { method mainCharacter (line 34) | mainCharacter(obj) { method charactersType (line 39) | charactersType(index) { method charactersTypeLength (line 45) | charactersTypeLength() { method charactersTypeArray (line 49) | charactersTypeArray() { method characters (line 58) | characters(index, obj) { method charactersLength (line 65) | charactersLength() { method getFullyQualifiedName (line 69) | static getFullyQualifiedName() { method startMovie (line 72) | static startMovie(builder) { method addMainCharacterType (line 75) | static addMainCharacterType(builder, mainCharacterType) { method addMainCharacter (line 78) | static addMainCharacter(builder, mainCharacterOffset) { method addCharactersType (line 81) | static addCharactersType(builder, charactersTypeOffset) { method createCharactersTypeVector (line 84) | static createCharactersTypeVector(builder, data) { method startCharactersTypeVector (line 91) | static startCharactersTypeVector(builder, numElems) { method addCharacters (line 94) | static addCharacters(builder, charactersOffset) { method createCharactersVector (line 97) | static createCharactersVector(builder, data) { method startCharactersVector (line 104) | static startCharactersVector(builder, numElems) { method endMovie (line 107) | static endMovie(builder) { method finishMovieBuffer (line 111) | static finishMovieBuffer(builder, offset) { method finishSizePrefixedMovieBuffer (line 114) | static finishSizePrefixedMovieBuffer(builder, offset) { method createMovie (line 117) | static createMovie( method unpack (line 127) | unpack() { method unpackTo (line 165) | unpackTo(_o) { class MovieT (line 203) | class MovieT { method constructor (line 204) | constructor( method pack (line 212) | pack(builder) { FILE: tests/ts/union_vector/movie.ts class Movie (line 13) | class Movie implements flatbuffers.IUnpackableObject { method __init (line 16) | __init(i:number, bb:flatbuffers.ByteBuffer):Movie { method getRootAsMovie (line 22) | static getRootAsMovie(bb:flatbuffers.ByteBuffer, obj?:Movie):Movie { method getSizePrefixedRootAsMovie (line 26) | static getSizePrefixedRootAsMovie(bb:flatbuffers.ByteBuffer, obj?:Movi... method bufferHasIdentifier (line 31) | static bufferHasIdentifier(bb:flatbuffers.ByteBuffer):boolean { method mainCharacterType (line 35) | mainCharacterType():Character { method mainCharacter (line 40) | mainCharacter(obj:any|string):any|string|... method charactersType (line 45) | charactersType(index: number):Character|null { method charactersTypeLength (line 50) | charactersTypeLength():number { method charactersTypeArray (line 55) | charactersTypeArray():Uint8Array|null { method characters (line 60) | characters(index: number, obj:any|string):any|string|null { method charactersLength (line 65) | charactersLength():number { method getFullyQualifiedName (line 70) | static getFullyQualifiedName(): "Movie" { method startMovie (line 74) | static startMovie(builder:flatbuffers.Builder) { method addMainCharacterType (line 78) | static addMainCharacterType(builder:flatbuffers.Builder, mainCharacter... method addMainCharacter (line 82) | static addMainCharacter(builder:flatbuffers.Builder, mainCharacterOffs... method addCharactersType (line 86) | static addCharactersType(builder:flatbuffers.Builder, charactersTypeOf... method createCharactersTypeVector (line 90) | static createCharactersTypeVector(builder:flatbuffers.Builder, data:Ch... method startCharactersTypeVector (line 98) | static startCharactersTypeVector(builder:flatbuffers.Builder, numElems... method addCharacters (line 102) | static addCharacters(builder:flatbuffers.Builder, charactersOffset:fla... method createCharactersVector (line 106) | static createCharactersVector(builder:flatbuffers.Builder, data:flatbu... method startCharactersVector (line 114) | static startCharactersVector(builder:flatbuffers.Builder, numElems:num... method endMovie (line 118) | static endMovie(builder:flatbuffers.Builder):flatbuffers.Offset { method finishMovieBuffer (line 123) | static finishMovieBuffer(builder:flatbuffers.Builder, offset:flatbuffe... method finishSizePrefixedMovieBuffer (line 127) | static finishSizePrefixedMovieBuffer(builder:flatbuffers.Builder, offs... method createMovie (line 131) | static createMovie(builder:flatbuffers.Builder, mainCharacterType:Char... method unpack (line 140) | unpack(): MovieT { method unpackTo (line 167) | unpackTo(_o: MovieT): void { class MovieT (line 192) | class MovieT implements flatbuffers.IGeneratedObject { method constructor (line 193) | constructor( method pack (line 201) | pack(builder:flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/union_vector/rapunzel.d.ts class Rapunzel (line 2) | class Rapunzel class RapunzelT (line 19) | class RapunzelT implements flatbuffers.IGeneratedObject { FILE: tests/ts/union_vector/rapunzel.js class Rapunzel (line 2) | class Rapunzel { method constructor (line 3) | constructor() { method __init (line 7) | __init(i, bb) { method hairLength (line 12) | hairLength() { method mutate_hair_length (line 15) | mutate_hair_length(value) { method getFullyQualifiedName (line 19) | static getFullyQualifiedName() { method sizeOf (line 22) | static sizeOf() { method createRapunzel (line 25) | static createRapunzel(builder, hair_length) { method unpack (line 30) | unpack() { method unpackTo (line 33) | unpackTo(_o) { class RapunzelT (line 37) | class RapunzelT { method constructor (line 38) | constructor(hairLength = 0) { method pack (line 41) | pack(builder) { FILE: tests/ts/union_vector/rapunzel.ts class Rapunzel (line 9) | class Rapunzel implements flatbuffers.IUnpackableObject { method __init (line 12) | __init(i:number, bb:flatbuffers.ByteBuffer):Rapunzel { method hairLength (line 18) | hairLength():number { method mutate_hair_length (line 22) | mutate_hair_length(value:number):boolean { method getFullyQualifiedName (line 27) | static getFullyQualifiedName(): "Rapunzel" { method sizeOf (line 31) | static sizeOf():number { method createRapunzel (line 35) | static createRapunzel(builder:flatbuffers.Builder, hair_length: number... method unpack (line 42) | unpack(): RapunzelT { method unpackTo (line 49) | unpackTo(_o: RapunzelT): void { class RapunzelT (line 54) | class RapunzelT implements flatbuffers.IGeneratedObject { method constructor (line 55) | constructor( method pack (line 60) | pack(builder:flatbuffers.Builder): flatbuffers.Offset { FILE: tests/ts/union_vector/union_vector_generated.cjs method constructor (line 53) | constructor() { method __init (line 57) | __init(i, bb) { method getRootAsAttacker (line 62) | static getRootAsAttacker(bb, obj) { method getSizePrefixedRootAsAttacker (line 65) | static getSizePrefixedRootAsAttacker(bb, obj) { method swordAttackDamage (line 69) | swordAttackDamage() { method mutate_sword_attack_damage (line 73) | mutate_sword_attack_damage(value) { method getFullyQualifiedName (line 81) | static getFullyQualifiedName() { method startAttacker (line 84) | static startAttacker(builder) { method addSwordAttackDamage (line 87) | static addSwordAttackDamage(builder, swordAttackDamage) { method endAttacker (line 90) | static endAttacker(builder) { method createAttacker (line 94) | static createAttacker(builder, swordAttackDamage) { method unpack (line 99) | unpack() { method unpackTo (line 102) | unpackTo(_o) { method constructor (line 107) | constructor(swordAttackDamage = 0) { method pack (line 110) | pack(builder) { method constructor (line 117) | constructor() { method __init (line 121) | __init(i, bb) { method booksRead (line 126) | booksRead() { method mutate_books_read (line 129) | mutate_books_read(value) { method getFullyQualifiedName (line 133) | static getFullyQualifiedName() { method sizeOf (line 136) | static sizeOf() { method createBookReader (line 139) | static createBookReader(builder, books_read) { method unpack (line 144) | unpack() { method unpackTo (line 147) | unpackTo(_o) { method constructor (line 152) | constructor(booksRead = 0) { method pack (line 155) | pack(builder) { method constructor (line 162) | constructor() { method __init (line 166) | __init(i, bb) { method hairLength (line 171) | hairLength() { method mutate_hair_length (line 174) | mutate_hair_length(value) { method getFullyQualifiedName (line 178) | static getFullyQualifiedName() { method sizeOf (line 181) | static sizeOf() { method createRapunzel (line 184) | static createRapunzel(builder, hair_length) { method unpack (line 189) | unpack() { method unpackTo (line 192) | unpackTo(_o) { method constructor (line 197) | constructor(hairLength = 0) { method pack (line 200) | pack(builder) { function unionToCharacter (line 216) | function unionToCharacter(type, accessor) { function unionListToCharacter (line 236) | function unionListToCharacter(type, accessor, index) { method constructor (line 259) | constructor() { method __init (line 263) | __init(i, bb) { method weight (line 268) | weight() { method mutate_weight (line 271) | mutate_weight(value) { method getFullyQualifiedName (line 275) | static getFullyQualifiedName() { method sizeOf (line 278) | static sizeOf() { method createFallingTub (line 281) | static createFallingTub(builder, weight) { method unpack (line 286) | unpack() { method unpackTo (line 289) | unpackTo(_o) { method constructor (line 294) | constructor(weight = 0) { method pack (line 297) | pack(builder) { method constructor (line 305) | constructor() { method __init (line 309) | __init(i, bb) { method getRootAsHandFan (line 314) | static getRootAsHandFan(bb, obj) { method getSizePrefixedRootAsHandFan (line 317) | static getSizePrefixedRootAsHandFan(bb, obj) { method length (line 321) | length() { method mutate_length (line 325) | mutate_length(value) { method getFullyQualifiedName (line 333) | static getFullyQualifiedName() { method startHandFan (line 336) | static startHandFan(builder) { method addLength (line 339) | static addLength(builder, length) { method endHandFan (line 342) | static endHandFan(builder) { method createHandFan (line 346) | static createHandFan(builder, length) { method unpack (line 351) | unpack() { method unpackTo (line 354) | unpackTo(_o) { method constructor (line 359) | constructor(length = 0) { method pack (line 362) | pack(builder) { method constructor (line 378) | constructor() { method __init (line 382) | __init(i, bb) { method getRootAsMovie (line 387) | static getRootAsMovie(bb, obj) { method getSizePrefixedRootAsMovie (line 390) | static getSizePrefixedRootAsMovie(bb, obj) { method bufferHasIdentifier (line 394) | static bufferHasIdentifier(bb) { method mainCharacterType (line 397) | mainCharacterType() { method mainCharacter (line 401) | mainCharacter(obj) { method charactersType (line 405) | charactersType(index) { method charactersTypeLength (line 409) | charactersTypeLength() { method charactersTypeArray (line 413) | charactersTypeArray() { method characters (line 417) | characters(index, obj) { method charactersLength (line 421) | charactersLength() { method getFullyQualifiedName (line 425) | static getFullyQualifiedName() { method startMovie (line 428) | static startMovie(builder) { method addMainCharacterType (line 431) | static addMainCharacterType(builder, mainCharacterType) { method addMainCharacter (line 434) | static addMainCharacter(builder, mainCharacterOffset) { method addCharactersType (line 437) | static addCharactersType(builder, charactersTypeOffset) { method createCharactersTypeVector (line 440) | static createCharactersTypeVector(builder, data) { method startCharactersTypeVector (line 447) | static startCharactersTypeVector(builder, numElems) { method addCharacters (line 450) | static addCharacters(builder, charactersOffset) { method createCharactersVector (line 453) | static createCharactersVector(builder, data) { method startCharactersVector (line 460) | static startCharactersVector(builder, numElems) { method endMovie (line 463) | static endMovie(builder) { method finishMovieBuffer (line 467) | static finishMovieBuffer(builder, offset) { method finishSizePrefixedMovieBuffer (line 470) | static finishSizePrefixedMovieBuffer(builder, offset) { method createMovie (line 473) | static createMovie(builder, mainCharacterType, mainCharacterOffset, char... method unpack (line 481) | unpack() { method unpackTo (line 511) | unpackTo(_o) { method constructor (line 546) | constructor(mainCharacterType = Character.NONE, mainCharacter = null, ch... method pack (line 552) | pack(builder) { FILE: tests/type_field_collsion/Collision.cs type Collision (line 12) | public struct Collision : IFlatbufferObject method ValidateVersion (line 16) | public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS... method GetRootAsCollision (line 17) | public static Collision GetRootAsCollision(ByteBuffer _bb) { return Ge... method GetRootAsCollision (line 18) | public static Collision GetRootAsCollision(ByteBuffer _bb, Collision o... method VerifyCollision (line 19) | public static bool VerifyCollision(ByteBuffer _bb) {Google.FlatBuffers... method __init (line 20) | public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } method __assign (line 21) | public Collision __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); r... method CreateCollision (line 25) | public static Offset CreateCollision(Fl... method StartCollision (line 32) | public static void StartCollision(FlatBufferBuilder builder) { builder... method AddCollision (line 33) | public static void AddCollision(FlatBufferBuilder builder, int collisi... method EndCollision (line 34) | public static Offset EndCollision(FlatB... method FinishCollisionBuffer (line 38) | public static void FinishCollisionBuffer(FlatBufferBuilder builder, Of... method FinishSizePrefixedCollisionBuffer (line 39) | public static void FinishSizePrefixedCollisionBuffer(FlatBufferBuilder... method UnPack (line 40) | public CollisionT UnPack() { method UnPackTo (line 45) | public void UnPackTo(CollisionT _o) { method Pack (line 48) | public static Offset Pack(FlatBufferBui... class CollisionT (line 56) | public class CollisionT method CollisionT (line 60) | public CollisionT() { method DeserializeFromBinary (line 63) | public static CollisionT DeserializeFromBinary(byte[] fbBuffer) { method SerializeToBinary (line 66) | public byte[] SerializeToBinary() { class CollisionVerify (line 74) | static public class CollisionVerify method Verify (line 76) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... FILE: tests/union_name_test/Bar.py class Bar (line 9) | class Bar(object): method GetRootAs (line 13) | def GetRootAs(cls, buf, offset=0): method GetRootAsBar (line 20) | def GetRootAsBar(cls, buf, offset=0): method Init (line 24) | def Init(self, buf, pos): method Name (line 28) | def Name(self): function BarStart (line 34) | def BarStart(builder): function Start (line 37) | def Start(builder): function BarAddName (line 40) | def BarAddName(builder, name): function AddName (line 43) | def AddName(builder, name): function BarEnd (line 46) | def BarEnd(builder): function End (line 49) | def End(builder): class BarT (line 53) | class BarT(object): method __init__ (line 56) | def __init__( method InitFromBuf (line 63) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 69) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 74) | def InitFromObj(cls, bar): method _UnPack (line 80) | def _UnPack(self, bar): method Pack (line 86) | def Pack(self, builder): FILE: tests/union_name_test/Container.py class Container (line 9) | class Container(object): method GetRootAs (line 13) | def GetRootAs(cls, buf, offset=0): method GetRootAsContainer (line 20) | def GetRootAsContainer(cls, buf, offset=0): method Init (line 24) | def Init(self, buf, pos): method UType (line 28) | def UType(self): method U (line 35) | def U(self): function ContainerStart (line 44) | def ContainerStart(builder): function Start (line 47) | def Start(builder): function ContainerAddUType (line 50) | def ContainerAddUType(builder, uType): function AddUType (line 53) | def AddUType(builder, uType): function ContainerAddU (line 56) | def ContainerAddU(builder, u): function AddU (line 59) | def AddU(builder, u): function ContainerEnd (line 62) | def ContainerEnd(builder): function End (line 65) | def End(builder): class ContainerT (line 76) | class ContainerT(object): method __init__ (line 79) | def __init__( method InitFromBuf (line 88) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 94) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 99) | def InitFromObj(cls, container): method _UnPack (line 105) | def _UnPack(self, container): method Pack (line 112) | def Pack(self, builder): FILE: tests/union_name_test/Foo.py class Foo (line 9) | class Foo(object): method GetRootAs (line 13) | def GetRootAs(cls, buf, offset=0): method GetRootAsFoo (line 20) | def GetRootAsFoo(cls, buf, offset=0): method Init (line 24) | def Init(self, buf, pos): method Val (line 28) | def Val(self): function FooStart (line 34) | def FooStart(builder): function Start (line 37) | def Start(builder): function FooAddVal (line 40) | def FooAddVal(builder, val): function AddVal (line 43) | def AddVal(builder, val): function FooEnd (line 46) | def FooEnd(builder): function End (line 49) | def End(builder): class FooT (line 53) | class FooT(object): method __init__ (line 56) | def __init__( method InitFromBuf (line 63) | def InitFromBuf(cls, buf, pos): method InitFromPackedBuf (line 69) | def InitFromPackedBuf(cls, buf, pos=0): method InitFromObj (line 74) | def InitFromObj(cls, foo): method _UnPack (line 80) | def _UnPack(self, foo): method Pack (line 86) | def Pack(self, builder): FILE: tests/union_name_test/my_test_union.py class my_test_union (line 5) | class my_test_union(object): function MyTestUnionCreator (line 10) | def MyTestUnionCreator(unionType, table): FILE: tests/union_value_collsion/union_value_collision_generated.cs type Value (line 12) | [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringE... class ValueUnion (line 19) | public class ValueUnion { method ValueUnion (line 23) | public ValueUnion() { method As (line 28) | public T As() where T : class { return this.Value_ as T; } method AsIntValue (line 29) | public union_value_collsion.IntValueT AsIntValue() { return this.As() where T : class { return this.Value as T; } method AsIntValue (line 117) | public union_value_collsion.IntValueT AsIntValue() { return this.As CreateIntValue(Fla... method StartIntValue (line 207) | public static void StartIntValue(FlatBufferBuilder builder) { builder.... method AddValue (line 208) | public static void AddValue(FlatBufferBuilder builder, int value) { bu... method EndIntValue (line 209) | public static Offset EndIntValue(FlatBu... method UnPack (line 213) | public IntValueT UnPack() { method UnPackTo (line 218) | public void UnPackTo(IntValueT _o) { method Pack (line 221) | public static Offset Pack(FlatBufferBui... class IntValueT (line 229) | public class IntValueT method IntValueT (line 234) | public IntValueT() { class IntValueVerify (line 240) | static public class IntValueVerify method Verify (line 242) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... type Collide (line 249) | public struct Collide : IFlatbufferObject method ValidateVersion (line 253) | public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS... method GetRootAsCollide (line 254) | public static Collide GetRootAsCollide(ByteBuffer _bb) { return GetRoo... method GetRootAsCollide (line 255) | public static Collide GetRootAsCollide(ByteBuffer _bb, Collide obj) { ... method __init (line 256) | public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } method __assign (line 257) | public Collide __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); ret... method GetCollideBytes (line 261) | public Span GetCollideBytes() { return __p.__vector_as_span? GetCollideBytes() { return __p.__vector_as_... method GetCollideArray (line 265) | public byte[] GetCollideArray() { return __p.__vector_as_array(4... method GetValueBytes (line 268) | public Span GetValueBytes() { return __p.__vector_as_span(... method GetValueBytes (line 270) | public ArraySegment? GetValueBytes() { return __p.__vector_as_ar... method GetValueArray (line 272) | public byte[] GetValueArray() { return __p.__vector_as_array(6); } method CreateCollide (line 274) | public static Offset CreateCollide(FlatB... method StartCollide (line 283) | public static void StartCollide(FlatBufferBuilder builder) { builder.S... method AddCollide (line 284) | public static void AddCollide(FlatBufferBuilder builder, StringOffset ... method AddValue (line 285) | public static void AddValue(FlatBufferBuilder builder, StringOffset va... method EndCollide (line 286) | public static Offset EndCollide(FlatBuff... method CreateSortedVectorOfCollide (line 292) | public static VectorOffset CreateSortedVectorOfCollide(FlatBufferBuild... method __lookup_by_key (line 299) | public static Collide? __lookup_by_key(int vectorLocation, string key,... method UnPack (line 320) | public CollideT UnPack() { method UnPackTo (line 325) | public void UnPackTo(CollideT _o) { method Pack (line 329) | public static Offset Pack(FlatBufferBuil... class CollideT (line 340) | public class CollideT method CollideT (line 347) | public CollideT() { class CollideVerify (line 354) | static public class CollideVerify method Verify (line 356) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... type Collision (line 364) | public struct Collision : IFlatbufferObject method ValidateVersion (line 368) | public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS... method GetRootAsCollision (line 369) | public static Collision GetRootAsCollision(ByteBuffer _bb) { return Ge... method GetRootAsCollision (line 370) | public static Collision GetRootAsCollision(ByteBuffer _bb, Collision o... method VerifyCollision (line 371) | public static bool VerifyCollision(ByteBuffer _bb) {Google.FlatBuffers... method __init (line 372) | public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } method __assign (line 373) | public Collision __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); r... method SomeValue (line 376) | public TTable? SomeValue() where TTable : struct, IFlatbufferO... method SomeValueAsIntValue (line 377) | public union_value_collsion.IntValue SomeValueAsIntValue() { return So... method Value (line 379) | public TTable? Value() where TTable : struct, IFlatbufferObjec... method ValueAsIntValue (line 380) | public union_value_collsion.IntValue ValueAsIntValue() { return Value<... method Collide (line 381) | public union_value_collsion.Collision? Collide(int j) { int o = __p.__... method CreateCollision (line 384) | public static Offset CreateCollision(F... method StartCollision (line 399) | public static void StartCollision(FlatBufferBuilder builder) { builder... method AddSomeValueType (line 400) | public static void AddSomeValueType(FlatBufferBuilder builder, union_v... method AddSomeValue (line 401) | public static void AddSomeValue(FlatBufferBuilder builder, int someVal... method AddValueType (line 402) | public static void AddValueType(FlatBufferBuilder builder, union_value... method AddValue (line 403) | public static void AddValue(FlatBufferBuilder builder, int valueOffset... method AddCollide (line 404) | public static void AddCollide(FlatBufferBuilder builder, VectorOffset ... method CreateCollideVector (line 405) | public static VectorOffset CreateCollideVector(FlatBufferBuilder build... method CreateCollideVectorBlock (line 406) | public static VectorOffset CreateCollideVectorBlock(FlatBufferBuilder ... method CreateCollideVectorBlock (line 407) | public static VectorOffset CreateCollideVectorBlock(FlatBufferBuilder ... method CreateCollideVectorBlock (line 408) | public static VectorOffset CreateCollideVectorBlock(FlatBufferBuilder ... method StartCollideVector (line 409) | public static void StartCollideVector(FlatBufferBuilder builder, int n... method EndCollision (line 410) | public static Offset EndCollision(Flat... method FinishCollisionBuffer (line 414) | public static void FinishCollisionBuffer(FlatBufferBuilder builder, Of... method FinishSizePrefixedCollisionBuffer (line 415) | public static void FinishSizePrefixedCollisionBuffer(FlatBufferBuilder... method UnPack (line 416) | public CollisionT UnPack() { method UnPackTo (line 421) | public void UnPackTo(CollisionT _o) { method Pack (line 441) | public static Offset Pack(FlatBufferBu... class CollisionT (line 463) | public class CollisionT method CollisionT (line 494) | public CollisionT() { method DeserializeFromJson (line 500) | public static CollisionT DeserializeFromJson(string jsonText) { method SerializeToJson (line 503) | public string SerializeToJson() { method DeserializeFromBinary (line 506) | public static CollisionT DeserializeFromBinary(byte[] fbBuffer) { method SerializeToBinary (line 509) | public byte[] SerializeToBinary() { class CollisionVerify (line 517) | static public class CollisionVerify method Verify (line 519) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... FILE: tests/union_vector/Attacker.cs type Attacker (line 9) | public struct Attacker : IFlatbufferObject method ValidateVersion (line 13) | public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS... method GetRootAsAttacker (line 14) | public static Attacker GetRootAsAttacker(ByteBuffer _bb) { return GetR... method GetRootAsAttacker (line 15) | public static Attacker GetRootAsAttacker(ByteBuffer _bb, Attacker obj)... method __init (line 16) | public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } method __assign (line 17) | public Attacker __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); re... method MutateSwordAttackDamage (line 20) | public bool MutateSwordAttackDamage(int sword_attack_damage) { int o =... method CreateAttacker (line 22) | public static Offset CreateAttacker(FlatBufferBuilder builder, method StartAttacker (line 29) | public static void StartAttacker(FlatBufferBuilder builder) { builder.... method AddSwordAttackDamage (line 30) | public static void AddSwordAttackDamage(FlatBufferBuilder builder, int... method EndAttacker (line 31) | public static Offset EndAttacker(FlatBufferBuilder builder) { method UnPack (line 35) | public AttackerT UnPack() { method UnPackTo (line 40) | public void UnPackTo(AttackerT _o) { method Pack (line 43) | public static Offset Pack(FlatBufferBuilder builder, Attacke... class AttackerT (line 51) | public class AttackerT method AttackerT (line 56) | public AttackerT() { class AttackerVerify (line 62) | static public class AttackerVerify method Verify (line 64) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... FILE: tests/union_vector/Attacker.java class Attacker (line 19) | @SuppressWarnings("unused") method ValidateVersion (line 21) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsAttacker (line 22) | public static Attacker getRootAsAttacker(ByteBuffer _bb) { return getR... method getRootAsAttacker (line 23) | public static Attacker getRootAsAttacker(ByteBuffer _bb, Attacker obj)... method __init (line 24) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 25) | public Attacker __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); re... method swordAttackDamage (line 27) | public int swordAttackDamage() { int o = __offset(4); return o != 0 ? ... method mutateSwordAttackDamage (line 28) | public boolean mutateSwordAttackDamage(int sword_attack_damage) { int ... method createAttacker (line 30) | public static int createAttacker(FlatBufferBuilder builder, method startAttacker (line 37) | public static void startAttacker(FlatBufferBuilder builder) { builder.... method addSwordAttackDamage (line 38) | public static void addSwordAttackDamage(FlatBufferBuilder builder, int... method endAttacker (line 39) | public static int endAttacker(FlatBufferBuilder builder) { class Vector (line 44) | public static final class Vector extends BaseVector { method __assign (line 45) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 47) | public Attacker get(int j) { return get(new Attacker(), j); } method get (line 48) | public Attacker get(Attacker obj, int j) { return obj.__assign(__in... method unpack (line 50) | public AttackerT unpack() { method unpackTo (line 55) | public void unpackTo(AttackerT _o) { method pack (line 59) | public static int pack(FlatBufferBuilder builder, AttackerT _o) { FILE: tests/union_vector/Attacker.php class Attacker (line 9) | class Attacker extends Table method getRootAsAttacker (line 15) | public static function getRootAsAttacker(ByteBuffer $bb) method AttackerIdentifier (line 21) | public static function AttackerIdentifier() method AttackerBufferHasIdentifier (line 26) | public static function AttackerBufferHasIdentifier(ByteBuffer $buf) method init (line 36) | public function init($_i, ByteBuffer $_bb) method getSwordAttackDamage (line 46) | public function getSwordAttackDamage() method startAttacker (line 56) | public static function startAttacker(FlatBufferBuilder $builder) method createAttacker (line 65) | public static function createAttacker(FlatBufferBuilder $builder, $swo... method addSwordAttackDamage (line 78) | public static function addSwordAttackDamage(FlatBufferBuilder $builder... method endAttacker (line 87) | public static function endAttacker(FlatBufferBuilder $builder) FILE: tests/union_vector/AttackerT.java class AttackerT (line 19) | public class AttackerT { method getSwordAttackDamage (line 22) | public int getSwordAttackDamage() { return swordAttackDamage; } method setSwordAttackDamage (line 24) | public void setSwordAttackDamage(int swordAttackDamage) { this.swordAt... method AttackerT (line 27) | public AttackerT() { FILE: tests/union_vector/BookReader.cs type BookReader (line 9) | public struct BookReader : IFlatbufferObject method __init (line 13) | public void __init(int _i, ByteBuffer _bb) { __p = new Struct(_i, _bb); } method __assign (line 14) | public BookReader __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); ... method MutateBooksRead (line 17) | public void MutateBooksRead(int books_read) { __p.bb.PutInt(__p.bb_pos... method CreateBookReader (line 19) | public static Offset CreateBookReader(FlatBufferBuilder bu... method UnPack (line 24) | public BookReaderT UnPack() { method UnPackTo (line 29) | public void UnPackTo(BookReaderT _o) { method Pack (line 32) | public static Offset Pack(FlatBufferBuilder builder, BookR... class BookReaderT (line 40) | public class BookReaderT method BookReaderT (line 45) | public BookReaderT() { FILE: tests/union_vector/BookReader.java class BookReader (line 19) | @SuppressWarnings("unused") method __init (line 21) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 22) | public BookReader __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); ... method booksRead (line 24) | public int booksRead() { return bb.getInt(bb_pos + 0); } method mutateBooksRead (line 25) | public void mutateBooksRead(int books_read) { bb.putInt(bb_pos + 0, bo... method createBookReader (line 27) | public static int createBookReader(FlatBufferBuilder builder, int book... class Vector (line 33) | public static final class Vector extends BaseVector { method __assign (line 34) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 36) | public BookReader get(int j) { return get(new BookReader(), j); } method get (line 37) | public BookReader get(BookReader obj, int j) { return obj.__assign(... method unpack (line 39) | public BookReaderT unpack() { method unpackTo (line 44) | public void unpackTo(BookReaderT _o) { method pack (line 48) | public static int pack(FlatBufferBuilder builder, BookReaderT _o) { FILE: tests/union_vector/BookReader.php class BookReader (line 9) | class BookReader extends Struct method init (line 16) | public function init($_i, ByteBuffer $_bb) method GetBooksRead (line 26) | public function GetBooksRead() method createBookReader (line 35) | public static function createBookReader(FlatBufferBuilder $builder, $b... FILE: tests/union_vector/BookReaderT.java class BookReaderT (line 19) | public class BookReaderT { method getBooksRead (line 22) | public int getBooksRead() { return booksRead; } method setBooksRead (line 24) | public void setBooksRead(int booksRead) { this.booksRead = booksRead; } method BookReaderT (line 27) | public BookReaderT() { FILE: tests/union_vector/Character.cs type Character (line 5) | [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringE... class CharacterUnion (line 17) | public class CharacterUnion { method CharacterUnion (line 21) | public CharacterUnion() { method As (line 26) | public T As() where T : class { return this.Value as T; } method AsMuLan (line 27) | public AttackerT AsMuLan() { return this.As(); } method FromMuLan (line 28) | public static CharacterUnion FromMuLan(AttackerT _mulan) { return new ... method AsRapunzel (line 29) | public RapunzelT AsRapunzel() { return this.As(); } method FromRapunzel (line 30) | public static CharacterUnion FromRapunzel(RapunzelT _rapunzel) { retur... method AsBelle (line 31) | public BookReaderT AsBelle() { return this.As(); } method FromBelle (line 32) | public static CharacterUnion FromBelle(BookReaderT _belle) { return ne... method AsBookFan (line 33) | public BookReaderT AsBookFan() { return this.As(); } method FromBookFan (line 34) | public static CharacterUnion FromBookFan(BookReaderT _bookfan) { retur... method AsOther (line 35) | public string AsOther() { return this.As(); } method FromOther (line 36) | public static CharacterUnion FromOther(string _other) { return new Cha... method AsUnused (line 37) | public string AsUnused() { return this.As(); } method FromUnused (line 38) | public static CharacterUnion FromUnused(string _unused) { return new C... method Pack (line 40) | public static int Pack(Google.FlatBuffers.FlatBufferBuilder builder, C... class CharacterUnion_JsonConverter (line 53) | public class CharacterUnion_JsonConverter : Newtonsoft.Json.JsonConverter { method CanConvert (line 54) | public override bool CanConvert(System.Type objectType) { method WriteJson (line 57) | public override void WriteJson(Newtonsoft.Json.JsonWriter writer, obje... method WriteJson (line 67) | public void WriteJson(Newtonsoft.Json.JsonWriter writer, CharacterUnio... method ReadJson (line 71) | public override object ReadJson(Newtonsoft.Json.JsonReader reader, Sys... method ReadJson (line 84) | public CharacterUnion ReadJson(Newtonsoft.Json.JsonReader reader, Char... class CharacterVerify (line 101) | static public class CharacterVerify method Verify (line 103) | static public bool Verify(Google.FlatBuffers.Verifier verifier, byte t... FILE: tests/union_vector/Character.java class Character (line 3) | @SuppressWarnings("unused") method Character (line 5) | private Character() { } method name (line 16) | public static String name(int e) { return names[e]; } FILE: tests/union_vector/Character.php class Character (line 4) | class Character method Name (line 24) | public static function Name($e) FILE: tests/union_vector/CharacterUnion.java class CharacterUnion (line 5) | public class CharacterUnion { method getType (line 9) | public byte getType() { return type; } method setType (line 11) | public void setType(byte type) { this.type = type; } method getValue (line 13) | public Object getValue() { return value; } method setValue (line 15) | public void setValue(Object value) { this.value = value; } method CharacterUnion (line 17) | public CharacterUnion() { method asMuLan (line 22) | public AttackerT asMuLan() { return (AttackerT) value; } method asRapunzel (line 23) | public RapunzelT asRapunzel() { return (RapunzelT) value; } method asBelle (line 24) | public BookReaderT asBelle() { return (BookReaderT) value; } method asBookFan (line 25) | public BookReaderT asBookFan() { return (BookReaderT) value; } method asOther (line 26) | public String asOther() { return (String) value; } method asUnused (line 27) | public String asUnused() { return (String) value; } method pack (line 29) | public static int pack(FlatBufferBuilder builder, CharacterUnion _o) { FILE: tests/union_vector/FallingTub.cs type FallingTub (line 9) | public struct FallingTub : IFlatbufferObject method __init (line 13) | public void __init(int _i, ByteBuffer _bb) { __p = new Struct(_i, _bb); } method __assign (line 14) | public FallingTub __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); ... method MutateWeight (line 17) | public void MutateWeight(int weight) { __p.bb.PutInt(__p.bb_pos + 0, w... method CreateFallingTub (line 19) | public static Offset CreateFallingTub(FlatBufferBuilder bu... method UnPack (line 24) | public FallingTubT UnPack() { method UnPackTo (line 29) | public void UnPackTo(FallingTubT _o) { method Pack (line 32) | public static Offset Pack(FlatBufferBuilder builder, Falli... class FallingTubT (line 40) | public class FallingTubT method FallingTubT (line 45) | public FallingTubT() { FILE: tests/union_vector/FallingTub.java class FallingTub (line 19) | @SuppressWarnings("unused") method __init (line 21) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 22) | public FallingTub __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); ... method weight (line 24) | public int weight() { return bb.getInt(bb_pos + 0); } method mutateWeight (line 25) | public void mutateWeight(int weight) { bb.putInt(bb_pos + 0, weight); } method createFallingTub (line 27) | public static int createFallingTub(FlatBufferBuilder builder, int weig... class Vector (line 33) | public static final class Vector extends BaseVector { method __assign (line 34) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 36) | public FallingTub get(int j) { return get(new FallingTub(), j); } method get (line 37) | public FallingTub get(FallingTub obj, int j) { return obj.__assign(... method unpack (line 39) | public FallingTubT unpack() { method unpackTo (line 44) | public void unpackTo(FallingTubT _o) { method pack (line 48) | public static int pack(FlatBufferBuilder builder, FallingTubT _o) { FILE: tests/union_vector/FallingTub.php class FallingTub (line 9) | class FallingTub extends Struct method init (line 16) | public function init($_i, ByteBuffer $_bb) method GetWeight (line 26) | public function GetWeight() method createFallingTub (line 35) | public static function createFallingTub(FlatBufferBuilder $builder, $w... FILE: tests/union_vector/FallingTubT.java class FallingTubT (line 19) | public class FallingTubT { method getWeight (line 22) | public int getWeight() { return weight; } method setWeight (line 24) | public void setWeight(int weight) { this.weight = weight; } method FallingTubT (line 27) | public FallingTubT() { FILE: tests/union_vector/Gadget.cs type Gadget (line 5) | [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringE... class GadgetUnion (line 13) | public class GadgetUnion { method GadgetUnion (line 17) | public GadgetUnion() { method As (line 22) | public T As() where T : class { return this.Value as T; } method AsFallingTub (line 23) | public FallingTubT AsFallingTub() { return this.As(); } method FromFallingTub (line 24) | public static GadgetUnion FromFallingTub(FallingTubT _fallingtub) { re... method AsHandFan (line 25) | public HandFanT AsHandFan() { return this.As(); } method FromHandFan (line 26) | public static GadgetUnion FromHandFan(HandFanT _handfan) { return new ... method Pack (line 28) | public static int Pack(Google.FlatBuffers.FlatBufferBuilder builder, G... class GadgetUnion_JsonConverter (line 37) | public class GadgetUnion_JsonConverter : Newtonsoft.Json.JsonConverter { method CanConvert (line 38) | public override bool CanConvert(System.Type objectType) { method WriteJson (line 41) | public override void WriteJson(Newtonsoft.Json.JsonWriter writer, obje... method WriteJson (line 51) | public void WriteJson(Newtonsoft.Json.JsonWriter writer, GadgetUnion _... method ReadJson (line 55) | public override object ReadJson(Newtonsoft.Json.JsonReader reader, Sys... method ReadJson (line 68) | public GadgetUnion ReadJson(Newtonsoft.Json.JsonReader reader, GadgetU... class GadgetVerify (line 81) | static public class GadgetVerify method Verify (line 83) | static public bool Verify(Google.FlatBuffers.Verifier verifier, byte t... FILE: tests/union_vector/Gadget.java class Gadget (line 3) | @SuppressWarnings("unused") method Gadget (line 5) | private Gadget() { } method name (line 12) | public static String name(int e) { return names[e]; } FILE: tests/union_vector/Gadget.php class Gadget (line 4) | class Gadget method Name (line 16) | public static function Name($e) FILE: tests/union_vector/GadgetUnion.java class GadgetUnion (line 5) | public class GadgetUnion { method getType (line 9) | public byte getType() { return type; } method setType (line 11) | public void setType(byte type) { this.type = type; } method getValue (line 13) | public Object getValue() { return value; } method setValue (line 15) | public void setValue(Object value) { this.value = value; } method GadgetUnion (line 17) | public GadgetUnion() { method asFallingTub (line 22) | public FallingTubT asFallingTub() { return (FallingTubT) value; } method asHandFan (line 23) | public HandFanT asHandFan() { return (HandFanT) value; } method pack (line 25) | public static int pack(FlatBufferBuilder builder, GadgetUnion _o) { FILE: tests/union_vector/HandFan.cs type HandFan (line 9) | public struct HandFan : IFlatbufferObject method ValidateVersion (line 13) | public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS... method GetRootAsHandFan (line 14) | public static HandFan GetRootAsHandFan(ByteBuffer _bb) { return GetRoo... method GetRootAsHandFan (line 15) | public static HandFan GetRootAsHandFan(ByteBuffer _bb, HandFan obj) { ... method __init (line 16) | public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } method __assign (line 17) | public HandFan __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); ret... method MutateLength (line 20) | public bool MutateLength(int length) { int o = __p.__offset(4); if (o ... method CreateHandFan (line 22) | public static Offset CreateHandFan(FlatBufferBuilder builder, method StartHandFan (line 29) | public static void StartHandFan(FlatBufferBuilder builder) { builder.S... method AddLength (line 30) | public static void AddLength(FlatBufferBuilder builder, int length) { ... method EndHandFan (line 31) | public static Offset EndHandFan(FlatBufferBuilder builder) { method UnPack (line 35) | public HandFanT UnPack() { method UnPackTo (line 40) | public void UnPackTo(HandFanT _o) { method Pack (line 43) | public static Offset Pack(FlatBufferBuilder builder, HandFanT... class HandFanT (line 51) | public class HandFanT method HandFanT (line 56) | public HandFanT() { class HandFanVerify (line 62) | static public class HandFanVerify method Verify (line 64) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... FILE: tests/union_vector/HandFan.java class HandFan (line 19) | @SuppressWarnings("unused") method ValidateVersion (line 21) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsHandFan (line 22) | public static HandFan getRootAsHandFan(ByteBuffer _bb) { return getRoo... method getRootAsHandFan (line 23) | public static HandFan getRootAsHandFan(ByteBuffer _bb, HandFan obj) { ... method __init (line 24) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 25) | public HandFan __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); ret... method length (line 27) | public int length() { int o = __offset(4); return o != 0 ? bb.getInt(o... method mutateLength (line 28) | public boolean mutateLength(int length) { int o = __offset(4); if (o !... method createHandFan (line 30) | public static int createHandFan(FlatBufferBuilder builder, method startHandFan (line 37) | public static void startHandFan(FlatBufferBuilder builder) { builder.s... method addLength (line 38) | public static void addLength(FlatBufferBuilder builder, int length) { ... method endHandFan (line 39) | public static int endHandFan(FlatBufferBuilder builder) { class Vector (line 44) | public static final class Vector extends BaseVector { method __assign (line 45) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 47) | public HandFan get(int j) { return get(new HandFan(), j); } method get (line 48) | public HandFan get(HandFan obj, int j) { return obj.__assign(__indi... method unpack (line 50) | public HandFanT unpack() { method unpackTo (line 55) | public void unpackTo(HandFanT _o) { method pack (line 59) | public static int pack(FlatBufferBuilder builder, HandFanT _o) { FILE: tests/union_vector/HandFan.php class HandFan (line 9) | class HandFan extends Table method getRootAsHandFan (line 15) | public static function getRootAsHandFan(ByteBuffer $bb) method HandFanIdentifier (line 21) | public static function HandFanIdentifier() method HandFanBufferHasIdentifier (line 26) | public static function HandFanBufferHasIdentifier(ByteBuffer $buf) method init (line 36) | public function init($_i, ByteBuffer $_bb) method getLength (line 46) | public function getLength() method startHandFan (line 56) | public static function startHandFan(FlatBufferBuilder $builder) method createHandFan (line 65) | public static function createHandFan(FlatBufferBuilder $builder, $length) method addLength (line 78) | public static function addLength(FlatBufferBuilder $builder, $length) method endHandFan (line 87) | public static function endHandFan(FlatBufferBuilder $builder) FILE: tests/union_vector/HandFanT.java class HandFanT (line 19) | public class HandFanT { method getLength (line 22) | public int getLength() { return length; } method setLength (line 24) | public void setLength(int length) { this.length = length; } method HandFanT (line 27) | public HandFanT() { FILE: tests/union_vector/Movie.cs type Movie (line 9) | public struct Movie : IFlatbufferObject method ValidateVersion (line 13) | public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS... method GetRootAsMovie (line 14) | public static Movie GetRootAsMovie(ByteBuffer _bb) { return GetRootAsM... method GetRootAsMovie (line 15) | public static Movie GetRootAsMovie(ByteBuffer _bb, Movie obj) { return... method MovieBufferHasIdentifier (line 16) | public static bool MovieBufferHasIdentifier(ByteBuffer _bb) { return T... method VerifyMovie (line 17) | public static bool VerifyMovie(ByteBuffer _bb) {Google.FlatBuffers.Ver... method __init (line 18) | public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } method __assign (line 19) | public Movie __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); retur... method MainCharacter (line 22) | public TTable? MainCharacter() where TTable : struct, IFlatbuf... method MainCharacterAsString (line 23) | public string MainCharacterAsString() { int o = __p.__offset(6); retur... method MainCharacterAsMuLan (line 24) | public Attacker MainCharacterAsMuLan() { return MainCharacter GetCharactersTypeBytes() { return __p.__vector_... method GetCharactersTypeBytes (line 35) | public ArraySegment? GetCharactersTypeBytes() { return __p.__vec... method GetCharactersTypeArray (line 37) | public Character[] GetCharactersTypeArray() { int o = __p.__offset(8);... method Characters (line 38) | public TTable? Characters(int j) where TTable : struct, IFlatb... method CharactersAsString (line 39) | public string CharactersAsString(int j) { int o = __p.__offset(10); re... method CreateMovie (line 42) | public static Offset CreateMovie(FlatBufferBuilder builder, method StartMovie (line 55) | public static void StartMovie(FlatBufferBuilder builder) { builder.Sta... method AddMainCharacterType (line 56) | public static void AddMainCharacterType(FlatBufferBuilder builder, Cha... method AddMainCharacter (line 57) | public static void AddMainCharacter(FlatBufferBuilder builder, int mai... method AddCharactersType (line 58) | public static void AddCharactersType(FlatBufferBuilder builder, Vector... method CreateCharactersTypeVector (line 59) | public static VectorOffset CreateCharactersTypeVector(FlatBufferBuilde... method CreateCharactersTypeVectorBlock (line 60) | public static VectorOffset CreateCharactersTypeVectorBlock(FlatBufferB... method CreateCharactersTypeVectorBlock (line 61) | public static VectorOffset CreateCharactersTypeVectorBlock(FlatBufferB... method CreateCharactersTypeVectorBlock (line 62) | public static VectorOffset CreateCharactersTypeVectorBlock(FlatBufferB... method StartCharactersTypeVector (line 63) | public static void StartCharactersTypeVector(FlatBufferBuilder builder... method AddCharacters (line 64) | public static void AddCharacters(FlatBufferBuilder builder, VectorOffs... method CreateCharactersVector (line 65) | public static VectorOffset CreateCharactersVector(FlatBufferBuilder bu... method CreateCharactersVectorBlock (line 66) | public static VectorOffset CreateCharactersVectorBlock(FlatBufferBuild... method CreateCharactersVectorBlock (line 67) | public static VectorOffset CreateCharactersVectorBlock(FlatBufferBuild... method CreateCharactersVectorBlock (line 68) | public static VectorOffset CreateCharactersVectorBlock(FlatBufferBuild... method StartCharactersVector (line 69) | public static void StartCharactersVector(FlatBufferBuilder builder, in... method EndMovie (line 70) | public static Offset EndMovie(FlatBufferBuilder builder) { method FinishMovieBuffer (line 74) | public static void FinishMovieBuffer(FlatBufferBuilder builder, Offset... method FinishSizePrefixedMovieBuffer (line 75) | public static void FinishSizePrefixedMovieBuffer(FlatBufferBuilder bui... method UnPack (line 76) | public MovieT UnPack() { method UnPackTo (line 81) | public void UnPackTo(MovieT _o) { method Pack (line 133) | public static Offset Pack(FlatBufferBuilder builder, MovieT _o) { class MovieT (line 158) | public class MovieT method MovieT (line 194) | public MovieT() { method DeserializeFromJson (line 199) | public static MovieT DeserializeFromJson(string jsonText) { method SerializeToJson (line 202) | public string SerializeToJson() { method DeserializeFromBinary (line 205) | public static MovieT DeserializeFromBinary(byte[] fbBuffer) { method SerializeToBinary (line 208) | public byte[] SerializeToBinary() { class MovieVerify (line 216) | static public class MovieVerify method Verify (line 218) | static public bool Verify(Google.FlatBuffers.Verifier verifier, uint t... FILE: tests/union_vector/Movie.java class Movie (line 19) | @SuppressWarnings("unused") method ValidateVersion (line 21) | public static void ValidateVersion() { Constants.FLATBUFFERS_25_12_19(... method getRootAsMovie (line 22) | public static Movie getRootAsMovie(ByteBuffer _bb) { return getRootAsM... method getRootAsMovie (line 23) | public static Movie getRootAsMovie(ByteBuffer _bb, Movie obj) { _bb.or... method MovieBufferHasIdentifier (line 24) | public static boolean MovieBufferHasIdentifier(ByteBuffer _bb) { retur... method __init (line 25) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 26) | public Movie __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); retur... method mainCharacterType (line 28) | public byte mainCharacterType() { int o = __offset(4); return o != 0 ?... method mainCharacter (line 29) | public com.google.flatbuffers.Table mainCharacter(com.google.flatbuffe... method charactersType (line 30) | public byte charactersType(int j) { int o = __offset(8); return o != 0... method charactersTypeLength (line 31) | public int charactersTypeLength() { int o = __offset(8); return o != 0... method charactersTypeVector (line 32) | public ByteVector charactersTypeVector() { return charactersTypeVector... method charactersTypeVector (line 33) | public ByteVector charactersTypeVector(ByteVector obj) { int o = __off... method charactersTypeAsByteBuffer (line 34) | public ByteBuffer charactersTypeAsByteBuffer() { return __vector_as_by... method charactersTypeInByteBuffer (line 35) | public ByteBuffer charactersTypeInByteBuffer(ByteBuffer _bb) { return ... method characters (line 36) | public com.google.flatbuffers.Table characters(com.google.flatbuffers.... method charactersLength (line 37) | public int charactersLength() { int o = __offset(10); return o != 0 ? ... method charactersVector (line 38) | public UnionVector charactersVector() { return charactersVector(new Un... method charactersVector (line 39) | public UnionVector charactersVector(UnionVector obj) { int o = __offse... method createMovie (line 41) | public static int createMovie(FlatBufferBuilder builder, method startMovie (line 54) | public static void startMovie(FlatBufferBuilder builder) { builder.sta... method addMainCharacterType (line 55) | public static void addMainCharacterType(FlatBufferBuilder builder, byt... method addMainCharacter (line 56) | public static void addMainCharacter(FlatBufferBuilder builder, int mai... method addCharactersType (line 57) | public static void addCharactersType(FlatBufferBuilder builder, int ch... method createCharactersTypeVector (line 58) | public static int createCharactersTypeVector(FlatBufferBuilder builder... method startCharactersTypeVector (line 59) | public static void startCharactersTypeVector(FlatBufferBuilder builder... method addCharacters (line 60) | public static void addCharacters(FlatBufferBuilder builder, int charac... method createCharactersVector (line 61) | public static int createCharactersVector(FlatBufferBuilder builder, in... method startCharactersVector (line 62) | public static void startCharactersVector(FlatBufferBuilder builder, in... method endMovie (line 63) | public static int endMovie(FlatBufferBuilder builder) { method finishMovieBuffer (line 67) | public static void finishMovieBuffer(FlatBufferBuilder builder, int of... method finishSizePrefixedMovieBuffer (line 68) | public static void finishSizePrefixedMovieBuffer(FlatBufferBuilder bui... class Vector (line 70) | public static final class Vector extends BaseVector { method __assign (line 71) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 73) | public Movie get(int j) { return get(new Movie(), j); } method get (line 74) | public Movie get(Movie obj, int j) { return obj.__assign(__indirect... method unpack (line 76) | public MovieT unpack() { method unpackTo (line 81) | public void unpackTo(MovieT _o) { method pack (line 111) | public static int pack(FlatBufferBuilder builder, MovieT _o) { FILE: tests/union_vector/Movie.php class Movie (line 9) | class Movie extends Table method getRootAsMovie (line 15) | public static function getRootAsMovie(ByteBuffer $bb) method MovieIdentifier (line 21) | public static function MovieIdentifier() method MovieBufferHasIdentifier (line 26) | public static function MovieBufferHasIdentifier(ByteBuffer $buf) method init (line 36) | public function init($_i, ByteBuffer $_bb) method getMainCharacterType (line 46) | public function getMainCharacterType() method getMainCharacter (line 55) | public function getMainCharacter($obj) method getCharactersType (line 65) | public function getCharactersType($j) method getCharactersTypeLength (line 74) | public function getCharactersTypeLength() method getCharacters (line 84) | public function getCharacters($j, $obj) method getCharactersLength (line 93) | public function getCharactersLength() method startMovie (line 103) | public static function startMovie(FlatBufferBuilder $builder) method createMovie (line 112) | public static function createMovie(FlatBufferBuilder $builder, $main_c... method addMainCharacterType (line 128) | public static function addMainCharacterType(FlatBufferBuilder $builder... method addMainCharacter (line 133) | public static function addMainCharacter(FlatBufferBuilder $builder, $o... method addCharactersType (line 143) | public static function addCharactersType(FlatBufferBuilder $builder, $... method createCharactersTypeVector (line 153) | public static function createCharactersTypeVector(FlatBufferBuilder $b... method startCharactersTypeVector (line 167) | public static function startCharactersTypeVector(FlatBufferBuilder $bu... method addCharacters (line 177) | public static function addCharacters(FlatBufferBuilder $builder, $char... method createCharactersVector (line 187) | public static function createCharactersVector(FlatBufferBuilder $build... method startCharactersVector (line 201) | public static function startCharactersVector(FlatBufferBuilder $builde... method endMovie (line 210) | public static function endMovie(FlatBufferBuilder $builder) method finishMovieBuffer (line 216) | public static function finishMovieBuffer(FlatBufferBuilder $builder, $... FILE: tests/union_vector/MovieT.java class MovieT (line 19) | public class MovieT { method getMainCharacter (line 23) | public CharacterUnion getMainCharacter() { return mainCharacter; } method setMainCharacter (line 25) | public void setMainCharacter(CharacterUnion mainCharacter) { this.main... method getCharacters (line 27) | public CharacterUnion[] getCharacters() { return characters; } method setCharacters (line 29) | public void setCharacters(CharacterUnion[] characters) { this.characte... method MovieT (line 32) | public MovieT() { method deserializeFromBinary (line 36) | public static MovieT deserializeFromBinary(byte[] fbBuffer) { method serializeToBinary (line 39) | public byte[] serializeToBinary() { FILE: tests/union_vector/Rapunzel.cs type Rapunzel (line 9) | public struct Rapunzel : IFlatbufferObject method __init (line 13) | public void __init(int _i, ByteBuffer _bb) { __p = new Struct(_i, _bb); } method __assign (line 14) | public Rapunzel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); re... method MutateHairLength (line 17) | public void MutateHairLength(int hair_length) { __p.bb.PutInt(__p.bb_p... method CreateRapunzel (line 19) | public static Offset CreateRapunzel(FlatBufferBuilder builde... method UnPack (line 24) | public RapunzelT UnPack() { method UnPackTo (line 29) | public void UnPackTo(RapunzelT _o) { method Pack (line 32) | public static Offset Pack(FlatBufferBuilder builder, Rapunze... class RapunzelT (line 40) | public class RapunzelT method RapunzelT (line 45) | public RapunzelT() { FILE: tests/union_vector/Rapunzel.java class Rapunzel (line 19) | @SuppressWarnings("unused") method __init (line 21) | public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } method __assign (line 22) | public Rapunzel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); re... method hairLength (line 24) | public int hairLength() { return bb.getInt(bb_pos + 0); } method mutateHairLength (line 25) | public void mutateHairLength(int hair_length) { bb.putInt(bb_pos + 0, ... method createRapunzel (line 27) | public static int createRapunzel(FlatBufferBuilder builder, int hairLe... class Vector (line 33) | public static final class Vector extends BaseVector { method __assign (line 34) | public Vector __assign(int _vector, int _element_size, ByteBuffer _b... method get (line 36) | public Rapunzel get(int j) { return get(new Rapunzel(), j); } method get (line 37) | public Rapunzel get(Rapunzel obj, int j) { return obj.__assign(__el... method unpack (line 39) | public RapunzelT unpack() { method unpackTo (line 44) | public void unpackTo(RapunzelT _o) { method pack (line 48) | public static int pack(FlatBufferBuilder builder, RapunzelT _o) { FILE: tests/union_vector/Rapunzel.php class Rapunzel (line 9) | class Rapunzel extends Struct method init (line 16) | public function init($_i, ByteBuffer $_bb) method GetHairLength (line 26) | public function GetHairLength() method createRapunzel (line 35) | public static function createRapunzel(FlatBufferBuilder $builder, $hai... FILE: tests/union_vector/RapunzelT.java class RapunzelT (line 19) | public class RapunzelT { method getHairLength (line 22) | public int getHairLength() { return hairLength; } method setHairLength (line 24) | public void setHairLength(int hairLength) { this.hairLength = hairLeng... method RapunzelT (line 27) | public RapunzelT() { FILE: tests/util_test.cpp type flatbuffers (line 6) | namespace flatbuffers { type tests (line 7) | namespace tests { function NumericUtilsTestInteger (line 11) | void NumericUtilsTestInteger(const char* lower, const char* upper) { function NumericUtilsTestFloat (line 25) | void NumericUtilsTestFloat(const char* lower, const char* upper) { function NumericUtilsTest (line 37) | void NumericUtilsTest() { function IsAsciiUtilsTest (line 47) | void IsAsciiUtilsTest() { function UtilConvertCase (line 61) | void UtilConvertCase() { FILE: tests/util_test.h function namespace (line 4) | namespace flatbuffers { FILE: tests/vector_table_naked_ptr_test.cpp type flatbuffers (line 6) | namespace flatbuffers { type tests (line 7) | namespace tests { function VectorTableNakedPtrTest (line 9) | void VectorTableNakedPtrTest() { FILE: tests/vector_table_naked_ptr_test.h function namespace (line 6) | namespace flatbuffers { FILE: ts/builder.ts class Builder (line 10) | class Builder { method constructor (line 37) | constructor(opt_initial_size?: number) { method clear (line 54) | clear(): void { method forceDefaults (line 75) | forceDefaults(forceDefaults: boolean): void { method dataBuffer (line 84) | dataBuffer(): ByteBuffer { method asUint8Array (line 92) | asUint8Array(): Uint8Array { method prep (line 107) | prep(size: number, additional_bytes: number): void { method pad (line 128) | pad(byte_size: number): void { method writeInt8 (line 134) | writeInt8(value: number): void { method writeInt16 (line 138) | writeInt16(value: number): void { method writeInt32 (line 142) | writeInt32(value: number): void { method writeInt64 (line 146) | writeInt64(value: bigint): void { method writeFloat32 (line 150) | writeFloat32(value: number): void { method writeFloat64 (line 154) | writeFloat64(value: number): void { method addInt8 (line 162) | addInt8(value: number): void { method addInt16 (line 171) | addInt16(value: number): void { method addInt32 (line 180) | addInt32(value: number): void { method addInt64 (line 189) | addInt64(value: bigint): void { method addFloat32 (line 198) | addFloat32(value: number): void { method addFloat64 (line 207) | addFloat64(value: number): void { method addFieldInt8 (line 212) | addFieldInt8( method addFieldInt16 (line 223) | addFieldInt16( method addFieldInt32 (line 234) | addFieldInt32( method addFieldInt64 (line 245) | addFieldInt64( method addFieldFloat32 (line 256) | addFieldFloat32( method addFieldFloat64 (line 267) | addFieldFloat64( method addFieldOffset (line 278) | addFieldOffset(voffset: number, value: Offset, defaultValue: Offset): ... method addFieldStruct (line 288) | addFieldStruct(voffset: number, value: Offset, defaultValue: Offset): ... method nested (line 300) | nested(obj: Offset): void { method notNested (line 310) | notNested(): void { method slot (line 321) | slot(voffset: number): void { method offset (line 328) | offset(): Offset { method growByteBuffer (line 344) | static growByteBuffer(bb: ByteBuffer): ByteBuffer { method addOffset (line 364) | addOffset(offset: Offset): void { method startObject (line 374) | startObject(numfields: number): void { method endObject (line 392) | endObject(): Offset { method finish (line 459) | finish( method finishSizePrefixed (line 492) | finishSizePrefixed( method requiredField (line 504) | requiredField(table: Offset, field: number): void { method startVector (line 526) | startVector(elem_size: number, num_elems: number, alignment: number): ... method endVector (line 540) | endVector(): Offset { method createSharedString (line 552) | createSharedString(s: string | Uint8Array): Offset { method createString (line 576) | createString(s: string | Uint8Array | null | undefined): Offset { method createByteVector (line 601) | createByteVector(v: Uint8Array | null | undefined): Offset { method createObjectOffset (line 617) | createObjectOffset(obj: string | IGeneratedObject | null | undefined):... method createObjectOffsetList (line 634) | createObjectOffsetList(list: (string | IGeneratedObject)[]): Offset[] { method createStructOffsetList (line 652) | createStructOffsetList( FILE: ts/byte-buffer.ts class ByteBuffer (line 6) | class ByteBuffer { method constructor (line 13) | constructor(private bytes_: Uint8Array) {} method allocate (line 18) | static allocate(byte_size: number): ByteBuffer { method clear (line 22) | clear(): void { method bytes (line 29) | bytes(): Uint8Array { method position (line 36) | position(): number { method setPosition (line 43) | setPosition(position: number): void { method capacity (line 50) | capacity(): number { method readInt8 (line 54) | readInt8(offset: number): number { method readUint8 (line 58) | readUint8(offset: number): number { method readInt16 (line 62) | readInt16(offset: number): number { method readUint16 (line 66) | readUint16(offset: number): number { method readInt32 (line 70) | readInt32(offset: number): number { method readUint32 (line 79) | readUint32(offset: number): number { method readInt64 (line 83) | readInt64(offset: number): bigint { method readUint64 (line 91) | readUint64(offset: number): bigint { method readFloat32 (line 99) | readFloat32(offset: number): number { method readFloat64 (line 104) | readFloat64(offset: number): number { method writeInt8 (line 110) | writeInt8(offset: number, value: number): void { method writeUint8 (line 114) | writeUint8(offset: number, value: number): void { method writeInt16 (line 118) | writeInt16(offset: number, value: number): void { method writeUint16 (line 123) | writeUint16(offset: number, value: number): void { method writeInt32 (line 128) | writeInt32(offset: number, value: number): void { method writeUint32 (line 135) | writeUint32(offset: number, value: number): void { method writeInt64 (line 142) | writeInt64(offset: number, value: bigint): void { method writeUint64 (line 147) | writeUint64(offset: number, value: bigint): void { method writeFloat32 (line 155) | writeFloat32(offset: number, value: number): void { method writeFloat64 (line 160) | writeFloat64(offset: number, value: number): void { method getBufferIdentifier (line 171) | getBufferIdentifier(): string { method __offset (line 193) | __offset(bb_pos: number, vtable_offset: number): Offset { method __union (line 203) | __union(t: Table, offset: number): Table { method __string (line 220) | __string(offset: number, opt_encoding?: Encoding): string | Uint8Array { method __union_with_string (line 236) | __union_with_string(o: Table | string, offset: number): Table | string { method __indirect (line 246) | __indirect(offset: Offset): Offset { method __vector (line 253) | __vector(offset: Offset): Offset { method __vector_len (line 260) | __vector_len(offset: Offset): Offset { method __has_identifier (line 264) | __has_identifier(ident: string): boolean { method createScalarList (line 283) | createScalarList( method createObjList (line 303) | createObjList, T2 extends IGeneratedO... FILE: ts/constants.ts constant SIZEOF_SHORT (line 1) | const SIZEOF_SHORT = 2; constant SIZEOF_INT (line 2) | const SIZEOF_INT = 4; constant FILE_IDENTIFIER_LENGTH (line 3) | const FILE_IDENTIFIER_LENGTH = 4; constant SIZE_PREFIX_LENGTH (line 4) | const SIZE_PREFIX_LENGTH = 4; FILE: ts/encoding.ts type Encoding (line 1) | enum Encoding { FILE: ts/flexbuffers.ts function builder (line 5) | function builder(): Builder { function toObject (line 9) | function toObject(buffer: ArrayBuffer): unknown { function encode (line 13) | function encode( FILE: ts/flexbuffers/bit-width-util.ts function toByteWidth (line 3) | function toByteWidth(bitWidth: BitWidth): number { function iwidth (line 7) | function iwidth(value: number | bigint): BitWidth { function fwidth (line 14) | function fwidth(value: number): BitWidth { function uwidth (line 18) | function uwidth(value: number): BitWidth { function fromByteWidth (line 25) | function fromByteWidth(value: number): BitWidth { function paddingSize (line 32) | function paddingSize(bufSize: number, scalarSize: number): number { FILE: ts/flexbuffers/bit-width.ts type BitWidth (line 1) | enum BitWidth { FILE: ts/flexbuffers/builder.ts type StackPointer (line 19) | interface StackPointer { class Builder (line 25) | class Builder { method constructor (line 40) | constructor( method align (line 50) | private align(width: BitWidth) { method computeOffset (line 56) | computeOffset(newValueSize: number): number { method pushInt (line 72) | pushInt(value: number, width: BitWidth): void { method pushUInt (line 86) | pushUInt(value: number, width: BitWidth): void { method writeInt (line 100) | private writeInt(value: number, byteWidth: number) { method writeUInt (line 106) | private writeUInt(value: number, byteWidth: number) { method writeBlob (line 112) | private writeBlob(arrayBuffer: ArrayBuffer) { method writeString (line 126) | private writeString(str: string): void { method writeKey (line 154) | private writeKey(str: string): void { method writeStackValue (line 178) | private writeStackValue(value: StackValue, byteWidth: number): void { method integrityCheckOnValueAddition (line 196) | private integrityCheckOnValueAddition() { method integrityCheckOnKeyAddition (line 210) | private integrityCheckOnKeyAddition() { method startVector (line 222) | startVector(): void { method startMap (line 226) | startMap(presorted = false): void { method endVector (line 234) | private endVector(stackPointer: StackPointer) { method endMap (line 241) | private endMap(stackPointer: StackPointer) { method sort (line 274) | private sort(stackPointer: StackPointer) { method end (line 384) | end(): void { method createVector (line 394) | private createVector( method nullStackValue (line 457) | private nullStackValue() { method boolStackValue (line 461) | private boolStackValue(value: boolean) { method intStackValue (line 465) | private intStackValue(value: number | bigint) { method uintStackValue (line 469) | private uintStackValue(value: number) { method floatStackValue (line 473) | private floatStackValue(value: number) { method offsetStackValue (line 477) | private offsetStackValue( method finishBuffer (line 485) | private finishBuffer() { method add (line 497) | add( method finish (line 550) | finish(): Uint8Array { method isFinished (line 558) | isFinished(): boolean { method addKey (line 562) | addKey(key: string): void { method addInt (line 567) | addInt(value: number, indirect = false, deduplicate = false): void { method addUInt (line 597) | addUInt(value: number, indirect = false, deduplicate = false): void { method addFloat (line 627) | addFloat(value: number, indirect = false, deduplicate = false): void { FILE: ts/flexbuffers/flexbuffers-util.ts function fromUTF8Array (line 1) | function fromUTF8Array(data: BufferSource): string { function toUTF8Array (line 6) | function toUTF8Array(str: string): Uint8Array { FILE: ts/flexbuffers/reference-util.ts function validateOffset (line 5) | function validateOffset( function readInt (line 18) | function readInt( function readUInt (line 44) | function readUInt( function readFloat (line 70) | function readFloat( function indirect (line 84) | function indirect( function keyIndex (line 93) | function keyIndex( function diffKeys (line 125) | function diffKeys( function keyForIndex (line 144) | function keyForIndex( FILE: ts/flexbuffers/reference.ts function toReference (line 25) | function toReference(buffer: ArrayBuffer): Reference { function valueForIndexWithKey (line 56) | function valueForIndexWithKey( class Reference (line 78) | class Reference { method constructor (line 82) | constructor( method isNull (line 93) | isNull(): boolean { method isNumber (line 96) | isNumber(): boolean { method isFloat (line 99) | isFloat(): boolean { method isInt (line 105) | isInt(): boolean { method isString (line 108) | isString(): boolean { method isBool (line 113) | isBool(): boolean { method isBlob (line 116) | isBlob(): boolean { method isVector (line 119) | isVector(): boolean { method isMap (line 122) | isMap(): boolean { method boolValue (line 126) | boolValue(): boolean | null { method intValue (line 133) | intValue(): number | bigint | null { method floatValue (line 157) | floatValue(): number | null { method numericValue (line 171) | numericValue(): number | bigint | null { method stringValue (line 175) | stringValue(): string | null { method blobValue (line 188) | blobValue(): Uint8Array | null { method get (line 196) | get(key: number): Reference { method length (line 260) | length(): number { method toObject (line 309) | toObject(): unknown { FILE: ts/flexbuffers/stack-value.ts class StackValue (line 7) | class StackValue { method constructor (line 8) | constructor( method elementWidth (line 16) | elementWidth(size: number, index: number): BitWidth { method writeToBuffer (line 30) | writeToBuffer(byteWidth: number): void { method storedWidth (line 62) | storedWidth(width = BitWidth.WIDTH8): BitWidth { method storedPackedType (line 66) | storedPackedType(width = BitWidth.WIDTH8): ValueType { method isOffset (line 70) | isOffset(): boolean { FILE: ts/flexbuffers/value-type-util.ts function isInline (line 3) | function isInline(value: ValueType): boolean { function isNumber (line 7) | function isNumber(value: ValueType): boolean { function isIndirectNumber (line 11) | function isIndirectNumber(value: ValueType): boolean { function isTypedVectorElement (line 15) | function isTypedVectorElement(value: ValueType): boolean { function isTypedVector (line 22) | function isTypedVector(value: ValueType): boolean { function isFixedTypedVector (line 30) | function isFixedTypedVector(value: ValueType): boolean { function isAVector (line 34) | function isAVector(value: ValueType): boolean { function toTypedVector (line 42) | function toTypedVector(valueType: ValueType, length: number): ValueType { function typedVectorElementType (line 50) | function typedVectorElementType(valueType: ValueType): ValueType { function fixedTypedVectorElementType (line 54) | function fixedTypedVectorElementType(valueType: ValueType): ValueType { function fixedTypedVectorElementSize (line 58) | function fixedTypedVectorElementSize(valueType: ValueType): ValueType { function packedType (line 63) | function packedType(valueType: ValueType, bitWidth: number): ValueType { FILE: ts/flexbuffers/value-type.ts type ValueType (line 1) | enum ValueType { FILE: ts/types.ts type Offset (line 4) | type Offset = number; type Table (line 6) | type Table = { type IGeneratedObject (line 11) | interface IGeneratedObject { type IUnpackableObject (line 15) | interface IUnpackableObject {