OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:inputstream
(Results
326 - 350
of
2647
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/frameworks/base/docs/html/sdk/api_diff/9/changes/
java.sql.ResultSet.html
171
<A NAME="java.sql.ResultSet.updateAsciiStream_added(int, java.io.
InputStream
)"></A>
172
<nobr><code>void</code> <A HREF="../../../../reference/java/sql/ResultSet.html#updateAsciiStream(int, java.io.
InputStream
)" target="_top"><code>updateAsciiStream</code></A>(<code>int,</nobr>
InputStream
<nobr><nobr></code>)</nobr>
178
<A NAME="java.sql.ResultSet.updateAsciiStream_added(int, java.io.
InputStream
, long)"></A>
179
<nobr><code>void</code> <A HREF="../../../../reference/java/sql/ResultSet.html#updateAsciiStream(int, java.io.
InputStream
, long)" target="_top"><code>updateAsciiStream</code></A>(<code>int,</nobr>
InputStream
<nobr>,</nobr> long<nobr><nobr></code>)</nobr>
185
<A NAME="java.sql.ResultSet.updateAsciiStream_added(java.lang.String, java.io.
InputStream
)"></A>
186
<nobr><code>void</code> <A HREF="../../../../reference/java/sql/ResultSet.html#updateAsciiStream(java.lang.String, java.io.
InputStream
)" target="_top"><code>updateAsciiStream</code></A>(<code>String,</nobr>
InputStream
<nobr><nobr></code>)</nobr>
192
<A NAME="java.sql.ResultSet.updateAsciiStream_added(java.lang.String, java.io.
InputStream
, long)"></A
[
all
...]
/libcore/luni/src/main/java/java/util/zip/
GZIPInputStream.java
22
import java.io.
InputStream
;
39
*
InputStream
is = ...
83
* the {@code
InputStream
} to read data from.
87
public GZIPInputStream(
InputStream
is) throws IOException {
96
* the {@code
InputStream
} to read data from.
102
public GZIPInputStream(
InputStream
is, int size) throws IOException {
207
private static byte[] readHeader(
InputStream
in) throws IOException {
213
private static void parseGzipHeader(
InputStream
in, byte[] header,
272
private static void readZeroTerminated(
InputStream
in, CRC32 crc, boolean hcrc)
InflaterInputStream.java
23
import java.io.
InputStream
;
69
*
InputStream
} from which the compressed data is to be read from. Default
74
* the {@code
InputStream
} to read data from.
76
public InflaterInputStream(
InputStream
is) {
85
* the {@code
InputStream
} to read data from.
89
public InflaterInputStream(
InputStream
is, Inflater inflater) {
98
* the {@code
InputStream
} to read data from.
104
public InflaterInputStream(
InputStream
is, Inflater inflater, int bufferSize) {
222
* {@link
InputStream
#available()}, and violates the <a
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
SwappedDataInputStream.java
22
import java.io.
InputStream
;
43
* @param input
InputStream
to read from
45
public SwappedDataInputStream(
InputStream
input )
87
* Delegates to {@link EndianUtils#readSwappedDouble(
InputStream
)}.
99
* Delegates to {@link EndianUtils#readSwappedFloat(
InputStream
)}.
153
* Delegates to {@link EndianUtils#readSwappedInteger(
InputStream
)}.
178
* Delegates to {@link EndianUtils#readSwappedLong(
InputStream
)}.
190
* Delegates to {@link EndianUtils#readSwappedShort(
InputStream
)}.
214
* Delegates to {@link EndianUtils#readSwappedUnsignedShort(
InputStream
)}.
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-artifactcomparator/0.20.0/
tycho-artifactcomparator-0.20.0.jar
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
ITestPlan.java
23
import java.io.
InputStream
;
35
* @param xmlStream the {@link
InputStream
} that contains the test plan xml.
37
public void parse(
InputStream
xmlStream) throws ParseException;
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
CertificateStub.java
25
import java.io.
InputStream
;
53
* @see java.security.Certificate#decode(java.io.
InputStream
)
55
public void decode(
InputStream
stream) throws KeyException,
/external/chromium_org/android_webview/native/
aw_web_resource_response_impl.cc
29
scoped_ptr<
InputStream
>
34
return scoped_ptr<
InputStream
>();
35
return make_scoped_ptr<
InputStream
>(new InputStreamImpl(jstream));
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
font_input_stream.cc
23
FontInputStream::FontInputStream(
InputStream
* is)
27
FontInputStream::FontInputStream(
InputStream
* is, size_t length)
32
// Do not close here, underlying
InputStream
will close themselves.
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
ResourceRunner.java
12
import java.io.
InputStream
;
30
private final ResourceDecoder<
InputStream
, Z> cacheDecoder;
40
ResourceDecoder<
InputStream
, Z> cacheDecoder, Transformation<Z> transformation,
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
Downsampler.java
13
import java.io.
InputStream
;
22
public abstract class Downsampler implements BitmapDecoder<
InputStream
> {
118
* Load the image for the given
InputStream
. If a recycled Bitmap whose dimensions exactly match those of the image
119
* for the given
InputStream
is available, the operation is much less expensive in terms of memory.
122
* given
InputStream
is provided.
124
* @param is An
InputStream
to the data for the image
128
* @return A new bitmap containing the image from the given
InputStream
, or recycle if recycle is not null
131
public Bitmap decode(
InputStream
is, BitmapPool pool, int outWidth, int outHeight, DecodeFormat decodeFormat) {
253
* @return An integer to pass in to {@link BitmapFactory#decodeStream(java.io.
InputStream
, android.graphics.Rect, android.graphics.BitmapFactory.Options)}
258
* A method for getting the dimensions of an image from the given
InputStream
[
all
...]
/external/guava/guava/src/com/google/common/io/
CountingInputStream.java
23
import java.io.
InputStream
;
26
* An {@link
InputStream
} that counts the number of bytes read.
42
public CountingInputStream(
InputStream
in) {
LimitInputStream.java
24
import java.io.
InputStream
;
27
* An
InputStream
that limits the number of bytes which can be read.
44
public LimitInputStream(
InputStream
in, long limit) {
/external/okhttp/mockwebserver/src/test/java/com/squareup/okhttp/mockwebserver/
MockWebServerTest.java
22
import java.io.
InputStream
;
75
InputStream
in = response.getBodyStream();
167
InputStream
in = connection.getInputStream();
186
InputStream
in = connection.getInputStream();
214
InputStream
in = connection.getInputStream();
227
InputStream
in = connection.getInputStream();
246
InputStream
in = urlConnection.getInputStream();
257
InputStream
in2 = urlConnection2.getInputStream();
281
InputStream
responseBody = new ByteArrayInputStream("ABC".getBytes("UTF-8"));
285
InputStream
in = server.getUrl("/").openConnection().getInputStream()
[
all
...]
/external/sfntly/cpp/src/sfntly/data/
font_input_stream.cc
23
FontInputStream::FontInputStream(
InputStream
* is)
27
FontInputStream::FontInputStream(
InputStream
* is, size_t length)
32
// Do not close here, underlying
InputStream
will close themselves.
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/
MemoryDataStore.java
5
import java.io.
InputStream
;
53
@Nonnull @Override public
InputStream
readAt(final int offset) {
54
return new
InputStream
() {
/frameworks/base/core/tests/coretests/src/android/content/
AssetTest.java
24
import java.io.
InputStream
;
35
public static void verifyTextAsset(
InputStream
is) throws IOException {
64
InputStream
is = mAssets.open("text.txt");
/frameworks/base/services/core/java/com/android/server/
RandomBlock.java
26
import java.io.
InputStream
;
43
InputStream
stream = null;
52
private static RandomBlock fromStream(
InputStream
in) throws IOException {
/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/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
Process2Test.java
25
import java.io.
InputStream
;
52
InputStream
is = process.getErrorStream();
71
InputStream
is = erProcess.getErrorStream();
/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/lang/
ProcessBuilderTest.java
21
import java.io.
InputStream
;
59
InputStream
in = process.getInputStream();
60
InputStream
err = process.getErrorStream();
/libcore/luni/src/test/java/libcore/java/util/zip/
GZIPOutputStreamTest.java
22
import java.io.
InputStream
;
50
InputStream
in = DeflaterOutputStreamTest.createInflaterStream(GZIPOutputStream.class, true);
58
InputStream
in = DeflaterOutputStreamTest.createInflaterStream(GZIPOutputStream.class, false);
Completed in 1003 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>