/external/flatbuffers/src/ |
D | idl_gen_fbs.cpp | 93 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()
|
D | idl_gen_lobster.cpp | 96 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()
|
D | idl_parser.cpp | 709 field->doc_comment = dc; in ParseField() 1596 enum_def->doc_comment = enum_comment; in ParseEnum() 1641 ev.doc_comment = value_comment; in ParseEnum() 1808 struct_def->doc_comment = dc; in ParseDecl() 1878 service_def.doc_comment = service_comment; in ParseService() 1886 std::vector<std::string> doc_comment = doc_comment_; in ParseService() local 1902 rpc.doc_comment = doc_comment; in ParseService() 1992 struct_def->doc_comment = struct_comment; in ParseProtoDecl() 2036 enum_def.doc_comment = doc_comment_; in StartEnum() 2139 field->doc_comment = field_comment; in ParseProtoFields() [all …]
|
D | idl_gen_js_ts.cpp | 329 GenDocComment(enum_def.doc_comment, code_ptr, "@enum"); in GenEnum() 351 if (!ev.doc_comment.empty()) { in GenEnum() 353 GenDocComment(ev.doc_comment, code_ptr, "", " "); in GenEnum() 622 GenDocComment(struct_def.doc_comment, code_ptr, "@constructor"); in GenStruct() 644 GenDocComment(struct_def.doc_comment, code_ptr, "@constructor"); in GenStruct() 744 field.doc_comment, code_ptr, in GenStruct() 808 field.doc_comment, code_ptr, in GenStruct() 870 field.doc_comment, code_ptr, in GenStruct() 948 field.doc_comment, code_ptr, in GenStruct()
|
D | idl_gen_go.cpp | 557 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()
|
D | idl_gen_dart.cpp | 220 GenDocComment(enum_def.doc_comment, &code, ""); in GenEnum() 258 if (!ev.doc_comment.empty()) { in GenEnum() 260 GenDocComment(ev.doc_comment, &code, "", " "); in GenEnum() 419 GenDocComment(struct_def.doc_comment, &code, ""); in GenStruct() 500 GenDocComment(field.doc_comment, &code, ""); in GenImplementationGetters()
|
D | idl_gen_lua.cpp | 474 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()
|
D | idl_gen_python.cpp | 499 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()
|
D | idl_gen_rust.cpp | 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()
|
D | idl_gen_grpc.cpp | 57 return method_->doc_comment; in GetAllComments() 109 return service_->doc_comment; in GetAllComments()
|
D | idl_gen_php.cpp | 675 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()
|
D | idl_gen_json_schema.cpp | 146 const auto &comment_lines = structure->doc_comment; in generate()
|
D | idl_gen_cpp.cpp | 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()
|
D | idl_gen_general.cpp | 527 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/ |
D | idl.h | 245 std::vector<std::string> doc_comment; member 339 std::vector<std::string> doc_comment; member
|