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

1 2 3 4 5 6 7 8 910

  /external/proguard/src/proguard/
ArgumentWordReader.java 62 protected String nextLine() throws IOException
LineWordReader.java 53 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 {
  /prebuilts/go/darwin-x86/src/runtime/race/
race_test.go 56 s, err := nextLine(reader)
81 // nextLine is a wrapper around bufio.Reader.ReadString.
85 func nextLine(r *bufio.Reader) (string, error) {
89 log.Fatalf("nextLine: expected EOF, received %v", err)
  /prebuilts/go/linux-x86/src/runtime/race/
race_test.go 56 s, err := nextLine(reader)
81 // nextLine is a wrapper around bufio.Reader.ReadString.
85 func nextLine(r *bufio.Reader) (string, error) {
89 log.Fatalf("nextLine: expected EOF, received %v", err)
  /cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/
StorageDeviceInfo.java 69 partitionList.add(scanner.nextLine());
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
LineIterator.java 39 * String line = it.nextLine();
129 return nextLine();
138 public String nextLine() {
  /system/core/libutils/
Tokenizer.cpp 141 void Tokenizer::nextLine() {
143 ALOGD("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) == '}') {
  /external/icu/icu4c/source/samples/ugrep/
ugrep.cpp 77 void nextLine(int start);
142 for (nextLine(0); lineStart<fileLen; nextLine(lineEnd)) {
372 // nextLine Advance the line index variables, starting at the
380 void nextLine(int startPos) {
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/csv/
DelimitedWriterTest.java 84 writer.nextLine();
  /frameworks/base/core/java/android/widget/
AccessibilityIterators.java 59 int nextLine;
61 nextLine = mLayout.getLineForOffset(0);
65 nextLine = currentLine;
67 nextLine = currentLine + 1;
70 if (nextLine >= mLayout.getLineCount()) {
73 final int start = getLineEdgeIndex(nextLine, DIRECTION_START);
74 final int end = getLineEdgeIndex(nextLine, DIRECTION_END) + 1;
  /test/suite_harness/common/host-side/util/src/com/android/compatibility/common/util/
ReportLogHostInfoStore.java 50 String nextLine = jsonReader.readLine();
51 while ((currentLine = nextLine) != null) {
52 nextLine = jsonReader.readLine();
53 if (nextLine == null && currentLine.charAt(currentLine.length() - 1) == '}') {
  /bionic/tools/versioner/src/
Preprocessor.cpp 297 auto nextLine = [&current_location]() {
302 auto nextCol = [&file_lines, &current_location, &nextLine]() {
304 nextLine();
321 nextLine();
333 nextLine();
353 nextLine();
  /cts/hostsidetests/backup/KeyValueApp/src/android/cts/backup/keyvaluerestoreapp/
KeyValueBackupRestoreTest.java 270 contents.append(scanner.nextLine());
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
pyassem.py 514 lnotab.nextLine(oparg)
615 def nextLine(self, lineno):
  /external/annotation-tools/scene-lib/src/annotations/io/
JavapParser.java 55 private void nextLine() throws IOException {
106 nextLine();
126 nextLine();
153 nextLine();
160 nextLine();
177 nextLine();
192 nextLine();
206 nextLine();
221 nextLine();
234 nextLine();
    [all...]
  /external/clang/lib/Format/
UnwrappedLineFormatter.cpp 30 /// \c nextLine must be called for each \c AnnotatedLine, after which \c
31 /// getIndent() will return the indent for the last line \c nextLine was called
34 /// \c adjustToUnmodifiedLine after the call to \c nextLine will cause
52 void nextLine(const AnnotatedLine &Line) {
72 /// Note that \c nextLine must have been called before this method.
142 IndentTracker.nextLine(*Current);
814 const AnnotatedLine *NextLine = nullptr;
821 Line; Line = NextLine) {
846 NextLine = Joiner.getNextMergedLine(DryRun, IndentTracker);
847 unsigned ColumnLimit = getColumnLimit(TheLine.InPPDirective, NextLine);
    [all...]
  /external/python/cpython2/Lib/compiler/
pyassem.py 514 lnotab.nextLine(oparg)
615 def nextLine(self, lineno):
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
pyassem.py 514 lnotab.nextLine(oparg)
615 def nextLine(self, lineno):
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
pyassem.py 514 lnotab.nextLine(oparg)
615 def nextLine(self, lineno):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
pyassem.py 514 lnotab.nextLine(oparg)
615 def nextLine(self, lineno):

Completed in 349 milliseconds

1 2 3 4 5 6 7 8 910