Home
last modified time | relevance | path

Searched refs:GenTypePointer (Results 1 – 9 of 9) sorted by relevance

/third_party/flatbuffers/src/
Didl_gen_lua.cpp630 std::string GenTypePointer(const Type &type) { in GenTypePointer() function in flatbuffers::lua::LuaGenerator
642 return IsScalar(type.base_type) ? GenTypeBasic(type) : GenTypePointer(type); in GenTypeGet()
Didl_gen_cpp.cpp655 std::string GenTypePointer(const Type &type) const { in GenTypePointer() function in flatbuffers::cpp::CppGenerator
683 return "const " + GenTypePointer(type) + " *"; in GenTypeWire()
685 return "flatbuffers::Offset<" + GenTypePointer(type) + ">" + postfix; in GenTypeWire()
695 return GenTypePointer(type); in GenTypeSize()
828 : GenTypePointer(element_type)) + in GenTypeGet()
831 return beforeptr + GenTypePointer(type) + afterptr; in GenTypeGet()
Didl_gen_go.cpp426 code += "obj " + GenTypePointer(field.value.type) + ") bool "; in GetUnionField()
1178 std::string GenTypePointer(const Type &type) { in GenTypePointer() function in flatbuffers::go::GoGenerator
1191 return IsScalar(type.base_type) ? GenTypeBasic(type) : GenTypePointer(type); in GenTypeGet()
Didl_gen_php.cpp897 static std::string GenTypePointer(const Type &type) { in GenTypePointer() function in flatbuffers::php::PhpGenerator
909 return IsScalar(type.base_type) ? GenTypeBasic(type) : GenTypePointer(type); in GenTypeGet()
Didl_gen_java.cpp153 std::string GenTypePointer(const Type &type) const { in GenTypePointer() function in flatbuffers::java::JavaGenerator
167 : GenTypePointer(type)); in GenTypeGet()
Didl_gen_csharp.cpp150 std::string GenTypePointer(const Type &type) const { in GenTypePointer() function in flatbuffers::csharp::CSharpGenerator
164 : GenTypePointer(type)); in GenTypeGet()
1034 code += GenTypePointer(field.value.type) + ".Pack(builder, " + in GenStruct()
Didl_gen_kotlin.cpp153 std::string GenTypePointer(const Type &type) const { in GenTypePointer() function in flatbuffers::kotlin::KotlinGenerator
182 : GenTypePointer(type); in GenTypeGet()
Didl_gen_swift.cpp1493 : GenTypePointer(type, should_consider_suffix)); in GenType()
1496 std::string GenTypePointer(const Type &type, in GenTypePointer() function in flatbuffers::swift::SwiftGenerator
Didl_gen_python.cpp1666 std::string GenTypePointer(const Type &type) { in GenTypePointer() function in flatbuffers::python::PythonGenerator
1678 return IsScalar(type.base_type) ? GenTypeBasic(type) : GenTypePointer(type); in GenTypeGet()