/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/ |
AACTrackImpl.java | 28 import java.io.InputStream; 76 private BufferedInputStream inputStream; 83 public AACTrackImpl(InputStream inputStream, String lang) throws IOException { 85 parse(inputStream); 88 public AACTrackImpl(InputStream inputStream) throws IOException { 89 parse(inputStream); 92 private void parse(InputStream inputStream) throws IOException [all...] |
/external/chromium_org/android_webview/native/ |
input_stream_impl.h | 18 class InputStreamImpl : public InputStream { 24 const InputStream* input_stream); 26 // |stream| should be an instance of the InputStream Java class. 34 // InputStream implementation.
|
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/ |
DiskCache.java | 5 import java.io.InputStream; 27 * Get an InputStream for the value at the given key. 30 * @return An InputStream representing the data at key at the time get is called 32 public InputStream get(Key key);
|
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/ |
ImageVideoBitmapDecoder.java | 11 import java.io.InputStream; 15 private final ResourceDecoder<InputStream, Bitmap> streamDecoder; 18 public ImageVideoBitmapDecoder(ResourceDecoder<InputStream, Bitmap> streamDecoder, 27 InputStream is = source.getStream();
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ |
RawResourceLoaderTest.java | 11 import java.io.InputStream; 33 InputStream is = rawResourceLoader.getValue(R.raw.raw_resource); 39 InputStream is = rawResourceLoader.getValue(R.raw.raw_no_ext); 43 private static String readString(InputStream is) throws IOException {
|
/frameworks/base/core/java/android/content/ |
ContentInsertHandler.java | 24 import java.io.InputStream; 32 * insert data from InputStream to ContentResolver 34 * @param in InputStream 38 public void insert(ContentResolver contentResolver, InputStream in)
|
/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) {
|
/external/glide/library/src/main/java/com/bumptech/glide/ |
GifTypeRequest.java | 12 import java.io.InputStream; 17 private final ModelLoader<A, InputStream> streamModelLoader; 22 private static <A, R> FixedLoadProvider<A, InputStream, GifData, R> buildProvider(Glide glide, 23 ModelLoader<A, InputStream> streamModelLoader, Class<R> transcodeClass, 29 new FixedLoadProvider<A, InputStream, GifData, R>(streamModelLoader, transcoder, 30 glide.buildDataProvider(InputStream.class, GifData.class)); 34 GifTypeRequest(Context context, A model, ModelLoader<A, InputStream> streamModelLoader, Glide glide,
|
/external/glide/library/src/main/java/com/bumptech/glide/load/model/ |
ImageVideoModelLoader.java | 8 import java.io.InputStream; 13 private final ModelLoader<A, InputStream> streamLoader; 16 public ImageVideoModelLoader(ModelLoader<A, InputStream> streamLoader, 27 DataFetcher<InputStream> streamFetcher = null; 39 private final DataFetcher<InputStream> streamFetcher; 42 public ImageVideoFetcher(DataFetcher<InputStream> streamFetcher, 49 InputStream is = null;
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
AssetManagerTest.java | 13 import java.io.InputStream; 75 InputStream inputStream; 78 inputStream = assetManager.open(testPath); 79 fileContents = Strings.fromStream(inputStream); 83 inputStream = assetManager.open(testPath); 84 fileContents = Strings.fromStream(inputStream);
|
/external/smack/src/org/jivesoftware/smack/compression/ |
JzlibInputOutputStream.java | 18 import java.io.InputStream; 55 public InputStream getInputStream(InputStream inputStream) throws SecurityException, NoSuchMethodException, 57 Constructor<?> constructor = ziClass.getConstructor(InputStream.class); 58 Object in = constructor.newInstance(inputStream); 62 return (InputStream) in;
|
/libcore/luni/src/main/java/javax/xml/transform/stream/ |
StreamSource.java | 23 import java.io.InputStream; 31 * <p><em>Note:</em> Due to their internal use of either a {@link Reader} or {@link InputStream} instance, 49 * {@link #setInputStream(java.io.InputStream inputStream)} or 52 * create an empty source {@link java.io.InputStream} using 53 * {@link java.io.InputStream#InputStream() new InputStream()}.</p> 69 * @param inputStream A valid InputStream reference to an XML stream [all...] |
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/ |
EOLConvertingInputStream.java | 23 import java.io.InputStream; 27 * InputStream which converts <code>\r</code> 34 public class EOLConvertingInputStream extends InputStream { 57 * instance converting bytes in the given <code>InputStream</code>. 60 * @param in the <code>InputStream</code> to read from. 62 public EOLConvertingInputStream(InputStream _in) { 69 * instance converting bytes in the given <code>InputStream</code>. 71 * @param _in the <code>InputStream</code> to read from. 75 public EOLConvertingInputStream(InputStream _in, int _size, Callback _callback) { 111 * @see java.io.InputStream#read( [all...] |
AbstractContentHandler.java | 23 import java.io.InputStream; 49 * @see org.apache.james.mime4j.ContentHandler#body(org.apache.james.mime4j.BodyDescriptor, java.io.InputStream) 51 public void body(BodyDescriptor bd, InputStream is) throws IOException { 73 * @see org.apache.james.mime4j.ContentHandler#epilogue(java.io.InputStream) 75 public void epilogue(InputStream is) throws IOException { 85 * @see org.apache.james.mime4j.ContentHandler#preamble(java.io.InputStream) 87 public void preamble(InputStream is) throws IOException { 109 * @see org.apache.james.mime4j.ContentHandler#raw(java.io.InputStream) 111 public void raw(InputStream is) throws IOException {
|
RootInputStream.java | 23 import java.io.InputStream; 26 * <code>InputStream</code> used by the parser to wrap the original user 35 class RootInputStream extends InputStream { 36 private InputStream is = null; 46 public RootInputStream(InputStream is) { 61 * Truncates this <code>InputStream</code>. After this call any 71 * @see java.io.InputStream#read() 88 * @see java.io.InputStream#read(byte[], int, int) 106 * @see java.io.InputStream#read(byte[])
|
/libcore/luni/src/main/java/libcore/net/url/ |
FtpURLInputStream.java | 21 import java.io.InputStream; 26 * This class associates a given inputStream with a control socket. This ensures 29 class FtpURLInputStream extends InputStream { 31 private InputStream is; // Actual input stream 35 public FtpURLInputStream(InputStream is, Socket controlSocket) {
|
/packages/apps/Email/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/UnifiedEmail/src/org/apache/james/mime4j/util/ |
PartialInputStream.java | 23 import java.io.InputStream; 29 public PartialInputStream(InputStream inputStream, long offset, long length) throws IOException { 30 super(inputStream); 31 inputStream.skip(offset);
|
/libcore/luni/src/main/java/libcore/io/ |
Streams.java | 22 import java.io.InputStream; 35 * Implements InputStream.read(int) in terms of InputStream.read(byte[], int, int). 36 * InputStream assumes that you implement InputStream.read(int) and provides default 39 public static int readSingleByte(InputStream in) throws IOException { 59 public static void readFully(InputStream in, byte[] dst) throws IOException { 69 public static void readFully(InputStream in, byte[] dst, int offset, int byteCount) throws IOException { 93 public static byte[] readFully(InputStream in) throws IOException { 104 public static byte[] readFullyNoClose(InputStream in) throws IOException [all...] |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
ANTLRInputStream.java | 32 /** A kind of ReaderStream that pulls from an InputStream. 39 public ANTLRInputStream(InputStream input) throws IOException { 43 public ANTLRInputStream(InputStream input, int size) throws IOException { 47 public ANTLRInputStream(InputStream input, String encoding) throws IOException { 51 public ANTLRInputStream(InputStream input, int size, String encoding) throws IOException { 55 public ANTLRInputStream(InputStream input,
|
/external/guava/guava/src/com/google/common/io/ |
MultiInputStream.java | 20 import java.io.InputStream; 24 * An {@link InputStream} that concatenates multiple substreams. At most 30 final class MultiInputStream extends InputStream { 32 private Iterator<? extends InputSupplier<? extends InputStream>> it; 33 private InputStream in; 41 Iterator<? extends InputSupplier<? extends InputStream>> it)
|
/libcore/luni/src/main/java/java/util/ |
PropertyResourceBundle.java | 21 import java.io.InputStream; 25 * {@code PropertyResourceBundle} loads resources from an {@code InputStream}. All resources are 39 * properties file from the specified {@code InputStream}. 42 * the {@code InputStream}. 45 * {@code InputStream}. 47 public PropertyResourceBundle(InputStream stream) throws IOException {
|
/packages/apps/Gallery2/jni_jpegstream/src/ |
jpeg_reader.h | 27 * java InputStream object. Read calls return data from the 28 * InputStream that has been decompressed. 36 * Call setup with a valid InputStream reference and pixel format. 41 * from the InputStream*** 49 * Decompresses bytes from the InputStream and writes at most count 53 * ***This method will result in bytes being read from the InputStream***
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/ |
ClassLoaderObjectInputStream.java | 20 import java.io.InputStream; 44 * @param inputStream the InputStream to work on 49 ClassLoader classLoader, InputStream inputStream) 51 super(inputStream);
|