Searched defs:output (Results 1 - 25 of 29) sorted by relevance

12

/packages/apps/Email/emailcommon/src/org/apache/commons/io/
H A DCopyUtils.java133 * @param output the <code>OutputStream</code> to write to
136 public static void copy(byte[] input, OutputStream output) argument
138 output.write(input);
150 * @param output the <code>Writer</code> to write to
153 public static void copy(byte[] input, Writer output) argument
156 copy(in, output);
164 * @param output the <code>Writer</code> to write to
172 Writer output,
176 copy(in, output, encoding);
188 * @param output th
170 copy( byte[] input, Writer output, String encoding) argument
192 copy( InputStream input, OutputStream output) argument
217 copy( Reader input, Writer output) argument
243 copy( InputStream input, Writer output) argument
261 copy( InputStream input, Writer output, String encoding) argument
282 copy( Reader input, OutputStream output) argument
305 copy( String input, OutputStream output) argument
327 copy(String input, Writer output) argument
[all...]
H A DEndianUtils.java280 * @param output target OutputStream
284 public static void writeSwappedShort(OutputStream output, short value) argument
287 output.write( (byte)( ( value >> 0 ) & 0xff ) );
288 output.write( (byte)( ( value >> 8 ) & 0xff ) );
325 * @param output target OutputStream
329 public static void writeSwappedInteger(OutputStream output, int value) argument
332 output.write( (byte)( ( value >> 0 ) & 0xff ) );
333 output.write( (byte)( ( value >> 8 ) & 0xff ) );
334 output.write( (byte)( ( value >> 16 ) & 0xff ) );
335 output
390 writeSwappedLong(OutputStream output, long value) argument
427 writeSwappedFloat(OutputStream output, float value) argument
453 writeSwappedDouble(OutputStream output, double value) argument
[all...]
H A DIOUtils.java38 import org.apache.commons.io.output.ByteArrayOutputStream;
43 * This class provides static utility methods for input/output operations.
155 * @param output the Writer to close, may be null or already closed
157 public static void closeQuietly(Writer output) { argument
159 if (output != null) {
160 output.close();
191 * @param output the OutputStream to close, may be null or already closed
193 public static void closeQuietly(OutputStream output) { argument
195 if (output != null) {
196 output
628 write(byte[] data, OutputStream output) argument
648 write(byte[] data, Writer output) argument
671 write(byte[] data, Writer output, String encoding) argument
695 write(char[] data, Writer output) argument
715 write(char[] data, OutputStream output) argument
740 write(char[] data, OutputStream output, String encoding) argument
762 write(String data, Writer output) argument
781 write(String data, OutputStream output) argument
804 write(String data, OutputStream output, String encoding) argument
826 write(StringBuffer data, Writer output) argument
846 write(StringBuffer data, OutputStream output) argument
869 write(StringBuffer data, OutputStream output, String encoding) argument
894 writeLines(Collection<Object> lines, String lineEnding, OutputStream output) argument
927 writeLines(Collection<Object> lines, String lineEnding, OutputStream output, String encoding) argument
998 copy(InputStream input, OutputStream output) argument
1020 copyLarge(InputStream input, OutputStream output) argument
1047 copy(InputStream input, Writer output) argument
1072 copy(InputStream input, Writer output, String encoding) argument
1103 copy(Reader input, Writer output) argument
1124 copyLarge(Reader input, Writer output) argument
1154 copy(Reader input, OutputStream output) argument
1186 copy(Reader input, OutputStream output, String encoding) argument
[all...]
/packages/apps/Email/emailcommon/src/org/apache/commons/io/output/
H A DCloseShieldOutputStream.java17 package org.apache.commons.io.output;
22 * Proxy stream that prevents the underlying output stream from being closed.
24 * This class is typically used in cases where an output stream needs to be
26 * other components would still use the stream for output.
34 * Creates a proxy that shields the given output stream from being
37 * @param out underlying output stream
44 * Replaces the underlying output stream with a {@link ClosedOutputStream}
45 * sentinel. The original output stream will remain open, but this proxy
H A DClosedOutputStream.java17 package org.apache.commons.io.output;
23 * Closed output stream. This stream throws an exception on all attempts to
27 * that accept an output stream and acting as a sentinel value instead of
28 * a <code>null</code> output stream.
H A DCountingOutputStream.java17 package org.apache.commons.io.output;
23 * A decorating output stream that counts the number of bytes that have passed
47 * Writes the contents of the specified byte array to this output stream
60 * Writes a portion of the specified byte array to this output stream
75 * Writes a single byte to the output stream adding to the count of the
H A DDemuxOutputStream.java17 package org.apache.commons.io.output;
37 * @param output the stream to bind
40 public OutputStream bindStream( OutputStream output )
43 m_streams.set( output );
56 OutputStream output = getStream();
57 if( null != output )
59 output.close();
72 OutputStream output = getStream();
73 if( null != output )
75 output
[all...]
H A DNullOutputStream.java17 package org.apache.commons.io.output;
25 * This output stream has no destination (file/socket etc.) and all
39 * Does nothing - output to <code>/dev/null</code>.
49 * Does nothing - output to <code>/dev/null</code>.
57 * Does nothing - output to <code>/dev/null</code>.
H A DNullWriter.java17 package org.apache.commons.io.output;
43 * Does nothing - output to <code>/dev/null</code>.
51 * Does nothing - output to <code>/dev/null</code>.
59 * Does nothing - output to <code>/dev/null</code>.
69 * Does nothing - output to <code>/dev/null</code>.
77 * Does nothing - output to <code>/dev/null</code>.
H A DProxyOutputStream.java17 package org.apache.commons.io.output;
H A DProxyWriter.java17 package org.apache.commons.io.output;
H A DTeeOutputStream.java17 package org.apache.commons.io.output;
H A DFileWriterWithEncoding.java17 package org.apache.commons.io.output;
H A DDeferredFileOutputStream.java17 package org.apache.commons.io.output;
29 * An output stream which will retain data in memory until a specified
52 * The output stream to which data will be written prior to the theshold
59 * The output stream to which data will be written at any given time. This
67 * The file to which output will be directed if the threshold is exceeded.
139 * Returns the current output stream. This may be memory based or disk
142 * @return The underlying output stream.
153 * Switches the underlying output stream from a memory based stream to one
176 * Determines whether or not the data for this output stream has been
189 * Returns the data for this output strea
[all...]
H A DLockableFileWriter.java17 package org.apache.commons.io.output;
H A DThresholdingOutputStream.java17 package org.apache.commons.io.output;
24 * An output stream which triggers an event when a specified number of bytes of
30 * overrides ultimately call the corresponding methods in the underlying output
55 * The number of bytes written to the output stream.
85 * Writes the specified byte to this output stream.
101 * output stream.
117 * offset <code>off</code> to this output stream.
134 * Flushes this output stream and forces any buffered output bytes to be
146 * Closes this output strea
[all...]
H A DByteArrayOutputStream.java17 package org.apache.commons.io.output;
27 * This class implements an output stream in which the data is
68 * Creates a new byte array output stream. The buffer capacity is
76 * Creates a new byte array output stream, with a buffer capacity of
243 * specified output stream.
245 * @param out the output stream to write to
266 * @return the current contents of this output stream, as a byte array
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DDownloadUtils.java82 public static boolean download(JobContext jc, URL url, OutputStream output) { argument
86 dump(jc, input, output);
/packages/inputmethods/LatinIME/native/src/
H A Ddebug.h23 static inline unsigned char* convertToUnibyteString(unsigned short* input, unsigned char* output, argument
27 output[i] = input[i] & 0xFF;
28 output[i] = 0;
29 return output;
33 unsigned char* output, const unsigned int length, unsigned char c) {
36 output[i] = input[i] & 0xFF;
37 output[i-1] = c;
38 output[i] = 0;
39 return output;
32 convertToUnibyteStringAndReplaceLastChar(unsigned short* input, unsigned char* output, const unsigned int length, unsigned char c) argument
/packages/apps/Calendar/tests/src/com/android/calendar/
H A DFormatDateRangeTest.java40 int flags, String output) {
62 expectedOutput = output;
67 int flags, String output) {
70 flags, output);
188 String output = DateUtils.formatDateRange(mContext, startMillis, endMillis, flags);
189 if (!dateTest.expectedOutput.equals(output)) {
192 + " actual: " + output);
194 assertEquals(dateTest.expectedOutput, output);
38 DateTest(int year1, int month1, int day1, int hour1, int minute1, int year2, int month2, int day2, int hour2, int minute2, int flags, String output) argument
66 DateTest(int year1, int month1, int day1, int hour1, int minute1, int flags, String output) argument
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DBinaryDictionaryFileDumper.java150 // Open output.
258 final FileOutputStream output) throws FileNotFoundException, IOException {
268 output.write(MAGIC_NUMBER);
273 output.write(buffer, 0, readBytes);
257 checkMagicAndCopyFileTo(final BufferedInputStream input, final FileOutputStream output) argument
/packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/actions/
H A DEffectAction.java96 // Wait till last output callback is done before finishing.
128 protected void notifyFilterChanged(Filter filter, boolean output) { argument
133 if (pushedFilter && output) {
134 // Notify the stack to execute the changed top filter and output the results.
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DPositionRepository.java86 Position source, Position target, Position output, float progress) {
88 output.set(
95 output.set(target);
85 interpolate( Position source, Position target, Position output, float progress) argument
/packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
H A DDictionaryBackupAgent.java130 BackupDataOutput output) {
138 output.writeEntityHeader(key, data.length);
139 output.writeEntityData(data, data.length);
129 writeIfChanged(long oldChecksum, String key, byte[] data, BackupDataOutput output) argument
/packages/apps/Gallery2/src/com/android/gallery3d/provider/
H A DGalleryProvider.java235 public void writeDataToPipe(ParcelFileDescriptor output, argument
239 os = new ParcelFileDescriptor.AutoCloseOutputStream(output);

Completed in 395 milliseconds

12