/external/libcxx/include/ |
D | iomanip | 47 #include <__string> 536 __quoted_input ( basic_istream<_CharT, _Traits> &__is, _String & __string, _CharT __delim, _CharT _… 538 __string.clear (); 547 __is >> __string; 566 __string.push_back ( __c ); 583 basic_string<_CharT, _Traits, _Allocator> &__string; 588 : __string(__s), __delim(__d), __escape(__e) {} 597 …return __quoted_output (__os, __proxy.__string.cbegin (), __proxy.__string.cend (), __proxy.__deli… 607 return __quoted_input ( __is, __proxy.__string, __proxy.__delim, __proxy.__escape );
|
D | module.modulemap | 423 export __string 429 export __string 505 module __string { header "__string" export * }
|
D | CMakeLists.txt | 19 __string
|
D | string_view | 176 #include <__string>
|
/external/flatbuffers/java/com/google/flatbuffers/ |
D | Table.java | 93 protected String __string(int offset) { in __string() method in Table 94 return __string(offset, bb, utf8); in __string() 110 protected static String __string(int offset, ByteBuffer bb, Utf8 utf8) { in __string() method in Table
|
D | StringVector.java | 50 return Table.__string(__element(j), bb, utf8); in get()
|
/external/elfutils/libelf/ |
D | libelf.h | 505 extern unsigned long int elf_hash (const char *__string) 509 extern unsigned long int elf_gnu_hash (const char *__string)
|
D | libelfP.h | 553 extern unsigned long int __elf_hash_internal (const char *__string)
|
/external/flatbuffers/tests/MyGame/Example/ |
D | Stat.php | 53 return $o != 0 ? $this->__string($o + $this->bb_pos) : null;
|
D | Stat.kt | 23 return if (o != 0) __string(o + bb_pos) else null
|
D | Stat.java | 18 public String id() { int o = __offset(4); return o != 0 ? __string(o + bb_pos) : null; } in id()
|
D | Stat.cs | 22 …public string Id { get { int o = __p.__offset(4); return o != 0 ? __p.__string(o + __p.bb_pos) : n…
|
D | Monster.php | 79 return $o != 0 ? $this->__string($o + $this->bb_pos) : null; 162 return $o != 0 ? $this->__string($this->__vector($o) + $j * 4) : 0; 370 return $o != 0 ? $this->__string($this->__vector($o) + $j * 4) : 0;
|
D | Monster.kt | 63 return if (o != 0) __string(o + bb_pos) else null 137 __string(__vector(o) + j * 4) in testarrayofstring() 423 __string(__vector(o) + j * 4) in testarrayofstring2()
|
D | Monster.java | 28 public String name() { int o = __offset(10); return o != 0 ? __string(o + bb_pos) : null; } in name() 47 …public String testarrayofstring(int j) { int o = __offset(24); return o != 0 ? __string(__vector(o… in testarrayofstring() 106 …public String testarrayofstring2(int j) { int o = __offset(60); return o != 0 ? __string(__vector(… in testarrayofstring2()
|
D | Monster.cs | 29 …public string Name { get { int o = __p.__offset(10); return o != 0 ? __p.__string(o + __p.bb_pos) … 51 …public string Testarrayofstring(int j) { int o = __p.__offset(24); return o != 0 ? __p.__string(__… in Testarrayofstring() 103 …public string Testarrayofstring2(int j) { int o = __p.__offset(60); return o != 0 ? __p.__string(_… in Testarrayofstring2()
|
/external/flatbuffers/php/ |
D | Table.php | 72 protected function __string($offset) function in Google\\FlatBuffers\\Table
|
/external/flatbuffers/tests/union_vector/ |
D | Movie.cs | 22 …public string MainCharacterAsString() { int o = __p.__offset(6); return o != 0 ? __p.__string(o + … in MainCharacterAsString() 32 …public string CharactersAsString(int j) { int o = __p.__offset(10); return o != 0 ? __p.__string(_… in CharactersAsString()
|
/external/noto-fonts/emoji-compat-flatbuffers/src/java/androidx/text/emoji/flatbuffer/ |
D | MetadataList.java | 41 public String sourceSha() { int o = __offset(8); return o != 0 ? __string(o + bb_pos) : null; } in sourceSha()
|
/external/flatbuffers/net/FlatBuffers/ |
D | Table.cs | 66 public string __string(int offset) in __string() method
|
/external/libchrome/third_party/jinja2/ |
D | ext.py | 139 def gettext(__context, __string, **variables): argument 140 rv = __context.call(func, __string)
|
/external/python/jinja/src/jinja2/ |
D | ext.py | 143 def gettext(__context, __string, **variables): argument 144 rv = __context.call(func, __string)
|
/external/flatbuffers/tests/ |
D | monster_test_generated.ts | 650 return offset ? this.bb!.__string(this.bb_pos + offset, optionalEncoding) : null; 951 return offset ? this.bb!.__string(this.bb_pos + offset, optionalEncoding) : null; 1046 …return offset ? this.bb!.__string(this.bb!.__vector(this.bb_pos + offset) + index * 4, optionalEnc… 1431 …return offset ? this.bb!.__string(this.bb!.__vector(this.bb_pos + offset) + index * 4, optionalEnc…
|
D | monster_test_generated.js | 780 return offset ? this.bb.__string(this.bb_pos + offset, optionalEncoding) : null; 1103 return offset ? this.bb.__string(this.bb_pos + offset, optionalEncoding) : null; 1196 …return offset ? this.bb.__string(this.bb.__vector(this.bb_pos + offset) + index * 4, optionalEncod… 1579 …return offset ? this.bb.__string(this.bb.__vector(this.bb_pos + offset) + index * 4, optionalEncod…
|
/external/flatbuffers/js/ |
D | flatbuffers.js | 1140 flatbuffers.ByteBuffer.prototype.__string = function(offset, opt_encoding) { method in flatbuffers.ByteBuffer
|