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

/external/flatbuffers/src/
H A Didl_gen_php.cpp949 static std::string GenTypePointer(const Type &type) { function in class:flatbuffers::php::PhpGenerator
967 : GenTypePointer(type);
H A Didl_gen_python.cpp592 static std::string GenTypePointer(const Type &type) { function in namespace:flatbuffers::python
610 : GenTypePointer(type);
H A Didl_gen_go.cpp712 static std::string GenTypePointer(const Type &type) { function in namespace:flatbuffers::go
730 : GenTypePointer(type);
H A Didl_gen_general.cpp294 std::string GenTypePointer(const Type &type) { function in class:flatbuffers::general::GeneralGenerator
314 : GenTypePointer(type);
H A Didl_gen_cpp.cpp390 std::string GenTypePointer(const Type &type) const { function in class:flatbuffers::cpp::CppGenerator
417 return "const " + GenTypePointer(type) + " *";
419 return "flatbuffers::Offset<" + GenTypePointer(type) + ">" + postfix;
429 return GenTypePointer(type);
522 return beforeptr + GenTypePointer(type) + afterptr;

Completed in 137 milliseconds