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 | 243 const std::string &extra_lines, in GenDocComment() argument 245 if (dc.empty() && extra_lines.empty()) { in GenDocComment() 257 if (!extra_lines.empty()) { in GenDocComment() 265 auto end = extra_lines.find('\n', start); in GenDocComment() 267 code += " * " + extra_lines.substr(start, end - start) + "\n"; in GenDocComment() 270 code += " * " + extra_lines.substr(start) + "\n"; in GenDocComment() 280 const std::string &extra_lines) { in GenDocComment() argument 281 GenDocComment(std::vector<std::string>(), code_ptr, extra_lines); in GenDocComment()
|