HomeSort by relevance Sort by last modified time
    Searched full:inputstream (Results 801 - 825 of 2647) sorted by null

<<31323334353637383940>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
CreateFileChange.java 42 import java.io.InputStream;
84 InputStream is = null;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/format/
GLAPISpec.java 21 import java.io.InputStream;
68 private static Map<String, GLAPISpec> parseApiSpecs(InputStream specFile) {
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCResultSet.java 534 public java.io.InputStream getUnicodeStream(int columnIndex)
540 public java.io.InputStream getUnicodeStream(String columnName)
546 public java.io.InputStream getAsciiStream(String columnName)
552 public java.io.InputStream getAsciiStream(int columnIndex)
580 public java.io.InputStream getBinaryStream(int columnIndex)
589 public java.io.InputStream getBinaryStream(String columnName)
1118 public void updateAsciiStream(int colIndex, java.io.InputStream in, int s)
1123 public void updateBinaryStream(int colIndex, java.io.InputStream in, int s)
1216 public void updateAsciiStream(String colName, java.io.InputStream in,
1223 public void updateBinaryStream(String colName, java.io.InputStream in
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Pictures.java 75 InputStream is = new ByteArrayInputStream(os.toByteArray());
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
DictionaryDatabase.java 33 import java.io.InputStream;
205 InputStream inputStream = resources.openRawResource(R.raw.definitions);
206 BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream));
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
SimpleWikiHelper.java 38 import java.io.InputStream;
191 InputStream inputStream = entity.getContent();
197 while ((readBytes = inputStream.read(sBuffer)) != -1) {
  /development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/
SimpleWikiHelper.java 38 import java.io.InputStream;
198 InputStream inputStream = entity.getContent();
204 while ((readBytes = inputStream.read(sBuffer)) != -1) {
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRDebugTreeParser.h 47 - (void) recoverFromMismatchedToken:(id<ANTLRIntStream>)inputStream
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
CipherInputStreamTest.java 51 * CipherInputStream(InputStream is) method testing. Tests that
73 * (related to the InputStream) and that it returns -1 at the end of stream.
93 * value (related to the InputStream) and that it returns -1 at the end of
130 * returns the correct value (related to the InputStream), that it discards
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Exec.java 23 import java.io.InputStream;
68 InputStream in = proc.getInputStream();
119 InputStream in = proc.getInputStream();
238 InputStream err;
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLStreamedInputTest.java 32 * SSLStreamedInput(InputStream in) method testing.
  /external/chromium_org/android_webview/native/
android_webview_jni_registrar.cc 59 { "InputStream", RegisterInputStream },
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
byte_array.h 130 // Copies from the InputStream into this ByteArray.
133 virtual bool CopyFrom(InputStream* is, int32_t length);
135 // Copies everything from the InputStream into this ByteArray.
137 virtual bool CopyFrom(InputStream* is);
  /external/chromium_org/third_party/skia/tools/
render_pdfs_main.cpp 154 SkFILEStream inputStream;
155 inputStream.setPath(inputPath.c_str());
156 if (!inputStream.isValid()) {
161 SkAutoTUnref<SkPicture> picture(SkPicture::CreateFromStream(&inputStream));
  /external/glide/library/src/main/java/com/bumptech/glide/
BitmapRequestBuilder.java 29 import java.io.InputStream;
44 private ResourceDecoder<InputStream, Bitmap> imageDecoder;
125 ResourceDecoder<InputStream, Bitmap> cacheDecoder) {
136 public BitmapRequestBuilder<ModelType, TranscodeType> imageDecoder(ResourceDecoder<InputStream, Bitmap> decoder) {
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
MockResponse.java 22 import java.io.InputStream;
39 private InputStream bodyStream;
140 InputStream getBodyStream() {
151 public MockResponse setBody(InputStream bodyStream, long bodyLength) {
  /external/proguard/src/proguard/io/
RenamedDataEntry.java 59 public InputStream getInputStream() throws IOException
ZipDataEntry.java 73 public InputStream getInputStream() throws IOException
  /external/protobuf/java/src/main/java/com/google/protobuf/
CodedInputStream.java 34 import java.io.InputStream;
52 * Create a new CodedInputStream wrapping the given InputStream.
54 public static CodedInputStream newInstance(final InputStream input) {
354 * stream in a CodedInputStream and used {@link #readRawVarint32(InputStream)}
358 static int readRawVarint32(final InputStream input) throws IOException {
367 * Like {@link #readRawVarint32(InputStream)}, but expects that the caller
372 final InputStream input) throws IOException {
483 private final InputStream input;
517 private CodedInputStream(final InputStream input) {
548 * size limits only apply when reading from an {@code InputStream}, no
    [all...]
  /external/sfntly/cpp/src/sfntly/data/
byte_array.h 130 // Copies from the InputStream into this ByteArray.
133 virtual bool CopyFrom(InputStream* is, int32_t length);
135 // Copies everything from the InputStream into this ByteArray.
137 virtual bool CopyFrom(InputStream* is);
  /external/skia/tools/
render_pdfs_main.cpp 154 SkFILEStream inputStream;
155 inputStream.setPath(inputPath.c_str());
156 if (!inputStream.isValid()) {
161 SkAutoTUnref<SkPicture> picture(SkPicture::CreateFromStream(&inputStream));
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
ByteBuffer.java 16 import java.io.InputStream;
72 * @param in an InputStream
75 public ByteBuffer(InputStream in) throws IOException
118 public InputStream getByteStream()
  /frameworks/base/core/java/android/webkit/
WebResourceRequest.java 21 import java.io.InputStream;
  /frameworks/base/graphics/java/android/graphics/
Picture.java 19 import java.io.InputStream;
152 public static Picture createFromStream(InputStream stream) {
166 * @see #createFromStream(java.io.InputStream)
184 private static native long nativeCreateFromStream(InputStream stream, byte[] storage);
  /frameworks/base/rs/java/android/renderscript/
FileA3D.java 20 import java.io.InputStream;
165 InputStream mInputStream;
167 FileA3D(long id, RenderScript rs, InputStream stream) {
286 InputStream is = null;

Completed in 1174 milliseconds

<<31323334353637383940>>