HomeSort by relevance Sort by last modified time
    Searched refs:comment (Results 201 - 225 of 2645) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/apache-xml/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/chromium_org/third_party/icu/source/tools/gensprep/
filterRFC3454.pl 157 local ($inFH, $outFH,$comment, $table) = @_;
159 print $outFH $comment."\n";
220 $comment = "# This table contains code points from Table A.1 from RFC 3454\n";
221 readPrint($inFH,$outFH, $comment, "A");
229 $comment = "# This table contains code points from Table B.1 from RFC 3454\n";
230 readPrint($inFH,$outFH,$comment, "B.1");
238 $comment = $warning."# This table contains code points from Table B.2 from RFC 3454\n";
239 readPrint($inFH,$outFH,$comment, "B.2");
247 $comment = $warning."# This table contains code points from Table B.3 from RFC 3454\n";
248 readPrint($inFH,$outFH,$comment, "B.3")
    [all...]
  /external/icu/icu4c/source/tools/gensprep/
filterRFC3454.pl 157 local ($inFH, $outFH,$comment, $table) = @_;
159 print $outFH $comment."\n";
220 $comment = "# This table contains code points from Table A.1 from RFC 3454\n";
221 readPrint($inFH,$outFH, $comment, "A");
229 $comment = "# This table contains code points from Table B.1 from RFC 3454\n";
230 readPrint($inFH,$outFH,$comment, "B.1");
238 $comment = $warning."# This table contains code points from Table B.2 from RFC 3454\n";
239 readPrint($inFH,$outFH,$comment, "B.2");
247 $comment = $warning."# This table contains code points from Table B.3 from RFC 3454\n";
248 readPrint($inFH,$outFH,$comment, "B.3")
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ViaParser.java 109 // JvB Note: RFC3261 does not allow a comment in Via headers anymore
114 StringBuffer comment = new StringBuffer(); local
123 comment.append(tok.getTokenValue());
126 comment.append(tok.getTokenValue());
131 comment.append(ch);
135 v.setComment(comment.toString());
  /external/opencv/otherlibs/highgui/
utils.cpp 48 #pragma comment(lib, "libjasperd_64.lib")
49 #pragma comment(lib, "libjpegd_64.lib")
50 #pragma comment(lib, "libpngd_64.lib")
51 #pragma comment(lib, "libtiffd_64.lib")
52 #pragma comment(lib, "zlibd_64.lib")
54 #pragma comment(lib, "libjasper_64.lib")
55 #pragma comment(lib, "libjpeg_64.lib")
56 #pragma comment(lib, "libpng_64.lib")
57 #pragma comment(lib, "libtiff_64.lib")
58 #pragma comment(lib, "zlib_64.lib"
    [all...]
  /external/chromium_org/third_party/openssl/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...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
BuildResults.java 34 String comment; field in class:BuildResults
118 * Returns the comment associated with the scenario for the current build.
120 * @return The comment associated with the scenario for the current build
121 * or <code>null</code> if no comment was stored for it.
124 return this.comment;
424 // read comment
427 this.comment = str;
432 * Set the build summary and its associated comment.
434 void setComment(String comment) {
435 if (comment != null && this.comment == null)
    [all...]
  /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 323 , isJavaSymbol(o.isJavaSymbol), comment(o.comment), typeComment(o.typeComment)
332 comment = o.comment;
346 String16 comment; member in class:AaptSymbolEntry
411 void appendComment(const String8& name, const String16& comment, const SourcePos& pos) {
412 if (comment.size() <= 0) {
416 if (sym.comment.size() == 0) {
417 sym.comment = comment;
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
config.c 58 int quote = 0, comment = 0, space = 0; local
72 if (comment)
80 comment = 1;
215 int comment = 0; local
243 comment = 0;
246 if (comment || isspace(c))
249 comment = 1;
  /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/
Properties.java 74 + " <!ELEMENT properties (comment?, entry*) >"
76 + " <!ELEMENT comment (#PCDATA) >"
256 * <li>Lines starting with either a "#" or a "!" are comment lines and are
261 * the lines. This does not apply to comment lines.</li>
480 * OutputStream}, putting the specified comment at the beginning. The output
485 * @param comment the comment to add at the beginning.
493 public void save(OutputStream out, String comment) {
495 store(out, comment);
519 * @param comment an optional comment to be written, or nul
    [all...]
  /external/chromium_org/third_party/openssl/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...]
  /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...]
  /external/chromium_org/skia/config/
SkUserConfig.h 215 #error Read the comment at this location
  /external/chromium_org/third_party/re2/doc/
mksyntaxwiki 22 <wiki:comment>
24 </wiki:comment>
  /external/chromium_org/third_party/skia/tools/copyright/
main.py 45 ReportWarning('cannot find any comment blocks in file %s' %
  /external/regex-re2/doc/
mksyntaxwiki 22 <wiki:comment>
24 </wiki:comment>
  /external/skia/tools/copyright/
main.py 45 ReportWarning('cannot find any comment blocks in file %s' %
  /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/av/media/libstagefright/include/
OggExtractor.h 62 const sp<MetaData> &fileMeta, const char *comment, size_t commentLength);
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_auto_link.h 52 # pragma comment (lib, _STLP_STLPORT_LIB)
  /packages/apps/Calendar/
mkprojectfile 9 <comment></comment>
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/config/
_auto_link.h 52 # pragma comment (lib, _STLP_STLPORT_LIB)

Completed in 751 milliseconds

1 2 3 4 5 6 7 891011>>