Searched defs:comment (Results 1 - 25 of 195) sorted by path

12345678

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jar ... abstract void appendText (java.lang.String) } org/dom4j/Comment.class Comment.java package org.dom4j public ...
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
H A Dgroup-file-lexer.rb102 :template!, :string!, :comment!, :ws! ].freeze
645 # lexer rule comment! (COMMENT)
647 def comment!
900 comment!
/external/apache-http/src/org/apache/http/cookie/
H A DSetCookie.java55 * cookie's purpose will be described using this comment.
57 * @param comment
61 void setComment(String comment); argument
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBasicClientCookie.java111 * Returns the comment describing the purpose of this cookie, or
112 * <tt>null</tt> if no such comment has been defined.
114 * @return comment
124 * cookie's purpose will be described using this comment.
126 * @param comment
130 public void setComment(String comment) { argument
131 cookieComment = comment;
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTransformerHandlerImpl.java894 * 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);
H A DTransformerIdentityImpl.java1309 * Report an XML comment anywhere in the document.
1315 * @param ch An array holding the characters in the comment.
1320 public void comment(char ch[], int start, int length) throws SAXException method in class:TransformerIdentityImpl
1324 m_resultLexicalHandler.comment(ch, start, length);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDocumentImpl.java50 * <li>createnodes (element, comment, text, attribute, ....)</li>
123 // text/comment table: string buffer to hold the text string values of the document,
567 public void comment(char[] ch, int start, int length) method in class:DTMDocumentImpl
910 // m_char.append(ch, start, length); // store the chunk to the text/comment string table
951 // * @param ch An array holding the characters in the comment.
959 // m_char.append(ch, start, length); // store the comment string to the text/comment string table
979 // // to the text/comment string table: charStringStart should point to the starting
1592 "#comment","#document", // Comment, Document
2107 /** Append a comment chil
[all...]
H A DIncrementalSAXSource_Filter.java357 public void comment(char[] ch, int start, int length) method in class:IncrementalSAXSource_Filter
361 clientLexicalHandler.comment(ch,start,length);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2DTM.java156 "#comment", "#document", // Comment, Document
2434 * Report an XML comment anywhere in the document.
2440 * @param ch An array holding the characters in the comment.
2445 public void comment(char ch[], int start, int length) throws SAXException method in class:SAX2DTM
H A DSAX2DTM2.java281 // an element can be either an element, text, comment or
1795 // comment and PI nodes.
2247 * Report an XML comment anywhere in the document.
2253 * @param ch An array holding the characters in the comment.
2258 public void comment(char ch[], int start, int length) throws SAXException method in class:SAX2DTM2
2266 // %OPT% Saving the comment string in a Vector has a lower cost than
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DExtendedLexicalHandler.java33 * 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; argument
H A DSerializerBase.java250 * Receive notification of a comment.
252 * @see ExtendedLexicalHandler#comment(String)
254 public void comment(String data) throws SAXException method in class:SerializerBase
264 comment(m_charsBuff, 0, length);
1056 * Report the comment trace event
1057 * @param chars content of comment
1058 * @param start starting index of comment to output
H A DToHTMLStream.java1976 public void comment(char ch[], int start, int length) method in class:ToHTMLStream
2009 super.comment(ch, start, length);
2186 // comment out case 2 because the default is faster
H A DToSAXHandler.java132 * Receive notification of a comment.
134 * @see ExtendedLexicalHandler#comment(String)
136 public void comment(String comment) throws SAXException argument
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
H A DToStream.java2383 * Receive notification of an XML comment anywhere in the document. This
2386 * @param ch An array holding the characters in the comment.
2391 public void comment(char ch[], int start, int length) method in class:ToStream
2433 // if we have some chars in the comment
2440 // Protect comment end from a single trailing dash
2461 // time to generate comment event
H A DToTextSAXHandler.java80 public void comment(char ch[], int start, int length) method in class:ToTextSAXHandler
87 public void comment(String data) throws org.xml.sax.SAXException method in class:ToTextSAXHandler
95 comment(m_charsBuff, 0, length);
H A DToTextStream.java466 * @param data The comment data.
470 public void comment(String data) throws org.xml.sax.SAXException method in class:ToTextStream
478 comment(m_charsBuff, 0, length);
482 * Report an XML comment anywhere in the document.
488 * @param ch An array holding the characters in the comment.
493 public void comment(char ch[], int start, int length) method in class:ToTextStream
H A DToUnknownStream.java525 * @see ExtendedLexicalHandler#comment(String)
527 public void comment(String comment) throws SAXException argument
539 m_handler.comment(comment);
886 * @see org.xml.sax.ext.LexicalHandler#comment(char[], int, int)
888 public void comment(char[] ch, int start, int length) throws SAXException method in class:ToUnknownStream
895 m_handler.comment(ch, start, length);
H A DToXMLSAXHandler.java399 * @see org.xml.sax.ext.LexicalHandler#comment(char[], int, int)
401 public void comment(char[] arg0, int arg1, int arg2) throws SAXException method in class:ToXMLSAXHandler
405 m_lexHandler.comment(arg0, arg1, arg2);
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DDOMBuilder.java621 * Report an XML comment anywhere in the document.
627 * @param ch An array holding the characters in the comment.
631 public void comment(char ch[], int start, int length) throws org.xml.sax.SAXException method in class:DOMBuilder
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_media_task.c371 static void log_tstamps_us(char *comment) argument
375 APPL_TRACE_DEBUG("[%s] ts %08llu, diff : %08llu, queue sz %d", comment, now_us, now_us - prev_us,
/external/chromium_org/chrome/browser/resources/
H A Dcrashes.js79 comment: commentLines.join('\n'),
/external/chromium_org/chrome/browser/resources/media/
H A Dwebrtc_logs.js88 comment: commentLines.join('\n'),
/external/chromium_org/chrome/browser/search/
H A Dsearch_unittest.cc110 const char* comment; member in struct:chrome::SearchTestCase
134 << test.url << " " << test.comment;
160 << test.url << " " << test.comment;
189 << test.url << " " << test.comment;
343 << test.url << " " << test.comment;
368 << test.url << " " << test.comment;
708 const char* comment; member in struct:chrome::ExtractSearchTermsTestCase
726 << test.url << " " << test.comment;
733 const char* comment; member in struct:chrome::QueryExtractionAllowedTestCase
751 << test.url << " " << test.comment;
[all...]

Completed in 9713 milliseconds

12345678