HomeSort by relevance Sort by last modified time
    Searched refs:write (Results 1 - 25 of 2583) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dx/src/com/android/dx/io/instructions/
CodeOutput.java 26 public void write(short codeUnit); method in interface:CodeOutput
31 public void write(short u0, short u1); method in interface:CodeOutput
36 public void write(short u0, short u1, short u2); method in interface:CodeOutput
41 public void write(short u0, short u1, short u2, short u3); method in interface:CodeOutput
46 public void write(short u0, short u1, short u2, short u3, short u4); method in interface:CodeOutput
61 public void write(byte[] data); method in interface:CodeOutput
66 public void write(short[] data); method in interface:CodeOutput
71 public void write(int[] data); method in interface:CodeOutput
76 public void write(long[] data); method in interface:CodeOutput
ShortArrayCodeOutput.java 24 /** array to write to */
57 public void write(short codeUnit) { method in class:ShortArrayCodeOutput
63 public void write(short u0, short u1) { method in class:ShortArrayCodeOutput
64 write(u0);
65 write(u1);
69 public void write(short u0, short u1, short u2) { method in class:ShortArrayCodeOutput
70 write(u0);
71 write(u1);
72 write(u2);
76 public void write(short u0, short u1, short u2, short u3) method in class:ShortArrayCodeOutput
84 public void write(short u0, short u1, short u2, short u3, short u4) { method in class:ShortArrayCodeOutput
94 write((short) value); method
95 write((short) (value >> 16)); method
100 write((short) value); method
101 write((short) (value >> 16)); method
102 write((short) (value >> 32)); method
103 write((short) (value >> 48)); method
107 public void write(byte[] data) { method in class:ShortArrayCodeOutput
116 write((short) value); method
122 write((short) value); method
127 public void write(short[] data) { method in class:ShortArrayCodeOutput
134 public void write(int[] data) { method in class:ShortArrayCodeOutput
141 public void write(long[] data) { method in class:ShortArrayCodeOutput
    [all...]
  /external/javassist/sample/evolve/sample/evolve/
WebPage.java 13 out.write("<H2>Current Time:</H2>");
15 out.write("<CENTER><H3><FONT color=\"blue\">");
16 out.write(c.getTime().toString());
17 out.write("</FONT></H3></CENTER><HR>");
18 out.write("<P><A HREF=\"demo.html\">Return to the home page.</A>");
  /packages/apps/Email/emailcommon/src/org/apache/commons/io/output/
NullWriter.java 44 * @param idx The character to write
46 public void write(int idx) { method in class:NullWriter
52 * @param chr The characters to write
54 public void write(char[] chr) { method in class:NullWriter
60 * @param chr The characters to write
62 * @param end The number of characters to write
64 public void write(char[] chr, int st, int end) { method in class:NullWriter
70 * @param str The string to write
72 public void write(String str) { method in class:NullWriter
78 * @param str The string to write
82 public void write(String str, int st, int end) { method in class:NullWriter
    [all...]
ProxyWriter.java 28 * methods being called, such as write(char[]) to write(char[], int, int)
29 * and write(String) to write(String, int, int).
47 * Invokes the delegate's <code>write(int)</code> method.
48 * @param idx the character to write
51 public void write(int idx) throws IOException { method in class:ProxyWriter
52 out.write(idx);
56 * Invokes the delegate's <code>write(char[])</code> method.
57 * @param chr the characters to write
60 public void write(char[] chr) throws IOException { method in class:ProxyWriter
71 public void write(char[] chr, int st, int end) throws IOException { method in class:ProxyWriter
80 public void write(String str) throws IOException { method in class:ProxyWriter
91 public void write(String str, int st, int end) throws IOException { method in class:ProxyWriter
    [all...]
TeeOutputStream.java 31 /** the second OutputStream to write to */
45 * Write the bytes to both streams.
46 * @param b the bytes to write
49 public synchronized void write(byte[] b) throws IOException { method in class:TeeOutputStream
50 super.write(b);
51 this.branch.write(b);
55 * Write the specified bytes to both streams.
56 * @param b the bytes to write
58 * @param len The number of bytes to write
61 public synchronized void write(byte[] b, int off, int len) throws IOException { method in class:TeeOutputStream
71 public synchronized void write(int b) throws IOException { method in class:TeeOutputStream
    [all...]
ProxyOutputStream.java 45 * Invokes the delegate's <code>write(int)</code> method.
46 * @param idx the byte to write
49 public void write(int idx) throws IOException { method in class:ProxyOutputStream
50 out.write(idx);
54 * Invokes the delegate's <code>write(byte[])</code> method.
55 * @param bts the bytes to write
58 public void write(byte[] bts) throws IOException { method in class:ProxyOutputStream
59 out.write(bts);
63 * Invokes the delegate's <code>write(byte[])</code> method.
64 * @param bts the bytes to write
69 public void write(byte[] bts, int st, int end) throws IOException { method in class:ProxyOutputStream
    [all...]
NullOutputStream.java 40 * @param b The bytes to write
42 * @param len The number of bytes to write
44 public void write(byte[] b, int off, int len) { method in class:NullOutputStream
50 * @param b The byte to write
52 public void write(int b) { method in class:NullOutputStream
58 * @param b The bytes to write
61 public void write(byte[] b) throws IOException { method in class:NullOutputStream
  /external/webkit/Tools/MiniBrowser/mac/
make-launchable.sh 27 defaults write "${BUILT_PRODUCTS_DIR}/${INFOPLIST_PATH%.plist}" LSEnvironment -dict DYLD_FRAMEWORK_PATH "${BUILT_PRODUCTS_DIR}"
  /external/xmlwriter/src/org/jheer/
XMLWriter.java 46 * [Print]FileWriter to write the XML to. Call the {@link #begin()} or
67 * @param out the FileWriter to write the XML to
76 * @param out the FileWriter to write the XML to
87 * Write <em>unescaped</em> text into the XML file. To write
89 * @param s the text to write. This String will not be escaped.
91 public void write(String s) throws IOException { method in class:XMLWriter
92 m_out.write(s);
96 * Write <em>unescaped</em> text into the XML file, followed by
97 * a newline. To write escaped text, use the {@link #content(String)
    [all...]
  /bionic/libc/unistd/
perror.c 39 write( 2, prefix, strlen(prefix) );
40 write( 2, ": ", 2 );
42 write( 2, buff, strlen(buff) );
43 write( 2, "\n", 1 );
  /external/webkit/LayoutTests/fast/encoding/resources/
yentestexternal2.js 3 document.write("two backslashes external: \\ <br>");
4 document.write("one backslash external: \ <br>");
yentestexternal.js 3 document.write("two backslashes external: " + "\\" + "<br>");
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
WriterChain.java 33 * write(int val)
34 * write(char[] chars)
35 * write(char[] chars, int start, int count)
36 * write(String chars)
37 * write(String chars, int start, int count)
54 public void write(int val) throws IOException; method in interface:WriterChain
56 public void write(char[] chars) throws IOException; method in interface:WriterChain
58 public void write(char[] chars, int start, int count) throws IOException; method in interface:WriterChain
60 public void write(String chars) throws IOException; method in interface:WriterChain
62 public void write(String chars, int start, int count) throws IOException method in interface:WriterChain
    [all...]
  /frameworks/compile/slang/
slangdata.py 26 sys.stdout.write("""
61 sys.stdout.write(".byte ")
62 sys.stdout.write("0x%02x" % ord(c))
65 sys.stdout.write("\n")
68 sys.stdout.write(", ")
70 sys.stdout.write(",")
72 sys.stdout.write("0x00")
74 sys.stdout.write("\n")
78 sys.stdout.write(" .long %d\n" % input_size)
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
Output.java 23 * An {@link Output} objects is an helper to write to a character stream {@link Writer}.
26 * to help them write to the underlying stream.
37 * @param writer The writer to write to. Could be a file, a string, etc.
51 public void write(String format, Object... args) { method in class:Output
53 mWriter.write(String.format(format, args));
62 * @param c The character to write.
64 public void write(char c) { method in class:Output
65 write(Character.toString(c));
71 * @param sb The {@link StringBuilder#toString()} method is used to ge the string to write.
73 public void write(StringBuilder sb) method in class:Output
    [all...]
  /external/guava/src/com/google/common/io/
NullOutputStream.java 29 @Override public void write(int b) { method in class:NullOutputStream
33 @Override public void write(byte[] b, int off, int len) { method in class:NullOutputStream
  /frameworks/compile/libbcc/tools/
dataconvert.py 26 sys.stdout.write("""
61 sys.stdout.write(".byte ")
62 sys.stdout.write("0x%02x" % ord(c))
65 sys.stdout.write("\n")
68 sys.stdout.write(", ")
70 sys.stdout.write(",")
72 sys.stdout.write("\n")
76 sys.stdout.write(" .long %d\n" % input_size)
  /bionic/libc/stdlib/
setjmperr.c 34 * write their own versions.
45 (void)write(STDERR_FILENO, ERRMSG, sizeof(ERRMSG) - 1);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DEROutputStream.java 30 write((byte)(size | 0x80)); method
34 write((byte)(length >> i)); method
39 write((byte)length); method
48 write(tag);
50 write(bytes);
58 write(flags | tagNo);
62 write(flags | 0x1f);
65 write(tagNo);
81 write(stack, pos, stack.length - pos); method
91 write(bytes)
101 public void write(byte[] buf) method in class:DEROutputStream
107 public void write(byte[] buf, int offSet, int len) method in class:DEROutputStream
    [all...]
  /external/webkit/LayoutTests/http/tests/resources/
last-modified.php 6 document.write(document.lastModified);
  /packages/apps/Email/src/com/android/email/mail/transport/
EOLConvertingOutputStream.java 31 public void write(int oneByte) throws IOException { method in class:EOLConvertingOutputStream
34 super.write('\r');
37 super.write(oneByte);
44 super.write('\n');
  /libcore/luni/src/main/java/java/io/
ObjectOutput.java 50 * the buffer to write.
54 public void write(byte[] buffer) throws IOException; method in interface:ObjectOutput
62 * the buffer to write.
64 * the index of the first byte in {@code buffer} to write.
66 * the number of bytes from {@code buffer} to write to the target
71 public void write(byte[] buffer, int offset, int count) throws IOException; method in interface:ObjectOutput
79 * the byte to write.
83 public void write(int value) throws IOException; method in interface:ObjectOutput
89 * the object to write.
Writer.java 27 * needs to be subclassed, and at least the {@link #write(char[], int, int)},
89 * the non-null array containing characters to write.
93 public void write(char[] buf) throws IOException { method in class:Writer
94 write(buf, 0, buf.length); method
102 * the non-null character array to write.
104 * the index of the first character in {@code buf} to write.
106 * the maximum number of characters to write.
113 public abstract void write(char[] buf, int offset, int count) throws IOException; method in class:Writer
120 * the character to write to the target.
124 public void write(int oneChar) throws IOException method in class:Writer
140 public void write(String str) throws IOException { method in class:Writer
141 write(str, 0, str.length()); method
160 public void write(String str, int offset, int count) throws IOException { method in class:Writer
167 write(buf, 0, buf.length); method
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
GZIPOutputStream.java 24 * The {@code GZIPOutputStream} class is used to write data to a stream in the
36 * zos.write(bytes);
50 * Construct a new {@code GZIPOutputStream} to write data in GZIP format to
54 * the {@code OutputStream} to write data to.
63 * Construct a new {@code GZIPOutputStream} to write data in GZIP format to
68 * the {@code OutputStream} to write to.
77 out.write(Deflater.DEFLATED);
78 out.write(0); // flags
80 out.write(0); // extra flags
81 out.write(0); // operating syste
103 public void write(byte[] buffer, int off, int nbytes) throws IOException { method in class:GZIPOutputStream
    [all...]

Completed in 481 milliseconds

1 2 3 4 5 6 7 8 91011>>