HomeSort by relevance Sort by last modified time
    Searched defs:comment (Results 76 - 100 of 1022) sorted by null

1 2 34 5 6 7 8 91011>>

  /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/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 34 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.strip(
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...]
  /external/doclava/src/com/google/doclava/
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...]
DocInfo.java 40 return comment().isHidden();
47 return comment().isRemoved();
60 return comment().isDocOnly();
72 mComment = new Comment(mRawCommentText, parent(), mPosition);
77 public Comment comment() { method in class:DocInfo
79 mComment = new Comment(mRawCommentText, parent(), mPosition);
93 mComment = new Comment(mRawCommentText, parent(), mPosition);
137 Comment mComment;
  /external/icu/icu4c/source/tools/gennorm2/
gennorm2.cpp 198 char *comment=(char *)strchr(line, '#'); local
199 if(comment!=NULL) {
200 *comment=0;
204 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...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
RetryAfterParser.java 89 String comment = this.lexer.comment(); local
90 retryAfter.setComment(comment);
ViaParser.java 109 // JvB Note: RFC3261 does not allow a comment in Via headers anymore
114 StringBuffer comment = new StringBuffer(); local
123 comment.append(tok.getTokenValue());
126 comment.append(tok.getTokenValue());
131 comment.append(ch);
135 v.setComment(comment.toString());
  /external/protobuf/gtest/test/
gtest-unittest-api_test.cc 108 Message comment; local
109 comment << "TypeParam = " << GetTypeName<int>().c_str();
110 return comment.GetString();
151 EXPECT_STREQ("", test_case->comment());
161 EXPECT_STREQ("", tests[0]->comment());
167 EXPECT_STREQ("", tests[1]->comment());
173 EXPECT_STREQ("", tests[2]->comment());
179 EXPECT_STREQ("", tests[3]->comment());
191 EXPECT_STREQ(GetExpectedTestCaseComment().c_str(), test_case->comment());
201 EXPECT_STREQ("", tests[0]->comment());
    [all...]
  /frameworks/base/core/java/android/text/util/
Rfc822Tokenizer.java 48 StringBuilder comment = new StringBuilder(); local
68 comment.toString()));
72 comment.toString()));
77 comment.setLength(0);
106 comment.append(c);
112 comment.append(c);
117 comment.append(text.charAt(i + 1));
121 comment.append(c);
153 comment.toString()));
157 comment.toString()))
    [all...]
  /frameworks/rs/api/
Scanner.cpp 77 // Skip the comment
78 string comment; local
79 readRestOfLine(&comment);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
importNode03.java 36 * The importedNode is of type Comment.
38 * Create a comment node with value being the string "this is a comment" in
40 * this document. Method should return a comment node whose value matches
72 Comment comment; local
80 comment = aNewDoc.createComment("this is a comment");
81 aNode = doc.importNode(comment, false);
88 assertEquals("nodeValue", "this is a comment", value)
    [all...]
importNode04.java 39 * Create a Comment child node for the Document Fragment.
43 * comment value "descendant1".
74 Comment comment; local
82 comment = aNewDoc.createComment("descendant1");
83 aNode = docFrag.appendChild(comment);
  /libcore/luni/src/test/java/libcore/xml/
SimpleBuilderTest.java 22 import org.w3c.dom.Comment;
94 String comment = ""; local
101 } else if (node instanceof Comment) {
102 comment = comment + node.getNodeValue();
107 assertEquals(" Fragile! Handle me with care! ", comment);
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlSerializer.java 28 * PROCESSING_INSTRUCTION, COMMENT, and DOCDECL in some implementations
305 void comment (String text) method in interface:XmlSerializer
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToSAXHandler.java 132 * Receive notification of a comment.
134 * @see ExtendedLexicalHandler#comment(String)
136 public void comment(String comment) throws SAXException method in class:ToSAXHandler
143 final int len = comment.length();
148 comment.getChars(0,len, m_charsBuff, 0);
149 m_lexHandler.comment(m_charsBuff, 0, len);
150 // time to fire off comment event
  /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/apache-xml/src/main/java/org/apache/xpath/objects/
XStringForChars.java 148 * comment method on the passed LexicalHandler for the
158 lh.comment((char[])m_obj, m_start, m_length);
  /external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/builder/
_lxml.py 10 from bs4.element import Comment, Doctype, NamespacedAttribute
202 def comment(self, content): member in class:LXMLTreeBuilderForXML
203 "Handle comments as Comment objects."
206 self.soup.endData(Comment)
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treewalkers/
_base.py 4 __all__ = ["DOCUMENT", "DOCTYPE", "TEXT", "ELEMENT", "COMMENT", "ENTITY", "UNKNOWN",
13 COMMENT = Node.COMMENT_NODE
103 def comment(self, data): member in class:TreeWalker
106 return {"type": "Comment", "data": text_type(data)}
165 elif type == COMMENT:
166 yield self.comment(details[0])
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
ScenarioResultsElement.java 141 String comment = preferences.get(getId(), null); local
142 if (comment != null) {
148 buffer.append(comment);
  /external/fonttools/Lib/fontTools/misc/
xmlWriter.py 75 def comment(self, data): member in class:XMLWriter
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/
TestData.java 16 * To change the template for this generated type comment go to
419 String comment; field in class:TestData.ConformanceTestCase
440 comment = comt;
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
TestData.java 15 * To change the template for this generated type comment go to
418 String comment; field in class:TestData.ConformanceTestCase
439 comment = comt;

Completed in 563 milliseconds

1 2 34 5 6 7 8 91011>>