HomeSort by relevance Sort by last modified time
    Searched refs:comment (Results 176 - 200 of 953) sorted by null

1 2 3 4 5 6 78 91011>>

  /libcore/luni/src/main/java/org/xml/sax/ext/
DefaultHandler2.java 70 public void comment (char ch [], int start, int length) method in class:DefaultHandler2
  /packages/apps/Camera/jni/feature_stab/src/dbregtest/
PgmImage.h 68 bool WritePGM(const std::string filename, const std::string comment="");
  /packages/apps/LegacyCamera/jni/feature_stab/src/dbregtest/
PgmImage.h 68 bool WritePGM(const std::string filename, const std::string comment="");
  /prebuilts/gcc/darwin-x86/x86/i686-android-linux-4.4.3/i686-android-linux/lib/ldscripts/
elf_i386.xr 107 .comment 0 : { *(.comment) }
elf_i386.xu 108 .comment 0 : { *(.comment) }
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/lib/ldscripts/
elf_i386.xr 97 .comment 0 : { *(.comment) }
elf_i386.xu 98 .comment 0 : { *(.comment) }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/lib/ldscripts/
elf_i386.xr 97 .comment 0 : { *(.comment) }
elf_i386.xu 98 .comment 0 : { *(.comment) }
  /prebuilts/gcc/linux-x86/x86/i686-android-linux-4.4.3/i686-android-linux/lib/ldscripts/
elf_i386.xr 107 .comment 0 : { *(.comment) }
elf_i386.xu 108 .comment 0 : { *(.comment) }
  /external/bluetooth/glib/glib/
gkeyfile.c 94 GKeyFileKeyValuePair *comment; /* Special comment that is stuck to the top of a group */ member in struct:_GKeyFileGroup
172 const gchar *comment);
762 "a key-value pair, group, or comment"),
1047 if (group->comment != NULL)
1048 g_string_append_printf (data_string, "%s\n", group->comment->value);
2695 gchar *comment; local
2779 gchar *comment; local
    [all...]
  /external/iptables/iptables/
iptables-xml.c 176 /* Output text as a comment, avoiding a double hyphen */
178 xmlCommentEscape(char *comment)
182 while (comment && *comment) {
183 if (*comment == '-') {
192 if (*comment == '\n' && *(comment + 1) == 0);
194 putchar(*comment);
195 comment++;
200 xmlComment(char *comment)
    [all...]
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
documentrenamenode27.js 78 Invoke the renameNode method to attempt to rename new Text, Comment, CDataSection,
93 var comment;
122 comment = newDoc.createComment("comment");
141 renamedComment = newDoc.renameNode(comment,"http://www.w3.org/DOM/Test","comment");
nodereplacechild23.js 79 Comment, ProcessingInstruction and CDATASection nodes with each other and in each case
93 var comment;
107 comment = doc.createComment("Comment");
112 appendedChild = elem.appendChild(comment);
141 replaced = entRef.replaceChild(comment,pi);
152 replaced = entRef.replaceChild(txt,comment);
  /frameworks/base/tools/aapt/
ResourceTable.h 170 const String16& comment,
176 const String16& comment);
371 void appendComment(const String16& comment, bool onlyIfEmpty = false);
374 void appendTypeComment(const String16& comment);
409 comment(_comment), ident(_ident) { }
411 comment(o.comment), ident(o.ident) { }
416 comment = o.comment;
422 String16 comment; member in class:ResourceTable::Public
    [all...]
  /external/bluetooth/glib/gio/
gcontenttype.c 534 char *comment; member in struct:__anon2327
567 if (strcmp (element_name, "comment") == 0)
608 g_free (parser->comment);
609 parser->comment = g_strndup (text, text_len);
644 return parse_data.comment;
653 char *comment; local
658 comment = load_comment_for_mime_helper (g_get_user_data_dir (), basename);
659 if (comment)
662 return comment;
669 comment = load_comment_for_mime_helper (dirs[i], basename)
693 char *comment; local
    [all...]
  /external/libvpx/examples/includes/HTML-Toc-0.91/
TocUpdator.pm 220 # Arrays containing start, end, comment & text tokens which indicate
227 {} # {'<comment>' => ''}
229 # Arrays containing start, end, comment & text tokens which indicate
236 {} # {'<comment>' => ''}
357 #--- HTML::TocUpdator::comment() ----------------------------------------------
358 # function: Process comment.
359 # args: - $aComment: comment text with '<!--' and '-->' tags stripped off.
361 sub comment { subroutine
371 $self->SUPER::comment($aComment);
375 # Does comment matches update end token
622 sub comment { subroutine
    [all...]
  /libcore/luni/src/main/java/java/net/
HttpCookie.java 46 * with a {@code Max-Age} duration and adds {@code Comment} and {@code
68 RESERVED_NAMES.add("comment"); // RFC 2109 RFC 2965
316 if (name.equals("comment") && cookie.comment == null) {
317 cookie.comment = value;
424 private String comment;
480 * Returns the {@code Comment} attribute.
483 return comment;
578 * Set the {@code Comment} attribute of this cookie.
580 public void setComment(String comment) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeViewRefactoring.java 127 String comment = getName(); local
130 comment, //description
131 comment, //comment
283 public Descriptor(String project, String description, String comment,
286 project, description, comment, arguments);
  /frameworks/base/tools/aidl/
generate_java_binder.cpp 27 this->comment = "/** Local-side IPC implementation stub class. */";
43 ctor->comment = "/** Construct the stub at attach it to the "
99 m->comment = "/**\n * Cast an IBinder object into an ";
100 m->comment += interfaceType->QualifiedName();
101 m->comment += " interface,\n";
102 m->comment += " * generating a proxy if needed.\n */";
273 decl->comment = gather_comments(method->comments_token->extra);
386 proxy->comment = gather_comments(method->comments_token->extra);
524 interface->comment = gather_comments(iface->comments_token->extra);
  /external/webkit/LayoutTests/fast/dom/Node/script-tests/
initial-values.js 53 var comment = document.createComment("foo"); variable
54 shouldBe("comment.nodeName", "'#comment'");
55 shouldBe("comment.localName", "null");
56 shouldBe("comment.namespaceURI", "null");
57 shouldBe("comment.prefix", "null");
58 shouldBe("comment.nodeValue", "'foo'");
59 shouldBe("comment.data", "'foo'");
60 shouldBe("comment.attributes", "null");
  /external/openssl/apps/
ecparam.c 365 const char *comment; local
367 comment = curves[n].comment;
369 if (comment == NULL)
370 comment = "CURVE DESCRIPTION NOT AVAILABLE";
375 BIO_printf(out, "%s\n", comment);
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_nodecommentnodeattributes.js 78 The "getAttributes()" method invoked on a Comment
81 Find any comment that is an immediate child of the root
83 a new comment node (in case they had been omitted) and
123 commentNode = doc.createComment("This is a comment");
hc_nodecommentnodetype.js 78 The "getNodeType()" method for a Comment Node
82 a comment node and invoke the "getNodeType()" method. This should
112 ("#comment" == commentNodeName)
121 commentNode = doc.createComment("This is a comment");

Completed in 584 milliseconds

1 2 3 4 5 6 78 91011>>