Searched
full:inputstream (Results
701 -
725 of
2007) sorted by null
<<21222324252627282930>>
/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/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/ |
ZipInputStreamTest.java | 25 import java.io.InputStream; 47 InputStream is = Support_Resources.getStream("hyts_ZipFile.zip"); 78 * @tests java.util.zip.ZipInputStream#ZipInputStream(java.io.InputStream) 162 InputStream in = new FilterInputStream(Support_Resources.getStream("hyts_ZipFile.zip")) {
|
/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/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
PushbackInputStreamTest.java | 53 * @tests java.io.PushbackInputStream#PushbackInputStream(java.io.InputStream) 75 * @tests java.io.PushbackInputStream#PushbackInputStream(java.io.InputStream, 79 // Test for method java.io.PushbackInputStream(java.io.InputStream, int) 94 * @tests java.io.PushBackInputStream(InputStream, int)
|
/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 | 50 { "InputStream", RegisterInputStream },
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
HTMLScriptRunnerHost.h | 47 virtual HTMLInputStream& inputStream() = 0;
|
/external/jmonkeyengine/engine/src/core/com/jme3/asset/ |
package.html | 27 an asset name (a string) into an {@link java.io.InputStream} which is
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/ |
RawHeightMap.java | 65 private InputStream stream;
104 public RawHeightMap(InputStream stream, int size, int format, boolean swapxy) throws Exception {
123 private void setup(InputStream stream, int size, int format, boolean swapxy) throws Exception {
242 public void setHeightStream(InputStream stream) throws Exception {
|
/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 | 160 SkFILEStream inputStream; 161 inputStream.setPath(inputPath.c_str()); 162 if (!inputStream.isValid()) { 167 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/graphics/java/android/renderscript/ |
FileA3D.java | 21 import java.io.InputStream; 170 InputStream mInputStream; 172 FileA3D(int id, RenderScript rs, InputStream stream) { 291 InputStream is = null;
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/ |
CustomBar.java | 49 import java.io.InputStream; 90 private InputStream getIcon(String iconName, Density[] densityInOut, LayoutDirection direction, 103 InputStream stream = getClass().getResourceAsStream(pathOut[0]); 136 InputStream stream = getIcon(iconName, densityInOut, dir, pathOut,
|
/libcore/luni/src/test/java/libcore/java/io/ |
OldInputStreamTest.java | 21 import java.io.InputStream; 29 private InputStream is; 31 class MockInputStream extends java.io.InputStream { 54 InputStream myIS = new MockInputStream();
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
ZipInputStreamTest.java | 22 import java.io.InputStream;
|
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
Base64InputStream.java | 35 import java.io.InputStream;
43 public class Base64InputStream extends InputStream {
44 private final InputStream s;
54 public Base64InputStream(InputStream s) {
|
Completed in 2699 milliseconds
<<21222324252627282930>>