HomeSort by relevance Sort by last modified time
    Searched defs:comment (Results 126 - 150 of 383) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/icu4c/tools/pkgdata/
pkgtypes.h 121 const char *comment; /* comment string */ member in struct:UPKGOptions_
  /external/libvorbis/lib/
info.c 65 void vorbis_comment_add(vorbis_comment *vc,const char *comment){
70 vc->comment_lengths[vc->comments]=strlen(comment);
72 strcpy(vc->user_comments[vc->comments], comment);
78 char *comment=alloca(strlen(tag)+strlen(contents)+2); /* +2 for = and \0 */ local
79 strcpy(comment, tag);
80 strcat(comment, "=");
81 strcat(comment, contents);
82 vorbis_comment_add(vc, comment);
  /external/libvpx/libvpx/examples/includes/HTML-Toc-0.91/
TocInsertor.pm 291 # args: - $aTokenType: type of token: start, end, comment or text.
475 # Arrays containing start, end, comment, text & declaration tokens which
634 #--- HTML::TocInsertor::comment() ---------------------------------------------
635 # function: Process comment.
636 # args: - $aComment: comment text with '<!--' and '-->' tags stripped off.
638 sub comment { subroutine
643 # Allow ancestor to process the comment tag
644 $self->SUPER::comment($aComment);
645 # Assemble original comment
650 # Processing comment as ToC insertion point is successful
965 sub comment { subroutine
    [all...]
  /external/libxml2/
legacy.c 124 "SAX function comment",
249 } else if (!strcmp(name, "SAX function comment")) {
250 *((commentSAXFunc *) result) = ctxt->sax->comment;
367 } else if (!strcmp(name, "SAX function comment")) {
368 ctxt->sax->comment = *((commentSAXFunc *) value);
1319 comment(void *ctx, const xmlChar * value) function
    [all...]
  /external/linux-tools-perf/util/
config.c 55 int quote = 0, comment = 0, space = 0; local
69 if (comment)
77 comment = 1;
212 int comment = 0; local
240 comment = 0;
243 if (comment || isspace(c))
246 comment = 1;
  /external/openssh/
ssh-add.c 102 char *comment = NULL; local
105 public = key_load_public(filename, &comment);
111 fprintf(stderr, "Identity removed: %s (%s)\n", filename, comment);
117 xfree(comment);
145 char *comment = NULL; local
178 private = key_parse_private(&keyblob, filename, "", &comment);
179 if (comment == NULL)
180 comment = xstrdup(filename);
188 comment);
193 xfree(comment);
290 char *comment, *fp; local
    [all...]
  /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/skia/src/utils/
SkParseColor.cpp 182 SkString comment; local
212 comment.append(start, name - start);
216 SkDebugf("// %s\n", comment.c_str());
217 comment.reset();
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
PYXWriter.java 197 public void comment(char[] ch, int start, int length) throws SAXException { method in class:PYXWriter
  /frameworks/base/core/java/android/util/
EventLog.java 225 Pattern comment = Pattern.compile(COMMENT_PATTERN); local
233 if (comment.matcher(line).matches()) continue;
  /libcore/luni/src/main/java/java/util/zip/
ZipEntry.java 41 String comment; field in class:ZipEntry
85 * Returns the comment for this {@code ZipEntry}, or {@code null} if there is no comment.
86 * If we're reading a zip file using {@code ZipInputStream}, the comment is not available.
89 return comment;
179 * Sets the comment for this {@code ZipEntry}.
180 * @throws IllegalArgumentException if the comment is >= 64 Ki UTF-8 bytes.
182 public void setComment(String comment) {
183 if (comment == null) {
184 this.comment = null
    [all...]
ZipOutputStream.java 182 String comment = currentEntry.getComment(); local
184 if (comment != null) {
185 commentBytes = comment.getBytes(StandardCharsets.UTF_8);
187 writeShort(cDir, commentBytes.length); // Comment length.
347 * Sets the comment associated with the file being written. See {@link ZipFile#getComment}.
348 * @throws IllegalArgumentException if the comment is >= 64 Ki UTF-8 bytes.
350 public void setComment(String comment) {
351 if (comment == null) {
356 byte[] newCommentBytes = comment.getBytes(StandardCharsets.UTF_8);
358 throw new IllegalArgumentException("Comment too long: " + newCommentBytes.length + " bytes")
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/zip/
ZipEntryTest.java 174 String comment = makeString(17, "z"); local
181 ze.setComment(comment);
189 assertEquals(comment, zipFile.getEntry("x").getComment());
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ImportNode.java 35 import org.w3c.dom.Comment;
159 Comment comment; local
167 comment = aNewDoc.createComment("this is a comment");
168 aNode = doc.importNode(comment, false);
176 assertEquals("nodeValue", "this is a comment", value);
182 Comment comment; local
190 comment = aNewDoc.createComment("descendant1")
    [all...]
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlSerializer.java 567 public void comment(String comment) throws IOException { method in class:KXmlSerializer
570 writer.write(comment);
  /packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/
StringResourceMap.java 48 // In order to get comment tag.
97 public void comment(char[] ch, int start, int length) { method in class:StringResourceMap.StringResourceHandler
124 final String comment = mComment.length() > 0 ? mComment.toString() : null; local
130 mResources.add(new StringResource(mName, value, comment));
  /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/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)
  /system/core/libpixelflinger/codeflinger/
ARMAssemblerProxy.cpp 68 void ARMAssemblerProxy::comment(const char* string) { function in class:android::ARMAssemblerProxy
69 mTarget->comment(string);
249 void ARMAssemblerProxy::SWI(int cc, uint32_t comment) {
250 mTarget->SWI(cc, comment);
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TransformerHandlerImpl.java 894 * Report an XML comment anywhere in the document.
900 * @param ch An array holding the characters in the comment.
905 public void comment(char ch[], int start, int length) throws SAXException method in class:TransformerHandlerImpl
909 System.out.println("TransformerHandlerImpl#comment: " + start + ", "
914 m_lexicalHandler.comment(ch, start, length);
TransformerIdentityImpl.java 1320 public void comment(char ch[], int start, int length) throws SAXException method in class:TransformerIdentityImpl
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToHTMLStream.java 1976 public void comment(char ch[], int start, int length) method in class:ToHTMLStream
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatParser.java 167 /*package*/ void comment(char[] text, int length) throws SAXException { method in class:ExpatParser
170 lexicalHandler.comment(text, 0, length);
  /libcore/luni/src/test/java/libcore/xml/
NormalizeTest.java 21 import org.w3c.dom.Comment;
510 Comment comment = document.createComment(""); local
511 root.appendChild(comment);
514 comment.setData(new String(new char[] { 'A', 'B', (char) c}));
  /dalvik/dx/src/com/android/dx/dex/code/
InsnFormat.java 58 String comment = insnCommentString(insn, noteIndices); local
68 if (comment.length() != 0) {
70 sb.append(comment);
90 * Returns the associated comment for the given instruction, if any.
92 * has no comment, then the result should be {@code ""}, not
265 * Helper method to return a literal bits comment string.
270 * @return {@code non-null;} the comment
315 * Helper method to return the comment for a branch.
318 * @return {@code non-null;} the comment
343 * Helper method to return an instruction comment for a constant
    [all...]

Completed in 241 milliseconds

1 2 3 4 56 7 8 91011>>