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

1 2 3 4 5

  /external/nanopb-c/tests/common/
unittests.h 3 #define COMMENT(x) printf("\n----" x "----\n");
  /external/clang/include/clang/AST/
CommentVisitor.h 1 //===--- CommentVisitor.h - Visitor for Comment subclasses ------*- C++ -*-===//
13 #include "clang/AST/Comment.h"
29 RetTy visit(PTR(Comment) C) {
34 default: llvm_unreachable("Unknown comment kind!");
35 #define ABSTRACT_COMMENT(COMMENT)
36 #define COMMENT(CLASS, PARENT) \
37 case Comment::CLASS##Kind: DISPATCH(CLASS, CLASS);
40 #undef COMMENT
46 #define ABSTRACT_COMMENT(COMMENT) COMMENT
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlTokenType.java 45 * An HTML bogus comment, XML Prologue, or XML processing instruction like
49 /** An HTML or XML style comment, <tt>&lt;!-- for example --></tt>. */
50 COMMENT,
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/
DateTimeParserConstants.java 25 int COMMENT = 38;
  /external/chromium_org/tools/metrics/actions/
extract_actions_test.py 28 COMMENT = '<!--comment-->'
32 {comment}
107 '<!--comment-->\n\n'
121 comment=NO_VALUE):
133 comment: the comment tag to be inserted in the original XML string.
140 obsolete=obsolete, comment=comment)
166 comment=NO_VALUE
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
AddressListParserConstants.java 28 int COMMENT = 20;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
ContentTypeParserConstants.java 23 int COMMENT = 8;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/
Fuzzy.h 25 #define COMMENT 8
FuzzyLexer.h 41 #define COMMENT 17
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/output1/
FuzzyLexer.h 41 #define COMMENT 17
  /external/clang/lib/AST/
Comment.cpp 1 //===--- Comment.cpp - Comment AST node implementation --------------------===//
11 #include "clang/AST/Comment.h"
22 const char *Comment::getCommentKindName() const {
25 #define ABSTRACT_COMMENT(COMMENT)
26 #define COMMENT(CLASS, PARENT) \
30 #undef COMMENT
33 llvm_unreachable("Unknown comment kind!");
41 good implements_child_begin_end(Comment::child_iterator (T::*)() const) {
47 Comment::child_iterator (Comment::*)() const)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarSpelunker.java 179 case '/' : COMMENT(); break;
218 void COMMENT() throws IOException {
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
ExpandedNameTable.java 59 public static final int COMMENT = ((int)DTM.COMMENT_NODE) ;
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
ecmametadatapass.py 96 # A normal comment.
97 COMMENT = 'comment'
99 # A JsDoc comment.
javascripttokens.py 32 COMMENT = 'comment'
55 DOC_PREFIX = 'comment prefix: * '
65 COMMENT_TYPES = frozenset([START_SINGLE_LINE_COMMENT, COMMENT,
72 DOC_INLINE_FLAG, COMMENT, DOC_START_BRACE, DOC_END_BRACE])
132 """Tests if this token is any part of a comment.
135 True if this token is any part of a comment.
140 """Tests if this token is code, as opposed to a comment or whitespace."""
  /external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/dom/
nodetype.js 43 COMMENT: 8,
  /external/chromium_org/third_party/closure_linter/closure_linter/
ecmametadatapass.py 96 # A normal comment.
97 COMMENT = 'comment'
99 # A JsDoc comment.
javascripttokens.py 32 COMMENT = 'comment'
55 DOC_PREFIX = 'comment prefix: * '
65 COMMENT_TYPES = frozenset([START_SINGLE_LINE_COMMENT, COMMENT,
72 DOC_INLINE_FLAG, COMMENT, DOC_START_BRACE, DOC_END_BRACE])
132 """Tests if this token is any part of a comment.
135 True if this token is any part of a comment.
140 """Tests if this token is code, as opposed to a comment or whitespace."""
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/
Node.java 39 public static final int COMMENT = 9;
180 types are ELEMENT, TEXT, COMMENT, and PROCESSING_INSTRUCTION */
343 case COMMENT:
344 writer.comment((String) child);
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParser.java 218 * PROCESSING_INSTRUCTION and COMMENT events,
297 * An XML comment was just read. This event type is this token is
300 * The content of the comment can be accessed using the getText()
306 int COMMENT = 9;
340 "COMMENT",
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
token.py 61 COMMENT = 52
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tokenize.py 15 that it produces COMMENT tokens for comments and gives type OP for all
34 __all__ += ["COMMENT", "tokenize", "generate_tokens", "NL", "untokenize"]
38 COMMENT = N_TOKENS
39 tok_name[COMMENT] = 'COMMENT'
49 Comment = r'#[^\r\n]*'
50 Ignore = Whitespace + any(r'\\\r?\n' + Whitespace) + maybe(Comment)
98 PseudoExtras = group(r'\\\r?\n|\Z', Comment, Triple)
335 yield (COMMENT, comment_token,
340 yield ((NL, COMMENT)[line[pos] == '#'], line[pos:]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
pulldom.py 12 COMMENT = "COMMENT"
137 def comment(self, s): member in class:PullDOM
140 self.lastEvent[1] = [(COMMENT, node), None]
143 event = [(COMMENT, s), None]
184 elif e[0][0] == COMMENT:
186 e[0] = (COMMENT, n)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
token.py 61 COMMENT = 52
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tokenize.py 15 that it produces COMMENT tokens for comments and gives type OP for all
34 __all__ += ["COMMENT", "tokenize", "generate_tokens", "NL", "untokenize"]
38 COMMENT = N_TOKENS
39 tok_name[COMMENT] = 'COMMENT'
49 Comment = r'#[^\r\n]*'
50 Ignore = Whitespace + any(r'\\\r?\n' + Whitespace) + maybe(Comment)
98 PseudoExtras = group(r'\\\r?\n|\Z', Comment, Triple)
335 yield (COMMENT, comment_token,
340 yield ((NL, COMMENT)[line[pos] == '#'], line[pos:]
    [all...]

Completed in 1130 milliseconds

1 2 3 4 5