Searched refs:comment (Results 1 - 25 of 673) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Dpragma-comment.c6 #pragma comment(lib, "msvcrt.lib")
7 #pragma comment(lib, "kernel32")
8 #pragma comment(lib, "USER32.LIB")
9 #pragma comment(lib, "with space")
12 #pragma comment(linker," /bar=" BAR)
13 #pragma comment(linker," /foo=\"foo bar\"")
/external/clang/test/Frontend/
H A Dpreprocessed-output-macro-first-token.c5 #pragma comment(lib, "somelib")
/external/v8/tools/gyp/test/win/linker-flags/
H A Dlink-warning.cc6 #pragma comment(linker, "/merge:.data=.text")
H A Dmanifest-in-comment.cc5 #pragma comment(linker, \
/external/clang/test/Preprocessor/
H A Dpragma_ps4.c4 // #pragma comment lib
6 #pragma comment(lib)
7 #pragma comment(lib,"foo")
8 __pragma(comment(lib, "bar"))
10 #pragma comment(linker) // expected-warning {{'#pragma comment linker' ignored}}
11 #pragma comment(linker,"foo") // expected-warning {{'#pragma comment linker' ignored}}
12 __pragma(comment(linker, " bar=" "2")) // expected-warning {{'#pragma comment linke
[all...]
H A Dpragma_microsoft.c10 #pragma comment(linker,"foo=" FOO) // expected-error {{pragma comment requires parenthesized identifier and optional string}}
11 // CHECK: #pragma comment(linker,"foo=" 1)
12 #pragma comment(linker," bar=" BAR)
13 // CHECK: #pragma comment(linker," bar=" "2")
15 #pragma comment( user, "Compiled on " __DATE__ " at " __TIME__ )
16 // CHECK: {{#pragma comment\( user, \"Compiled on \".*\" at \".*\" \)}}
18 #pragma comment(foo) // expected-error {{unknown kind of pragma comment}}
19 // CHECK: #pragma comment(fo
[all...]
H A Dprint-pragma-microsoft.c4 #pragma comment(linker, "bar=" BAR)
5 // CHECK: #pragma comment(linker, "bar=" "2")
6 #pragma comment(user, "Compiled on " __DATE__ " at " __TIME__)
7 // CHECK: #pragma comment(user, "Compiled on " "{{[^"]*}}" " at " "{{[^"]*}}")
H A Dmacro_paste_msextensions.c12 #define comment /##/ dead tokens live here macro
13 comment This is stupidity
19 #define nested(x) int x comment cute little dead tokens...
/external/v8/test/webkit/fast/js/kde/
H A Dj-comment-3.js25 <!-- HTML comment (not ECMA)
H A Dj-comment-4.js25 --> end of HTML comment (not ECMA)
/external/iptables/include/linux/netfilter/
H A Dxt_comment.h7 char comment[XT_MAX_COMMENT_LEN]; member in struct:xt_comment_info
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_comment.h7 char comment[XT_MAX_COMMENT_LEN]; member in struct:xt_comment_info
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DCommentMethodItem.java37 private final String comment; field in class:CommentMethodItem
40 public CommentMethodItem(String comment, int codeAddress, double sortOrder) { argument
42 this.comment = comment;
52 writer.write(comment);
/external/chromium-trace/catapult/third_party/closure_linter/closure_linter/
H A Dstatetracker_test.py58 comment = statetracker.DocComment(None)
61 comment.AddFlag(a)
64 comment.AddFlag(b)
67 comment.AddFlag(c)
71 comment.ordered_params)
75 comment.GetDocFlags())
78 comment = statetracker.DocComment(None)
80 self.assertFalse(comment.invalidated)
81 self.assertFalse(comment.IsInvalidated())
83 comment
[all...]
H A Dtestutil.py88 comment = tracker.GetDocComment()
89 if comment and comment not in comments:
90 comments.append(comment)
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DExtendedLexicalHandler.java33 * This method is used to notify of a comment
34 * @param comment the comment, but unlike the SAX comment() method this
38 public void comment(String comment) throws SAXException; argument
/external/libxml2/test/automata/
H A Dpo6 t 2 3 comment
13 comment
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudfront/
H A Didentity.py26 s3_user_id='', comment=''):
31 self.comment = comment
47 self.comment = value
51 def update(self, comment=None):
54 self.config.comment)
55 if comment is not None:
56 new_config.comment = comment
68 def __init__(self, connection=None, caller_reference='', comment
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DRetryAfter.java61 /** comment field
63 protected String comment; field in class:RetryAfter
80 if (comment != null)
81 s.append(SP + LPAREN + comment + RPAREN);
91 * @return true if comment exist, false otherwise
94 return comment != null;
97 /** remove comment field
100 comment = null;
139 * Gets the comment of RetryAfterHeader.
141 * @return the comment o
157 setComment(String comment) argument
[all...]
/external/doclava/src/com/google/doclava/
H A DKeywordEntry.java22 KeywordEntry(String label, String href, String comment) { argument
25 this.comment = comment;
31 data.setValue(base + ".comment", this.comment);
44 private String comment; field in class:KeywordEntry
/external/iptables/extensions/
H A Dlibxt_comment.c1 /* Shared library add-on to iptables to add comment match support.
5 * Initial comment match
20 "comment match options:\n"
21 "--comment COMMENT Attach a comment to a rule\n");
25 {.name = "comment", .id = O_COMMENT, .type = XTTYPE_STRING,
27 XTOPT_POINTER(struct xt_comment_info, comment)},
36 commentinfo->comment[XT_MAX_COMMENT_LEN-1] = '\0';
37 printf(" /* %s */", commentinfo->comment);
46 commentinfo->comment[XT_MAX_COMMENT_LE
[all...]
/external/clang/docs/tools/
H A Ddump_format_style.py34 def __init__(self, name, type, comment):
37 self.comment = comment.strip()
43 doxygen2rst(indent(self.comment, 2)))
52 def __init__(self, name, comment):
54 self.comment = comment.strip()
61 def __init__(self, name, comment):
63 self.comment = comment
116 comment = clean_comment_line(line) variable in class:read_options.State
142 comment = clean_comment_line(line) variable in class:read_options.State
155 comment = clean_comment_line(line) variable in class:read_options.State
[all...]
H A Ddump_ast_matchers.py18 <tr><td colspan="4" class="doc" id="%(id)s"><pre>%(comment)s</pre></td></tr>
57 def extract_result_types(comment):
58 """Extracts a list of result types from the given comment.
60 We allow annotations in the comment of the matcher to specify what
69 m = re.search(r'Usable as: Any Matcher[\s\n]*$', comment, re.S)
73 m = re.match(r'^(.*)Matcher<([^>]+)>\s*,?[\s\n]*$', comment, re.S)
75 if re.search(r'Usable as:\s*$', comment):
80 comment = m.group(1)
82 def strip_doxygen(comment):
83 """Returns the given comment withou
322 comment = '' variable
331 comment = '' variable
351 comment = '' variable
[all...]
/external/ImageMagick/MagickWand/tests/
H A Dscript-token-test-data.txt4 : Shell script launcher comment ignore
5 @ DOS script launcher comment ignore
8 -option key # end of line comment
9 +reset imbedded#hash # <- not a comment, thought this is
/external/clang/test/Lexer/
H A Dpragma-region.c7 // #pragma endregion optional comment
18 #pragma endregion long comment

Completed in 1303 milliseconds

1234567891011>>