Home
last modified time | relevance | path

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

/external/flatbuffers/tests/namespace_test/
Dnamespace_test1_namespace_a.namespace_b_generated.dart10 class EnumInNestedNS {
12 const EnumInNestedNS._(this.value);
14 factory EnumInNestedNS.fromValue(int value) {
17 throw new StateError('Invalid value $value for bit flag enum EnumInNestedNS');
26 static const EnumInNestedNS A = const EnumInNestedNS._(0);
27 static const EnumInNestedNS B = const EnumInNestedNS._(1);
28 static const EnumInNestedNS C = const EnumInNestedNS._(2);
31 static const fb.Reader<EnumInNestedNS> reader = const _EnumInNestedNSReader();
35 return 'EnumInNestedNS{value: $value}';
39 class _EnumInNestedNSReader extends fb.Reader<EnumInNestedNS> {
[all …]
Dnamespace_test1_generated.rs35 pub enum EnumInNestedNS { enum
45 impl<'a> flatbuffers::Follow<'a> for EnumInNestedNS { implementation
53 impl flatbuffers::EndianScalar for EnumInNestedNS { implementation
57 let p = &n as *const i8 as *const EnumInNestedNS; in to_little_endian() constant
63 let p = &n as *const i8 as *const EnumInNestedNS; in from_little_endian() constant
68 impl flatbuffers::Push for EnumInNestedNS { implementation
69 type Output = EnumInNestedNS;
72 flatbuffers::emplace_scalar::<EnumInNestedNS>(dst, *self); in push()
77 const ENUM_VALUES_ENUM_IN_NESTED_NS:[EnumInNestedNS; 3] = [
78 EnumInNestedNS::A,
[all …]
Dnamespace_test2_generated.ts44 fooEnum():NS8755221360535654258.NamespaceA.NamespaceB.EnumInNestedNS {
46 …bb!.readInt8(this.bb_pos + offset)) : NS8755221360535654258.NamespaceA.NamespaceB.EnumInNestedNS.A;
53 mutate_foo_enum(value:NS8755221360535654258.NamespaceA.NamespaceB.EnumInNestedNS):boolean {
92 …(builder:flatbuffers.Builder, fooEnum:NS8755221360535654258.NamespaceA.NamespaceB.EnumInNestedNS) {
93 builder.addFieldInt8(1, fooEnum, NS8755221360535654258.NamespaceA.NamespaceB.EnumInNestedNS.A);
113 …tbuffers.Offset, fooEnum:NS8755221360535654258.NamespaceA.NamespaceB.EnumInNestedNS, fooStructOffs…
Dnamespace_test2_generated.rs67 pub fn foo_enum(&self) -> namespace_b::EnumInNestedNS { in foo_enum() argument
68 …self._tab.get::<namespace_b::EnumInNestedNS>(TableInFirstNS::VT_FOO_ENUM, Some(namespace_b::EnumIn… in foo_enum()
78 pub foo_enum: namespace_b::EnumInNestedNS,
86 foo_enum: namespace_b::EnumInNestedNS::A, in default()
101 pub fn add_foo_enum(&mut self, foo_enum: namespace_b::EnumInNestedNS) { in add_foo_enum() argument
102 …self.fbb_.push_slot::<namespace_b::EnumInNestedNS>(TableInFirstNS::VT_FOO_ENUM, foo_enum, namespac… in add_foo_enum()
Dnamespace_test1_generated.h20 enum EnumInNestedNS { enum
28 inline const EnumInNestedNS (&EnumValuesEnumInNestedNS())[3] { in EnumValuesEnumInNestedNS()
29 static const EnumInNestedNS values[] = { in EnumValuesEnumInNestedNS()
47 inline const char *EnumNameEnumInNestedNS(EnumInNestedNS e) { in EnumNameEnumInNestedNS()
Dnamespace_test2_namespace_a_generated.dart25EnumInNestedNS get fooEnum => new EnumInNestedNS.fromValue(const fb.Int8Reader().vTableGet(_bc, _b…
57 int addFooEnum(EnumInNestedNS fooEnum) {
73 final EnumInNestedNS _fooEnum;
78 EnumInNestedNS fooEnum,
Dnamespace_test2_generated.h56 NamespaceA::NamespaceB::EnumInNestedNS foo_enum() const { in foo_enum()
57 return static_cast<NamespaceA::NamespaceB::EnumInNestedNS>(GetField<int8_t>(VT_FOO_ENUM, 0)); in foo_enum()
59 bool mutate_foo_enum(NamespaceA::NamespaceB::EnumInNestedNS _foo_enum) { in mutate_foo_enum()
84 void add_foo_enum(NamespaceA::NamespaceB::EnumInNestedNS foo_enum) { in add_foo_enum()
105 NamespaceA::NamespaceB::EnumInNestedNS foo_enum = NamespaceA::NamespaceB::EnumInNestedNS_A,
Dnamespace_test1.fbs8 enum EnumInNestedNS:byte
Dnamespace_test2.fbs8 foo_enum:NamespaceB.EnumInNestedNS;
Dnamespace_test2_generated.js70 …umInNestedNS} */ (this.bb.readInt8(this.bb_pos + offset)) : NamespaceA.NamespaceB.EnumInNestedNS.A;
117 builder.addFieldInt8(1, fooEnum, NamespaceA.NamespaceB.EnumInNestedNS.A);
Dnamespace_test1_generated.ts7 export enum EnumInNestedNS{ enum
Dnamespace_test1_generated.js18 NamespaceA.NamespaceB.EnumInNestedNS = {
/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
DEnumInNestedNS.go5 type EnumInNestedNS = int8 talias
7 EnumInNestedNSA EnumInNestedNS = 0
8 EnumInNestedNSB EnumInNestedNS = 1
9 EnumInNestedNSC EnumInNestedNS = 2
12 var EnumNamesEnumInNestedNS = map[EnumInNestedNS]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.cs8 public enum EnumInNestedNS : sbyte enum
/external/flatbuffers/tests/namespace_test/NamespaceA/
DTableInFirstNS.cs21EnumInNestedNS FooEnum { get { int o = __p.__offset(6); return o != 0 ? (NamespaceA.NamespaceB.Enu…
22 …public bool MutateFooEnum(NamespaceA.NamespaceB.EnumInNestedNS foo_enum) { int o = __p.__offset(6)… in MutateFooEnum()
27 …public static void AddFooEnum(FlatBufferBuilder builder, NamespaceA.NamespaceB.EnumInNestedNS fooE… in AddFooEnum()
DTableInFirstNS.go44 func (rcv *TableInFirstNS) FooEnum() EnumInNestedNS {
52 func (rcv *TableInFirstNS) MutateFooEnum(n EnumInNestedNS) bool {
DTableInFirstNS.php48 …eturn $o != 0 ? $this->bb->getSbyte($o + $this->bb_pos) : \NamespaceA\NamespaceB\EnumInNestedNS::A;