Searched refs:__union (Results 1 – 9 of 9) sorted by relevance
/external/libcxx/include/ |
D | variant | 374 struct __union { 392 return __union::__get_alt(_VSTD::forward<_Vp>(__v).__data, 610 union _LIBCPP_TEMPLATE_VIS __union; 613 union _LIBCPP_TEMPLATE_VIS __union<_DestructibleTrait, _Index> {}; 617 union _LIBCPP_TEMPLATE_VIS __union<destructible_trait, \ 623 explicit constexpr __union(__valueless_t) noexcept : __dummy{} {} \ 627 explicit constexpr __union(in_place_index_t<0>, _Args&&... __args) \ 632 explicit constexpr __union(in_place_index_t<_Ip>, _Args&&... __args) \ 635 __union(const __union&) = default; \ 636 __union(__union&&) = default; \ [all …]
|
/external/flatbuffers/php/ |
D | Table.php | 107 protected function __union($table, $offset) function in Google\\FlatBuffers\\Table
|
/external/flatbuffers/net/FlatBuffers/ |
D | Table.cs | 98 public T __union<T>(int offset) where T : struct, IFlatbufferObject
|
/external/flatbuffers/java/com/google/flatbuffers/ |
D | Table.java | 182 protected Table __union(Table t, int offset) { in __union() method in Table
|
/external/flatbuffers/js/ |
D | flatbuffers.js | 1021 flatbuffers.ByteBuffer.prototype.__union = function(t, offset) { method in flatbuffers.ByteBuffer
|
/external/flatbuffers/tests/MyGame/Example/ |
D | Monster.php | 133 return $o != 0 ? $this->__union($obj, $o) : null;
|
D | Monster.java | 37 public Table test(Table obj) { int o = __offset(20); return o != 0 ? __union(obj, o) : null; } in test()
|
D | Monster.cs | 35 …latbufferObject { int o = __p.__offset(20); return o != 0 ? (TTable?)__p.__union<TTable>(o) : null…
|
/external/flatbuffers/tests/ |
D | monster_test_generated.js | 751 return offset ? this.bb.__union(obj, this.bb_pos + offset) : null;
|