Searched refs:extra_lines (Results 1 – 2 of 2) sorted by relevance
/external/flatbuffers/src/ |
D | idl_gen_dart.cpp | 176 const std::string &extra_lines, in GenDocComment() argument 178 if (dc.empty() && extra_lines.empty()) { in GenDocComment() 190 if (!extra_lines.empty()) { in GenDocComment() 198 auto end = extra_lines.find('\n', start); in GenDocComment() 200 code += "/// " + extra_lines.substr(start, end - start) + "\n"; in GenDocComment() 203 code += "/// " + extra_lines.substr(start) + "\n"; in GenDocComment() 211 const std::string &extra_lines) { in GenDocComment() argument 212 GenDocComment(std::vector<std::string>(), code_ptr, extra_lines); in GenDocComment()
|
D | idl_gen_js_ts.cpp | 242 const std::string &extra_lines, in GenDocComment() argument 244 if (dc.empty() && extra_lines.empty()) { in GenDocComment() 256 if (!extra_lines.empty()) { in GenDocComment() 264 auto end = extra_lines.find('\n', start); in GenDocComment() 266 code += " * " + extra_lines.substr(start, end - start) + "\n"; in GenDocComment() 269 code += " * " + extra_lines.substr(start) + "\n"; in GenDocComment() 279 const std::string &extra_lines) { in GenDocComment() argument 280 GenDocComment(std::vector<std::string>(), code_ptr, extra_lines); in GenDocComment()
|