Home
last modified time | relevance | path

Searched refs:addFoo (Results 1 – 5 of 5) sorted by relevance

/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
DTableInNestedNS.php60 self::addFoo($builder, $foo);
70 public static function addFoo(FlatBufferBuilder $builder, $foo) function in NamespaceA\\NamespaceB\\TableInNestedNS
DTableInNestedNS.java23 TableInNestedNS.addFoo(builder, foo); in createTableInNestedNS()
28 public static void addFoo(FlatBufferBuilder builder, int foo) { builder.addInt(0, foo, 0); } in addFoo() method in TableInNestedNS
/external/flatbuffers/tests/namespace_test/
Dnamespace_test1_generated.ts81 static addFoo(builder:flatbuffers.Builder, foo:number) { method in NamespaceA.NamespaceB.TableInNestedNS
Dnamespace_test1_generated.js93 NamespaceA.NamespaceB.TableInNestedNS.addFoo = function(builder, foo) { function in NamespaceA.NamespaceB.TableInNestedNS
/external/flatbuffers/tests/
DJavaTest.java148 TableInNestedNS.addFoo(fbb, 1234); in TestNamespaceNesting()