HomeSort by relevance Sort by last modified time
    Searched refs:InputStream (Results 401 - 425 of 2666) sorted by null

<<11121314151617181920>>

  /external/emma/core/java12/com/vladium/util/
ResourceLoader.java 12 import java.io.InputStream;
59 public static InputStream getResourceAsStream (final String name)
100 public static InputStream getResourceAsStream (final String name, final ClassLoader loader)
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
StreamBitmapDecoder.java 12 import java.io.InputStream;
17 * {@link java.io.InputStream}.
19 public class StreamBitmapDecoder implements ResourceDecoder<InputStream, Bitmap> {
49 public Resource<Bitmap> decode(InputStream source, int width, int height) {
  /external/guava/guava-tests/test/com/google/common/io/
TestInputStream.java 29 import java.io.InputStream;
40 public TestInputStream(InputStream in, TestOption... options) throws IOException {
44 public TestInputStream(InputStream in, Iterable<TestOption> options) throws IOException {
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
AppletFrame.java 19 import java.io.InputStream;
141 public void setStream(String key, InputStream stream) throws IOException {
144 public InputStream getStream(String key) {
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/tools/
ExecFileLoader.java 20 import java.io.InputStream;
54 public void load(final InputStream stream) throws IOException {
71 final InputStream stream = new FileInputStream(file);
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/
TargetLoader.java 16 import java.io.InputStream;
54 public static InputStream getClassData(Class<?> clazz) {
61 InputStream in = getClassData(clazz);
  /external/javassist/src/main/javassist/
URLClassPath.java 76 public InputStream openClassfile(String classname) {
104 InputStream is = con.getInputStream();
137 InputStream s = con.getInputStream();
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/read/
BitstreamReader.java 26 import java.io.InputStream;
34 private InputStream is;
42 public BitstreamReader(InputStream is) throws IOException {
  /external/okhttp/okhttp-hpacktests/src/test/java/com/squareup/okhttp/internal/spdy/hpackjson/
HpackJsonUtil.java 23 import java.io.InputStream;
41 private static Story readStory(InputStream jsonResource) throws IOException {
72 InputStream storyInputStream = HpackJsonUtil.class.getResourceAsStream(storyResourceName);
  /external/owasp/sanitizer/src/tests/org/owasp/html/
ExamplesTest.java 33 import java.io.InputStream;
47 InputStream stdin = System.in;
51 InputStream emptyIn = new ByteArrayInputStream(new byte[0]);
  /external/replicaisland/src/com/replica/replicaisland/
TiledWorld.java 20 import java.io.InputStream;
52 public TiledWorld(InputStream stream) {
73 protected boolean parseInput(InputStream stream) {
  /frameworks/base/core/java/android/util/
Base64InputStream.java 21 import java.io.InputStream;
24 * An InputStream that does Base64 decoding on the data read through
39 * An InputStream that performs Base64 decoding on the data read
42 * @param in the InputStream to read the source data from
46 public Base64InputStream(InputStream in, int flags) {
52 * wrapped InputStream.
54 * @param in the InputStream to read the source data from
61 public Base64InputStream(InputStream in, int flags, boolean encode) {
  /frameworks/base/graphics/java/android/graphics/
Picture.java 19 import java.io.InputStream;
147 public static Picture createFromStream(InputStream stream) {
157 * @see #createFromStream(java.io.InputStream)
175 private static native long nativeCreateFromStream(InputStream stream, byte[] storage);
  /frameworks/base/services/core/java/com/android/server/
RandomBlock.java 26 import java.io.InputStream;
43 InputStream stream = null;
52 private static RandomBlock fromStream(InputStream in) throws IOException {
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
PropertyNodesVerifier.java 25 import java.io.InputStream;
56 public void verify(InputStream is, int vcardType) throws IOException, VCardException {
61 public void verify(InputStream is, int vcardType, final VCardParser parser)
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/utils/
BitmapHelper.java 25 import java.io.InputStream;
42 public static Bitmap scaleBitmap(int scaleFactor, InputStream is) {
53 public static int findScaleFactor(int targetW, int targetH, InputStream is) {
  /libcore/benchmarks/src/benchmarks/
BufferedZipFileBenchmark.java 24 import java.io.InputStream;
60 InputStream in = zipFile.getInputStream(entry);
73 InputStream in = new BufferedInputStream(zipFile.getInputStream(entry));
  /libcore/luni/src/main/java/javax/xml/parsers/
DocumentBuilder.java 24 import java.io.InputStream;
87 * Parse the content of the given <code>InputStream</code> as an XML
90 * <code>InputStream</code> is null.
92 * @param is InputStream containing the content to be parsed.
94 * <code>InputStream</code>
100 public Document parse(InputStream is)
103 throw new IllegalArgumentException("InputStream cannot be null");
111 * Parse the content of the given <code>InputStream</code> as an
114 * <code>InputStream</code> is null.
116 * @param is InputStream containing the content to be parsed
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldUnixSocketTest.java 21 import java.io.InputStream;
53 InputStream in = worker.getInputStream();
59 InputStream clientIn = pingClient.getInputStream();
  /libcore/luni/src/test/java/libcore/java/util/zip/
GZIPOutputStreamTest.java 21 import java.io.InputStream;
56 InputStream in = DeflaterOutputStreamTest.createInflaterStream(GZIPOutputStream.class, true);
64 InputStream in = DeflaterOutputStreamTest.createInflaterStream(GZIPOutputStream.class, false);
  /libcore/ojluni/src/main/java/javax/sql/
RowSet.java     [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
BluetoothPbapRequest.java 22 import java.io.InputStream;
83 InputStream is = mOp.openInputStream();
114 protected void readResponse(InputStream stream) throws IOException {
BluetoothPbapVcardList.java 32 import java.io.InputStream;
55 public BluetoothPbapVcardList(Account account, InputStream in, byte format) throws IOException {
60 private void parse(InputStream in, byte format) throws IOException {
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/imap/
ImapString.java 21 import java.io.InputStream;
51 public InputStream getAsStream() {
93 public abstract InputStream getAsStream();
  /packages/apps/Email/provider_src/com/android/email/mail/store/imap/
ImapString.java 23 import java.io.InputStream;
49 @Override public InputStream getAsStream() {
92 public abstract InputStream getAsStream();

Completed in 1861 milliseconds

<<11121314151617181920>>