Searched refs:comment (Results 51 - 75 of 391) sorted by relevance

1234567891011>>

/external/icu4c/samples/legacy/
H A Dlegacy.cpp39 void printArray(const char* const comment, const UChar UArray[][5], int32_t arraySize) { argument
40 fprintf (stdout, "%s\n", comment);
49 void printKeys(const char *comment, uint8_t keys[][32], int32_t keySize) { argument
52 fprintf(stdout, "%s\n", comment);
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/Regress/
H A Dregress-309242.js39 var summary = 'E4X should be on by default while preserving comment hack';
48 <!-- and --> should begin comment to end of line
55 <!-- comment -->; actual = false;
57 reportCompare(expect, actual, summary + ': &lt;!-- is comment to end of line');
66 reportCompare(expect, actual, summary + ': comment hack works inside script');
/external/webkit/Tools/Scripts/webkitpy/tool/bot/
H A Dsheriff.py83 comment = "%s might have broken %s" % (
87 comment += "\nThe following tests are not passing:\n"
88 comment += "\n".join(tests)
90 comment,
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DServerParser.java74 // mandatory token: product[/product-version] | (comment)
78 String comment = this.lexer.comment();
79 server.addProductToken('(' + comment + ')');
H A DUserAgentParser.java83 * server-val = product / comment product = token [SLASH
90 String comment = this.lexer.comment();
91 userAgent.addProductToken('(' + comment + ')');
H A DRetryAfterParser.java89 String comment = this.lexer.comment();
90 retryAfter.setComment(comment);
/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Dnodegettextcontent15.js96 var comment;
110 comment = doc.createComment("Comment ");
115 appendedChild = elem.appendChild(comment);
H A Dnodegettextcontent16.js98 var comment;
113 comment = doc.createComment("Comment ");
118 appendedChild = elem.appendChild(comment);
H A Dnodesettextcontent10.js95 var comment;
109 comment = doc.createComment("Comment ");
114 appendedChild = elem.appendChild(comment);
H A Dnodesettextcontent11.js95 var comment;
110 comment = doc.createComment("Comment ");
115 appendedChild = elem.appendChild(comment);
H A Ddocumentrenamenode27.js93 var comment;
122 comment = newDoc.createComment("comment");
141 renamedComment = newDoc.renameNode(comment,"http://www.w3.org/DOM/Test","comment");
H A Dnodeinsertbefore15.js96 var comment;
133 comment = doc.createComment("Comment");
138 inserted = entRef.insertBefore(comment,elemChild);
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
H A Dregress-31255.js38 * SUMMARY: JS should treat --> as a single-line comment indicator.
44 * Note: <!--, --> are the HTML multi-line comment opener, closer.
45 * JS already accepted <!-- as a single-line comment indicator.
51 var summary = 'JS should treat --> as a single-line comment indicator';
60 <!-- HTML comment start is already a single-line JS comment indicator
68 --> HTML comment end is JS comments until end-of-line
/external/webkit/Tools/Scripts/webkitpy/tool/commands/
H A Dupload_unittest.py57 options.comment = None
72 options.comment = "extra comment"
75 -- Begin comment --
76 extra comment
77 -- End comment --
83 options.comment = None
104 options.comment = None
122 options.comment = "MOCK comment"
[all...]
/external/icu4c/tools/genrb/
H A Dparse.c60 struct UString comment; member in struct:Lookahead
95 ParseResourceFunction(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status);
97 static struct SResource *parseResource(ParseState* state, char *tag, const struct UString *comment, UErrorCode *status);
130 state->lookahead[i].type = getNextToken(state->buffer, &state->lookahead[i].value, &state->lookahead[i].line, &state->lookahead[i].comment, status);
147 ustr_deinit(&state->lookahead[i].comment);
153 getToken(ParseState* state, struct UString **tokenValue, struct UString* comment, uint32_t *linenumber, UErrorCode *status) argument
170 if (comment != NULL)
172 ustr_cpy(comment, &(state->lookahead[state->lookaheadPosition].comment), status);
177 ustr_setlen(&state->lookahead[i].comment,
187 peekToken(ParseState* state, uint32_t lookaheadCount, struct UString **tokenValue, uint32_t *linenumber, struct UString *comment, UErrorCode *status) argument
220 expect(ParseState* state, enum ETokenType expectedToken, struct UString **tokenValue, struct UString *comment, uint32_t *linenumber, UErrorCode *status) argument
247 getInvariantString(ParseState* state, uint32_t *line, struct UString *comment, UErrorCode *status) argument
280 parseUCARules(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status) argument
425 parseTransliterator(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status) argument
503 parseDependency(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status) argument
565 parseString(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status) argument
600 parseAlias(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status) argument
809 struct UString comment; local
1012 struct UString comment; local
1135 struct UString comment; local
1214 parseTable(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status) argument
1241 parseArray(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status) argument
1335 parseIntVector(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status) argument
1423 parseBinary(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status) argument
1505 parseInteger(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status) argument
1555 parseImport(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status) argument
1672 parseInclude(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status) argument
1853 struct UString comment; local
1893 parseResource(ParseState* state, char *tag, const struct UString *comment, UErrorCode *status) argument
2022 struct UString comment; local
[all...]
/external/webkit/Source/WebCore/inspector/front-end/
H A DinspectorSyntaxHighlight.css29 .webkit-css-comment {
53 .webkit-javascript-comment {
73 .webkit-html-comment {
74 /* Keep this in sync with view-source.css (.webkit-html-comment) */
/external/doclava/src/com/google/doclava/
H A DDocInfo.java37 return comment().isHidden();
41 return comment().isDocOnly();
58 public Comment comment() { method in class:DocInfo
/external/webkit/Tools/Scripts/
H A Dextract-localizable-strings123 my $comment;
134 # Handle continued multi-line comment.
176 } elsif (!defined $comment) {
178 $comment = $string;
214 $_ = ""; # If the comment doesn't end, discard the result of the line and set flag
236 $comment = undef;
247 HandleUIString($UIString, $key, $comment, $file, $macroLine);
300 my ($string, $key, $comment, $file, $line) = @_;
313 $comment = UnescapeHexSequence($comment);
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
H A Dxml.rb149 <!-- This is a comment -->
181 Comment: "<!-- This is a comment -->"
/external/chromium/base/threading/
H A Dthread_local_storage_win.cc143 #pragma comment(linker, "/INCLUDE:_tls_used")
144 #pragma comment(linker, "/INCLUDE:p_thread_callback_base")
148 #pragma comment(linker, "/INCLUDE:__tls_used")
149 #pragma comment(linker, "/INCLUDE:_p_thread_callback_base")
/external/chromium/chrome/browser/ui/views/
H A Dcertificate_viewer_win.cc9 #pragma comment(lib, "cryptui.lib")
/external/chromium/net/base/
H A Dcert_database_win.cc9 #pragma comment(lib, "crypt32.lib")
/external/clang/include/clang/AST/
H A DMakefile35 $(Echo) "Building Clang comment node tables with tblgen"
36 $(Verb) $(ClangTableGen) -gen-clang-comment-nodes -o $(call SYSPATH, $@) $<
40 $(Echo) "Building Clang comment HTML tag matchers with tblgen"
41 $(Verb) $(ClangTableGen) -gen-clang-comment-html-tags -o $(call SYSPATH, $@) $<
45 $(Echo) "Building Clang comment HTML tag properties with tblgen"
46 $(Verb) $(ClangTableGen) -gen-clang-comment-html-tags-properties -o $(call SYSPATH, $@) $<
50 $(Echo) "Building Clang comment command info with tblgen"
51 $(Verb) $(ClangTableGen) -gen-clang-comment-command-info -o $(call SYSPATH, $@) $<
/external/clang/lib/Rewrite/Frontend/
H A DRewriteTest.cpp28 if (I->isNot(tok::comment)) continue;
/external/libmtp/
H A Dhotplug.sh.in43 # Nullify comment
44 comment=""
49 # This is a comment line, save it.
50 comment=${LINE}
62 echo ${comment} >> $2
64 comment=""

Completed in 2332 milliseconds

1234567891011>>