Home
last modified time | relevance | path

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

/external/flatbuffers/src/
Didl_gen_js.cpp129 const std::string &extra_lines, in GenDocComment() argument
131 if (dc.empty() && extra_lines.empty()) { in GenDocComment()
143 if (!extra_lines.empty()) { in GenDocComment()
151 auto end = extra_lines.find('\n', start); in GenDocComment()
153 code += " * " + extra_lines.substr(start, end - start) + "\n"; in GenDocComment()
156 code += " * " + extra_lines.substr(start) + "\n"; in GenDocComment()
166 const std::string &extra_lines) { in GenDocComment() argument
167 GenDocComment(std::vector<std::string>(), code_ptr, extra_lines); in GenDocComment()