HomeSort by relevance Sort by last modified time
    Searched refs:comment (Results 1 - 25 of 603) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Frontend/
preprocessed-output-macro-first-token.c 5 #pragma comment(lib, "somelib")
  /external/clang/test/CodeGen/
pragma-comment.c 5 #pragma comment(lib, "msvcrt.lib")
6 #pragma comment(lib, "kernel32")
7 #pragma comment(lib, "USER32.LIB")
10 #pragma comment(linker," /bar=" BAR)
  /external/chromium_org/tools/gyp/test/win/linker-flags/
link-warning.cc 6 #pragma comment(linker, "/merge:.data=.text")
manifest-in-comment.cc 5 #pragma comment(linker, \
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_comment.h 24 char comment[XT_MAX_COMMENT_LEN]; member in struct:xt_comment_info
  /development/ndk/platforms/android-3/include/linux/netfilter/
xt_comment.h 18 unsigned char comment[XT_MAX_COMMENT_LEN]; member in struct:xt_comment_info
  /development/ndk/platforms/android-L/include/linux/netfilter/
xt_comment.h 24 char comment[XT_MAX_COMMENT_LEN]; member in struct:xt_comment_info
  /external/iptables/include/linux/netfilter/
xt_comment.h 7 char comment[XT_MAX_COMMENT_LEN]; member in struct:xt_comment_info
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_comment.h 7 char comment[XT_MAX_COMMENT_LEN]; member in struct:xt_comment_info
  /external/chromium_org/third_party/closure_linter/closure_linter/
statetracker_test.py 58 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.Invalidate(
    [all...]
testutil.py 85 comment = tracker.GetDocComment()
86 if comment and comment not in comments:
87 comments.append(comment)
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ExtendedLexicalHandler.java 33 * 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; method in interface:ExtendedLexicalHandler
  /external/chromium_org/v8/test/mjsunit/
function-length-accessor.js 10 // long comment to trigger lazy compilation.
11 // long comment to trigger lazy compilation.
12 // long comment to trigger lazy compilation.
13 // long comment to trigger lazy compilation.
14 // long comment to trigger lazy compilation.
15 // long comment to trigger lazy compilation.
16 // long comment to trigger lazy compilation.
17 // long comment to trigger lazy compilation.
18 // long comment to trigger lazy compilation.
19 // long comment to trigger lazy compilation
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
RetryAfter.java 49 * Comment for <code>serialVersionUID</code>
61 /** 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
    [all...]
  /external/clang/test/Preprocessor/
macro_paste_msextensions.c 12 #define comment /##/ dead tokens live here macro
13 comment This is stupidity
19 #define nested(x) int x comment cute little dead tokens...
pragma_microsoft.c 8 #pragma comment(linker,"foo=" FOO) // expected-error {{pragma comment requires parenthesized identifier and optional string}}
9 #pragma comment(linker," bar=" BAR)
11 #pragma comment( user, "Compiled on " __DATE__ " at " __TIME__ )
13 #pragma comment(foo) // expected-error {{unknown kind of pragma comment}}
14 #pragma comment(compiler,) // expected-error {{expected string literal in pragma comment}}
16 #pragma comment(foo) // macro expand kind.
17 #pragma comment(foo) x // expected-error {{pragma comment requires}
    [all...]
print-pragma-microsoft.c 4 #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 " "{{[^"]*}}")
  /external/chromium_org/third_party/webrtc/voice_engine/test/win_test/
stdafx.h 61 #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
63 #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
65 #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
67 #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
  /external/chromium_org/device/bluetooth/
bluetooth_init_win.h 20 #pragma comment(lib, "Bthprops.lib")
21 #pragma comment(lib, "BluetoothApis.lib")
  /external/llvm/test/MC/ARM/
full_line_comment.s 2 # this is a full line comment starting at column 1
  /cts/tests/tests/text/src/android/text/util/cts/
Rfc822TokenTest.java 30 final String comment = "work"; local
31 Rfc822Token rfc822Token1 = new Rfc822Token(name, address, comment);
34 assertEquals(comment, rfc822Token1.getComment());
36 Rfc822Token rfc822Token2 = new Rfc822Token(null, address, comment);
39 assertEquals(comment, rfc822Token2.getComment());
41 Rfc822Token rfc822Token3 = new Rfc822Token(name, null, comment);
44 assertEquals(comment, rfc822Token3.getComment());
55 final String comment = "work"; local
56 Rfc822Token rfc822Token = new Rfc822Token(name, address, comment);
80 // issue 1695243, not clear what is supposed to happen if comment is null
87 String comment = "work"; local
106 final String comment = "work"; local
    [all...]
  /external/doclava/src/com/google/doclava/
KeywordEntry.java 22 KeywordEntry(String label, String href, String comment) {
25 this.comment = comment;
31 data.setValue(base + ".comment", this.comment);
44 private String comment; field in class:KeywordEntry
  /external/iptables/extensions/
libxt_comment.c 1 /* 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);
    [all...]
  /external/clang/docs/tools/
dump_ast_matchers.py 18 <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 without \-escaped words.""
322 comment = '' variable
331 comment = '' variable
351 comment = '' variable
    [all...]
  /external/chromium_org/base/threading/
thread_local_storage_win.cc 55 #pragma comment(linker, "/INCLUDE:_tls_used")
56 #pragma comment(linker, "/INCLUDE:p_thread_callback_base")
60 #pragma comment(linker, "/INCLUDE:__tls_used")
61 #pragma comment(linker, "/INCLUDE:_p_thread_callback_base")

Completed in 1121 milliseconds

1 2 3 4 5 6 7 8 91011>>