HomeSort by relevance Sort by last modified time
    Searched refs:EnumInNestedNS (Results 1 - 12 of 12) sorted by null

  /external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
EnumInNestedNS.java 5 public final class EnumInNestedNS {
6 private EnumInNestedNS() { }
EnumInNestedNS.php 6 class EnumInNestedNS
13 EnumInNestedNS::A=>"A",
14 EnumInNestedNS::B=>"B",
15 EnumInNestedNS::C=>"C",
EnumInNestedNS.py 5 class EnumInNestedNS(object):
EnumInNestedNS.go 5 type EnumInNestedNS = int8
7 EnumInNestedNSA EnumInNestedNS = 0
8 EnumInNestedNSB EnumInNestedNS = 1
9 EnumInNestedNSC EnumInNestedNS = 2
12 var EnumNamesEnumInNestedNS = map[EnumInNestedNS]string{
EnumInNestedNS.cs 8 public enum EnumInNestedNS : sbyte
  /external/flatbuffers/tests/namespace_test/NamespaceA/
TableInFirstNS.cs 21 public NamespaceA.NamespaceB.EnumInNestedNS FooEnum { get { int o = __p.__offset(6); return o != 0 ? (NamespaceA.NamespaceB.EnumInNestedNS)__p.bb.GetSbyte(o + __p.bb_pos) : NamespaceA.NamespaceB.EnumInNestedNS.A; } }
22 public bool MutateFooEnum(NamespaceA.NamespaceB.EnumInNestedNS foo_enum) { int o = __p.__offset(6); if (o != 0) { __p.bb.PutSbyte(o + __p.bb_pos, (sbyte)foo_enum); return true; } else { return false; } }
27 public static void AddFooEnum(FlatBufferBuilder builder, NamespaceA.NamespaceB.EnumInNestedNS fooEnum) { builder.AddSbyte(1, (sbyte)fooEnum, 0); }
TableInFirstNS.go 44 func (rcv *TableInFirstNS) FooEnum() EnumInNestedNS {
52 func (rcv *TableInFirstNS) MutateFooEnum(n EnumInNestedNS) bool {
TableInFirstNS.php 48 return $o != 0 ? $this->bb->getSbyte($o + $this->bb_pos) : \NamespaceA\NamespaceB\EnumInNestedNS::A;
  /external/flatbuffers/tests/namespace_test/
namespace_test1_generated.h 20 enum EnumInNestedNS {
28 inline const EnumInNestedNS (&EnumValuesEnumInNestedNS())[3] {
29 static const EnumInNestedNS values[] = {
47 inline const char *EnumNameEnumInNestedNS(EnumInNestedNS e) {
namespace_test2_generated.h 56 NamespaceA::NamespaceB::EnumInNestedNS foo_enum() const {
57 return static_cast<NamespaceA::NamespaceB::EnumInNestedNS>(GetField<int8_t>(VT_FOO_ENUM, 0));
59 bool mutate_foo_enum(NamespaceA::NamespaceB::EnumInNestedNS _foo_enum) {
84 void add_foo_enum(NamespaceA::NamespaceB::EnumInNestedNS foo_enum) {
105 NamespaceA::NamespaceB::EnumInNestedNS foo_enum = NamespaceA::NamespaceB::EnumInNestedNS_A,
namespace_test2_generated.js 66 * @returns {NamespaceA.NamespaceB.EnumInNestedNS}
70 return offset ? /** @type {NamespaceA.NamespaceB.EnumInNestedNS} */ (this.bb.readInt8(this.bb_pos + offset)) : NamespaceA.NamespaceB.EnumInNestedNS.A;
74 * @param {NamespaceA.NamespaceB.EnumInNestedNS} value
114 * @param {NamespaceA.NamespaceB.EnumInNestedNS} fooEnum
117 builder.addFieldInt8(1, fooEnum, NamespaceA.NamespaceB.EnumInNestedNS.A);
140 * @param {NS8755221360535654258.NamespaceA.NamespaceB.EnumInNestedNS} fooEnum
namespace_test1_generated.js 18 NamespaceA.NamespaceB.EnumInNestedNS = {

Completed in 910 milliseconds