/external/pytorch/torch/csrc/jit/serialization/ |
D | flatbuffer_serializer.cpp | 221 fbb.CreateSharedString(arg.name()), in CreateFBSchema() 222 fbb.CreateSharedString( in CreateFBSchema() 231 fbb.CreateSharedString(ret.name()), in CreateFBSchema() 232 fbb.CreateSharedString( in CreateFBSchema() 263 fbb.CreateSharedString(opname.name), in functionToFB() 264 fbb.CreateSharedString(opname.overload_name), in functionToFB() 292 type_offsets.push_back(fbb.CreateSharedString(type_str)); in functionToFB() 359 fbb.CreateSharedString(extra_file.first), in storeExtraFilesAndGetOffset() 473 fbb.CreateSharedString( in listToFB() 496 fbb.CreateSharedString( in dictToFB() [all …]
|
/external/flatbuffers/tests/FlatBuffers.Test/ |
D | FlatBufferBuilderTests.cs | 747 Assert.AreEqual(fbb.CreateSharedString(s).Value, 0); in FlatBufferBuilder_Add_null_String() 757 var strOffset = fbb.CreateSharedString(str); in FlatBufferBuilder_Empty_Builder() 758 var flatbufferOffset = fbb.CreateSharedString(flatbuffer); in FlatBufferBuilder_Empty_Builder() 760 var flatbufferOffset2 = fbb.CreateSharedString(flatbuffer); in FlatBufferBuilder_Empty_Builder() 761 var strOffset2 = fbb.CreateSharedString(str); in FlatBufferBuilder_Empty_Builder()
|
D | FlatBuffersFuzzTests.cs | 143 builder.CreateSharedString("foo"); in TestCreateSharedAsciiString() 146 builder.CreateSharedString("foo"); in TestCreateSharedAsciiString()
|
D | FlatBuffersExampleTests.cs | 471 fbb.CreateSharedString("Chip").Value, in TestUnionVector()
|
/external/flatbuffers/include/flatbuffers/ |
D | flatbuffer_builder.h | 604 Offset<String> CreateSharedString(const char *str, size_t len) { in CreateSharedString() function 633 Offset<String> CreateSharedString(const flatbuffers::string_view str) { in CreateSharedString() function 634 return CreateSharedString(str.data(), str.size()); in CreateSharedString() 643 Offset<String> CreateSharedString(const char *str) { in CreateSharedString() function 644 return CreateSharedString(str, strlen(str)); in CreateSharedString() 653 Offset<String> CreateSharedString(const std::string &str) { in CreateSharedString() function 654 return CreateSharedString(str.c_str(), str.length()); in CreateSharedString() 664 Offset<String> CreateSharedString(const String *str) { in CreateSharedString() function 665 return str ? CreateSharedString(str->c_str(), str->size()) : 0; in CreateSharedString()
|
/external/flatbuffers/tests/ |
D | py_test.py | 986 b.CreateSharedString(u'foo', encoding='ascii') 987 b.CreateSharedString(u'foo', encoding='ascii') 991 b.CreateSharedString(u'moop', encoding='ascii') 992 b.CreateSharedString(u'moop', encoding='ascii') 1000 b.CreateSharedString(u'Цлїςσδε') 1001 b.CreateSharedString(u'Цлїςσδε') 1005 b.CreateSharedString(u'フムアムカモケモ') 1006 b.CreateSharedString(u'フムアムカモケモ') 1015 b.CreateSharedString(s) # Default encoding is utf-8. 1016 b.CreateSharedString(s) [all …]
|
D | test.cpp | 544 const auto one1 = builder.CreateSharedString("one"); in CreateSharedStringTest() 545 const auto two = builder.CreateSharedString("two"); in CreateSharedStringTest() 546 const auto one2 = builder.CreateSharedString("one"); in CreateSharedStringTest() 548 const auto onetwo = builder.CreateSharedString("onetwo"); in CreateSharedStringTest() 555 const auto null_b1 = builder.CreateSharedString(chars_b, sizeof(chars_b)); in CreateSharedStringTest() 556 const auto null_c = builder.CreateSharedString(chars_c, sizeof(chars_c)); in CreateSharedStringTest() 557 const auto null_b2 = builder.CreateSharedString(chars_b, sizeof(chars_b)); in CreateSharedStringTest()
|
D | go_test.go | 1612 a1 := builder.CreateSharedString(a) 1613 b1 := builder.CreateSharedString(b) 1615 b2 := builder.CreateSharedString(b) 1616 a2 := builder.CreateSharedString(a) 1630 off1 := b.CreateSharedString(s1) 1631 off2 := b.CreateSharedString(s2)
|
D | monster_test.cpp | 75 return b->CreateSharedString(names[i]); in CreateFlatBufferTest()
|
/external/flatbuffers/src/ |
D | reflection.cpp | 642 ? fbb.CreateSharedString(GetFieldS(table, fielddef)).o in CopyTable() 676 ? fbb.CreateSharedString(vec_s->Get(i)).o in CopyTable()
|
D | idl_parser.cpp | 1294 val.constant = NumToString(builder_.CreateSharedString(s).o); in ParseString() 3941 const auto filename__ = builder_.CreateSharedString(FilePath( in Serialize() 3944 included_files.push_back(builder_.CreateSharedString( in Serialize() 3988 const auto file__ = builder->CreateSharedString(decl_file_in_project); in Serialize() 4128 const auto file__ = builder->CreateSharedString(decl_file_in_project); in Serialize() 4166 const auto file__ = builder->CreateSharedString(decl_file_in_project); in Serialize()
|
/external/flatbuffers/net/FlatBuffers/ |
D | FlatBufferBuilder.cs | 771 public StringOffset CreateSharedString(string s) in CreateSharedString() method in Google.FlatBuffers.FlatBufferBuilder
|
/external/flatbuffers/python/flatbuffers/ |
D | builder.py | 424 def CreateSharedString(self, s, encoding='utf-8', errors='strict'): member in Builder
|
/external/flatbuffers/go/ |
D | builder.go | 341 func (b *Builder) CreateSharedString(s string) UOffsetT { func
|
/external/flatbuffers/docs/source/languages/ |
D | cpp.md | 93 pooling (i.e. `CreateSharedString`) as default serialization behavior. 96 based API (see below) will use `CreateSharedString` to create strings.
|
/external/flatbuffers/docs-old/source/ |
D | CppUsage.md | 94 pooling (i.e. `CreateSharedString`) as default serialization behavior. 97 based API (see below) will use `CreateSharedString` to create strings.
|
D | Tutorial.md | 3468 fbb.CreateSharedString("Chip").Value,
|