OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InputStream
(Results
326 - 350
of
3051
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/tools/tradefederation/core/src/com/android/tradefed/result/
FileInputStreamSource.java
23
import java.io.
InputStream
;
56
public synchronized
InputStream
createInputStream() {
/tools/tradefederation/core/src/com/android/tradefed/util/
GCSFileDownloader.java
21
import java.io.
InputStream
;
36
* @return {@link
InputStream
} with the file content.
38
public
InputStream
downloadFile(String bucketName, String filename) throws IOException {
FixedByteArrayOutputStream.java
22
import java.io.
InputStream
;
53
* Gets a
InputStream
for reading collected output.
57
public
InputStream
getData() {
59
InputStream
s1 = new ByteArrayInputStream(mBuffer, mWritePos,
61
InputStream
s2 = new ByteArrayInputStream(mBuffer, 0, mWritePos);
/tools/tradefederation/core/tests/src/com/android/tradefed/util/
SizeLimitedOutputStreamTest.java
23
import java.io.
InputStream
;
46
InputStream
readStream = outStream.getData();
TestLoaderTest.java
23
import java.io.
InputStream
;
41
InputStream
testJarStream = getClass().getResourceAsStream("/util/tests.jar");
/external/guava/guava/src/com/google/common/io/
ByteSource.java
33
import java.io.
InputStream
;
42
* A readable source of bytes, such as a file. Unlike an {@link
InputStream
}, a
44
* Instead, it is an immutable <i>supplier</i> of {@code
InputStream
} instances.
77
* Opens a new {@link
InputStream
} for reading from this source. This method should return a new,
84
public abstract
InputStream
openStream() throws IOException;
87
* Opens a new buffered {@link
InputStream
} for reading from this source. The returned stream is
98
public
InputStream
openBufferedStream() throws IOException {
99
InputStream
in = openStream();
125
InputStream
in = closer.register(openStream());
136
* operation that will open a stream, read (or {@link
InputStream
#skip(long) skip}, if possible
[
all
...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
IToken.cs
90
ICharStream
InputStream
{
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
IToken.cs
100
ICharStream
InputStream
/external/apache-http/src/org/apache/http/conn/
EofSensorInputStream.java
33
import java.io.
InputStream
;
70
public class EofSensorInputStream extends
InputStream
78
protected
InputStream
wrappedStream;
108
public EofSensorInputStream(final
InputStream
in,
138
// non-javadoc, see base class
InputStream
157
// non-javadoc, see base class
InputStream
176
// non-javadoc, see base class
InputStream
194
// non-javadoc, see base class
InputStream
213
// non-javadoc, see base class
InputStream
/external/brotli/java/org/brotli/dec/
BrotliInputStream.java
10
import java.io.
InputStream
;
13
* {@link
InputStream
} decorator that decompresses brotli data.
17
public class BrotliInputStream extends
InputStream
{
42
* Creates a {@link
InputStream
} wrapper that decompresses brotli data.
52
public BrotliInputStream(
InputStream
source) throws IOException {
57
* Creates a {@link
InputStream
} wrapper that decompresses brotli data.
69
public BrotliInputStream(
InputStream
source, int byteReadBufferSize) throws IOException {
/external/brotli/java/org/brotli/wrapper/dec/
BrotliDecoderChannelTest.java
15
import java.io.
InputStream
;
34
static
InputStream
getBundle() throws IOException {
41
InputStream
bundle = getBundle();
68
InputStream
bundle = getBundle();
BrotliInputStream.java
10
import java.io.
InputStream
;
14
*
InputStream
that wraps native brotli decoder.
16
public class BrotliInputStream extends
InputStream
{
28
public BrotliInputStream(
InputStream
source, int bufferSize)
33
public BrotliInputStream(
InputStream
source) throws IOException {
DecoderTest.java
15
import java.io.
InputStream
;
32
static
InputStream
getBundle() throws IOException {
39
InputStream
bundle = getBundle();
66
InputStream
bundle = getBundle();
/external/jacoco/org.jacoco.agent.test/src/org/jacoco/agent/
AgentJarTest.java
20
import java.io.
InputStream
;
44
final
InputStream
in = AgentJar.getResource().openStream();
50
final
InputStream
in = AgentJar.getResourceAsStream();
76
private void assertAgentContents(
InputStream
in) throws IOException {
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/
TargetLoader.java
16
import java.io.
InputStream
;
50
public static
InputStream
getClassData(Class<?> clazz) {
54
public static
InputStream
getClassData(ClassLoader loader, String name) {
68
private static byte[] readBytes(
InputStream
in) throws IOException {
/external/lzma/Java/Tukaani/src/org/tukaani/xz/
SimpleInputStream.java
12
import java.io.
InputStream
;
16
class SimpleInputStream extends
InputStream
{
19
private
InputStream
in;
36
SimpleInputStream(
InputStream
in, SimpleFilter simpleFilter) {
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue207/
OctalNumberTest.java
21
import java.io.
InputStream
;
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue68/
NonAsciiCharacterTest.java
21
import java.io.
InputStream
;
48
InputStream
input = new FileInputStream("src/test/resources/issues/issue68.txt");
61
InputStream
input = new FileInputStream("src/test/resources/issues/issue68.txt");
67
InputStream
input;
/frameworks/base/core/java/android/webkit/
CacheManager.java
23
import java.io.
InputStream
;
67
InputStream
inStream;
185
public
InputStream
getInputStream() {
207
public void setInputStream(
InputStream
stream) {
/frameworks/base/core/tests/coretests/src/android/content/
MemoryFileProviderTest.java
25
import java.io.
InputStream
;
40
InputStream
in = resolver.openInputStream(uri);
57
InputStream
in = resolver.openInputStream(uri);
73
InputStream
in = resolver.openInputStream(uri);
/frameworks/base/media/java/android/media/
ResampleInputStream.java
19
import java.io.
InputStream
;
27
public final class ResampleInputStream extends
InputStream
36
private
InputStream
mInputStream;
54
* @param
inputStream
InputStream
containing 16 bit PCM.
59
public ResampleInputStream(
InputStream
inputStream
, int rateIn, int rateOut) {
65
mInputStream =
inputStream
;
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/internal/net/www/protocol/file/
FileURLConnectionTest.java
23
import java.io.
InputStream
;
41
InputStream
is = null;
/libcore/luni/src/test/etc/loading-test-jar/
TestMethods.java
22
import java.io.
InputStream
;
66
public static byte[] readFully(
InputStream
in) throws IOException {
128
InputStream
in = cl.getResourceAsStream("test/Resource1.txt");
184
InputStream
in = cl.getResourceAsStream("test2/Resource2.txt");
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/internet/
BinaryTempFileBody.java
28
import java.io.
InputStream
;
35
* writeTo one time. After writeTo is called, or the
InputStream
returned from getInputStream is
58
public
InputStream
getInputStream() throws MessagingException {
68
InputStream
in = getInputStream();
77
public BinaryTempFileBodyInputStream(
InputStream
in) {
/cts/tests/tests/content/src/android/content/res/cts/
RawResourceTest.java
25
import java.io.
InputStream
;
38
final
InputStream
is = mResources.openRawResource(R.raw.text);
42
static void verifyTextAsset(final
InputStream
is) throws IOException {
Completed in 1784 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>