Searched refs:GenTypePointer (Results 1 – 6 of 6) sorted by relevance
617 std::string GenTypePointer(const Type &type) { in GenTypePointer() function in flatbuffers::lua::LuaGenerator629 return IsScalar(type.base_type) ? GenTypeBasic(type) : GenTypePointer(type); in GenTypeGet()
634 std::string GenTypePointer(const Type &type) { in GenTypePointer() function in flatbuffers::python::PythonGenerator646 return IsScalar(type.base_type) ? GenTypeBasic(type) : GenTypePointer(type); in GenTypeGet()
773 std::string GenTypePointer(const Type &type) { in GenTypePointer() function in flatbuffers::go::GoGenerator788 return IsScalar(type.base_type) ? GenTypeBasic(type) : GenTypePointer(type); in GenTypeGet()
521 std::string GenTypePointer(const Type &type) const { in GenTypePointer() function in flatbuffers::cpp::CppGenerator546 return "const " + GenTypePointer(type) + " *"; in GenTypeWire()548 return "flatbuffers::Offset<" + GenTypePointer(type) + ">" + postfix; in GenTypeWire()558 return GenTypePointer(type); in GenTypeSize()666 return beforeptr + GenTypePointer(type) + afterptr; in GenTypeGet()
901 static std::string GenTypePointer(const Type &type) { in GenTypePointer() function in flatbuffers::php::PhpGenerator913 return IsScalar(type.base_type) ? GenTypeBasic(type) : GenTypePointer(type); in GenTypeGet()
301 std::string GenTypePointer(const Type &type) const { in GenTypePointer() function in flatbuffers::general::GeneralGenerator315 return IsScalar(type.base_type) ? GenTypeBasic(type) : GenTypePointer(type); in GenTypeGet()