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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/paint/
InlinePainter.h 28 const LayoutRect& nextLine, const Color);
  /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;
  /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;
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
LineIterator.java 39 * String line = it.nextLine();
129 return nextLine();
138 public String nextLine() {
  /cts/hostsidetests/monkey/src/com/android/cts/monkey/
MonkeyTest.java 46 String line = s.nextLine();
SeedTest.java 54 String line = sc.nextLine().trim();
  /cts/suite/cts/hostTests/jank/app/src/com/android/cts/jank/
CtsJankTestBase.java 63 outStr.append(out.nextLine());
66 errStr.append(err.nextLine());
  /cts/tests/tests/hardware/src/android/hardware/cts/
LowRamDeviceTest.java 55 String line = scanner.nextLine();
  /external/chromium_org/third_party/icu/source/samples/ugrep/
ugrep.cpp 71 void nextLine(int start);
136 for (nextLine(0); lineStart<fileLen; nextLine(lineEnd)) {
366 // nextLine Advance the line index variables, starting at the
374 void nextLine(int startPos) {
  /external/icu/icu4c/source/samples/ugrep/
ugrep.cpp 71 void nextLine(int start);
136 for (nextLine(0); lineStart<fileLen; nextLine(lineEnd)) {
366 // nextLine Advance the line index variables, starting at the
374 void nextLine(int startPos) {
  /system/core/include/utils/
Tokenizer.h 110 void nextLine();
  /frameworks/rs/
rsFont.cpp 563 int32_t nextLine = 0;
564 mCacheLines.push(new CacheTextureLine(16, texType->getDimX(), nextLine, 0));
565 nextLine += mCacheLines.top()->mMaxHeight;
566 mCacheLines.push(new CacheTextureLine(24, texType->getDimX(), nextLine, 0));
567 nextLine += mCacheLines.top()->mMaxHeight;
568 mCacheLines.push(new CacheTextureLine(24, texType->getDimX(), nextLine, 0));
569 nextLine += mCacheLines.top()->mMaxHeight;
570 mCacheLines.push(new CacheTextureLine(32, texType->getDimX(), nextLine, 0));
571 nextLine += mCacheLines.top()->mMaxHeight;
572 mCacheLines.push(new CacheTextureLine(32, texType->getDimX(), nextLine, 0))
    [all...]
  /cts/common/host-side/xml-plan-generator/src/com/android/compatibility/common/xmlgenerator/
TestListParser.java 47 final String line = in.nextLine();
  /cts/common/host-side/xml-plan-generator/tests/src/com/android/compatibility/common/xmlgenerator/
XmlPlanGeneratorTest.java 112 output.append(in.nextLine());
  /cts/hostsidetests/sample/src/android/sample/cts/
SampleHostTest.java 131 String line = in.nextLine();
  /cts/tests/tests/os/src/android/os/cts/
BuildTest.java 115 line = scanner.nextLine();
134 String line = scanner.nextLine();
158 String line = scanner.nextLine();
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
ShaderD3D.cpp 249 size_t nextLine = source.find("\n", curPos);
250 size_t len = (nextLine == std::string::npos) ? std::string::npos : (nextLine - curPos + 1);
254 curPos = (nextLine == std::string::npos) ? std::string::npos : (nextLine + 1);
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
Test.java 318 int nextLine = stack.indexOf('\n', endPoint + 1);
319 if (nextLine != -1) {
320 return stack.substring(0, nextLine);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLineBoxList.cpp 68 InlineFlowBox* nextLine;
70 nextLine = line->nextLineBox();
72 line = nextLine;
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
TestListParser.java 42 String line = scanner.nextLine();
  /frameworks/native/libs/input/
VirtualKeyMap.cpp 141 mTokenizer->nextLine();
  /cts/tests/tests/security/src/android/security/cts/
VoldExploitTest.java 173 String line = scanner.nextLine().trim();
250 String line = scanner.nextLine().trim();
  /cts/suite/cts/hostTests/jank/src/com/android/cts/jank/
CtsHostJankTest.java 119 String[] parts = in.nextLine().split(":");

Completed in 620 milliseconds

1 2 3 4