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

1 2 3 4 5 6

  /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/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...
  /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/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/libvorbis/doc/
05-comment.tex 4 \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
29 \subsection{Comment encoding}
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
    [all...]
  /external/chromium_org/chrome/browser/resources/
crashes.js 79 comment: commentLines.join('\n'),
  /external/chromium_org/chrome/browser/resources/media/
webrtc_logs.js 88 comment: commentLines.join('\n'),
  /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
AttributeInfo.java 36 private Comment mComment;
45 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()) {
62 Comment c = attr.description();
70 return new Comment("", mClass, SourcePositionInfo.UNKNOWN);
89 TagInfo.makeHDF(data, base + ".deprecated", attrField.comment().deprecatedTags())
    [all...]
  /external/chromium_org/net/tools/
build_hpack_constants.py 295 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/nist-sip/java/gov/nist/javax/sip/parser/
ServerParser.java 74 // mandatory token: product[/product-version] | (comment)
78 String comment = this.lexer.comment(); local
79 server.addProductToken('(' + comment + ')');
UserAgentParser.java 83 * server-val = product / comment product = token [SLASH
90 String comment = this.lexer.comment(); local
91 userAgent.addProductToken('(' + comment + ')');
RetryAfterParser.java 89 String comment = this.lexer.comment(); local
90 retryAfter.setComment(comment);
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prvrsion.h 81 char * comment; /* free form field for misc usage */ member in struct:__anon19292
  /external/chromium_org/tools/gyp/pylib/gyp/
ninja_syntax.py 26 def comment(self, text): member in class:Writer
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
group-file-lexer.rb 81 :T__10 => 10, :CONSTANT => 4, :COMMENT => 8, :STRING => 7 )
99 "TEMPLATE", "STRING", "COMMENT", "WS" ].freeze
102 :template!, :string!, :comment!, :ws! ].freeze
645 # lexer rule comment! (COMMENT)
647 def comment!
651 type = COMMENT
838 # at line 1:8: ( T__10 | T__11 | T__12 | T__13 | T__14 | T__15 | T__16 | T__17 | T__18 | T__19 | CONSTANT | ID | TEMPLATE | STRING | COMMENT | WS )
899 # at line 1:98: COMMENT
900 comment!
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
AtomicHTMLToken.h 92 const String& comment() const function in class:blink::AtomicHTMLToken
94 ASSERT(m_type == HTMLToken::Comment);
136 case HTMLToken::Comment:
177 case HTMLToken::Comment:
211 // "data" for Comment, "characters" for Character
  /external/chromium_org/third_party/icu/source/tools/gennorm2/
gennorm2.cpp 193 char *comment=(char *)strchr(line, '#'); local
194 if(comment!=NULL) {
195 *comment=0;
199 continue; // skip empty and comment-only lines
  /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...]
dump_format_style.py 33 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.strip(
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/icu/icu4c/source/tools/gennorm2/
gennorm2.cpp 193 char *comment=(char *)strchr(line, '#'); local
194 if(comment!=NULL) {
195 *comment=0;
199 continue; // skip empty and comment-only lines
  /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...]

Completed in 851 milliseconds

1 2 3 4 5 6