Searched defs:GenTypePointer (Results 1 - 5 of 5) sorted by relevance

/external/flatbuffers/src/
H A Didl_gen_go.cpp688 static std::string GenTypePointer(const Type &type) { function in namespace:flatbuffers::go
706 : GenTypePointer(type);
H A Didl_gen_php.cpp918 static std::string GenTypePointer(const Type &type) { function in class:flatbuffers::php::PhpGenerator
936 : GenTypePointer(type);
H A Didl_gen_python.cpp558 static std::string GenTypePointer(const Type &type) { function in namespace:flatbuffers::python
576 : GenTypePointer(type);
H A Didl_gen_general.cpp268 std::string GenTypePointer(const Type &type) { function in class:flatbuffers::general::GeneralGenerator
288 : GenTypePointer(type);
H A Didl_gen_cpp.cpp312 std::string GenTypePointer(const Type &type) const { function in class:flatbuffers::cpp::CppGenerator
339 return "const " + GenTypePointer(type) + " *";
341 return "flatbuffers::Offset<" + GenTypePointer(type) + ">" + postfix;
351 return GenTypePointer(type);
425 return beforeptr + GenTypePointer(type) + afterptr;

Completed in 244 milliseconds