HomeSort by relevance Sort by last modified time
    Searched refs:comment (Results 76 - 100 of 498) sorted by null

1 2 34 5 6 7 8 91011>>

  /libcore/luni/src/main/java/org/apache/xml/serializer/
ToSAXHandler.java 132 * Receive notification of a comment.
134 * @see ExtendedLexicalHandler#comment(String)
136 public void comment(String comment) throws SAXException method in class:ToSAXHandler
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
  /external/openssl/crypto/md5/asm/
md5-586.pl 52 &comment("R0 $ki");
75 &comment("R1 $ki");
101 &comment("R2 $ki");
119 &comment("R2 $ki");
145 &comment("R3 $ki");
198 &comment("");
199 &comment("R0 section");
218 &comment("");
219 &comment("R1 section");
237 &comment("");
    [all...]
  /frameworks/base/tools/aapt/
AaptAssets.h 311 , comment(o.comment), typeComment(o.typeComment)
319 comment = o.comment;
332 String16 comment; member in class:AaptSymbolEntry
388 void appendComment(const String8& name, const String16& comment, const SourcePos& pos) {
389 if (comment.size() <= 0) {
393 if (sym.comment.size() == 0) {
394 sym.comment = comment;
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Via.java 59 * Comment for <code>serialVersionUID</code>
92 * comment field
94 * JvB note: RFC3261 does not allow a comment to appear in Via headers, and this
97 protected String comment; field in class:Via
171 * Accessor for the comment field.
172 * @return comment field.
176 return comment;
188 /** comment of the Via Header.
190 * @return false if comment does not exist and true otherwise.
193 return comment != null
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
ZipEntry.java 41 String name, comment; field in class:ZipEntry
81 * Gets the comment for this {@code ZipEntry}.
83 * @return the comment for this {@code ZipEntry}, or {@code null} if there
84 * is no comment. If we're reading an archive with
85 * {@code ZipInputStream} the comment is not available.
88 return comment;
178 * Sets the comment for this {@code ZipEntry}.
181 * the comment for this entry.
185 comment = string;
308 comment = ze.comment
    [all...]
ZipOutputStream.java 57 private String comment; field in class:ZipOutputStream
217 if (comment != null) {
218 writeShort(cDir, comment.length());
219 cDir.write(comment.getBytes());
317 * Sets the {@code ZipFile} comment associated with the file being written.
319 * @param comment
320 * the comment associated with the file.
322 public void setComment(String comment) {
323 if (comment.length() > 0xFFFF) {
324 throw new IllegalArgumentException("Comment too long: " + comment.length() + " characters")
    [all...]
  /external/proguard/src/proguard/
WordReader.java 156 String comment = currentLine.substring(comments_start + 1); local
158 comment :
159 currentComments + '\n' + comment;
  /external/openssl/crypto/des/asm/
des-586.pl 52 &comment("");
54 &comment("");
66 &comment("Round $i");
68 &comment("Round ".sprintf("%d",$i+1));
89 &comment("");
91 &comment("");
103 &comment("Round $i");
105 &comment("Round ".sprintf("%d",$i-1));
124 &comment("");
125 &comment("Load the 2 words")
    [all...]
  /development/tools/monkeyrunner/src/com/android/monkeyrunner/
MonkeyRecorder.java 47 * mr.addComment(comment);
134 mXmlWriter.comment("Monkey Script Results");
139 * Add a comment to the xml file.
141 * @param comment comment to add to the xml file
143 public static void addComment(String comment) throws IOException {
144 mXmlWriter.comment(comment);
  /external/chromium/third_party/icu/source/tools/toolutil/
unewdata.h 35 * structure and, optionally, by the comment string.
53 * @param comment A string (e.g., a copyright statement) that will be
55 * or empty. This string serves only as a comment in the binary
62 const char *comment,
unewdata.c 35 const char *comment,
108 if(comment!=NULL && *comment!=0) {
109 commentLength=(uint16_t)(uprv_strlen(comment)+1);
124 /* write the comment */
126 T_FileStream_write(pData->file, comment, commentLength);
  /external/e2fsprogs/lib/
Makefile.elf-lib 55 @$(STRIP) --strip-unneeded --remove-section=.comment \
60 @$(STRIP) --strip-unneeded --remove-section=.comment \
  /external/stlport/stlport/stl/config/
_auto_link.h 52 # pragma comment (lib, _STLP_STLPORT_LIB)
  /external/tremolo/Tremolo/
ivorbiscodec.h 94 extern void vorbis_comment_add(vorbis_comment *vc, char *comment);
  /frameworks/base/tools/localize/
ValuesFile_test.cpp 24 str.config.ToString().c_str(), str.comment.c_str());
  /libcore/luni/src/test/java/tests/xml/
SimpleBuilderTest.java 25 import org.w3c.dom.Comment;
104 String comment = ""; local
111 } else if (node instanceof Comment) {
112 comment = comment + node.getNodeValue();
117 assertEquals(" Fragile! Handle me with care! ", comment);
  /ndk/sources/android/stlport/stlport/stl/config/
_auto_link.h 52 # pragma comment (lib, _STLP_STLPORT_LIB)
  /external/clearsilver/scripts/
ChangeLog.py 76 comment = []
94 key = (date, author, string.join (comment, '\n'))
99 comment = []
101 key = (date, author, string.join (comment, '\n'))
108 comment = []
117 comment.append (lines[x])
190 (date, author, comment) = key
197 fpo.write (" %s\n\n" % comment)
  /external/ipsec-tools/src/libipsec/
policy_token.l 87 comment \#.*
  /external/chromium/third_party/zlib/contrib/minizip/
mztools.c 145 char* comment = ""; local
146 int comsize = (int) strlen(comment);
191 /* Comment field */
193 if ((int)fwrite(comment, 1, comsize, fpOutCD) == comsize) {
220 char* comment = ""; // "ZIP File recovered by zlib/minizip/mztools"; local
221 int comsize = (int) strlen(comment);
232 WRITE_16(header + 20, comsize); /* comment */
237 /* Comment field */
239 if ((int)fwrite(comment, 1, comsize, fpOutCD) != comsize) {
  /external/openssl/crypto/perlasm/
cbc.pl 38 &comment("");
56 &comment("getting iv ptr from parameter $iv_off");
73 &comment("getting encrypt flag from parameter $enc_off");
77 &comment("get and push parameter $p3");
84 &comment("get and push parameter $p2");
91 &comment("get and push parameter $p1");
  /external/zlib/contrib/minizip/
mztools.c 140 char* comment = ""; local
141 int comsize = (int) strlen(comment);
186 /* Comment field */
188 if ((int)fwrite(comment, 1, comsize, fpOutCD) == comsize) {
215 char* comment = ""; // "ZIP File recovered by zlib/minizip/mztools"; local
216 int comsize = (int) strlen(comment);
227 WRITE_16(header + 20, comsize); /* comment */
232 /* Comment field */
234 if ((int)fwrite(comment, 1, comsize, fpOutCD) != comsize) {
  /system/media/opensles/libopensles/
Android.mk 109 # comment out for USE_BACKPORT
118 # comment out for USE_BACKPORT
135 # comment out for USE_BACKPORT
  /build/tools/droiddoc/src/
FieldInfo.java 78 return comment().briefTags();
83 return comment().tags();
99 boolean commentDeprecated = (comment().deprecatedTags().length > 0);
111 + ": @Deprecated annotation and @deprecated comment do not match");
224 TagInfo.makeHDF(data, base + ".deprecated", comment().deprecatedTags());
225 TagInfo.makeHDF(data, base + ".seeAlso", comment().seeTags());
  /external/chromium/third_party/icu/source/tools/genrb/
reslist.c 441 struct SResource* res_open(const struct UString* comment, UErrorCode* status){
457 if(comment != NULL){
458 ustr_cpy(&res->fComment, comment, status);
468 struct SResource* table_open(struct SRBRoot *bundle, char *tag, const struct UString* comment, UErrorCode *status) {
470 struct SResource *res = res_open(comment, status);
496 struct SResource* array_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status) {
498 struct SResource *res = res_open(comment, status);
523 struct SResource *string_open(struct SRBRoot *bundle, char *tag, const UChar *value, int32_t len, const struct UString* comment, UErrorCode *status) {
524 struct SResource *res = res_open(comment, status);
556 struct SResource *alias_open(struct SRBRoot *bundle, char *tag, UChar *value, int32_t len, const struct UString* comment, UErrorCode *status)
    [all...]

Completed in 2346 milliseconds

1 2 34 5 6 7 8 91011>>