Searched defs:createSource (Results 1 - 2 of 2) sorted by relevance

/external/guava/guava-tests/test/com/google/common/io/
H A DSourceSinkFactory.java59 S createSource(T data) throws IOException; method in interface:SourceSinkFactory.SourceFactory
H A DSourceSinkFactories.java107 public CharSource createSource(String string) throws IOException {
108 return factory.createSource(string.getBytes(Charsets.UTF_8))
159 public ByteSource createSource(byte[] bytes) throws IOException {
160 return factory.createSource(bytes).slice(off, len);
179 public CharSource createSource(String data) throws IOException { method in class:SourceSinkFactories.StringSourceFactory
196 public ByteSource createSource(byte[] bytes) throws IOException { method in class:SourceSinkFactories.ByteArraySourceFactory
213 public CharSource createSource(String data) throws IOException { method in class:SourceSinkFactories.EmptyCharSourceFactory
230 public ByteSource createSource(byte[] bytes) throws IOException { method in class:SourceSinkFactories.EmptyByteSourceFactory
271 public ByteSource createSource(byte[] bytes) throws IOException { method in class:SourceSinkFactories.FileByteSourceFactory
341 public CharSource createSource(Strin method in class:SourceSinkFactories.FileCharSourceFactory
408 public ByteSource createSource(byte[] bytes) throws IOException { method in class:SourceSinkFactories.UrlByteSourceFactory
417 public CharSource createSource(String string) throws IOException { method in class:SourceSinkFactories.UrlCharSourceFactory
[all...]

Completed in 100 milliseconds