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

/external/flatbuffers/src/
H A Didl_gen_go.cpp43 static std::string GenTypeBasic(const Type &type);
372 code += " " + GenTypeBasic(field.value.type);
437 code += GenTypeBasic(field.value.type);
538 std::string type = MakeCamel(GenTypeBasic(field.value.type));
552 std::string type = MakeCamel(GenTypeBasic(field.value.type));
674 ? MakeCamel(GenTypeBasic(field.value.type))
678 static std::string GenTypeBasic(const Type &type) { function in namespace:flatbuffers::go
705 ? GenTypeBasic(type)
H A Didl_gen_php.cpp320 code += Indent + " * @return" + GenTypeBasic(field.value.type) + "\n";
341 code += Indent + " * @return" + GenTypeBasic(field.value.type) + "\n";
559 code += Indent + " * @param " + GenTypeBasic(field.value.type) + "\n";
611 code += MakeCamel(GenTypeBasic(field.value.type.VectorType()));
876 ? MakeCamel(GenTypeBasic(field.value.type))
880 static std::string GenTypeBasic(const Type &type) { function in class:flatbuffers::php::PhpGenerator
935 ? GenTypeBasic(type)
H A Didl_gen_python.cpp34 static std::string GenTypeBasic(const Type &type);
544 ? MakeCamel(GenTypeBasic(field.value.type))
548 static std::string GenTypeBasic(const Type &type) { function in namespace:flatbuffers::python
575 ? GenTypeBasic(type)
H A Didl_gen_general.cpp232 std::string GenTypeBasic(const Type &type, bool enableLangOverrides) { function in class:flatbuffers::general::GeneralGenerator
264 std::string GenTypeBasic(const Type &type) { function in class:flatbuffers::general::GeneralGenerator
265 return GenTypeBasic(type, true);
287 ? GenTypeBasic(type)
398 if (IsEnum(type)) return "(" + GenTypeBasic(type, false) + ")";
508 GenTypeBasic(enum_def.underlying_type, false);
522 code += GenTypeBasic(enum_def.underlying_type, false);
582 } else if (GenTypeBasic(type, false) != "byte") {
583 getter += MakeCamel(GenTypeBasic(type, false));
596 if (GenTypeBasic(typ
[all...]
H A Didl_gen_cpp.cpp296 std::string GenTypeBasic(const Type &type, bool user_facing_type) const { function in class:flatbuffers::cpp::CppGenerator
337 return GenTypeBasic(type, user_facing_type) + postfix;
349 return GenTypeBasic(type, false);
412 return GenTypeBasic(type, true);
423 return GenTypeBasic(type, user_facing_type) + afterbasic;
522 code_.SetValue("BASE_TYPE", GenTypeBasic(enum_def.underlying_type, false));
834 return "static_cast<" + GenTypeBasic(field.value.type, from) + ">(" +
1124 code_.SetValue("FIELD_TYPE", GenTypeBasic(field.value.type, true));
1178 auto type = GenTypeBasic(field.value.type, false);
1501 auto type = GenTypeBasic(fiel
[all...]

Completed in 284 milliseconds