Searched refs:testf3 (Results 1 – 8 of 8) sorted by relevance
/external/flatbuffers/tests/MyGame/Example/ |
D | Monster.java | 86 public float testf3() { int o = __offset(58); return o != 0 ? bb.getFloat(o + bb_pos) : 0.0f; } in testf3() method in Monster 87 …public boolean mutateTestf3(float testf3) { int o = __offset(58); if (o != 0) { bb.putFloat(o + bb… in mutateTestf3() argument 129 …ic static void addTestf3(FlatBufferBuilder builder, float testf3) { builder.addFloat(27, testf3, 0… in addTestf3() argument
|
D | Monster.php | 395 …thashs64_fnv1a, $testhashu64_fnv1a, $testarrayofbools, $testf, $testf2, $testf3, $testarrayofstrin… argument 424 self::addTestf3($builder, $testf3); 835 public static function addTestf3(FlatBufferBuilder $builder, $testf3) argument 837 $builder->addFloatX(27, $testf3, 0.0);
|
D | Monster.cs | 78 …public bool MutateTestf3(float testf3) { int o = __p.__offset(58); if (o != 0) { __p.bb.PutFloat(o… in MutateTestf3() 120 …ic static void AddTestf3(FlatBufferBuilder builder, float testf3) { builder.AddFloat(27, testf3, 0… in AddTestf3()
|
D | Monster.py | 333 def MonsterAddTestf3(builder, testf3): builder.PrependFloat32Slot(27, testf3, 0.0) argument
|
D | Monster.go | 521 func MonsterAddTestf3(builder *flatbuffers.Builder, testf3 float32) { 522 builder.PrependFloat32Slot(27, testf3, 0.0)
|
/external/flatbuffers/tests/ |
D | monster_test_generated.h | 480 float testf3; 497 testf3(0.0f) { 702 float testf3() const { 846 void add_testf3(float testf3) { 847 fbb_.AddElement<float>(Monster::VT_TESTF3, testf3, 0.0f); 893 float testf3 = 0.0f, 901 builder_.add_testf3(testf3); 955 float testf3 = 0.0f, 985 testf3, 1112 { auto _e = testf3(); _o->testf3 = _e; }; [all …]
|
D | monster_test.fbs | 69 testf3:float (id:27);
|
D | monster_test_generated.js | 1135 MyGame.Example.Monster.prototype.testf3 = function() { method in MyGame.Example.Monster 1505 MyGame.Example.Monster.addTestf3 = function(builder, testf3) { argument 1506 builder.addFieldFloat32(27, testf3, 0.0);
|