Searched refs:GenTypePointer (Results 1 – 6 of 6) sorted by relevance
616 std::string GenTypePointer(const Type &type) { in GenTypePointer() function in flatbuffers::lua::LuaGenerator628 return IsScalar(type.base_type) ? GenTypeBasic(type) : GenTypePointer(type); in GenTypeGet()
633 std::string GenTypePointer(const Type &type) { in GenTypePointer() function in flatbuffers::python::PythonGenerator645 return IsScalar(type.base_type) ? GenTypeBasic(type) : GenTypePointer(type); in GenTypeGet()
515 std::string GenTypePointer(const Type &type) const { in GenTypePointer() function in flatbuffers::cpp::CppGenerator540 return "const " + GenTypePointer(type) + " *"; in GenTypeWire()542 return "flatbuffers::Offset<" + GenTypePointer(type) + ">" + postfix; in GenTypeWire()552 return GenTypePointer(type); in GenTypeSize()649 return beforeptr + GenTypePointer(type) + afterptr; in GenTypeGet()
750 std::string GenTypePointer(const Type &type) { in GenTypePointer() function in flatbuffers::go::GoGenerator765 return IsScalar(type.base_type) ? GenTypeBasic(type) : GenTypePointer(type); 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()