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

1 2 3 4 5 6 7 8 91011>>

  /build/kati/testcase/
comment_in_define.mk 1 define comment macro
5 a:=$(comment)
8 $(comment)
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_comment.h 23 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 8 char comment[XT_MAX_COMMENT_LEN]; member in struct:xt_comment_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter/
xt_comment.h 7 char comment[XT_MAX_COMMENT_LEN]; member in struct:xt_comment_info
  /frameworks/base/tools/aapt2/java/
AnnotationProcessor_test.cpp 32 const char* comment = local
33 "Some comment, and it should contain a marker word, "
38 processor.AppendComment(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/clang/test/Preprocessor/
macro_paste_msextensions.c 13 #define comment /##/ dead tokens live here macro
15 comment This is stupidity
21 #define nested(x) int x comment cute little dead tokens...
  /external/libxml2/python/tests/
build.py 9 comment = doc.newDocComment("This is a generated document") variable
10 doc.addChild(comment)
23 comment = doc.children variable
24 if comment.type != "comment" or \
25 comment.content != "This is a generated document":
26 print("error rereading comment")
28 pi = comment.next
  /external/oj-libjdwp/make/src/classes/build/tools/jdwpgen/
AbstractCommandNode.java 35 writer.println(comment()); method
CommandSetNode.java 44 writer.println(comment()); method
  /external/curl/lib/
checksrc.pl 41 'CPPCOMMENTS' => '// comment detected',
58 'OPENCOMMENT' => 'file ended with a /* comment still "open"',
213 $what =~ s: *\*/$::; # cut off end of C comment
309 comment: label
315 # start of /* comment was removed
321 # end of comment */ was removed
323 goto comment;
326 # still within a comment
340 $line, length($1), $file, $l, "\/\/ comment");
417 # this is a comment
    [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);
55 char comment[XT_MAX_COMMENT_LEN]; local
    [all...]
  /external/javaparser/javaparser-core/src/main/javacc-support/com/github/javaparser/
GeneratedJavaParserTokenManagerBase.java 4 import com.github.javaparser.ast.comments.Comment;
27 static Comment createCommentFromToken(Token token) {
40 LineComment comment = new LineComment(tokenRange(token), commentText.substring(2)); local
41 comment.setRange(range);
42 return comment;
44 throw new AssertionError("Unexpectedly got passed a non-comment token.");
  /external/ply/ply/test/
lex_state3.py 16 comment = 1 variable
17 states = ((comment, 'inclusive'),
27 t.lexer.begin('comment')
28 print("Entering comment state")
32 print("comment body %s" % t)
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
CommentMethodItem.java 37 private final String comment; field in class:CommentMethodItem
40 public CommentMethodItem(String comment, int codeAddress, double sortOrder) {
42 this.comment = comment;
52 writer.write(comment);
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/
BaseModifyCommentScanner.java 23 import org.eclipse.jdt.core.dom.Comment;
31 * A base-class for general comment processors. All comments of all types in a
32 * {@link CompilationUnit} are considered. Subclasses determine whether to make a complete comment
41 List<Comment> comments = cu.getCommentList();
43 for (Comment comment : Lists.reverse(comments)) {
44 String commentText = document.get(comment.getStartPosition(), comment.getLength());
45 String newCommentText = processComment(reporter, comment, commentText);
47 document.replace(comment.getStartPosition(), comment.getLength(), newCommentText)
    [all...]
  /external/autotest/tko/
save_query.cgi 9 comment = form['label'].value variable
11 comment = '' variable
32 'user_comment':comment, 'url':HTTP_REFERER }
54 print 'comments: %s<br><br>' % 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 + ')');
  /external/strace/
futex.c 55 const char *comment; local
99 comment = printxval(futexwakeops, (val3 >> 28) & 0x7, NULL)
102 tprints_comment(comment);
104 comment = printxval(futexwakecmps, (val3 >> 24) & 0xf, NULL)
107 tprints_comment(comment);
  /external/tensorflow/tensorflow/compiler/xla/tests/
test_macros.cc 48 auto comment = line.find("//"); local
49 if (comment != string::npos) {
50 line = line.substr(0, comment);
  /external/vboot_reference/cgpt/
cgpt.c 29 const char *comment; member in struct:__anon43221
50 printf(" %-15s %s\n", cmds[i].name, cmds[i].comment);
  /libcore/luni/src/main/java/org/xml/sax/ext/
LexicalHandler.java 194 * Report an XML comment anywhere in the document.
202 * @param ch An array holding the characters in the comment.
207 public abstract void comment (char ch[], int start, int length) method in interface:LexicalHandler
  /external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/
UnitTestZipEntry.java 42 * Optional comment, as an ASCII string.
44 public final String comment; field in class:UnitTestZipEntry
56 * @param comment optional comment, as an ASCII string
58 public UnitTestZipEntry(String path, int level, String content, String comment) {
59 this(path, level, true, content, comment);
67 * @param comment optional comment, as an ASCII string
69 public UnitTestZipEntry(String path, int level, boolean nowrap, String content, String comment) {
74 this.comment = comment
    [all...]

Completed in 556 milliseconds

1 2 3 4 5 6 7 8 91011>>