Searched refs:doc_comment (Results 1 – 9 of 9) sorted by relevance
/external/flatbuffers/src/ |
D | idl_gen_fbs.cpp | 91 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()
|
D | idl_gen_js.cpp | 176 GenDocComment(enum_def.doc_comment, code_ptr, "@enum"); in GenEnum() 190 if (!ev.doc_comment.empty()) { in GenEnum() 194 GenDocComment(ev.doc_comment, code_ptr, "", " "); in GenEnum() 384 GenDocComment(struct_def.doc_comment, code_ptr, "@constructor"); in GenStruct() 457 GenDocComment(field.doc_comment, code_ptr, in GenStruct() 486 GenDocComment(field.doc_comment, code_ptr, in GenStruct() 516 GenDocComment(field.doc_comment, code_ptr, args + in GenStruct() 561 GenDocComment(field.doc_comment, code_ptr, in GenStruct()
|
D | idl_gen_go.cpp | 490 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()
|
D | idl_gen_python.cpp | 418 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()
|
D | idl_parser.cpp | 655 field->doc_comment = dc; in ParseField() 1235 enum_def.doc_comment = enum_comment; in ParseEnum() 1291 ev.doc_comment = value_comment; in ParseEnum() 1378 struct_def->doc_comment = dc; in ParseDecl() 1445 service_def.doc_comment = service_comment; in ParseService() 1555 struct_def->doc_comment = struct_comment; in ParseProtoDecl() 1683 field->doc_comment = field_comment; in ParseProtoFields() 2092 doc_comment) in Serialize() 2115 ? builder->CreateVectorOfStrings(doc_comment) in Serialize() 2135 ? builder->CreateVectorOfStrings(doc_comment) in Serialize()
|
D | idl_gen_php.cpp | 684 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()
|
D | idl_gen_cpp.cpp | 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()
|
D | idl_gen_general.cpp | 504 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/ |
D | idl.h | 218 std::vector<std::string> doc_comment; member 291 std::vector<std::string> doc_comment; member
|