HomeSort by relevance Sort by last modified time
    Searched defs:__p (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/flatbuffers/tests/MyGame/Example2/
Monster.cs 13 private Table __p; field in struct:MyGame.Example2.Monster
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
  /external/flatbuffers/tests/MyGame/
InParentNamespace.cs 13 private Table __p; field in struct:MyGame.InParentNamespace
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
  /external/flatbuffers/tests/MyGame/Example/
Ability.cs 13 private Struct __p; field in struct:MyGame.Example.Ability
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
15 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
18 public uint Id { get { return __p.bb.GetUint(__p.bb_pos + 0); } }
19 public void MutateId(uint id) { __p.bb.PutUint(__p.bb_pos + 0, id); }
20 public uint Distance { get { return __p.bb.GetUint(__p.bb_pos + 4); }
    [all...]
Test.cs 13 private Struct __p; field in struct:MyGame.Example.Test
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
15 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
18 public short A { get { return __p.bb.GetShort(__p.bb_pos + 0); } }
19 public void MutateA(short a) { __p.bb.PutShort(__p.bb_pos + 0, a); }
20 public sbyte B { get { return __p.bb.GetSbyte(__p.bb_pos + 2); }
    [all...]
TestSimpleTableWithEnum.cs 13 private Table __p; field in struct:MyGame.Example.TestSimpleTableWithEnum
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
20 public Color Color { get { int o = __p.__offset(4); return o != 0 ? (Color)__p.bb.GetSbyte(o + __p.bb_pos) : Color.Green; } }
21 public bool MutateColor(Color color) { int o = __p.__offset(4); if (o != 0) { __p.bb.PutSbyte(o + __p.bb_pos, (sbyte)color); return true; } else { return false; }
    [all...]
Stat.cs 13 private Table __p; field in struct:MyGame.Example.Stat
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
20 public string Id { get { int o = __p.__offset(4); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
21 public ArraySegment<byte>? GetIdBytes() { return __p.__vector_as_arraysegment(4); }
22 public long Val { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; }
    [all...]
Vec3.cs 13 private Struct __p; field in struct:MyGame.Example.Vec3
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
15 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
18 public float X { get { return __p.bb.GetFloat(__p.bb_pos + 0); } }
19 public void MutateX(float x) { __p.bb.PutFloat(__p.bb_pos + 0, x); }
20 public float Y { get { return __p.bb.GetFloat(__p.bb_pos + 4); }
    [all...]
TypeAliases.cs 13 private Table __p; field in struct:MyGame.Example.TypeAliases
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
20 public sbyte I8 { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetSbyte(o + __p.bb_pos) : (sbyte)0; } }
21 public bool MutateI8(sbyte i8) { int o = __p.__offset(4); if (o != 0) { __p.bb.PutSbyte(o + __p.bb_pos, i8); return true; } else { return false; }
    [all...]
  /external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
StructInNestedNS.cs 13 private Struct __p; field in struct:NamespaceA.NamespaceB.StructInNestedNS
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
15 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
18 public int A { get { return __p.bb.GetInt(__p.bb_pos + 0); } }
19 public void MutateA(int a) { __p.bb.PutInt(__p.bb_pos + 0, a); }
20 public int B { get { return __p.bb.GetInt(__p.bb_pos + 4); }
    [all...]
TableInNestedNS.cs 13 private Table __p; field in struct:NamespaceA.NamespaceB.TableInNestedNS
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
20 public int Foo { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
21 public bool MutateFoo(int foo) { int o = __p.__offset(4); if (o != 0) { __p.bb.PutInt(o + __p.bb_pos, foo); return true; } else { return false; }
    [all...]
  /external/flatbuffers/tests/namespace_test/NamespaceA/
SecondTableInA.cs 13 private Table __p; field in struct:NamespaceA.SecondTableInA
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
20 public NamespaceC.TableInC? ReferToC { get { int o = __p.__offset(4); return o != 0 ? (NamespaceC.TableInC?)(new NamespaceC.TableInC()).__assign(__p.__indirect(o + __p.bb_pos), __p.bb) : null; } }
TableInFirstNS.cs 13 private Table __p; field in struct:NamespaceA.TableInFirstNS
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
20 public NamespaceA.NamespaceB.TableInNestedNS? FooTable { get { int o = __p.__offset(4); return o != 0 ? (NamespaceA.NamespaceB.TableInNestedNS?)(new NamespaceA.NamespaceB.TableInNestedNS()).__assign(__p.__indirect(o + __p.bb_pos), __p.bb) : null; } }
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; }
    [all...]
  /external/flatbuffers/tests/namespace_test/NamespaceC/
TableInC.cs 13 private Table __p; field in struct:NamespaceC.TableInC
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
20 public NamespaceA.TableInFirstNS? ReferToA1 { get { int o = __p.__offset(4); return o != 0 ? (NamespaceA.TableInFirstNS?)(new NamespaceA.TableInFirstNS()).__assign(__p.__indirect(o + __p.bb_pos), __p.bb) : null; } }
21 public NamespaceA.SecondTableInA? ReferToA2 { get { int o = __p.__offset(6); return o != 0 ? (NamespaceA.SecondTableInA?)(new NamespaceA.SecondTableInA()).__assign(__p.__indirect(o + __p.bb_pos), __p.bb) : null; }
    [all...]
  /external/libcxx/src/
thread.cpp 128 static __thread_specific_ptr<__thread_struct> __p; local
129 return __p;
142 void deallocate(T* __p, size_t) {::operator delete(static_cast<void*>(__p));}
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
streambuf_iterator.h 388 const _CharT* __p = traits_type::find(__sb->gptr(), local
390 if (__p)
391 __n = __p - __sb->gptr();
unique_ptr.h 141 unique_ptr(pointer __p) noexcept
142 : _M_t(__p, deleter_type())
146 unique_ptr(pointer __p,
149 : _M_t(__p, __d) { }
151 unique_ptr(pointer __p,
153 : _M_t(std::move(__p), std::move(__d))
251 pointer __p = get(); local
253 return __p;
257 reset(pointer __p = pointer()) noexcept
260 swap(std::get<0>(_M_t), __p);
434 pointer __p = get(); local
    [all...]
stl_set.h 462 std::pair<typename _Rep_type::iterator, bool> __p = local
464 return std::pair<iterator, bool>(__p.first, __p.second);
471 std::pair<typename _Rep_type::iterator, bool> __p = local
473 return std::pair<iterator, bool>(__p.first, __p.second);
shared_ptr_base.h 285 _Sp_counted_ptr(_Ptr __p)
286 : _M_ptr(__p) { }
335 // __d(__p) must not throw.
336 _Sp_counted_deleter(_Ptr __p, _Deleter __d)
337 : _M_ptr(__p), _M_del(__d, _Alloc()) { }
339 // __d(__p) must not throw.
340 _Sp_counted_deleter(_Ptr __p, _Deleter __d, const _Alloc& __a)
341 : _M_ptr(__p), _M_del(__d, __a) { }
448 __shared_count(_Ptr __p) : _M_pi(0)
452 _M_pi = new _Sp_counted_ptr<_Ptr, _Lp>(__p);
961 void* __p = _M_refcount._M_get_deleter(typeid(__tag)); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
pod_char_traits.h 127 const char_type* __p = __s; local
128 while (__p->value)
129 ++__p;
130 return (__p - __s);
136 for (const char_type* __p = __s; size_t(__p - __s) < __n; ++__p)
137 if (*__p == __a)
138 return __p;
rc_string_base.h 185 _M_data(_CharT* __p)
186 { _M_dataplus._M_p = __p; }
437 _Rep* __p = new (__place) _Rep; local
438 __p->_M_info._M_capacity = __capacity;
439 return __p;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
streambuf_iterator.h 388 const _CharT* __p = traits_type::find(__sb->gptr(), local
390 if (__p)
391 __n = __p - __sb->gptr();
unique_ptr.h 141 unique_ptr(pointer __p) noexcept
142 : _M_t(__p, deleter_type())
146 unique_ptr(pointer __p,
149 : _M_t(__p, __d) { }
151 unique_ptr(pointer __p,
153 : _M_t(std::move(__p), std::move(__d))
251 pointer __p = get(); local
253 return __p;
257 reset(pointer __p = pointer()) noexcept
260 swap(std::get<0>(_M_t), __p);
434 pointer __p = get(); local
    [all...]
stl_set.h 462 std::pair<typename _Rep_type::iterator, bool> __p = local
464 return std::pair<iterator, bool>(__p.first, __p.second);
471 std::pair<typename _Rep_type::iterator, bool> __p = local
473 return std::pair<iterator, bool>(__p.first, __p.second);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
pod_char_traits.h 127 const char_type* __p = __s; local
128 while (__p->value)
129 ++__p;
130 return (__p - __s);
136 for (const char_type* __p = __s; size_t(__p - __s) < __n; ++__p)
137 if (*__p == __a)
138 return __p;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/src/
thread.cpp 128 static __thread_specific_ptr<__thread_struct> __p; local
129 return __p;
142 void deallocate(T* __p, size_t) {::operator delete(static_cast<void*>(__p));}

Completed in 418 milliseconds

1 2 3