Searched refs:openStream (Results 1 - 25 of 109) sorted by relevance

12345

/external/jarjar/src/main/com/tonicsystems/jarjar/util/
H A DClassPathEntry.java25 InputStream openStream() throws IOException; method in interface:ClassPathEntry
/external/guava/guava/src/com/google/common/io/
H A DByteSink.java70 public abstract OutputStream openStream() throws IOException; method in class:ByteSink
79 * {@link #openStream} instead. This method is scheduled for removal in Guava 18.0.
84 return openStream();
90 * delegate to {@link #openStream()} when the stream returned by that method does not benefit
100 OutputStream out = openStream();
116 OutputStream out = closer.register(openStream());
138 OutputStream out = closer.register(openStream());
162 public Writer openStream() throws IOException { method in class:ByteSink.AsCharSink
163 return new OutputStreamWriter(ByteSink.this.openStream(), charset);
H A DCharSink.java64 public abstract Writer openStream() throws IOException; method in class:CharSink
73 * {@link #openStream} instead. This method is scheduled for removal in Guava 18.0.
78 return openStream();
84 * to {@link #openStream()} when the stream returned by that method does not benefit from
94 Writer writer = openStream();
110 Writer out = closer.register(openStream());
168 Writer out = closer.register(openStream());
H A DByteSource.java84 public abstract InputStream openStream() throws IOException; method in class:ByteSource
92 * {@link InputSupplier} interface and should not be called directly. Use {@link #openStream}
98 return openStream();
104 * delegate to {@link #openStream()} when the stream returned by that method does not benefit
114 InputStream in = openStream();
140 InputStream in = closer.register(openStream());
167 InputStream in = closer.register(openStream());
177 InputStream in = closer.register(openStream());
234 InputStream in = closer.register(openStream());
254 InputStream in = closer.register(openStream());
434 public Reader openStream() throws IOException { method in class:ByteSource.AsCharSource
460 public InputStream openStream() throws IOException { method in class:ByteSource.SlicedByteSource
514 public InputStream openStream() { method in class:ByteSource.ByteArrayByteSource
598 public InputStream openStream() throws IOException { method in class:ByteSource.ConcatenatedByteSource
[all...]
H A DCharSource.java80 public abstract Reader openStream() throws IOException; method in class:CharSource
88 * {@link InputSupplier} interface and should not be called directly. Use {@link #openStream}
94 return openStream();
106 Reader reader = openStream();
124 Reader reader = closer.register(openStream());
144 Reader reader = closer.register(openStream());
145 Writer writer = closer.register(sink.openStream());
162 Reader reader = closer.register(openStream());
239 Reader reader = closer.register(openStream());
258 Reader reader = closer.register(openStream());
352 public Reader openStream() { method in class:CharSource.CharSequenceCharSource
444 public Reader openStream() throws IOException { method in class:CharSource.ConcatenatedCharSource
[all...]
H A DFileBackedOutputStream.java99 public InputStream openStream() throws IOException {
114 public InputStream openStream() throws IOException {
H A DMultiInputStream.java66 in = it.next().openStream();
H A DMultiReader.java48 current = it.next().openStream();
H A DResources.java75 * A byte source that reads from a URL using {@link URL#openStream()}.
86 public InputStream openStream() throws IOException { method in class:Resources.UrlByteSource
87 return url.openStream();
/external/guava/guava-tests/test/com/google/common/io/
H A DMultiReaderTest.java39 public Reader openStream() throws IOException {
43 return new FilterReader(source.openStream()) {
51 Reader joinedReader = CharSource.concat(reader, reader, reader).openStream();
59 Reader joinedReader = CharSource.concat(list).openStream();
71 Reader joinedReader = CharSource.concat(source, source).openStream();
81 public Reader openStream() {
91 CharSource.concat(newCharSource(begin), newCharSource(end)).openStream();
107 Reader joinedReader = CharSource.concat(list).openStream();
H A DTestCharSource.java54 public Reader openStream() throws IOException { method in class:TestCharSource
55 return new InputStreamReader(byteSource.openStream(), UTF_8);
H A DMultiInputStreamTest.java53 public InputStream openStream() throws IOException {
57 return new FilterInputStream(source.openStream()) {
84 InputStream in = joined.openStream();
99 public InputStream openStream() {
117 public InputStream openStream() {
H A DTestCharSink.java59 public Writer openStream() throws IOException { method in class:TestCharSink
61 return new FilterWriter(new OutputStreamWriter(byteSink.openStream(), UTF_8)) {
H A DTestByteSink.java57 public OutputStream openStream() throws IOException { method in class:TestByteSink
H A DTestByteSource.java57 public InputStream openStream() throws IOException { method in class:TestByteSource
/external/proguard/src/proguard/
H A DFileWordReader.java51 super(new LineNumberReader(new BufferedReader(new InputStreamReader(url.openStream()))),
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
H A DAssetInfo.java75 public abstract InputStream openStream(); method in class:AssetInfo
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DDepFind.java42 InputStream in = entry.openStream();
61 InputStream in = entry.openStream();
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_GetLocal.java62 InputStream in = new URL(url).openStream();
80 InputStream in = new URL(url).openStream();
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
H A DFileLocator.java71 public InputStream openStream() { method in class:FileLocator.AssetInfoFile
H A DUrlAssetInfo.java48 public InputStream openStream() { method in class:UrlAssetInfo
H A DZipLocator.java61 public InputStream openStream(){ method in class:ZipLocator.JarAssetInfo
H A DHttpZipLocator.java322 private InputStream openStream(ZipEntry2 entry) throws IOException{ method in class:HttpZipLocator
330 public InputStream openStream(String name) throws IOException{ method in class:HttpZipLocator
335 return openStream(entry);
356 public InputStream openStream() {
358 return HttpZipLocator.this.openStream(entry);
/external/skia/include/ports/
H A DSkFontConfigInterface.h95 virtual SkStreamAsset* openStream(const FontIdentity&) = 0;
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/shader/plugins/
H A DGLSLLoader.java202 return info.openStream();
206 DependencyNode rootNode = loadNode(info.openStream(), "[main]");

Completed in 402 milliseconds

12345