/third_party/flatbuffers/tests/namespace_test/namespace-a/namespace-b/ |
D | enum-in-nested-n-s.js | 2 export var EnumInNestedNS; variable 3 (function (EnumInNestedNS) { argument 4 EnumInNestedNS[EnumInNestedNS["A"] = 0] = "A"; 5 EnumInNestedNS[EnumInNestedNS["B"] = 1] = "B"; 6 EnumInNestedNS[EnumInNestedNS["C"] = 2] = "C"; 7 })(EnumInNestedNS || (EnumInNestedNS = {}));
|
D | enum-in-nested-n-s.ts | 3 export enum EnumInNestedNS{ enum
|
/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/ |
D | EnumInNestedNS.go | 7 type EnumInNestedNS int8 type 10 EnumInNestedNSA EnumInNestedNS = 0 11 EnumInNestedNSB EnumInNestedNS = 1 12 EnumInNestedNSC EnumInNestedNS = 2 15 var EnumNamesEnumInNestedNS = map[EnumInNestedNS]string{ 21 var EnumValuesEnumInNestedNS = map[string]EnumInNestedNS{ 27 func (v EnumInNestedNS) String() string {
|
D | EnumInNestedNS.php | 6 class EnumInNestedNS class 13 EnumInNestedNS::A=>"A", 14 EnumInNestedNS::B=>"B", 15 EnumInNestedNS::C=>"C",
|
D | EnumInNestedNS.lua | 5 local EnumInNestedNS = { 11 return EnumInNestedNS -- return the module
|
D | EnumInNestedNS.java | 5 public final class EnumInNestedNS { class 6 private EnumInNestedNS() { } in EnumInNestedNS() method in EnumInNestedNS
|
D | EnumInNestedNS.py | 5 class EnumInNestedNS(object): class
|
D | EnumInNestedNS.cs | 9 public enum EnumInNestedNS : sbyte enum
|
D | EnumInNestedNS.kt | 7 class EnumInNestedNS private constructor() { class
|
/third_party/flatbuffers/tests/namespace_test/ |
D | namespace_test1_namespace_a.namespace_b_generated.dart | 49 class EnumInNestedNS { 51 const EnumInNestedNS._(this.value); 53 factory EnumInNestedNS.fromValue(int value) { 56 throw new StateError('Invalid value $value for bit flag enum EnumInNestedNS'); 65 static const EnumInNestedNS A = const EnumInNestedNS._(0); 66 static const EnumInNestedNS B = const EnumInNestedNS._(1); 67 static const EnumInNestedNS C = const EnumInNestedNS._(2); 68 static const Map<int,EnumInNestedNS> values = {0: A,1: B,2: C,}; 70 static const fb.Reader<EnumInNestedNS> reader = const _EnumInNestedNSReader(); 74 return 'EnumInNestedNS{value: $value}'; [all …]
|
D | namespace_test1_generated.rs | 169 pub const ENUM_VALUES_ENUM_IN_NESTED_NS: [EnumInNestedNS; 3] = [ 170 EnumInNestedNS::A, 171 EnumInNestedNS::B, 172 EnumInNestedNS::C, 177 pub struct EnumInNestedNS(pub i8); struct 179 impl EnumInNestedNS { implementation 201 impl std::fmt::Debug for EnumInNestedNS { implementation 210 impl<'a> flatbuffers::Follow<'a> for EnumInNestedNS { implementation 221 impl flatbuffers::Push for EnumInNestedNS { implementation 222 type Output = EnumInNestedNS; [all …]
|
D | namespace_test2_generated.rs | 169 pub const ENUM_VALUES_ENUM_IN_NESTED_NS: [EnumInNestedNS; 3] = [ 170 EnumInNestedNS::A, 171 EnumInNestedNS::B, 172 EnumInNestedNS::C, 177 pub struct EnumInNestedNS(pub i8); struct 179 impl EnumInNestedNS { impl 201 impl std::fmt::Debug for EnumInNestedNS { implementation 210 impl<'a> flatbuffers::Follow<'a> for EnumInNestedNS { implementation 221 impl flatbuffers::Push for EnumInNestedNS { implementation 222 type Output = EnumInNestedNS; [all …]
|
D | namespace_test2_namespace_a_generated.dart | 24 …EnumInNestedNS get fooEnum => new EnumInNestedNS.fromValue(const fb.Int8Reader().vTableGet(_bc, _b… 63 int addFooEnum(EnumInNestedNS fooEnum) { 87 final EnumInNestedNS _fooEnum; 94 EnumInNestedNS fooEnum,
|
D | namespace_test2_generated.lobster | 21 return EnumInNestedNS(buf_.flatbuffers_field_int8(pos_, 6, 0)) 40 def add_foo_enum(foo_enum:EnumInNestedNS):
|
D | namespace_test2_generated.h | 66 NamespaceA::NamespaceB::EnumInNestedNS foo_enum = NamespaceA::NamespaceB::EnumInNestedNS_A; 106 NamespaceA::NamespaceB::EnumInNestedNS foo_enum() const { in foo_enum() 107 return static_cast<NamespaceA::NamespaceB::EnumInNestedNS>(GetField<int8_t>(VT_FOO_ENUM, 0)); in foo_enum() 109 bool mutate_foo_enum(NamespaceA::NamespaceB::EnumInNestedNS _foo_enum) { in mutate_foo_enum() 158 void add_foo_enum(NamespaceA::NamespaceB::EnumInNestedNS foo_enum) { in add_foo_enum() 184 NamespaceA::NamespaceB::EnumInNestedNS foo_enum = NamespaceA::NamespaceB::EnumInNestedNS_A,
|
D | namespace_test1.fbs | 12 enum EnumInNestedNS:byte
|
D | namespace_test1_generated.h | 131 enum EnumInNestedNS : int8_t { 139 inline const EnumInNestedNS (&EnumValuesEnumInNestedNS())[3] { 140 static const EnumInNestedNS values[] = { 158 inline const char *EnumNameEnumInNestedNS(EnumInNestedNS e) {
|
D | namespace_test2.fbs | 8 foo_enum:NamespaceB.EnumInNestedNS;
|
D | namespace_test1_generated.lobster | 10 enum EnumInNestedNS:
|
/third_party/flatbuffers/tests/namespace_test/namespace-a/ |
D | table-in-first-n-s.ts | 5 import { EnumInNestedNS } from '../namespace-a/namespace-b/enum-in-nested-n-s'; 34 fooEnum():EnumInNestedNS { 36 return offset ? this.bb!.readInt8(this.bb_pos + offset) : EnumInNestedNS.A; 39 mutate_foo_enum(value:EnumInNestedNS):boolean { 77 static addFooEnum(builder:flatbuffers.Builder, fooEnum:EnumInNestedNS) { 78 builder.addFieldInt8(1, fooEnum, EnumInNestedNS.A); 130 public fooEnum: EnumInNestedNS = EnumInNestedNS.A,
|
D | table-in-first-n-s.js | 3 import { EnumInNestedNS } from '../namespace-a/namespace-b/enum-in-nested-n-s'; 30 return offset ? this.bb.readInt8(this.bb_pos + offset) : EnumInNestedNS.A; 62 builder.addFieldInt8(1, fooEnum, EnumInNestedNS.A); 101 …constructor(fooTable = null, fooEnum = EnumInNestedNS.A, fooUnionType = UnionInNestedNS.NONE, fooU…
|
/third_party/flatbuffers/tests/namespace_test/NamespaceA/ |
D | TableInFirstNS.cs | 23 …EnumInNestedNS FooEnum { get { int o = __p.__offset(6); return o != 0 ? (NamespaceA.NamespaceB.Enu… 24 …public bool MutateFooEnum(NamespaceA.NamespaceB.EnumInNestedNS foo_enum) { int o = __p.__offset(6)… in MutateFooEnum() 32 NamespaceA.NamespaceB.EnumInNestedNS foo_enum = NamespaceA.NamespaceB.EnumInNestedNS.A, in CreateTableInFirstNS() 47 …public static void AddFooEnum(FlatBufferBuilder builder, NamespaceA.NamespaceB.EnumInNestedNS fooE… in AddFooEnum() 93 public NamespaceA.NamespaceB.EnumInNestedNS FooEnum { get; set; } 112 this.FooEnum = NamespaceA.NamespaceB.EnumInNestedNS.A; in TableInFirstNST()
|
D | TableInFirstNS.go | 13 FooEnum NamespaceA__NamespaceB.EnumInNestedNS 92 func (rcv *TableInFirstNS) FooEnum() NamespaceA__NamespaceB.EnumInNestedNS { 95 return NamespaceA__NamespaceB.EnumInNestedNS(rcv._tab.GetInt8(o + rcv._tab.Pos)) 100 func (rcv *TableInFirstNS) MutateFooEnum(n NamespaceA__NamespaceB.EnumInNestedNS) bool { 144 …eInFirstNSAddFooEnum(builder *flatbuffers.Builder, fooEnum NamespaceA__NamespaceB.EnumInNestedNS) { argument
|
D | TableInFirstNS.php | 48 …eturn $o != 0 ? $this->bb->getSbyte($o + $this->bb_pos) : \NamespaceA\NamespaceB\EnumInNestedNS::A;
|
/third_party/flatbuffers/tests/FlatBuffers.Test/ |
D | FlatBuffers.Core.Test.csproj | 104 <Compile Include="..\namespace_test\NamespaceA\NamespaceB\EnumInNestedNS.cs"> 105 <Link>NamespaceA\NamespaceB\EnumInNestedNS.cs</Link>
|