Home
last modified time | relevance | path

Searched refs:comments (Results 1 - 25 of 90) sorted by relevance

1234

/third_party/lz4/contrib/gen_manual/
H A Dgen_manual.cpp54 /* trim C++ style comments */
88 /* print line with LZ4LIB_API removed and C++ comments not bold */
109 vector<string> input, lines, comments, chapters; in main() local
153 /* comments of type / * * < and / * ! < are detected, and only function declaration is highlighted (bold) */ in main()
177 comments = get_lines(input, linenum, "*/"); in main()
178 if (!comments.empty()) comments[0] = line.substr(spos+3); in main()
179 if (!comments.empty()) in main()
180 comments[comments in main()
208 sout << "<h3>" << comments[0] << "</h3><pre>"; main() local
222 sout << "<a name=\\"Chapter" << chapter << "\\"></a><h2>" << comments[0] << "</h2><pre>"; main() local
[all...]
/third_party/icu/tools/multi/proj/icu4cscan/
H A Dtestxml.cpp120 int could_open(const char *locale, char *comments) { in could_open() argument
127 strcat(comments, tmp); in could_open()
132 strcat(comments, tmp); in could_open()
136 int col_could_open(const char *locale, char *comments) { in col_could_open() argument
143 /*strcat(comments, tmp); */ in col_could_open()
148 /* strcat(comments, tmp); */ in col_could_open()
259 const char *locale, char *comments, in date()
313 strcat(comments, tmp); in date()
320 strcat(comments,tmp); in date()
326 static void writeOkComments(XMLFile &xf, int ok, const char *comments, cons argument
256 date(const UChar *tz, UDateFormatStyle style, char *format, const char *locale, char *comments, UErrorCode *status) date() argument
345 could_fmt_dow(const char *locale, char *comments) could_fmt_dow() argument
369 char comments[1000]; probeCapability() local
391 char comments[1000]; probeColCapability() local
[all...]
/third_party/gn/src/gn/
H A Dcommand_format.cc151 void PrintTrailingCommentsWrapped(const std::vector<Token>& comments);
157 // End the current line, flushing end of line comments.
212 // |end| holds any trailing comments to be printed just before the closing
233 std::vector<Token> comments_; // Pending end-of-line comments.
305 // Assumes that the margin is set to the indent level where the comments should
312 void Printer::PrintTrailingCommentsWrapped(const std::vector<Token>& comments) { in PrintTrailingCommentsWrapped() argument
320 for (const auto& c : comments) { in PrintTrailingCommentsWrapped()
358 if (node->comments() && !node->comments()->suffix().empty()) { in PrintSuffixComments()
361 PrintTrailingCommentsWrapped(node->comments() in PrintSuffixComments()
[all...]
/third_party/python/Tools/unicode/
H A Dgencodec.py138 def python_mapdef_code(varname, map, comments=1, precisions=(2, 4)):
173 if mapcomment and comments:
195 def python_tabledef_code(varname, map, comments=1, key_precision=2):
241 if mapcomment and comments:
253 def codegen(name, map, encodingname, comments=1):
257 Comments are included in the source, if comments is true (default).
264 comments=comments)
268 comments=comments)
[all...]
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/
H A DCommentsSchema.java47 * The data schema for handling XML comments. Note that, unlike other "table" schemas, this does
48 * not represent comments in the form of a CsvTable. This is because comment anchors can appear
65 /** Loads the comments from a given file path. */
79 List<Comment> comments = new ArrayList<>(); in importComments()
80 Consumer<Stream<String>> rowCallback = getRowCallback(comments); in importComments()
85 return ImmutableList.sortedCopyOf(ORDERING, comments); in importComments()
89 List<Comment> comments = new ArrayList<>(); in importComments()
90 Consumer<Stream<String>> rowCallback = getRowCallback(comments); in importComments()
97 return ImmutableList.sortedCopyOf(ORDERING, comments); in importComments()
100 private static Consumer<Stream<String>> getRowCallback(List<Comment> comments) { in getRowCallback() argument
112 export( List<Comment> comments, Consumer<Stream<String>> collector, boolean toCsv) export() argument
123 exportCsv(Writer csv, List<Comment> comments) exportCsv() argument
[all...]
/third_party/protobuf/src/google/protobuf/compiler/csharp/
H A Dcsharp_doc_comment.cc44 // Functions to create C# XML documentation comments.
45 // Currently this only includes documentation comments containing text specified as comments
46 // in the .proto file; documentation comments generated just from field/message/enum/proto names
50 string comments = location.leading_comments.empty() ? in WriteDocCommentBodyImpl() local
52 if (comments.empty()) { in WriteDocCommentBodyImpl()
57 comments = StringReplace(comments, "&", "&amp;", true); in WriteDocCommentBodyImpl()
58 comments = StringReplace(comments, "<", " in WriteDocCommentBodyImpl()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DstaticInstanceResolution.js9 static getDocCommentText(comments: Comment[])
11 comments[0].getDocCommentText();
23 Comment.getDocCommentText = function (comments) {
24 comments[0].getDocCommentText();
H A DAPISample_jsdoc.js31 // the comments for a symbol
32 let comments = symbol.getDocumentationComment(undefined);
34 if (comments.length) {
35 definition.description = comments.map(comment => comment.kind === "lineBreak" ? comment.text : comment.text.trim().replace(/\r\n/g, "\n")).join("");
38 // jsdocs are separate from comments
141 // the comments for a symbol
142 var comments = symbol.getDocumentationComment(undefined);
143 if (comments.length) {
144 definition.description = comments.map(function (comment) { return comment.kind === "lineBreak" ? comment.text : comment.text.trim().replace(/\r\n/g, "\n"); }).join("");
146 // jsdocs are separate from comments
[all...]
H A DinterfaceContextualType.js14 this.values['comments'] = { italic: true };
18 comments: { italic: true }
32 this.values['comments'] = { italic: true };
36 comments: { italic: true }
H A DparserRealSource14.js464 var lookInComments = (comments: TypeScript.Comment[]) => {
465 if (comments && comments.length > 0) {
466 for (var i = 0; i < comments.length; i++) {
467 var minChar = comments[i].minChar;
468 var limChar = comments[i].limChar;
469 if (!comments[i].isBlockComment) {
470 limChar++; // For single line comments, include 1 more character (for the newline)
473 ctx.path.push(comments[i]);
509 // The AST walker skips comments, bu
[all...]
/third_party/ffmpeg/tests/fate/
H A Dmxf.mak44 FATE_MXF_USER_COMMENTS-$(call ENCDEC2, MPEG2VIDEO, PCM_S16LE, MXF) += fate-mxf-user-comments
45 fate-mxf-user-comments: $(SAMPLES)/mxf/Sony-00001.mxf
46 fate-mxf-user-comments: CMD = md5 -y -i $(TARGET_SAMPLES)/mxf/Sony-00001.mxf -c copy -metadata "comment_test=value" -fflags +bitexact -f mxf
48 FATE_MXF_D10_USER_COMMENTS-$(call ALLYES, FILE_PROTOCOL MXF_DEMUXER DVVIDEO_DECODER SCALE_FILTER MPEG2VIDEO_ENCODER MXF_D10_MUXER EXTRACT_EXTRADATA_BSF MPEGVIDEO_PARSER PIPE_PROTOCOL FRAMECRC_MUXER) += fate-mxf-d10-user-comments
49 fate-mxf-d10-user-comments: CMD = transcode mxf $(TARGET_SAMPLES)/mxf/Avid-00005.mxf mxf_d10 "-c:v mpeg2video -b:v 30000k -minrate:v 30000k -maxrate:v 30000k -bufsize:v 30000k -rc_init_occupancy 30000k -vf scale=w=1280:h=720 -an -metadata comment_test=value -metadata company_name=FATE-company -metadata product_name=FATE-test -metadata product_version=3.14159 -store_user_comments 1" "-c copy -frames:v 5" "-show_entries format_tags"
51 FATE_MXF_OPATOM_USER_COMMENTS-$(call ENCDEC2, MPEG2VIDEO, PCM_S16LE, MXF) += fate-mxf-opatom-user-comments
52 fate-mxf-opatom-user-comments: $(SAMPLES)/mxf/Sony-00001.mxf
53 fate-mxf-opatom-user-comments: CMD = md5 -y -i $(TARGET_SAMPLES)/mxf/Sony-00001.mxf -an -vcodec copy -metadata "comment_test=value" -fflags +bitexact -f mxf_opatom
/third_party/mesa3d/src/mapi/glapi/gen/
H A Dremap_helper.py97 comments = "will be remapped"
99 comments = "offset %d" % f.offset
101 comments = "dynamic"
104 % (index, f.name, comments))
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
H A DDataDrivenTestHelper.java31 private List<String> comments = new ArrayList<>(); field in DataDrivenTestHelper
42 String comment = comments.get(i); in appendLines()
65 comments.add(commentBase); in addLine()
82 String comment = comments.get(i); in test()
164 comments = Collections.unmodifiableList(comments); in load()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DDataDrivenTestHelper.java30 private List<String> comments = new ArrayList<>(); field in DataDrivenTestHelper
41 String comment = comments.get(i); in appendLines()
64 comments.add(commentBase); in addLine()
81 String comment = comments.get(i); in test()
163 comments = Collections.unmodifiableList(comments); in load()
/third_party/python/Lib/test/test_email/
H A Dtest__header_value_parser.py23 comments=None):
28 if comments is not None:
29 self.assertEqual(tl.comments, comments)
32 remainder, comments=None):
35 comments=None)
39 comments=None):
41 self._assert_results(tl, '', string, value, defects, '', comments)
728 self.assertEqual(cfws[0].comments, ['foo (bar)'])
729 self.assertEqual(cfws[2].comments, ['(
[all...]
/third_party/protobuf/src/google/protobuf/compiler/objectivec/
H A Dobjectivec_oneof.cc53 string comments; in OneofGenerator() local
56 comments = BuildCommentsString(location, true); in OneofGenerator()
58 comments = ""; in OneofGenerator()
60 variables_["comments"] = comments; in OneofGenerator()
99 "$comments$" in GeneratePublicCasePropertyDeclaration()
H A Dobjectivec_enum.cc109 printer->Print("$comments$typedef$deprecated_attribute$ GPB_ENUM($name$) {\n", in GenerateHeader()
110 "comments", enum_comments, in GenerateHeader()
132 string comments = BuildCommentsString(location, true).c_str(); in GenerateHeader() local
133 if (comments.length() > 0) { in GenerateHeader()
137 printer->Print(comments.c_str()); in GenerateHeader()
/third_party/mbedtls/scripts/mbedtls_dev/
H A Dtest_case.py40 self.comments = [] #type: List[str]
47 self.comments += lines
79 for line in self.comments:
/third_party/cups-filters/filter/foomatic-rip/
H A Doptions.h172 void append_prolog_section(dstr_t *str, int optset, int comments);
173 void append_setup_section(dstr_t *str, int optset, int comments);
174 void append_page_setup_section(dstr_t *str, int optset, int comments);
/third_party/skia/third_party/externals/spirv-tools/tools/dis/
H A Ddis.cpp54 --no-header Don't output the header as leading comments. in print_usage()
60 --comment Add comments to make reading easier in print_usage()
84 bool comments = false; in main() local
109 comments = true; in main()
164 if (comments) options |= SPV_BINARY_TO_TEXT_OPTION_COMMENT; in main()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/dis/
H A Ddis.cpp54 --no-header Don't output the header as leading comments. in print_usage()
60 --comment Add comments to make reading easier in print_usage()
84 bool comments = false; in main() local
109 comments = true; in main()
164 if (comments) options |= SPV_BINARY_TO_TEXT_OPTION_COMMENT; in main()
/third_party/protobuf/src/google/protobuf/compiler/java/
H A Djava_doc_comment.cc107 std::string comments = location.leading_comments.empty() in WriteDocCommentBodyForLocation() local
110 if (!comments.empty()) { in WriteDocCommentBodyForLocation()
117 comments = EscapeJavadoc(comments); in WriteDocCommentBodyForLocation()
119 std::vector<std::string> lines = Split(comments, "\n"); in WriteDocCommentBodyForLocation()
176 // We start the comment with the main body based on the comments from the in WriteFieldDocComment()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/
H A DUCharacterCaseTest.java1798 int comments = str.indexOf(" #", start); in getUnicodeStrings()
1799 if (comments != -1 && comments != start) { in getUnicodeStrings()
1800 if (str.charAt(comments - 1) == ';') { in getUnicodeStrings()
1801 comments --; in getUnicodeStrings()
1803 String conditions = str.substring(start, comments); in getUnicodeStrings()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DUCharacterCaseTest.java1881 int comments = str.indexOf(" #", start); in getUnicodeStrings()
1882 if (comments != -1 && comments != start) { in getUnicodeStrings()
1883 if (str.charAt(comments - 1) == ';') { in getUnicodeStrings()
1884 comments --; in getUnicodeStrings()
1886 String conditions = str.substring(start, comments); in getUnicodeStrings()
/third_party/skia/src/images/
H A DSkPngEncoder.cpp205 // Set comments in tEXt chunk in setHeader()
206 const sk_sp<SkDataTable>& comments = options.fComments; in setHeader() local
207 if (comments != nullptr) { in setHeader()
208 std::vector<png_text> png_texts(comments->count()); in setHeader()
210 for (int i = 0; i < comments->count() / 2; ++i) { in setHeader()
212 const char* originalKeyword = comments->atStr(2 * i); in setHeader()
213 const char* text = comments->atStr(2 * i + 1); in setHeader()

Completed in 17 milliseconds

1234