HomeSort by relevance Sort by last modified time
    Searched full:inputstream (Results 151 - 175 of 990) sorted by null

1 2 3 4 5 67 8 91011>>

  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/testtype/
PlanXmlParserTest.java 22 import java.io.InputStream;
54 private InputStream getStringAsStream(String input) {
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
ProviderUtil.java 14 import java.io.InputStream;
96 static int getReadLimit(InputStream in)
  /external/proguard/src/proguard/io/
DataEntry.java 48 public InputStream getInputStream() throws IOException;
52 * Closes the previously retrieved InputStream.
DataEntryCopier.java 65 InputStream inputStream = dataEntry.getInputStream();
68 copyData(inputStream, outputStream);
86 protected void copyData(InputStream inputStream,
92 int count = inputStream.read(buffer);
  /frameworks/base/core/java/android/pim/vcard/
VCardParser.java 21 import java.io.InputStream;
43 public void parse(InputStream is, VCardInterpreter interepreter)
VCardParser_V40.java 21 import java.io.InputStream;
69 public void parse(InputStream is, VCardInterpreter interepreter)
  /frameworks/base/core/java/android/speech/srec/
UlawEncoderInputStream.java 25 import java.io.InputStream;
28 * InputStream which transforms 16 bit pcm data to ulaw data.
33 public final class UlawEncoderInputStream extends InputStream {
39 private InputStream mIn;
131 * Create an InputStream which takes 16 bit pcm data and produces ulaw data.
132 * @param in InputStream containing 16 bit pcm data.
135 public UlawEncoderInputStream(InputStream in, int max) {
177 InputStream in = mIn;
  /frameworks/base/core/tests/coretests/src/android/net/
SSLTest.java 23 import java.io.InputStream;
38 InputStream in = ssl.getInputStream();
  /libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
FixedLengthInputStream.java 20 import java.io.InputStream;
29 public FixedLengthInputStream(InputStream is, CacheRequest cacheRequest,
UnknownLengthHttpInputStream.java 20 import java.io.InputStream;
29 UnknownLengthHttpInputStream(InputStream is, CacheRequest cacheRequest,
  /libcore/luni/src/test/java/tests/security/
CertificateFactoryTest.java 22 import java.io.InputStream;
51 args={InputStream.class}
  /packages/apps/Calculator/src/com/android/calculator2/
Persist.java 19 import java.io.InputStream;
44 InputStream is = new BufferedInputStream(mContext.openFileInput(FILE_NAME), 8192);
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapMemoryLiteral.java 27 import java.io.InputStream;
64 public InputStream getAsStream() {
  /packages/apps/Email/src/org/apache/commons/io/input/
CloseShieldInputStream.java 19 import java.io.InputStream;
39 public CloseShieldInputStream(InputStream in) {
ClosedInputStream.java 19 import java.io.InputStream;
32 public class ClosedInputStream extends InputStream {
TeeInputStream.java 20 import java.io.InputStream;
24 * InputStream proxy that transparently writes a copy of all bytes read
52 * Creates a TeeInputStream that proxies the given {@link InputStream}
59 public TeeInputStream(InputStream input, OutputStream branch) {
64 * Creates a TeeInputStream that proxies the given {@link InputStream}
75 InputStream input, OutputStream branch, boolean closeBranch) {
  /packages/apps/Tag/src/com/android/vcard/
VCardParser.java 21 import java.io.InputStream;
43 public void parse(InputStream is, VCardInterpreter interepreter)
VCardParser_V40.java 21 import java.io.InputStream;
69 public void parse(InputStream is, VCardInterpreter interepreter)
  /packages/experimental/BugReportSender/src/com/android/bugreportsender/
BugReportPreviewActivity.java 13 import java.io.InputStream;
46 InputStream in = null;
  /cts/tests/tests/graphics/src/android/graphics/cts/
MovieTest.java 23 import java.io.InputStream;
99 InputStream source = null;
121 private byte[] inputStreamToBytes(InputStream in) throws IOException {
142 InputStream is = getActivity().getResources().openRawResource(MOVIE);
153 args = {java.io.InputStream.class}
159 InputStream is = getActivity().getResources()
  /libcore/luni/src/test/java/tests/SQLite/
BlobTest.java 35 import java.io.InputStream;
45 private static InputStream file = null;
145 InputStream is = blob.getInputStream();
177 InputStream in = testBlob.getInputStream();
216 // @KnownFailure("Blob does not clean up inputStream.")
221 // inputStream either null or some error occurs
  /packages/apps/Calendar/src/com/android/calendar/
ContactsAsyncHelper.java 31 import java.io.InputStream;
89 InputStream inputStream = null;
91 inputStream = Contacts.openContactPhotoInputStream(
97 if (inputStream != null) {
98 args.result = Drawable.createFromStream(inputStream, args.uri.toString());
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
BitmapDrawableTest.java 48 import java.io.InputStream;
80 args = {java.io.InputStream.class}
120 new BitmapDrawable((InputStream) null);
136 InputStream source = mContext.getResources().openRawResource(R.raw.testimage);
157 InputStream source = mContext.getResources().openRawResource(R.raw.testimage);
175 InputStream source = mContext.getResources().openRawResource(R.raw.testimage);
193 InputStream source = mContext.getResources().openRawResource(R.raw.testimage);
234 InputStream source = mContext.getResources().openRawResource(R.raw.testimage);
279 InputStream source = mContext.getResources().openRawResource(R.raw.testimage);
308 InputStream source = mContext.getResources().openRawResource(R.raw.testimage)
    [all...]
  /libcore/luni/src/main/java/javax/xml/parsers/
SAXParser.java 24 import java.io.InputStream;
109 * <p>Parse the content of the given {@link java.io.InputStream}
114 * @param is InputStream containing the content to be parsed.
117 * @throws IllegalArgumentException If the given InputStream is null.
120 * <code>InputStream</code>.
124 public void parse(InputStream is, HandlerBase hb)
127 throw new IllegalArgumentException("InputStream cannot be null");
135 * <p>Parse the content of the given {@link java.io.InputStream}
140 * @param is InputStream containing the content to be parsed.
144 * @throws IllegalArgumentException If the given <code>InputStream</code> i
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/
EndianUtils.java 21 import java.io.InputStream;
292 * Reads a "short" value from an InputStream. The value is
294 * @param input source InputStream
298 public static short readSwappedShort(InputStream input)
306 * Reads a unsigned short (16-bit) from an InputStream. The value is
308 * @param input source InputStream
312 public static int readSwappedUnsignedShort(InputStream input)
339 * Reads a "int" value from an InputStream. The value is
341 * @param input source InputStream
345 public static int readSwappedInteger(InputStream input)
    [all...]

Completed in 427 milliseconds

1 2 3 4 5 67 8 91011>>