Home
last modified time | relevance | path

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

/external/flatbuffers/src/
Didl_gen_fbs.cpp106 GenComment(enum_def.doc_comment, &schema, nullptr); in GenerateFBS()
114 GenComment(ev.doc_comment, &schema, nullptr, " "); in GenerateFBS()
130 GenComment(struct_def.doc_comment, &schema, nullptr); in GenerateFBS()
136 GenComment(field.doc_comment, &schema, nullptr, " "); in GenerateFBS()
Didl_gen_lobster.cpp102 GenComment(field.doc_comment, code_ptr, nullptr, " "); in GenStructAccessor()
247 GenComment(struct_def.doc_comment, code_ptr, nullptr, ""); in GenStruct()
277 GenComment(enum_def.doc_comment, code_ptr, nullptr, ""); in GenEnum()
281 GenComment(ev.doc_comment, code_ptr, nullptr, " "); in GenEnum()
Didl_gen_swift.cpp256 GenComment(struct_def.doc_comment); in GenObjectHeader()
455 GenComment(field.doc_comment, "\t"); in GenTableReaderFields()
632 GenComment(field.doc_comment, "\t"); in GenStructReader()
656 GenComment(enum_def.doc_comment); in GenEnum()
671 GenComment(ev.doc_comment, "\t"); in GenEnum()
736 void GenComment(const std::vector<std::string> &dc, const char *prefix = "") { in GenComment() function in flatbuffers::swift::SwiftGenerator
738 ::flatbuffers::GenComment(dc, &text, nullptr, prefix); in GenComment()
Didl_gen_rust.cpp431 void GenComment(const std::vector<std::string> &dc, const char *prefix = "") { in GenComment() function in flatbuffers::rust::RustGenerator
433 ::flatbuffers::GenComment(dc, &text, nullptr, prefix); in GenComment()
526 GenComment(enum_def.doc_comment); in GenEnum()
536 GenComment(ev.doc_comment, " "); in GenEnum()
1153 GenComment(struct_def.doc_comment); in GenTable()
1267 GenComment(field.doc_comment, " "); in GenTable()
1627 GenComment(struct_def.doc_comment); in GenStruct()
1766 GenComment(field.doc_comment, " "); in GenStruct()
Didl_gen_lua.cpp473 GenComment(field.doc_comment, code_ptr, &def_comment); in GenStructAccessor()
533 GenComment(struct_def.doc_comment, code_ptr, &def_comment); in GenStruct()
568 GenComment(enum_def.doc_comment, code_ptr, &def_comment); in GenEnum()
572 GenComment(ev.doc_comment, code_ptr, &def_comment, Indent); in GenEnum()
Didl_gen_php.cpp675 GenComment(field.doc_comment, code_ptr, nullptr, Indent.c_str()); in GenStructAccessor()
750 GenComment(struct_def.doc_comment, code_ptr, nullptr); in GenStruct()
816 GenComment(enum_def.doc_comment, code_ptr, nullptr); in GenEnum()
820 GenComment(ev.doc_comment, code_ptr, nullptr, Indent.c_str()); in GenEnum()
Didl_gen_go.cpp611 GenComment(field.doc_comment, code_ptr, nullptr, ""); in GenStructAccessor()
704 GenComment(field.doc_comment, code_ptr, nullptr, ""); in GenStructMutator()
743 GenComment(struct_def.doc_comment, code_ptr, nullptr); in GenStruct()
1107 GenComment(enum_def.doc_comment, code_ptr, nullptr); in GenEnum()
1112 GenComment(ev.doc_comment, code_ptr, nullptr, "\t"); in GenEnum()
Didl_gen_java.cpp304 GenComment(enum_def.doc_comment, code_ptr, &comment_config); in GenEnum()
317 GenComment(ev.doc_comment, code_ptr, &comment_config, " "); in GenEnum()
577 GenComment(struct_def.doc_comment, code_ptr, &comment_config); in GenStruct()
643 GenComment(field.doc_comment, code_ptr, &comment_config, " "); in GenStruct()
Didl_gen_cpp.cpp628 void GenComment(const std::vector<std::string> &dc, const char *prefix = "") { in GenComment() function in flatbuffers::cpp::CppGenerator
630 ::flatbuffers::GenComment(dc, &text, nullptr, prefix); in GenComment()
1059 GenComment(enum_def.doc_comment); in GenEnum()
1070 GenComment(ev.doc_comment, " "); in GenEnum()
1894 GenComment(struct_def.doc_comment); in GenTable()
1970 GenComment(field.doc_comment, " "); in GenTable()
2867 GenComment(struct_def.doc_comment); in GenStruct()
2997 GenComment(field.doc_comment, " "); in GenStruct()
Didl_gen_python.cpp582 GenComment(field.doc_comment, code_ptr, &def_comment, Indent.c_str()); in GenStructAccessor()
671 GenComment(struct_def.doc_comment, code_ptr, &def_comment); in GenStruct()
1500 GenComment(enum_def.doc_comment, code_ptr, &def_comment); in GenEnum()
1504 GenComment(ev.doc_comment, code_ptr, &def_comment, Indent.c_str()); in GenEnum()
Dcode_generators.cpp157 void GenComment(const std::vector<std::string> &dc, std::string *code_ptr, in GenComment() function
Didl_gen_csharp.cpp272 GenComment(enum_def.doc_comment, code_ptr, &comment_config); in GenEnum()
293 GenComment(ev.doc_comment, code_ptr, &comment_config, " "); in GenEnum()
523 GenComment(struct_def.doc_comment, code_ptr, &comment_config); in GenStruct()
594 GenComment(field.doc_comment, code_ptr, &comment_config, " "); in GenStruct()
/external/flatbuffers/include/flatbuffers/
Dcode_generators.h155 extern void GenComment(const std::vector<std::string> &dc,