HomeSort by relevance Sort by last modified time
    Searched defs:write (Results 401 - 425 of 1945) sorted by null

<<11121314151617181920>>

  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
TeeInputStream.java 108 branch.write(ch);
126 branch.write(bts, st, n);
142 branch.write(bts, 0, n);
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
DemuxOutputStream.java 82 * @param ch the byte to write to stream
86 public void write( int ch ) method in class:DemuxOutputStream
92 output.write( ch );
ThresholdingOutputStream.java 34 * is actually reached, since it triggers when a pending write operation would
91 public void write(int b) throws IOException method in class:ThresholdingOutputStream
94 getStream().write(b);
107 public void write(byte b[]) throws IOException method in class:ThresholdingOutputStream
110 getStream().write(b);
121 * @param len The number of bytes to write.
125 public void write(byte b[], int off, int len) throws IOException method in class:ThresholdingOutputStream
128 getStream().write(b, off, len);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
AbstractDictionaryWriter.java 66 public void write(final String fileName, final Map<String, String> attributeMap) { method in class:AbstractDictionaryWriter
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
code.py 121 The output is written by self.write(), below.
139 map(self.write, list)
146 The output is written by self.write(), below.
162 map(self.write, list)
164 def write(self, data): member in class:InteractiveInterpreter
165 """Write a string.
171 sys.stderr.write(data)
221 self.write("Python %s on %s\n%s\n(%s)\n" %
225 self.write("%s\n" % str(banner))
240 self.write("\n"
    [all...]
quopri.py 43 """Read 'input', apply quoted-printable encoding, and write to 'output'.
45 'input' and 'output' are files with readline() and write() methods.
56 output.write(odata)
59 def write(s, output=output, lineEnd='\n'): function in function:encode
63 output.write(s[:-1] + quote(s[-1]) + lineEnd)
65 output.write(quote(s) + lineEnd)
67 output.write(s + lineEnd)
88 # First, write out the previous line
90 write(prevline)
97 write(thisline[:MAXLINESIZE-1], lineEnd='=\n'
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
OutputWindow.py 37 def write(self, s, tags=(), mark="insert"): member in class:OutputWindow
52 self.write(line)
137 def write(self, s, tags, mark): member in class:OnDemandOutputWindow
140 self.owin.write(s, tags, mark)
149 self.write = self.owin.write
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_print.py 117 def write(self, what): member in class:TestPrint.test_mixed_args.Recorder
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
code.py 121 The output is written by self.write(), below.
139 map(self.write, list)
146 The output is written by self.write(), below.
162 map(self.write, list)
164 def write(self, data): member in class:InteractiveInterpreter
165 """Write a string.
171 sys.stderr.write(data)
221 self.write("Python %s on %s\n%s\n(%s)\n" %
225 self.write("%s\n" % str(banner))
240 self.write("\n"
    [all...]
quopri.py 43 """Read 'input', apply quoted-printable encoding, and write to 'output'.
45 'input' and 'output' are files with readline() and write() methods.
56 output.write(odata)
59 def write(s, output=output, lineEnd='\n'): function in function:encode
63 output.write(s[:-1] + quote(s[-1]) + lineEnd)
65 output.write(quote(s) + lineEnd)
67 output.write(s + lineEnd)
88 # First, write out the previous line
90 write(prevline)
97 write(thisline[:MAXLINESIZE-1], lineEnd='=\n'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
OutputWindow.py 37 def write(self, s, tags=(), mark="insert"): member in class:OutputWindow
52 self.write(line)
137 def write(self, s, tags, mark): member in class:OnDemandOutputWindow
140 self.owin.write(s, tags, mark)
149 self.write = self.owin.write
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_print.py 117 def write(self, what): member in class:TestPrint.test_mixed_args.Recorder
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
BufferedWriterTest.java 42 sw.write("Hi");
57 public void write(char[] buf, int off, int len) throws IOException { method in class:BufferedWriterTest.MockWriter
86 bw.write(testString);
91 assertTrue("Write after close", !sw.toString().equals(testString));
96 bw.write('a');
123 bw.write("This should not cause a flush");
135 bw.write("Hello");
137 bw.write("World");
144 * @tests java.io.BufferedWriter#write(char[], int, int)
148 bw.write(testCharArray, 500, 1000)
    [all...]
BufferedOutputStreamTest.java 42 os.write(fileString.getBytes(), 0, 500);
52 os.write(fileString.getBytes(), 0, 500);
104 os.write(fileString.getBytes(), 0, 500);
119 public void write(int b) { method in class:BufferedOutputStreamTest.MockOutputStream
129 * @tests java.io.BufferedOutputStream#write(byte[], int, int)
133 os.write(fileString.getBytes(), 0, 500);
139 os.write(fileString.getBytes(), 500, 513);
151 bos.write("a".getBytes());
152 bos.write("bcde".getBytes());
157 bos.write("ab".getBytes())
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
DigestOutputStreamTest.java 138 * Test #1 for <code>write(int)</code> method<br>
151 dos.write(myMessage[i]);
154 assertTrue("write", Arrays.equals(MDGoldenData.getMessage(),
168 * Test #2 for <code>write(int)</code> method<br>
171 * Assertion: <code>write(int)</code> must not update digest if it is off<br>
188 dos.write(myMessage[i]);
192 assertTrue("write", Arrays.equals(MDGoldenData.getMessage(),
194 // check that digest value has not been updated by write()
206 * Test #3 for <code>write(int)</code> method<br>
209 * <code>OutputStream</code> not set. <code>write(int)</code> mus
586 public void write(int arg0) throws IOException { method in class:DigestOutputStreamTest.MyOutputStream
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
WriterToUTF8Buffered.java 54 /** The byte stream to write to. (sc & sb remove final to compile in JDK 1.1.8) */
98 * Create an buffered UTF-8 writer to write data to the
122 * Write a single character. The character to be written is contained in
132 public void write(final int c) throws IOException method in class:WriterToUTF8Buffered
168 * Write a portion of an array of characters.
172 * @param length Number of characters to write
178 public void write(final char chars[], final int start, final int length) method in class:WriterToUTF8Buffered
244 this.write(chars,start_chunk, len_chunk);
310 * Write a string.
316 public void write(final String s) throws IOExceptio method in class:WriterToUTF8Buffered
    [all...]
  /external/doclava/src/com/google/doclava/
ClearPage.java 78 public static void write(Data data, String templ, String filename, JSilver cs) { method in class:ClearPage
79 write(data, templ, filename, false, cs); method
82 public static void write(Data data, String templ, String filename) { method in class:ClearPage
83 write(data, templ, filename, false, Doclava.jSilver); method
86 public static void write(Data data, String templ, String filename, boolean fullPath) { method in class:ClearPage
87 write(data, templ, filename, false, Doclava.jSilver); method
90 public static void write(Data data, String templ, String filename, boolean fullPath, JSilver cs) { method in class:ClearPage
140 stream.write(rendered, 0, rendered.length());
199 out.write(buf, 0, size);
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/
RemotePrintDocumentAdapter.java 79 public void write(final PageRange[] pages, final IWriteResultCallback callback, method in class:RemotePrintDocumentAdapter
82 Log.i(LOG_TAG, "write()");
100 mRemoteInterface.write(pages, sink, callback, sequence);
113 out.write(buffer, 0, readByteCount);
116 Log.e(LOG_TAG, "Error calling write()", re);
118 Log.e(LOG_TAG, "Error calling write()", ioe);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DigestOutputStreamTest.java 138 * Test #1 for <code>write(int)</code> method<br>
151 dos.write(myMessage[i]);
154 assertTrue("write", Arrays.equals(MDGoldenData.getMessage(), bos.toByteArray()));
167 * Test #2 for <code>write(int)</code> method<br>
170 * Assertion: <code>write(int)</code> must not update digest if it is off<br>
187 dos.write(myMessage[i]);
191 assertTrue("write", Arrays.equals(MDGoldenData.getMessage(), bos.toByteArray()));
192 // check that digest value has not been updated by write()
204 * Test #3 for <code>write(int)</code> method<br>
207 * <code>OutputStream</code> not set. <code>write(int)</code> mus
600 public void write(int arg0) throws IOException { method in class:DigestOutputStreamTest.MyOutputStream
    [all...]
  /libcore/support/src/test/java/tests/http/
MockWebServer.java 422 out.write((response.getStatus() + "\r\n").getBytes(ASCII));
424 out.write((header + "\r\n").getBytes(ASCII));
426 out.write(("\r\n").getBytes(ASCII));
427 out.write(response.getBody());
442 out.write(buffer, 0, count);
478 @Override public void write(byte[] buffer, int offset, int len) { method in class:MockWebServer.TruncatingOutputStream
480 super.write(buffer, offset, Math.min(len, bodyLimit - count));
482 @Override public void write(int oneByte) { method in class:MockWebServer.TruncatingOutputStream
485 super.write(oneByte);
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
Fat.java 16 * along with this library; If not, write to the Free Software Foundation, Inc.,
82 * @throws IOException on write error
102 result.write();
185 public void write() throws IOException { method in class:Fat
190 * Write the contents of this FAT to the given device at the given offset.
192 * @param offset the device offset where to write the FAT copy
193 * @throws IOException on write error
202 device.write(offset, ByteBuffer.wrap(data));
  /bionic/libc/kernel/tools/
utils.py 12 sys.stderr.write( find_program_name() + ": error: " )
13 sys.stderr.write( msg )
54 def write(self,msg): member in class:StringOutput
56 D2("write '%s'" % msg)
182 f.write(self.new_data[dst])
  /bootable/recovery/
bootloader.cpp 122 MtdWriteContext *write = mtd_write_partition(part); local
123 if (write == NULL) {
127 if (mtd_write_data(write, data, size) != size) {
128 LOGE("Can't write %s\n(%s)\n", v->blk_device, strerror(errno));
129 mtd_write_close(write);
132 if (mtd_write_close(write)) {
  /bootable/recovery/mtdutils/
flash_image.c 49 /* Read an image file and write it to a flash partition. */
53 MtdWriteContext *write; local
92 // Skip the header (we'll come back to it), write everything else
112 // Now come back and write the header last
120 // Need to write a complete block, so write the rest of the first block
  /build/tools/zipalign/
ZipEntry.cpp 467 * Write a local file header.
469 status_t ZipEntry::LocalFileHeader::write(FILE* fp) function in class:ZipEntry::LocalFileHeader
488 /* write filename */
494 /* write "extra field" */
625 * Write a central dir entry.
627 status_t ZipEntry::CentralDirEntry::write(FILE* fp) function in class:ZipEntry::CentralDirEntry
652 /* write filename */
658 /* write "extra field" */
664 /* write comment */

Completed in 710 milliseconds

<<11121314151617181920>>