OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:__union
(Results
1 - 8
of
8
) sorted by null
/external/flatbuffers/php/
Table.php
107
protected function
__union
($table, $offset)
function
/external/flatbuffers/net/FlatBuffers/
Table.cs
98
public T
__union
<T>(int offset) where T : struct, IFlatbufferObject
/external/flatbuffers/java/com/google/flatbuffers/
Table.java
182
protected Table
__union
(Table t, int offset) {
method in class:Table
/external/flatbuffers/tests/MyGame/Example/
Monster.java
37
public Table test(Table obj) { int o = __offset(20); return o != 0 ?
__union
(obj, o) : null; }
Monster.php
133
return $o != 0 ? $this->
__union
($obj, $o) : null;
Monster.cs
35
public TTable? Test<TTable>() where TTable : struct, IFlatbufferObject { int o = __p.__offset(20); return o != 0 ? (TTable?)__p.
__union
<TTable>(o) : null; }
/external/flatbuffers/js/
flatbuffers.js
1021
flatbuffers.ByteBuffer.prototype.
__union
= function(t, offset) {
method in class:flatbuffers.ByteBuffer
/external/flatbuffers/tests/
monster_test_generated.js
751
return offset ? this.bb.
__union
(obj, this.bb_pos + offset) : null;
[
all
...]
Completed in 2284 milliseconds