HomeSort by relevance Sort by last modified time
    Searched refs:InputStream (Results 76 - 100 of 3051) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/glide/testutil/src/main/java/com/bumptech/glide/testutil/
TestUtil.java 5 import java.io.InputStream;
19 public static byte[] isToBytes(InputStream is) throws IOException {
33 public static String isToString(InputStream is) throws IOException {
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
FilterOptions.java 13 import java.io.InputStream;
74 public abstract InputStream getInputStream(InputStream in)
  /external/nanohttpd/webserver/src/test/java/fi/iki/elonen/
AbstractTestHttpServer.java 38 import java.io.InputStream;
47 InputStream instream = entity.getContent();
51 protected byte[] readContents(InputStream instream) throws IOException {
  /external/sfntly/cpp/src/sfntly/port/
input_stream.h 25 class InputStream {
28 virtual ~InputStream() {}
41 class PushbackInputStream : public InputStream {
  /libcore/ojluni/src/main/java/java/sql/
Blob.java 28 import java.io.InputStream;
111 java.io.InputStream getBinaryStream () throws SQLException;
288 * Returns an <code>InputStream</code> object that contains a partial <code>Blob</code> value,
294 * @return <code>InputStream</code> through which the partial <code>Blob</code> value can be read.
303 InputStream getBinaryStream(long pos, long length) throws SQLException;
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Crypt.java 19 import java.io.InputStream;
32 public static InputStream getDecryptedStream(final InputStream in) {
  /cts/tests/tests/security/src/android/security/cts/
BitmapFactoryDecodeStreamTest.java 26 import java.io.InputStream;
37 InputStream inStream = new BufferedInputStream(mContext.getResources().openRawResource(
45 InputStream exploitImage = new BufferedInputStream(mContext.getResources().openRawResource(
51 InputStream exploitImage = new BufferedInputStream(mContext.getResources().openRawResource(
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
TeeInputStream.java 4 import java.io.InputStream;
11 extends InputStream
13 private final InputStream input;
22 public TeeInputStream(InputStream input, OutputStream output)
  /external/conscrypt/libcore-stub/src/main/java/libcore/io/
Streams.java 21 import java.io.InputStream;
30 public static byte[] readFully(InputStream in) throws IOException {
41 private static byte[] readFullyNoClose(InputStream in) throws IOException {
55 public static int copy(InputStream in, OutputStream out) throws IOException {
  /external/glide/library/src/main/java/com/bumptech/glide/load/model/stream/
StreamByteArrayLoader.java 11 import java.io.InputStream;
34 public DataFetcher<InputStream> getResourceFetcher(byte[] model, int width, int height) {
41 public static class Factory implements ModelLoaderFactory<byte[], InputStream> {
44 public ModelLoader<byte[], InputStream> build(Context context, GenericLoaderFactory factories) {
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUData.java 16 import java.io.InputStream;
83 * For testing (otherwise false): When reading an InputStream from a Class or ClassLoader
109 private static InputStream getStream(final Class<?> root, final String resourceName, boolean required) {
110 InputStream i = null;
112 i = AccessController.doPrivileged(new PrivilegedAction<InputStream>() {
114 public InputStream run() {
132 static InputStream getStream(final ClassLoader loader, final String resourceName, boolean required) {
133 InputStream i = null;
135 i = AccessController.doPrivileged(new PrivilegedAction<InputStream>() {
137 public InputStream run()
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUData.java 15 import java.io.InputStream;
81 * For testing (otherwise false): When reading an InputStream from a Class or ClassLoader
107 private static InputStream getStream(final Class<?> root, final String resourceName, boolean required) {
108 InputStream i = null;
110 i = AccessController.doPrivileged(new PrivilegedAction<InputStream>() {
112 public InputStream run() {
130 static InputStream getStream(final ClassLoader loader, final String resourceName, boolean required) {
131 InputStream i = null;
133 i = AccessController.doPrivileged(new PrivilegedAction<InputStream>() {
135 public InputStream run()
    [all...]
  /external/jarjar/src/main/com/tonicsystems/jarjar/util/
EntryStruct.java 19 import java.io.InputStream;
  /external/proguard/src/proguard/io/
DataEntry.java 48 public InputStream getInputStream() throws IOException;
52 * Closes the previously retrieved InputStream.
  /external/sfntly/cpp/src/sfntly/data/
font_input_stream.h 45 // an InputStream within. In C++, we directly do the wrapping without
49 class FontInputStream : public InputStream {
53 explicit FontInputStream(InputStream* is);
58 FontInputStream(InputStream* is, size_t length);
89 InputStream* stream_;
  /external/volley/src/main/java/com/android/volley/toolbox/
HttpResponse.java 20 import java.io.InputStream;
30 private final InputStream mContent;
48 * @param content an {@link InputStream} of the response content. May be null to indicate that
52 int statusCode, List<Header> headers, int contentLength, InputStream content) {
75 * Returns an {@link InputStream} of the response content. May be null to indicate that the
78 public final InputStream getContent() {
  /frameworks/base/core/java/com/android/internal/util/
SizedInputStream.java 22 import java.io.InputStream;
28 public class SizedInputStream extends InputStream {
29 private final InputStream mWrapped;
32 public SizedInputStream(InputStream wrapped, long length) {
  /frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/util/
TestAssetRepository.java 27 import java.io.InputStream;
39 private static InputStream open(String path) throws FileNotFoundException {
54 public InputStream openAsset(String path, int mode) throws IOException {
59 public InputStream openNonAsset(int cookie, String path, int mode) throws IOException {
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/
Base64Body.java 21 import java.io.InputStream;
26 private final InputStream source;
30 public Base64Body(InputStream source) {
35 public InputStream getInputStream() throws MessagingException {
FixedLengthInputStream.java 19 import java.io.InputStream;
22 * A filtering InputStream that stops allowing reads after the given length has been read. This is
26 public class FixedLengthInputStream extends InputStream {
27 private final InputStream in;
31 public FixedLengthInputStream(InputStream in, int length) {
PeekableInputStream.java 20 import java.io.InputStream;
23 * A filtering InputStream that allows single byte "peeks" without consuming the byte. The client of
27 public class PeekableInputStream extends InputStream {
28 private final InputStream in;
32 public PeekableInputStream(InputStream in) {
  /packages/apps/Email/provider_src/com/android/email/
FixedLengthInputStream.java 20 import java.io.InputStream;
23 * A filtering InputStream that stops allowing reads after the given length has been read. This
27 public class FixedLengthInputStream extends InputStream {
28 private final InputStream mIn;
32 public FixedLengthInputStream(InputStream in, int length) {
PeekableInputStream.java 20 import java.io.InputStream;
23 * A filtering InputStream that allows single byte "peeks" without consuming the byte. The
27 public class PeekableInputStream extends InputStream {
28 private final InputStream mIn;
32 public PeekableInputStream(InputStream in) {
  /packages/apps/Launcher3/src/com/android/launcher3/util/
IOUtils.java 23 import java.io.InputStream;
34 try (InputStream in = new FileInputStream(file)) {
39 public static byte[] toByteArray(InputStream in) throws IOException {
45 public static long copy(InputStream from, OutputStream to) throws IOException {
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Base64Body.java 25 import java.io.InputStream;
29 private final InputStream mSource;
33 public Base64Body(InputStream source) {
38 public InputStream getInputStream() throws MessagingException {

Completed in 1079 milliseconds

1 2 34 5 6 7 8 91011>>