Home
last modified time | relevance | path

Searched refs:EnumInNestedNS (Results 1 – 25 of 25) sorted by relevance

/third_party/flatbuffers/tests/namespace_test/namespace-a/namespace-b/
Denum-in-nested-n-s.js2 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 = {}));
Denum-in-nested-n-s.ts3 export enum EnumInNestedNS{ enum
/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
DEnumInNestedNS.go7 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 {
DEnumInNestedNS.php6 class EnumInNestedNS class
13 EnumInNestedNS::A=>"A",
14 EnumInNestedNS::B=>"B",
15 EnumInNestedNS::C=>"C",
DEnumInNestedNS.lua5 local EnumInNestedNS = {
11 return EnumInNestedNS -- return the module
DEnumInNestedNS.java5 public final class EnumInNestedNS { class
6 private EnumInNestedNS() { } in EnumInNestedNS() method in EnumInNestedNS
DEnumInNestedNS.py5 class EnumInNestedNS(object): class
DEnumInNestedNS.cs9 public enum EnumInNestedNS : sbyte enum
DEnumInNestedNS.kt7 class EnumInNestedNS private constructor() { class
/third_party/flatbuffers/tests/namespace_test/
Dnamespace_test1_namespace_a.namespace_b_generated.dart49 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 …]
Dnamespace_test1_generated.rs169 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 …]
Dnamespace_test2_generated.rs169 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 …]
Dnamespace_test2_namespace_a_generated.dart24EnumInNestedNS get fooEnum => new EnumInNestedNS.fromValue(const fb.Int8Reader().vTableGet(_bc, _b…
63 int addFooEnum(EnumInNestedNS fooEnum) {
87 final EnumInNestedNS _fooEnum;
94 EnumInNestedNS fooEnum,
Dnamespace_test2_generated.lobster21 return EnumInNestedNS(buf_.flatbuffers_field_int8(pos_, 6, 0))
40 def add_foo_enum(foo_enum:EnumInNestedNS):
Dnamespace_test2_generated.h66 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,
Dnamespace_test1.fbs12 enum EnumInNestedNS:byte
Dnamespace_test1_generated.h131 enum EnumInNestedNS : int8_t {
139 inline const EnumInNestedNS (&EnumValuesEnumInNestedNS())[3] {
140 static const EnumInNestedNS values[] = {
158 inline const char *EnumNameEnumInNestedNS(EnumInNestedNS e) {
Dnamespace_test2.fbs8 foo_enum:NamespaceB.EnumInNestedNS;
Dnamespace_test1_generated.lobster10 enum EnumInNestedNS:
/third_party/flatbuffers/tests/namespace_test/namespace-a/
Dtable-in-first-n-s.ts5 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,
Dtable-in-first-n-s.js3 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/
DTableInFirstNS.cs23EnumInNestedNS 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()
DTableInFirstNS.go13 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
DTableInFirstNS.php48 …eturn $o != 0 ? $this->bb->getSbyte($o + $this->bb_pos) : \NamespaceA\NamespaceB\EnumInNestedNS::A;
/third_party/flatbuffers/tests/FlatBuffers.Test/
DFlatBuffers.Core.Test.csproj104 <Compile Include="..\namespace_test\NamespaceA\NamespaceB\EnumInNestedNS.cs">
105 <Link>NamespaceA\NamespaceB\EnumInNestedNS.cs</Link>