Home
last modified time | relevance | path

Searched refs:CharSourceFactory (Results 1 – 4 of 4) sorted by relevance

/external/guava/guava-tests/test/com/google/common/io/
DSourceSinkFactories.java23 import static com.google.common.io.SourceSinkFactory.CharSourceFactory;
53 public static CharSourceFactory stringCharSourceFactory() { in stringCharSourceFactory()
65 public static CharSourceFactory emptyCharSourceFactory() { in emptyCharSourceFactory()
82 public static CharSourceFactory fileCharSourceFactory() { in fileCharSourceFactory()
99 public static CharSourceFactory urlCharSourceFactory() { in urlCharSourceFactory()
103 public static CharSourceFactory asCharSourceFactory(final ByteSourceFactory factory) { in asCharSourceFactory()
105 return new CharSourceFactory() { in asCharSourceFactory()
176 private static class StringSourceFactory implements CharSourceFactory {
210 private static class EmptyCharSourceFactory implements CharSourceFactory {
338 private static class FileCharSourceFactory extends FileFactory implements CharSourceFactory {
DCharSourceTester.java19 import static com.google.common.io.SourceSinkFactory.CharSourceFactory;
41 public class CharSourceTester extends SourceSinkTester<CharSource, String, CharSourceFactory> {
46 static TestSuite tests(String name, CharSourceFactory factory) { in tests()
54 static TestSuite suiteForString(CharSourceFactory factory, String string, in suiteForString()
67 public CharSourceTester(CharSourceFactory factory, String string, in CharSourceTester()
DByteSourceTester.java20 import static com.google.common.io.SourceSinkFactory.CharSourceFactory;
68 CharSourceFactory charSourceFactory = SourceSinkFactories.asCharSourceFactory(factory); in suiteForString()
DSourceSinkFactory.java93 public interface CharSourceFactory extends SourceFactory<CharSource, String> { interface