Home
last modified time | relevance | path

Searched refs:GenMethod (Results 1 – 6 of 6) sorted by relevance

/external/flatbuffers/src/
Didl_gen_lobster.cpp73 std::string GenMethod(const Type &type) { in GenMethod() function in flatbuffers::lobster::LobsterGenerator
188 "):\n b_.Prepend" + GenMethod(field.value.type) + "Slot(" + in GenTableBuilders()
209 GenMethod(vector_type) + in GenTableBuilders()
311 code += " b_.Prepend" + GenMethod(field.value.type) + "(" + in StructBuilderBody()
Didl_gen_python.cpp417 code += " builder.Prepend" + GenMethod(field) + "("; in StructBuilderBody()
449 code += GenMethod(field) + "Slot("; in BuildFieldOfTable()
614 std::string GenMethod(const FieldDef &field) { in GenMethod() function in flatbuffers::python::PythonGenerator
Didl_gen_lua.cpp394 code += std::string(Indent) + "builder:Prepend" + GenMethod(field) + "("; in StructBuilderBody()
427 code += GenMethod(field) + "Slot("; in BuildFieldOfTable()
597 std::string GenMethod(const FieldDef &field) { in GenMethod() function in flatbuffers::lua::LuaGenerator
Didl_gen_go.cpp475 code += "\tbuilder.Prepend" + GenMethod(field) + "("; in StructBuilderBody()
511 code += GenMethod(field) + "Slot("; in BuildFieldOfTable()
731 std::string GenMethod(const FieldDef &field) { in GenMethod() function in flatbuffers::go::GoGenerator
Didl_gen_php.cpp482 code += Indent + Indent + "$builder->put" + GenMethod(field) + "($"; in StructBuilderBody()
566 code += GenMethod(field) + "X("; in BuildFieldOfTable()
857 static std::string GenMethod(const FieldDef &field) { in GenMethod() function in flatbuffers::php::PhpGenerator
Didl_gen_general.cpp654 std::string GenMethod(const Type &type) const { in GenMethod() function in flatbuffers::general::GeneralGenerator
704 code += GenMethod(field.value.type) + "("; in GenStructBody()
1354 code += GenMethod(field.value.type) + "("; in GenStruct()
1386 code += GenMethod(vector_type); in GenStruct()