HomeSort by relevance Sort by last modified time
    Searched refs:nextLine (Results 1 - 25 of 68) sorted by null

1 2 3

  /cts/tests/signature/lib/common/src/android/signature/cts/
BufferedReaderLineSpliterator.java 53 private String nextLine() {
67 String nextLine = nextLine();
68 if (nextLine == null) {
72 action.accept(mConverter.apply(nextLine));
74 action.accept(mLineNumConverter.apply(nextLine, mLineNum));
ByteBufferLineSpliterator.java 100 protected String nextLine() {
122 String nextLine = nextLine();
123 if (nextLine == null) {
126 action.accept(mConverter.apply(nextLine));
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
ReportLogDeviceInfoStore.java 49 String nextLine = jsonReader.readLine();
50 while ((currentLine = nextLine) != null) {
51 nextLine = jsonReader.readLine();
52 if (nextLine == null && currentLine.charAt(currentLine.length() - 1) == '}') {
PropertyUtil.java 163 String value = scanner.nextLine().trim();
  /cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
ReportLogDeviceInfoStore.java 49 String nextLine = jsonReader.readLine();
50 while ((currentLine = nextLine) != null) {
51 nextLine = jsonReader.readLine();
52 if (nextLine == null && currentLine.charAt(currentLine.length() - 1) == '}') {
PropertyUtil.java 164 String value = scanner.nextLine().trim();
  /external/proguard/src/proguard/
LineWordReader.java 53 protected String nextLine() throws IOException
ArgumentWordReader.java 62 protected String nextLine() throws IOException
WordReader.java 155 currentLine = nextLine();
320 protected abstract String nextLine() throws IOException;
  /external/smali/util/src/main/java/org/jf/util/
StringWrapper.java 60 private String nextLine;
67 return nextLine != null;
77 nextLine = null;
93 nextLine = string.substring(currentLineStart, lineEnd-1);
99 nextLine = string.substring(currentLineStart, lineEnd);
106 String ret = nextLine;
107 nextLine = null;
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/csv/
ClassRowWriter.java 59 writer.nextLine();
89 writer.nextLine();
DelimitedWriter.java 27 * delimitedWriter.nextLine();
133 public void nextLine() throws IOException {
  /cts/hostsidetests/monkey/src/com/android/cts/monkey/
MonkeyTest.java 48 String line = s.nextLine();
SeedTest.java 56 String line = sc.nextLine().trim();
  /cts/hostsidetests/sample/src/android/sample/cts/
SampleHostTest.java 78 String line = in.nextLine();
SampleHostJUnit4Test.java 103 String line = in.nextLine();
  /cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/
PropertyDeviceInfo.java 52 String line = scanner.nextLine();
StorageDeviceInfo.java 69 partitionList.add(scanner.nextLine());
  /cts/hostsidetests/trustedvoice/src/android/trustedvoice/cts/
TrustedVoiceHostTest.java 115 String line = in.nextLine();
  /external/icu/icu4c/source/samples/ugrep/
ugrep.cpp 78 void nextLine(int start);
143 for (nextLine(0); lineStart<fileLen; nextLine(lineEnd)) {
373 // nextLine Advance the line index variables, starting at the
381 void nextLine(int startPos) {
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/csv/
DelimitedWriterTest.java 84 writer.nextLine();
  /cts/hostsidetests/abioverride/src/android/abioverride/cts/
AbiOverrideTest.java 98 String line = in.nextLine();
  /art/tools/checker/file_format/checker/
parser.py 99 nextLine = __extractLine(prefix + "-NEXT", line)
100 if nextLine is not None:
101 return (nextLine, TestAssertion.Variant.NextLine, lineNo), None, None
  /bionic/tools/versioner/src/
Preprocessor.cpp 290 auto nextLine = [&current_location]() {
295 auto nextCol = [&file_lines, &current_location, &nextLine]() {
297 nextLine();
314 nextLine();
326 nextLine();
346 nextLine();
  /cts/tests/tests/os/src/android/os/cts/
BuildTest.java 147 line = scanner.nextLine();
166 String line = scanner.nextLine();
190 String line = scanner.nextLine();

Completed in 667 milliseconds

1 2 3