Home
last modified time | relevance | path

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

/external/flatbuffers/src/
Didl_gen_fbs.cpp93 GenComment(enum_def.doc_comment, &schema, nullptr); in GenerateFBS()
102 GenComment(ev.doc_comment, &schema, nullptr, " "); in GenerateFBS()
115 GenComment(struct_def.doc_comment, &schema, nullptr); in GenerateFBS()
121 GenComment(field.doc_comment, &schema, nullptr, " "); in GenerateFBS()
Didl_gen_lobster.cpp96 GenComment(field.doc_comment, code_ptr, nullptr, " "); in GenStructAccessor()
230 GenComment(struct_def.doc_comment, code_ptr, nullptr, ""); in GenStruct()
260 GenComment(enum_def.doc_comment, code_ptr, nullptr, ""); in GenEnum()
265 GenComment(ev.doc_comment, code_ptr, nullptr, " "); in GenEnum()
Didl_gen_rust.cpp499 void GenComment(const std::vector<std::string> &dc, const char *prefix = "") { in GenComment() function in flatbuffers::rust::RustGenerator
501 ::flatbuffers::GenComment(dc, &text, nullptr, prefix); in GenComment()
586 GenComment(enum_def.doc_comment); in GenEnum()
598 GenComment(ev.doc_comment, " "); in GenEnum()
1153 GenComment(struct_def.doc_comment); in GenTable()
1267 GenComment(field.doc_comment, " "); in GenTable()
1601 GenComment(struct_def.doc_comment); in GenStruct()
1735 GenComment(field.doc_comment, " "); in GenStruct()
Didl_gen_go.cpp557 GenComment(field.doc_comment, code_ptr, nullptr, ""); in GenStructAccessor()
626 GenComment(field.doc_comment, code_ptr, nullptr, ""); in GenStructMutator()
661 GenComment(struct_def.doc_comment, code_ptr, nullptr); in GenStruct()
700 GenComment(enum_def.doc_comment, code_ptr, nullptr); in GenEnum()
706 GenComment(ev.doc_comment, code_ptr, nullptr, "\t"); in GenEnum()
Didl_gen_lua.cpp474 GenComment(field.doc_comment, code_ptr, nullptr, Comment); in GenStructAccessor()
537 GenComment(struct_def.doc_comment, code_ptr, nullptr, Comment); in GenStruct()
573 GenComment(enum_def.doc_comment, code_ptr, nullptr, Comment); in GenEnum()
578 GenComment(ev.doc_comment, code_ptr, nullptr, Comment); in GenEnum()
Didl_gen_python.cpp499 GenComment(field.doc_comment, code_ptr, nullptr, "# "); in GenStructAccessor()
559 GenComment(struct_def.doc_comment, code_ptr, nullptr, "# "); in GenStruct()
590 GenComment(enum_def.doc_comment, code_ptr, nullptr, "# "); in GenEnum()
595 GenComment(ev.doc_comment, code_ptr, nullptr, "# "); in GenEnum()
Didl_gen_php.cpp675 GenComment(field.doc_comment, code_ptr, nullptr); in GenStructAccessor()
750 GenComment(struct_def.doc_comment, code_ptr, nullptr); in GenStruct()
816 GenComment(enum_def.doc_comment, code_ptr, nullptr); in GenEnum()
821 GenComment(ev.doc_comment, code_ptr, nullptr); in GenEnum()
Didl_gen_cpp.cpp489 void GenComment(const std::vector<std::string> &dc, const char *prefix = "") { in GenComment() function in flatbuffers::cpp::CppGenerator
491 ::flatbuffers::GenComment(dc, &text, nullptr, prefix); in GenComment()
898 GenComment(enum_def.doc_comment); in GenEnum()
909 GenComment(ev.doc_comment, " "); in GenEnum()
1694 GenComment(struct_def.doc_comment); in GenTable()
1767 GenComment(field.doc_comment, " "); in GenTable()
2588 GenComment(struct_def.doc_comment); in GenStruct()
2687 GenComment(field.doc_comment, " "); in GenStruct()
Dcode_generators.cpp138 void GenComment(const std::vector<std::string> &dc, std::string *code_ptr, in GenComment() function
Didl_gen_general.cpp527 GenComment(enum_def.doc_comment, code_ptr, &lang_.comment_config); in GenEnum()
549 GenComment(ev.doc_comment, code_ptr, &lang_.comment_config, " "); in GenEnum()
805 GenComment(struct_def.doc_comment, code_ptr, &lang_.comment_config); in GenStruct()
893 GenComment(field.doc_comment, code_ptr, &lang_.comment_config, " "); in GenStruct()
/external/flatbuffers/include/flatbuffers/
Dcode_generators.h129 extern void GenComment(const std::vector<std::string> &dc,