OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:__vector_len
(Results
1 - 10
of
10
) sorted by null
/external/flatbuffers/php/
Table.php
74
protected function
__vector_len
($offset)
function
99
return substr($this->bb->_buffer, $this->__vector($o), $this->
__vector_len
($o) * $elem_size);
/external/flatbuffers/net/FlatBuffers/
Table.cs
67
public int
__vector_len
(int offset)
method in struct:FlatBuffers.Table
93
var len = this.
__vector_len
(o);
/external/flatbuffers/tests/MyGame/Example/
Monster.java
30
public int inventoryLength() { int o = __offset(14); return o != 0 ?
__vector_len
(o) : 0; }
40
public int test4Length() { int o = __offset(22); return o != 0 ?
__vector_len
(o) : 0; }
42
public int testarrayofstringLength() { int o = __offset(24); return o != 0 ?
__vector_len
(o) : 0; }
49
public int testarrayoftablesLength() { int o = __offset(26); return o != 0 ?
__vector_len
(o) : 0; }
53
public int testnestedflatbufferLength() { int o = __offset(30); return o != 0 ?
__vector_len
(o) : 0; }
79
public int testarrayofboolsLength() { int o = __offset(52); return o != 0 ?
__vector_len
(o) : 0; }
89
public int testarrayofstring2Length() { int o = __offset(60); return o != 0 ?
__vector_len
(o) : 0; }
Monster.php
98
return $o != 0 ? $this->
__vector_len
($o) : 0;
152
return $o != 0 ? $this->
__vector_len
($o) : 0;
171
return $o != 0 ? $this->
__vector_len
($o) : 0;
192
return $o != 0 ? $this->
__vector_len
($o) : 0;
218
return $o != 0 ? $this->
__vector_len
($o) : 0;
333
return $o != 0 ? $this->
__vector_len
($o) : 0;
379
return $o != 0 ? $this->
__vector_len
($o) : 0;
Monster.cs
28
public int InventoryLength { get { int o = __p.__offset(14); return o != 0 ? __p.
__vector_len
(o) : 0; } }
37
public int Test4Length { get { int o = __p.__offset(22); return o != 0 ? __p.
__vector_len
(o) : 0; } }
39
public int TestarrayofstringLength { get { int o = __p.__offset(24); return o != 0 ? __p.
__vector_len
(o) : 0; } }
43
public int TestarrayoftablesLength { get { int o = __p.__offset(26); return o != 0 ? __p.
__vector_len
(o) : 0; } }
46
public int TestnestedflatbufferLength { get { int o = __p.__offset(30); return o != 0 ? __p.
__vector_len
(o) : 0; } }
70
public int TestarrayofboolsLength { get { int o = __p.__offset(52); return o != 0 ? __p.
__vector_len
(o) : 0; } }
80
public int Testarrayofstring2Length { get { int o = __p.__offset(60); return o != 0 ? __p.
__vector_len
(o) : 0; } }
/external/noto-fonts/emoji-compat/src/java/android/support/text/emoji/flatbuffer/
MetadataList.java
66
return o != 0 ?
__vector_len
(o) : 0;
MetadataItem.java
87
return o != 0 ?
__vector_len
(o) : 0;
/external/flatbuffers/java/com/google/flatbuffers/
Table.java
137
protected int
__vector_len
(int offset) {
method in class:Table
171
bb.limit(vectorstart +
__vector_len
(o) * elem_size);
/external/flatbuffers/tests/
monster_test_generated.js
688
return offset ? this.bb.
__vector_len
(this.bb_pos + offset) : 0;
696
return offset ? new Uint8Array(this.bb.bytes().buffer, this.bb.bytes().byteOffset + this.bb.__vector(this.bb_pos + offset), this.bb.
__vector_len
(this.bb_pos + offset)) : null;
769
return offset ? this.bb.
__vector_len
(this.bb_pos + offset) : 0;
787
return offset ? this.bb.
__vector_len
(this.bb_pos + offset) : 0;
808
return offset ? this.bb.
__vector_len
(this.bb_pos + offset) : 0;
834
return offset ? this.bb.
__vector_len
(this.bb_pos + offset) : 0;
842
return offset ? new Uint8Array(this.bb.bytes().buffer, this.bb.bytes().byteOffset + this.bb.__vector(this.bb_pos + offset), this.bb.
__vector_len
(this.bb_pos + offset)) : null;
1075
return offset ? this.bb.
__vector_len
(this.bb_pos + offset) : 0;
1083
return offset ? new Int8Array(this.bb.bytes().buffer, this.bb.bytes().byteOffset + this.bb.__vector(this.bb_pos + offset), this.bb.
__vector_len
(this.bb_pos + offset)) : null;
1170
return offset ? this.bb.
__vector_len
(this.bb_pos + offset) : 0
[
all
...]
/external/flatbuffers/js/
flatbuffers.js
1123
flatbuffers.ByteBuffer.prototype.
__vector_len
= function(offset) {
method in class:flatbuffers.ByteBuffer
Completed in 190 milliseconds