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

1 2 3 4 5 6

  /external/flatbuffers/net/FlatBuffers/
IFlatbufferObject.cs 24 void __init(int _i, ByteBuffer _bb); method in interface:FlatBuffers.IFlatbufferObject
  /external/libcxx/src/
valarray.cpp 22 gslice::__init(size_t __start) function in class:gslice
  /external/libnl/include/netlink/cli/
utils.h 55 #ifndef __init
56 #define __init __attribute__((constructor)) macro
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/src/
valarray.cpp 21 gslice::__init(size_t __start) function in class:gslice
system_error.cpp 152 system_error::__init(const error_code& ec, string what_arg) function in class:system_error
164 : runtime_error(__init(ec, what_arg)),
170 : runtime_error(__init(ec, what_arg)),
176 : runtime_error(__init(ec, "")),
182 : runtime_error(__init(error_code(ev, ecat), what_arg)),
188 : runtime_error(__init(error_code(ev, ecat), what_arg)),
194 : runtime_error(__init(error_code(ev, ecat), "")),
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/src/
valarray.cpp 22 gslice::__init(size_t __start) function in class:gslice
system_error.cpp 147 system_error::__init(const error_code& ec, string what_arg) function in class:system_error
159 : runtime_error(__init(ec, what_arg)),
165 : runtime_error(__init(ec, what_arg)),
171 : runtime_error(__init(ec, "")),
177 : runtime_error(__init(error_code(ev, ecat), what_arg)),
183 : runtime_error(__init(error_code(ev, ecat), what_arg)),
189 : runtime_error(__init(error_code(ev, ecat), "")),
  /external/compiler-rt/test/scudo/
preinit.cpp 13 void __init(void) { function
35 void (*__local_preinit)(void) = __init;
  /external/syslinux/gpxe/src/include/gpxe/
linux_compat.h 21 #define __init macro
  /external/flatbuffers/tests/MyGame/Example/
Test.java 12 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; } method in class:Test
13 public Test __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method
Test.cs 13 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } method in struct:MyGame.Example.Test
14 public Test __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
TestSimpleTableWithEnum.cs 15 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } method in struct:MyGame.Example.TestSimpleTableWithEnum
16 public TestSimpleTableWithEnum __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
TestSimpleTableWithEnum.java 14 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; } method in class:TestSimpleTableWithEnum
15 public TestSimpleTableWithEnum __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method
  /external/flatbuffers/tests/MyGame/Example2/
Monster.cs 15 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } method in struct:MyGame.Example2.Monster
16 public Monster __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
Monster.java 14 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; } method in class:Monster
15 public Monster __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method
  /external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
StructInNestedNS.java 12 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; } method in class:StructInNestedNS
13 public StructInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method
StructInNestedNS.cs 13 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } method in struct:NamespaceA.NamespaceB.StructInNestedNS
14 public StructInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
TableInNestedNS.cs 15 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } method in struct:NamespaceA.NamespaceB.TableInNestedNS
16 public TableInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
TableInNestedNS.java 14 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; } method in class:TableInNestedNS
15 public TableInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method
  /external/flatbuffers/tests/namespace_test/NamespaceA/
SecondTableInA.cs 15 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } method in struct:NamespaceA.SecondTableInA
16 public SecondTableInA __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
SecondTableInA.java 14 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; } method in class:SecondTableInA
15 public SecondTableInA __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method
TableInC.cs 11 public static TableInC GetRootAsTableInC(ByteBuffer _bb, TableInC obj) { return (obj.__init(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
12 public TableInC __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; return this; } method in class:NamespaceA.TableInC
15 public NamespaceA.TableInFirstNS GetReferToA1(NamespaceA.TableInFirstNS obj) { int o = __offset(4); return o != 0 ? obj.__init(__indirect(o + bb_pos), bb) : null; }
17 public SecondTableInA GetReferToA2(SecondTableInA obj) { int o = __offset(6); return o != 0 ? obj.__init(__indirect(o + bb_pos), bb) : null; }
TableInC.java 13 public static TableInC getRootAsTableInC(ByteBuffer _bb, TableInC obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__init(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
14 public TableInC __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; return this; } method in class:TableInC
17 public NamespaceA.TableInFirstNS referToA1(NamespaceA.TableInFirstNS obj) { int o = __offset(4); return o != 0 ? obj.__init(__indirect(o + bb_pos), bb) : null; }
19 public SecondTableInA referToA2(SecondTableInA obj) { int o = __offset(6); return o != 0 ? obj.__init(__indirect(o + bb_pos), bb) : null; }
TableInFirstNS.cs 15 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } method in struct:NamespaceA.TableInFirstNS
16 public TableInFirstNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
TableInFirstNS.java 14 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; } method in class:TableInFirstNS
15 public TableInFirstNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method

Completed in 653 milliseconds

1 2 3 4 5 6