Home
last modified time | relevance | path

Searched refs:GenComment (Results 1 – 8 of 8) sorted by relevance

/external/flatbuffers/src/
Didl_gen_fbs.cpp91 GenComment(enum_def.doc_comment, &schema, nullptr); in GenerateFBS()
97 GenComment(ev.doc_comment, &schema, nullptr, " "); in GenerateFBS()
107 GenComment(struct_def.doc_comment, &schema, nullptr); in GenerateFBS()
112 GenComment(field.doc_comment, &schema, nullptr, " "); in GenerateFBS()
Didl_gen_go.cpp490 GenComment(field.doc_comment, code_ptr, nullptr, ""); in GenStructAccessor()
565 GenComment(field.doc_comment, code_ptr, nullptr, ""); in GenStructMutator()
601 GenComment(struct_def.doc_comment, code_ptr, nullptr); in GenStruct()
639 GenComment(enum_def.doc_comment, code_ptr, nullptr); in GenEnum()
645 GenComment(ev.doc_comment, code_ptr, nullptr, "\t"); in GenEnum()
Didl_gen_python.cpp418 GenComment(field.doc_comment, code_ptr, nullptr, "# "); in GenStructAccessor()
484 GenComment(struct_def.doc_comment, code_ptr, nullptr, "# "); in GenStruct()
516 GenComment(enum_def.doc_comment, code_ptr, nullptr, "# "); in GenEnum()
522 GenComment(ev.doc_comment, code_ptr, nullptr, "# "); in GenEnum()
Didl_gen_cpp.cpp289 void GenComment(const std::vector<std::string> &dc, const char *prefix = "") { in GenComment() function in flatbuffers::cpp::CppGenerator
291 ::flatbuffers::GenComment(dc, &text, nullptr, prefix); in GenComment()
525 GenComment(enum_def.doc_comment); in GenEnum()
537 GenComment(ev.doc_comment, " "); in GenEnum()
1045 GenComment(struct_def.doc_comment); in GenTable()
1112 GenComment(field.doc_comment, " "); in GenTable()
1740 GenComment(struct_def.doc_comment); in GenStruct()
1841 GenComment(field.doc_comment, " "); in GenStruct()
Didl_gen_php.cpp684 GenComment(field.doc_comment, code_ptr, nullptr); in GenStructAccessor()
764 GenComment(struct_def.doc_comment, code_ptr, nullptr); in GenStruct()
831 GenComment(enum_def.doc_comment, code_ptr, nullptr); in GenEnum()
837 GenComment(ev.doc_comment, code_ptr, nullptr); in GenEnum()
Dcode_generators.cpp134 void GenComment(const std::vector<std::string> &dc, std::string *code_ptr, in GenComment() function
Didl_gen_general.cpp504 GenComment(enum_def.doc_comment, code_ptr, &lang_.comment_config); in GenEnum()
518 GenComment(ev.doc_comment, code_ptr, &lang_.comment_config, " "); in GenEnum()
762 GenComment(struct_def.doc_comment, code_ptr, &lang_.comment_config); in GenStruct()
831 GenComment(field.doc_comment, code_ptr, &lang_.comment_config, " "); in GenStruct()
/external/flatbuffers/include/flatbuffers/
Dcode_generators.h130 extern void GenComment(const std::vector<std::string> &dc,