Home
last modified time | relevance | path

Searched refs:write (Results 1 – 25 of 861) sorted by relevance

12345678910>>...35

/external/tagsoup/src/org/ccil/cowan/tagsoup/
DXMLWriter.java506 write("<?xml"); in startDocument()
508 write(" version=\"1.0\""); in startDocument()
510 write(" version=\""); in startDocument()
511 write(version); in startDocument()
512 write("\""); in startDocument()
515 write(" encoding=\""); in startDocument()
516 write(outputEncoding); in startDocument()
517 write("\""); in startDocument()
520 write(" standalone=\"yes\"?>\n"); in startDocument()
522 write(" standalone=\""); in startDocument()
[all …]
/external/clearsilver/imd/
Dimdm.py60 sys.stdout.write("<A HREF=\"%s?\">top</A> " % albumstartfile)
62 sys.stdout.write("-- <A HREF=\"%s\">%s</A>" % (makealbumurl(album),album))
66 sys.stdout.write("<br><hr>")
68 sys.stdout.write("<TABLE WIDTH=100%><TR><TD ALIGN=CENTER>\n")
69 sys.stdout.write(makethumbnailimgtag(imagename,width=600,height=500))
70 sys.stdout.write("</TD></TR></TABLE>\n")
80 sys.stdout.write("<CENTER><TABLE WIDTH=50% BORDER=1><TR>")
87 …sys.stdout.write("<TD ALIGN=CENTER><A HREF=\"%s\">%s</A></TD>" % (makepictureurl(album,picture_pat…
89 sys.stdout.write("<br>")
98 …sys.stdout.write("<TD ALIGN=CENTER><A HREF=\"%s\">%s</A></TD>" % (makepictureurl(album,picture_pat…
[all …]
/external/emma/core/java12/com/vladium/emma/report/xml/
DReportGenerator.java112 … m_out.write ("<?xml version=\"1.0\" encoding=\"" + m_settings.getOutEncoding () + "\"?>"); in visit()
126 m_out.write (label.toString ()); in visit()
263 super.write (IConstants.EOL, 0, IConstants.EOL.length ()); in newLine()
266 public void write (final char [] cbuf, final int off, final int len) throws IOException in write() method in ReportGenerator.IndentingWriter
269 super.write (cbuf, off, len); in write()
272 public void write (int c) throws IOException in write() method in ReportGenerator.IndentingWriter
275 super.write (c); in write()
278 public void write (final String s, final int off, final int len) throws IOException in write() method in ReportGenerator.IndentingWriter
281 super.write (s, off, len); in write()
346 super.write (indent, 0, indent.length ()); in indent()
[all …]
/external/clearsilver/python/examples/base/
DPassSGMLParser.py24 self.write(data)
26 def write (self, data): member in PassSGMLParser
27 return self.fp.write(data)
32 self.write ("<%s>" % tag)
34 self.write ("<" + tag)
36 self.write (" " + name + '=' + '"' + value + '"')
37 self.write (">")
41 self.write ("</%s>" % tag)
57 self.write ("&%s;" % ref)
61 self.write ("&#%s;" % ref)
/external/clearsilver/scripts/
Ddocument.py189 sys.stderr.write('-W- No info for function "%s()"\n' % name)
193 sys.stderr.write('-W- No defn for function "%s()"\n' % name)
195 fp.write('.TH %s 3 "%s" "%s" "%s"\n\n' % (name, date, owner, self._filename))
196 fp.write('.de Ss\n.sp\n.ft CW\n.nf\n..\n')
197 fp.write('.de Se\n.fi\n.ft P\n.sp\n..\n')
198 fp.write('.SH NAME\n')
200 fp.write('%s\n' % f._name)
202 fp.write('%s %s\n' % (f._name, f._title))
203 fp.write('.SH SYNOPSIS\n')
204 fp.write('.Ss\n#include <%s>\n.Se\n' % self._filename)
[all …]
/external/icu4c/i18n/
Dvtzone.cpp877 void write(const UnicodeString& str);
878 void write(UChar ch);
892 VTZWriter::write(const UnicodeString& str) { in write() function in VTZWriter
897 VTZWriter::write(UChar ch) { in write() function in VTZWriter
1112 VTimeZone::write(UnicodeString& result, UErrorCode& status) const { in write() function in VTimeZone
1115 write(writer, status); in write()
1119 VTimeZone::write(UDate start, UnicodeString& result, UErrorCode& status) /*const*/ { in write() function in VTimeZone
1122 write(start, writer, status); in write()
1575 VTimeZone::write(VTZWriter& writer, UErrorCode& status) const { in write() function in VTimeZone
1581 writer.write(ICAL_TZURL); in write()
[all …]
/external/apache-http/src/org/apache/http/impl/io/
DAbstractSessionOutputBuffer.java87 this.outstream.write(this.buffer.buffer(), 0, len); in flushBuffer()
98 public void write(final byte[] b, int off, int len) throws IOException { in write() method in AbstractSessionOutputBuffer
109 this.outstream.write(b, off, len); in write()
123 public void write(final byte[] b) throws IOException { in write() method in AbstractSessionOutputBuffer
127 write(b, 0, b.length); in write()
130 public void write(int b) throws IOException { in write() method in AbstractSessionOutputBuffer
142 write(s.getBytes(this.charset)); in writeLine()
144 write(CRLF); in writeLine()
170 write(tmp); in writeLine()
172 write(CRLF); in writeLine()
DIdentityOutputStream.java82 public void write(byte[] b, int off, int len) throws IOException { in write() method in IdentityOutputStream
86 this.out.write(b, off, len); in write()
89 public void write(byte[] b) throws IOException { in write() method in IdentityOutputStream
90 write(b, 0, b.length); in write()
93 public void write(int b) throws IOException { in write() method in IdentityOutputStream
97 this.out.write(b); in write()
DContentLengthOutputStream.java104 public void write(byte[] b, int off, int len) throws IOException { in write() method in ContentLengthOutputStream
113 this.out.write(b, off, len); in write()
118 public void write(byte[] b) throws IOException { in write() method in ContentLengthOutputStream
119 write(b, 0, b.length); in write()
122 public void write(int b) throws IOException { in write() method in ContentLengthOutputStream
127 this.out.write(b); in write()
DChunkedOutputStream.java98 this.out.write(this.cache, 0, this.cachePosition); in flushCache()
114 this.out.write(this.cache, 0, this.cachePosition); in flushCacheWithAppend()
115 this.out.write(bufferToAppend, off, len); in flushCacheWithAppend()
140 public void write(int b) throws IOException { in write() method in ChunkedOutputStream
155 public void write(byte b[]) throws IOException { in write() method in ChunkedOutputStream
156 write(b, 0, b.length); in write()
159 public void write(byte src[], int off, int len) throws IOException { in write() method in ChunkedOutputStream
/external/libpng/contrib/pngminus/
Dmakevms.com31 $ open/write lopt lib.opt
32 $ write lopt "[--]libpng.olb/lib"
33 $ write lopt "''zlibsrc'libz.olb/lib"
35 $ open/write xopt x11.opt
36 $ write xopt "sys$library:decw$xlibshr.exe/share"
38 $ write sys$output "Compiling PNG contrib programs ..."
39 $ write sys$output "Building pnm2png..."
45 $ write sys$output "Building png2pnm..."
87 $ write sys$output P2
/external/emma/core/java12/com/vladium/emma/report/html/doc/
DIElement.java51 out.write ('<'); in emit()
52 out.write (tagName); in emit()
56 out.write (' '); in emit()
60 out.write ('>'); in emit()
68 out.write ("</"); in emit()
69 out.write (tagName); in emit()
70 out.write ('>'); in emit()
DHTMLWriter.java38 public void write (final String s) in write() method in HTMLWriter
46 m_out.write (s); in write()
55 public void write (final char c) in write() method in HTMLWriter
61 m_out.write (c); in write()
76 m_out.write (IConstants.EOL); in eol()
DAttributeSet.java65 out.write (' '); in emit()
67 out.write (attr.getName ()); in emit()
68 out.write ("=\""); in emit()
76 out.write (m_buf.toString ()); in emit()
78 out.write ('\"'); in emit()
/external/zlib/
Dmake_vms.com65 $ write sys$output "Compiling Zlib sources ..."
93 $ write sys$output "Building Zlib ..."
95 $ write sys$output "Building example..."
101 $ write sys$output "Building minigzip..."
119 $ write sys$output "Creating libzshr.exe"
124 $ write optf "case_sensitive=YES"
129 $ write sys$output "Zlib build completed"
132 $ write sys$output "C compiler required to build ''name'"
136 $ write sys$output "Exiting..."
173 $ write sys$output P2
[all …]
Dinffast.c82 unsigned write; /* window write index */ local
109 write = state->write;
195 if (write == 0) { /* very common case */
205 else if (write < op) { /* wrap around window */
206 from += wsize + write - op;
207 op -= write;
214 if (write < len) { /* some from start of window */
215 op = write;
225 from += write - op;
/external/apache-http/src/org/apache/http/impl/conn/
DLoggingSessionOutputBuffer.java65 public void write(byte[] b, int off, int len) throws IOException { in write() method in LoggingSessionOutputBuffer
66 this.out.write(b, off, len); in write()
72 public void write(int b) throws IOException { in write() method in LoggingSessionOutputBuffer
73 this.out.write(b); in write()
79 public void write(byte[] b) throws IOException { in write() method in LoggingSessionOutputBuffer
80 this.out.write(b); in write()
/external/libpng/contrib/gregbook/
Dmakevms.com21 $ write sys$output "zlib include not found. Exiting..."
27 $ write sys$output "libpng include not found. Exiting..."
56 $ open/write lopt lib.opt
57 $ write lopt "''pngpath'libpng.olb/lib"
58 $ write lopt "''zpath'libz.olb/lib"
60 $ open/write xopt x11.opt
61 $ write xopt "sys$library:decw$xlibshr.exe/share"
/external/webkit/WebCore/platform/image-decoders/zlib/
Dinffast.c82 unsigned write; /* window write index */ local
109 write = state->write;
195 if (write == 0) { /* very common case */
205 else if (write < op) { /* wrap around window */
206 from += wsize + write - op;
207 op -= write;
214 if (write < len) { /* some from start of window */
215 op = write;
225 from += write - op;
/external/qemu/distrib/zlib-1.2.3/
Dinffast.c82 unsigned write; /* window write index */ local
109 write = state->write;
195 if (write == 0) { /* very common case */
205 else if (write < op) { /* wrap around window */
206 from += wsize + write - op;
207 op -= write;
214 if (write < len) { /* some from start of window */
215 op = write;
225 from += write - op;
/external/webkit/WebKitTools/CodeCoverage/
Dregenerate-coverage-display80 index.write("""<HTML>
94 file.write("""<table width="100%%" border=0 cellspacing=0 cellpadding=0>
136 file.write("""
148 file.write("""<center>
193 file.write("""</table>
211 index.write("""</BODY></HTML>""")
228 site.write("""</BODY></HTML>""")
255 site.write("<p>The file was not excercised</p>")
257 site.write("""</br><table cellpadding=0 cellspacing=0 border=0>
283 site.write(str)
[all …]
/external/freetype/src/sfnt/
Dttsbit0.c420 FT_Byte* write = line; in tt_sbit_decoder_load_byte_aligned() local
426 write[0] = (FT_Byte)( write[0] | *p++ ); in tt_sbit_decoder_load_byte_aligned()
427 write += 1; in tt_sbit_decoder_load_byte_aligned()
431 write[0] = (FT_Byte)( write[0] | ( *p++ & ( 0xFF00U >> w ) ) ); in tt_sbit_decoder_load_byte_aligned()
438 FT_Byte* write = line; in tt_sbit_decoder_load_byte_aligned() local
446 write[0] = (FT_Byte)( write[0] | ( wval >> x_pos ) ); in tt_sbit_decoder_load_byte_aligned()
447 write += 1; in tt_sbit_decoder_load_byte_aligned()
456 write[0] = (FT_Byte)( write[0] | ( wval >> x_pos ) ); in tt_sbit_decoder_load_byte_aligned()
460 write++; in tt_sbit_decoder_load_byte_aligned()
462 write[0] = (FT_Byte)( write[0] | ( wval >> x_pos ) ); in tt_sbit_decoder_load_byte_aligned()
[all …]
/external/skia/src/core/
DSkStream.cpp106 this->write("\n", 1); in newline()
116 return this->write(text, strlen(text)); in writeText()
123 return this->write(tmp.c_str(), tmp.size()); in writeDecAsText()
130 return this->write(tmp.c_str(), tmp.size()); in writeHexAsText()
137 return this->write(tmp.c_str(), tmp.size()); in writeScalarAsText()
142 return this->write(&v, 1); in write8()
147 return this->write(&v, 2); in write16()
151 return this->write(&value, 4); in write32()
155 return this->write(&value, sizeof(value)); in writeScalar()
178 if (!this->write(scratch, n)) { in writeStream()
[all …]
/external/webkit/WebCore/rendering/
DSVGRenderTreeAsText.h50 void write(TextStream&, const RenderPath&, int indent = 0);
51 void write(TextStream&, const RenderSVGContainer&, int indent = 0);
52 void write(TextStream&, const RenderSVGInlineText&, int ident = 0);
53 void write(TextStream&, const RenderSVGRoot&, int indent = 0);
54 void write(TextStream&, const RenderSVGText&, int ident = 0);
/external/apache-http/src/org/apache/commons/codec/net/
DURLCodec.java130 buffer.write(b); in encodeUrl()
132 buffer.write('%'); in encodeUrl()
137 buffer.write(hex1); in encodeUrl()
138 buffer.write(hex2); in encodeUrl()
164 buffer.write(' '); in decodeUrl()
172 buffer.write((char)((u << 4) + l)); in decodeUrl()
177 buffer.write(b); in decodeUrl()

12345678910>>...35