Home
last modified time | relevance | path

Searched refs:__union (Results 1 – 9 of 9) sorted by relevance

/external/libcxx/include/
Dvariant374 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/
DTable.php107 protected function __union($table, $offset) function in Google\\FlatBuffers\\Table
/external/flatbuffers/net/FlatBuffers/
DTable.cs98 public T __union<T>(int offset) where T : struct, IFlatbufferObject
/external/flatbuffers/java/com/google/flatbuffers/
DTable.java182 protected Table __union(Table t, int offset) { in __union() method in Table
/external/flatbuffers/js/
Dflatbuffers.js1021 flatbuffers.ByteBuffer.prototype.__union = function(t, offset) { method in flatbuffers.ByteBuffer
/external/flatbuffers/tests/MyGame/Example/
DMonster.php133 return $o != 0 ? $this->__union($obj, $o) : null;
DMonster.java37 public Table test(Table obj) { int o = __offset(20); return o != 0 ? __union(obj, o) : null; } in test()
DMonster.cs35 …latbufferObject { int o = __p.__offset(20); return o != 0 ? (TTable?)__p.__union<TTable>(o) : null…
/external/flatbuffers/tests/
Dmonster_test_generated.js751 return offset ? this.bb.__union(obj, this.bb_pos + offset) : null;