HomeSort by relevance Sort by last modified time
    Searched full:inputstream (Results 276 - 300 of 2007) sorted by null

<<11121314151617181920>>

  /frameworks/opt/vcard/java/com/android/vcard/
VCardParser_V40.java 21 import java.io.InputStream;
74 public void parse(InputStream is) throws IOException, VCardException {
79 public void parseOne(InputStream is) throws IOException, VCardException {
  /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)
  /libcore/benchmarks/src/benchmarks/
BufferedZipFileBenchmark.java 24 import java.io.InputStream;
58 InputStream in = zipFile.getInputStream(entry);
71 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/util/zip/
GZIPOutputStreamTest.java 22 import java.io.InputStream;
53 InputStream in = DeflaterOutputStreamTest.createInflaterStream(GZIPOutputStream.class, true);
61 InputStream in = DeflaterOutputStreamTest.createInflaterStream(GZIPOutputStream.class, false);
  /libcore/luni/src/test/java/tests/api/java/lang/
Process2Test.java 25 import java.io.InputStream;
52 InputStream is = process.getErrorStream();
71 InputStream is = erProcess.getErrorStream();
  /libcore/luni/src/test/java/tests/api/java/util/
PropertyResourceBundleTest.java 30 * java.util.PropertyResourceBundle#PropertyResourceBundle(java.io.InputStream)
33 // Test for method java.util.PropertyResourceBundle(java.io.InputStream)
82 java.io.InputStream propertiesStream = new java.io.ByteArrayInputStream(
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
CertificateStub.java 26 import java.io.InputStream;
53 * @see java.security.Certificate#decode(java.io.InputStream)
55 public void decode(InputStream stream) throws KeyException,
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
LoggingInputStream.java 24 import java.io.InputStream;
37 public LoggingInputStream(InputStream in) {
41 public LoggingInputStream(InputStream in, String tag, boolean dumpEmptyLines) {
  /packages/apps/Gallery/src/com/android/camera/gallery/
VideoObject.java 30 import java.io.InputStream;
72 public InputStream fullSizeImageData() {
74 InputStream input = mContentResolver.openInputStream(
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
DownloadUtils.java 26 import java.io.InputStream;
46 public static void dump(JobContext jc, InputStream is, OutputStream os)
67 InputStream input = null;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
TempFile.java 23 import java.io.InputStream;
31 * Gets an <code>InputStream</code> to read bytes from this temporary file.
41 InputStream getInputStream() throws IOException;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/binaryxml/
BinaryXMLDescriber.java 24 import java.io.InputStream;
50 * InputStream, org.eclipse.core.runtime.content.IContentDescription)
53 public int describe(InputStream contents, IContentDescription description) throws IOException {
  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
LiteralByteStringTest.java 37 import java.io.InputStream;
338 InputStream input = stringUnderTest.newInput();
339 assertEquals("InputStream.available() returns correct value",
346 assertEquals("InputStream.available() returns correct value",
348 assertTrue(classUnderTest + " must give the same bytes from the InputStream", stillEqual);
349 assertEquals(classUnderTest + " InputStream must now be exhausted", -1, input.read());
353 InputStream input = stringUnderTest.newInput();
357 assertEquals("InputStream.skip()", skipped1, nearEndIndex);
358 assertEquals("InputStream.available()",
360 assertTrue("InputStream.mark() is available", input.markSupported())
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H264TrackImpl.java 14 import java.io.InputStream;
58 public H264TrackImpl(InputStream inputStream, String lang, long timescale) throws IOException {
67 parse(inputStream);
70 public H264TrackImpl(InputStream inputStream, String lang) throws IOException {
72 parse(inputStream);
75 public H264TrackImpl(InputStream inputStream) throws IOException {
76 parse(inputStream);
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
BitmapDrawableTest.java 44 import java.io.InputStream;
89 new BitmapDrawable(mContext.getResources(), (InputStream) null);
91 new BitmapDrawable((InputStream) null);
95 InputStream source = mContext.getResources().openRawResource(R.raw.testimage);
111 InputStream source = mContext.getResources().openRawResource(R.raw.testimage);
124 InputStream source = mContext.getResources().openRawResource(R.raw.testimage);
137 InputStream source = mContext.getResources().openRawResource(R.raw.testimage);
151 InputStream source = mContext.getResources().openRawResource(R.raw.testimage);
191 InputStream source = mContext.getResources().openRawResource(R.raw.testimage);
210 InputStream source = mContext.getResources().openRawResource(R.raw.testimage)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/content/
FileProvider.java 22 import java.io.InputStream;
41 implements PipeDataWriter<InputStream> {
117 InputStream is = getContext().getAssets().open(uri.getPath());
130 Bundle opts, InputStream args) {
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRDebugTreeParser.m 111 - (void) recoverFromMismatchedToken:(id<ANTLRIntStream>)inputStream
117 [self recoverFromMismatchedToken:inputStream exception:e follow:follow];
120 - (void) recoverFromMismatchedSet:(id<ANTLRIntStream>)inputStream
125 [super recoverFromMismatchedSet:inputStream];
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertificateFactory1Test.java 26 import java.io.InputStream;
346 * Test for <code>generateCertificate(InputStream inStream)</code>
347 * <code>generateCertificates(InputStream inStream)</code>
348 * <code>generateCRL(InputStream inStream)</code>
349 * <code>generateCRLs(InputStream inStream)</code>
363 InputStream is = new ByteArrayInputStream(bb);
426 * Test for <code> generateCertificate(InputStream inStream) </code><code>
427 * generateCertificates(InputStream inStream) </code><code>
428 * generateCRL(InputStream inStream) </code><code>
429 * generateCRLs(InputStream inStream) </code
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_GetLocal.java 25 import java.io.InputStream;
42 InputStream in = Support_GetLocal.class.getResourceAsStream(url);
62 InputStream in = new URL(url).openStream();
80 InputStream in = new URL(url).openStream();
  /external/apache-http/src/org/apache/http/conn/
BasicEofSensorWatcher.java 33 import java.io.InputStream;
78 public boolean eofDetected(InputStream wrapped)
96 public boolean streamClosed(InputStream wrapped)
114 public boolean streamAbort(InputStream wrapped)
  /external/apache-xml/src/main/java/org/apache/xalan/xslt/
SecuritySupport12.java 27 import java.io.InputStream;
111 InputStream getResourceAsStream(final ClassLoader cl,
114 return (InputStream)
117 InputStream ris;
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
SecuritySupport12.java 27 import java.io.InputStream;
111 InputStream getResourceAsStream(final ClassLoader cl,
114 return (InputStream)
117 InputStream ris;
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
SecuritySupport12.java 27 import java.io.InputStream;
111 InputStream getResourceAsStream(final ClassLoader cl,
114 return (InputStream)
117 InputStream ris;
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
SecuritySupport12.java 27 import java.io.InputStream;
108 InputStream getResourceAsStream(final ClassLoader cl,
111 return (InputStream)
114 InputStream ris;

Completed in 1007 milliseconds

<<11121314151617181920>>