/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
nodenormalize01.java | 87 Comment comment; local 105 comment = newDoc.createComment("comment"); 129 appendedChild = element5.appendChild(comment);
|
/libcore/luni/src/main/java/java/util/zip/ |
ZipFile.java | 72 * the filename and comment fields for this file 105 private String comment; field in class:ZipFile 226 * Returns this file's comment, or null if it doesn't have one. 234 return comment; 338 * <p>The central directory can be followed by a variable-length comment 339 * field, so we have to scan through it backwards. The comment is at 350 // have an overall comment (unrelated to any per-entry comments), we'll hit the EOCD 403 comment = new String(commentBytes, 0, commentBytes.length, StandardCharsets.UTF_8);
|
/libcore/luni/src/test/java/tests/api/org/xml/sax/support/ |
MockHandler.java | 119 public void comment(char[] ch, int start, int length) throws SAXException { method in class:MockHandler 120 logger.add("comment", ch, start, length);
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
NodeNormalize.java | 34 import org.w3c.dom.Comment; 104 Comment comment; local 123 comment = newDoc.createComment("comment"); 147 element5.appendChild(comment);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
UnwrapRefactoring.java | 156 String comment = getName(); local 159 comment, //description 160 comment, //comment 235 public Descriptor(String project, String description, String comment, 238 project, description, comment, arguments);
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
FastStringBuffer.java | 1225 String comment = getString(start, length); local [all...] |
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
IncrementalSAXSource_Filter.java | 357 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/serializer/ |
ToXMLSAXHandler.java | 399 * @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);
|
ToTextSAXHandler.java | 80 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); method
|
ToTextStream.java | 462 * Called when a Comment is to be constructed. 466 * @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); method 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
|
/bionic/libc/netbsd/nameser/ |
ns_print.c | 124 const char *comment; local 715 comment = "unknown RR type"; 720 comment = "RR format error"; 726 rdlen != 0 ? " (" : "", comment));
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
InsnFormat.java | 48 String comment = insnCommentString(insn, noteIndices); local 58 if (comment.length() != 0) { 60 sb.append(comment); 80 * Returns the associated comment for the given instruction, if any. 82 * has no comment, then the result should be {@code ""}, not 207 * Helper method to return a literal bits comment string. 212 * @return {@code non-null;} the comment 256 * Helper method to return the comment for a branch. 259 * @return {@code non-null;} the comment 282 * Helper method to return an instruction comment for a constant [all...] |
/external/chromium/third_party/libjingle/source/talk/base/ |
flags.h | 51 // flag is defined via: DEFINE_bool(flag, "false", "some comment");. 89 Flag(const char* file, const char* name, const char* comment, 95 const char* comment() const { return comment_; } function in class:Flag 168 #define DEFINE_FLAG(type, c_type, name, default, comment) \ 172 static Flag Flag_##name(__FILE__, #name, (comment), \ 184 #define DEFINE_bool(name, default, comment) \ 185 DEFINE_FLAG(BOOL, bool, name, default, comment) 186 #define DEFINE_int(name, default, comment) \ 187 DEFINE_FLAG(INT, int, name, default, comment) 188 #define DEFINE_float(name, default, comment) \ [all...] |
/external/chromium_org/chrome/browser/search/ |
search_unittest.cc | 227 const char* comment; member in struct:chrome::SearchTestCase 251 << test.url << " " << test.comment; 277 << test.url << " " << test.comment; 306 << test.url << " " << test.comment; 461 << test.url << " " << test.comment; 489 << test.url << " " << test.comment; [all...] |
/external/chromium_org/third_party/icu/source/test/cintltst/ |
spreptst.c | 107 const char *comment; member in struct:ConformanceTestCases
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
flags.h | 54 // flag is defined via: DEFINE_bool(flag, "false", "some comment");. 92 Flag(const char* file, const char* name, const char* comment, 98 const char* comment() const { return comment_; } function in class:Flag 171 #define DEFINE_FLAG(type, c_type, name, default, comment) \ 175 static Flag Flag_##name(__FILE__, #name, (comment), \ 187 #define DEFINE_bool(name, default, comment) \ 188 DEFINE_FLAG(BOOL, bool, name, default, comment) 189 #define DEFINE_int(name, default, comment) \ 190 DEFINE_FLAG(INT, int, name, default, comment) 191 #define DEFINE_float(name, default, comment) \ [all...] |
/external/chromium_org/third_party/libxml/src/ |
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/chromium_org/third_party/openssl/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/chromium_org/third_party/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/doclava/src/com/google/doclava/ |
DocFile.java | 128 Comment comment = new Comment(commentText, null, new SourcePositionInfo(docfile, lineno, 1)); local 129 TagInfo[] tags = comment.tags();
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/ |
ComponentResultsElement.java | 215 String comment = preferences.get(getId(), null); local 216 if (comment != null) { 222 buffer.append(comment);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
ScenarioStatusTable.java | 150 String comment = currentBuildResults.getComment(); local 151 String image = Utils.getImage(confidence, hasFailure, comment != null); 211 this.stream.print("\">): mark a <b>failing result</b> (see above) with a comment explaining this degradation.</li>\n");
|
/external/grub/stage2/ |
stage2.c | 767 int pos = 0, literal = 0, comment = 0; local 811 if (comment) 814 comment = 0; 819 comment = 1;
|
/external/icu4c/test/cintltst/ |
spreptst.c | 107 const char *comment; member in struct:ConformanceTestCases
|
/external/icu4c/tools/gendict/ |
gendict.cpp | 260 const UChar *comment = u_memchr(line, 0x23, lineLength); // '#' local 261 if(comment != NULL) { 262 lineLength = (int32_t)(comment - line);
|