HomeSort by relevance Sort by last modified time
    Searched defs:readLines (Results 1 - 25 of 217) sorted by null

1 2 3 4 5 6 7 8 9

  /development/tools/idegen/src/com/android/idegen/
ModuleIndexes.java 53 Files.readLines(indexFile, Charset.forName("UTF-8"),
MakeFileParser.java 78 Files.readLines(makeFile, Charset.forName("UTF-8"), new MakeFileLineProcessor());
  /external/guava/guava/src/com/google/common/io/
Resources.java 127 public static <T> T readLines(URL url, Charset charset,
129 return asCharSource(url, charset).readLines(callback);
139 * {@code Resources.asCharSource(url, charset).readLines()}.
147 public static List<String> readLines(URL url, Charset charset)
149 // don't use asCharSource(url, charset).readLines() because that returns
151 return readLines(url, charset, new LineProcessor<List<String>>() {
CharSource.java 54 * <p>Several methods in this class, such as {@link #readLines()}, break the contents of the
187 public ImmutableList<String> readLines() throws IOException {
219 public <T> T readLines(LineProcessor<T> processor) throws IOException {
225 return CharStreams.readLines(reader, processor);
386 public ImmutableList<String> readLines() {
391 public <T> T readLines(LineProcessor<T> processor) throws IOException {
CharStreams.java 109 * should use the {@link Files#readLines} and {@link Resources#readLines}
116 public static List<String> readLines(Readable r) throws IOException {
136 public static <T> T readLines(
Files.java 523 * {@code Files.asCharSource(file, charset).readLines()}.
531 public static List<String> readLines(File file, Charset charset)
533 // don't use asCharSource(file, charset).readLines() because that returns
535 return readLines(file, charset, new LineProcessor<List<String>>() {
562 public static <T> T readLines(File file, Charset charset,
564 return asCharSource(file, charset).readLines(callback);
  /external/guava/guava-tests/test/com/google/common/io/
SourceSinkTester.java 102 }.readLines();
CharSourceTester.java 138 assertExpectedLines(source.readLines());
146 List<String> list = source.readLines(new LineProcessor<List<String>>() {
165 List<String> list = source.readLines(new LineProcessor<List<String>>() {
ResourcesTest.java 73 Resources.readLines(resource, Charsets.UTF_8));
92 List<String> result = Resources.readLines(resource, Charsets.US_ASCII,
CharSourceTest.java 119 assertEquals(ImmutableList.of("foo", "bar", "baz", "something"), lines.readLines());
125 List<String> list = lines.readLines(new LineProcessor<List<String>>() {
145 List<String> list = lines.readLines(new LineProcessor<List<String>>() {
FilesTest.java 503 assertTrue(Files.readLines(temp, Charsets.UTF_8).isEmpty());
514 Files.readLines(temp, Charsets.UTF_8));
535 assertThat(Files.readLines(temp, Charsets.UTF_8, collect)).isEmpty();
543 Files.readLines(temp, Charsets.UTF_8, collect);
564 Files.readLines(temp, Charsets.UTF_8, collectNonEmptyLines);
  /libcore/tzdata/update/src/main/libcore/tzdata/update/
FileUtils.java 184 public static List<String> readLines(File file) throws IOException {
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
IOUtils.java 443 // readLines
458 public static List<String> readLines(InputStream input) throws IOException {
460 return readLines(reader);
480 public static List<String> readLines(InputStream input, String encoding) throws IOException {
482 return readLines(input);
485 return readLines(reader);
502 public static List<String> readLines(Reader input) throws IOException {
    [all...]
FileUtils.java     [all...]
  /packages/services/Telephony/src/org/apache/commons/io/
IOUtils.java 442 // readLines
457 public static List<String> readLines(InputStream input) throws IOException {
459 return readLines(reader);
479 public static List<String> readLines(InputStream input, String encoding) throws IOException {
481 return readLines(input);
484 return readLines(reader);
501 public static List<String> readLines(Reader input) throws IOException {
    [all...]
  /cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
AppSecurityTests.java 340 readLines(in, lines);
364 private static void readLines(InputStream in, List<String> lines) {
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
XmlEditor.java 72 lines.addAll(FileUtils.readLines(f, "utf-8"));
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceScript.java 241 private int readLines() throws IOException {
835 linesRead = readLines();
    [all...]
  /external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
PerfTest.java 747 protected String[] readLines(String filename, String srcEncoding, boolean bulkMode) {
    [all...]
  /external/guice/extensions/persist/lib/
commons-io.jar 
  /external/guice/extensions/struts2/lib/
commons-io-1.3.2.jar 
  /prebuilts/tools/common/gradle-plugins/repository/commons-io/commons-io/1.3.2/
commons-io-1.3.2.jar 
  /prebuilts/tools/common/m2/repository/commons-io/commons-io/1.3.2/
commons-io-1.3.2.jar 
  /prebuilts/tools/common/m2/repository/commons-io/commons-io/2.4/
commons-io-2.4.jar 
  /prebuilts/tools/common/offline-m2/commons-io/commons-io/2.4/
commons-io-2.4.jar 

Completed in 701 milliseconds

1 2 3 4 5 6 7 8 9