Home
last modified time | relevance | path

Searched refs:addFoo (Results 1 – 6 of 6) 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.ts75 static addFoo(builder:flatbuffers.Builder, foo:number) { method in NamespaceA.NamespaceB.TableInNestedNS
90 TableInNestedNS.addFoo(builder, foo);
Dnamespace_test1_generated.js93 NamespaceA.NamespaceB.TableInNestedNS.addFoo = function(builder, foo) { function in NamespaceA.NamespaceB.TableInNestedNS
113 NamespaceA.NamespaceB.TableInNestedNS.addFoo(builder, foo);
Dnamespace_test1_namespace_a.namespace_b_generated.dart89 int addFoo(int foo) {
/external/flatbuffers/tests/
DJavaTest.java154 TableInNestedNS.addFoo(fbb, 1234); in TestNamespaceNesting()