/external/flatbuffers/tests/ |
JavaScriptTest.js | 41 var testArrayOfString = MyGame.Example.Monster.createTestarrayofstringVector(fbb, [ 54 MyGame.Example.Monster.addTestarrayofstring(fbb, testArrayOfString); 140 assert.strictEqual(monster.testarrayofstring(0), 'test1'); 141 assert.strictEqual(monster.testarrayofstring(1), 'test2'); 207 assert.strictEqual(monster.testarrayofstringLength(), json.testarrayofstring.length); 208 json.testarrayofstring.forEach(function(string, i) { 209 assert.strictEqual(monster.testarrayofstring(i), string); 210 assert.deepEqual(new Buffer(monster.testarrayofstring(i, flatbuffers.Encoding.UTF8_BYTES)), new Buffer(string)); 227 json.testarrayofstring.map(function(string) { return fbb.createString(string); }));
|
JavaTest.java | 127 TestEq(monster.testarrayofstring(0),"test1"); 128 TestEq(monster.testarrayofstring(1),"test2"); 304 int testArrayOfString = Monster.createTestarrayofstringVector(fbb, new int[] { 318 Monster.addTestarrayofstring(fbb, testArrayOfString);
|
monster_test_generated.h | 579 std::vector<std::string> testarrayofstring; member in struct:MyGame::Example::MonsterT 732 const flatbuffers::Vector<flatbuffers::Offset<flatbuffers::String>> *testarrayofstring() const { function in struct:MyGame::Example::FLATBUFFERS_FINAL_CLASS 908 verifier.Verify(testarrayofstring()) && 909 verifier.VerifyVectorOfStrings(testarrayofstring()) && [all...] |
test.cpp | 277 auto vecofstrings = monster->testarrayofstring(); 486 auto &vecofstrings = monster2->testarrayofstring; 727 auto &testarrayofstring_field = *fields->LookupByKey("testarrayofstring"); 797 "testarrayofstring: [ \"bob\", \"fred\", \"bob\", \"fred\" ], " [all...] |
monster_test_generated.js | 911 MyGame.Example.Monster.prototype.testarrayofstring = function(index, optionalEncoding) { method in class:MyGame.Example.Monster [all...] |
/external/flatbuffers/tests/MyGame/Example/ |
Monster.php | 505 public static function createMonster(FlatBufferBuilder $builder, $pos, $mana, $hp, $name, $inventory, $color, $test_type, $test, $test4, $testarrayofstring, $testarrayoftables, $enemy, $testnestedflatbuffer, $testempty, $testbool, $testhashs32_fnv1, $testhashu32_fnv1, $testhashs64_fnv1, $testhashu64_fnv1, $testhashs32_fnv1a, $testhashu32_fnv1a, $testhashs64_fnv1a, $testhashu64_fnv1a, $testarrayofbools, $testf, $testf2, $testf3, $testarrayofstring2, $testarrayofsortedstruct, $flex, $test5, $vector_of_longs, $vector_of_doubles, $parent_namespace_test) 517 self::addTestarrayofstring($builder, $testarrayofstring); 685 public static function addTestarrayofstring(FlatBufferBuilder $builder, $testarrayofstring) 687 $builder->addOffsetX(10, $testarrayofstring, 0);
|
Monster.py | 120 def Testarrayofstring(self, j): 448 def MonsterAddTestarrayofstring(builder, testarrayofstring): builder.PrependUOffsetTRelativeSlot(10, flatbuffers.number_types.UOffsetTFlags.py_type(testarrayofstring), 0)
|
Monster.go | 152 func (rcv *Monster) Testarrayofstring(j int) []byte { 568 func MonsterAddTestarrayofstring(builder *flatbuffers.Builder, testarrayofstring flatbuffers.UOffsetT) { 569 builder.PrependUOffsetTSlot(10, flatbuffers.UOffsetT(testarrayofstring), 0)
|
Monster.java | 41 public String testarrayofstring(int j) { int o = __offset(24); return o != 0 ? __string(__vector(o) + j * 4) : null; } method in class:Monster
|