Searched defs:comment (Results 1 - 25 of 195) sorted by relevance

12345678

/external/clang/test/Preprocessor/
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/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/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/libvorbis/doc/
H A D05-comment.tex4 \section{comment field and header specification} \label{vorbis:spec:comment}
8 The Vorbis text comment header is the second (of three) header
14 The comment field is meant to be used much like someone jotting a
33 The comment header is logically a list of eight-bit-clean vectors; the
43 in the comment header is octet-aligned, they can simply be read as
46 The comment header is decoded as follows:
54 6) this iteration's user comment = read a UTF-8 vector as [length] octets
66 The comment vectors are structured similarly to a UNIX environment variable.
67 That is, comment field
[all...]
/external/chromium_org/chrome/browser/resources/
H A Dcrashes.js79 comment: commentLines.join('\n'),
/external/chromium_org/chrome/browser/resources/media/
H A Dwebrtc_logs.js88 comment: commentLines.join('\n'),
/external/chromium_org/net/tools/
H A Dbuild_hpack_constants.py295 comment = ' // %s' % spec_bitstring variable
297 comment = ' // %3s %s' % (spec_comment, spec_bitstring) variable
299 comment = ' // %s' % spec_bitstring variable
301 bitvalue, bitcount, valueid, comment))
/external/chromium_org/third_party/icu/source/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/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
H A DAttributeInfo.java45 for (AttrTagInfo comment : attrField.comment().attrTags()) {
46 String n = comment.name();
59 public Comment comment() { method in class:AttributeInfo
61 for (AttrTagInfo attr : attrField.comment().attrTags()) {
89 TagInfo.makeHDF(data, base + ".deprecated", attrField.comment().deprecatedTags());
90 TagInfo.makeHDF(data, base + ".shortDescr", comment().briefTags());
91 TagInfo.makeHDF(data, base + ".descr", comment().tags());
H A DParsedTagInfo.java39 protected void setCommentText(String comment) { argument
40 mCommentText = comment;
/external/icu/icu4c/source/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/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/apache-http/src/org/apache/http/cookie/
H A DSetCookie.java55 * cookie's purpose will be described using this comment.
57 * @param comment
61 void setComment(String comment); argument
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dprvrsion.h81 char * comment; /* free form field for misc usage */ member in struct:__anon14674
/external/chromium_org/tools/gyp/pylib/gyp/
H A Dninja_syntax.py26 def comment(self, text): member in class:Writer
/external/nist-sip/java/javax/sip/header/
H A DRetryAfterHeader.java10 void setComment(String comment) throws ParseException; argument
/external/proguard/src/proguard/io/
H A DJarWriter.java33 * The manifest and comment properties can optionally be set.
41 private final String comment; field in class:JarWriter
53 * Creates a new JarWriter without manifest or comment.
66 String comment)
70 this.comment = comment;
206 // Add a comment, if set.
207 if (comment != null)
209 currentJarOutputStream.setComment(comment);
64 JarWriter(DataEntryWriter dataEntryWriter, Manifest manifest, String comment) argument
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
H A Dgroup-file-lexer.rb102 :template!, :string!, :comment!, :ws! ].freeze
645 # lexer rule comment! (COMMENT)
647 def comment!
900 comment!
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DAtomicHTMLToken.h92 const String& comment() const function in class:blink::AtomicHTMLToken
/external/clang/docs/tools/
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...]
H A Ddump_format_style.py33 def __init__(self, name, type, comment):
36 self.comment = comment.strip()
41 doxygen2rst(indent(self.comment, 2)))
47 def __init__(self, name, comment):
49 self.comment = comment.strip()
56 def __init__(self, name, comment):
58 self.comment = comment
88 comment = clean_comment_line(line) variable in class:read_options.State
109 comment = clean_comment_line(line) variable in class:read_options.State
[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/chromium_org/third_party/cython/src/Tools/
H A Dcython-mode.el80 (defun cython-comment-line-p ()
81 "Return non-nil if current line is a comment."
86 (defun cython-in-string/comment ()
87 "Return non-nil if point is in a comment or string."
148 (if (cython-comment-line-p)
168 (not (cython-in-string/comment)))
179 (when (cython-comment-line-p)
181 (forward-comment most-positive-fixnum))
187 (cython-in-string/comment))) ; just loop
198 (cython-in-string/comment)))) ; jus
[all...]

Completed in 779 milliseconds

12345678