OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GenTypeBasic
(Results
1 - 5
of
5
) sorted by null
/external/flatbuffers/src/
idl_gen_general.cpp
232
std::string
GenTypeBasic
(const Type &type, bool enableLangOverrides) {
264
std::string
GenTypeBasic
(const Type &type) {
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
(type, false) != "byte" &
[
all
...]
idl_gen_go.cpp
43
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) {
705
?
GenTypeBasic
(type)
idl_gen_php.cpp
320
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) {
[
all
...]
idl_gen_cpp.cpp
296
std::string
GenTypeBasic
(const Type &type, bool user_facing_type) const {
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) + ">(" +
[
all
...]
idl_gen_python.cpp
34
static std::string
GenTypeBasic
(const Type &type);
544
? MakeCamel(
GenTypeBasic
(field.value.type))
548
static std::string
GenTypeBasic
(const Type &type) {
575
?
GenTypeBasic
(type)
Completed in 192 milliseconds