OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CharSourceFactory
(Results
1 - 4
of
4
) sorted by null
/external/guava/guava-tests/test/com/google/common/io/
SourceSinkFactory.java
93
public interface
CharSourceFactory
extends SourceFactory<CharSource, String> {
SourceSinkFactories.java
23
import static com.google.common.io.SourceSinkFactory.
CharSourceFactory
;
53
public static
CharSourceFactory
stringCharSourceFactory() {
65
public static
CharSourceFactory
emptyCharSourceFactory() {
82
public static
CharSourceFactory
fileCharSourceFactory() {
99
public static
CharSourceFactory
urlCharSourceFactory() {
103
public static
CharSourceFactory
asCharSourceFactory(final ByteSourceFactory factory) {
105
return new
CharSourceFactory
() {
176
private static class StringSourceFactory implements
CharSourceFactory
{
210
private static class EmptyCharSourceFactory implements
CharSourceFactory
{
338
private static class FileCharSourceFactory extends FileFactory implements
CharSourceFactory
{
[
all
...]
CharSourceTester.java
19
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) {
54
static TestSuite suiteForString(
CharSourceFactory
factory, String string,
67
public CharSourceTester(
CharSourceFactory
factory, String string,
ByteSourceTester.java
20
import static com.google.common.io.SourceSinkFactory.
CharSourceFactory
;
68
CharSourceFactory
charSourceFactory
= SourceSinkFactories.asCharSourceFactory(factory);
69
suite.addTest(CharSourceTester.suiteForString(
charSourceFactory
, string,
Completed in 124 milliseconds