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

1 2 3

  /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;
  /external/jmonkeyengine/engine/src/test/jme3test/math/
TestHalfFloat.java 43 String s = scan.nextLine();
  /packages/apps/Email/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 45 String line = s.nextLine();
SeedTest.java 54 String line = sc.nextLine().trim();
  /cts/tests/tests/os/src/android/os/cts/
NoExecutePermissionTest.java 43 String line = scanner.nextLine().trim();
BuildTest.java 93 line = scanner.nextLine();
112 String line = scanner.nextLine();
136 String line = scanner.nextLine();
  /external/proguard/src/proguard/
ArgumentWordReader.java 61 protected String nextLine() throws IOException
FileWordReader.java 68 protected String nextLine() throws IOException
WordReader.java 143 currentLine = nextLine();
281 protected abstract String nextLine() throws IOException;
  /external/jmonkeyengine/engine/src/core/com/jme3/asset/
AssetConfig.java 71 String extensionsList = scan.nextLine();
83 String locatorClass = scan.nextLine().trim();
  /external/icu4c/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) {
  /frameworks/native/include/utils/
Tokenizer.h 110 void nextLine();
  /frameworks/rs/
rsFont.cpp 557 int32_t nextLine = 0;
558 mCacheLines.push(new CacheTextureLine(16, texType->getDimX(), nextLine, 0));
559 nextLine += mCacheLines.top()->mMaxHeight;
560 mCacheLines.push(new CacheTextureLine(24, texType->getDimX(), nextLine, 0));
561 nextLine += mCacheLines.top()->mMaxHeight;
562 mCacheLines.push(new CacheTextureLine(24, texType->getDimX(), nextLine, 0));
563 nextLine += mCacheLines.top()->mMaxHeight;
564 mCacheLines.push(new CacheTextureLine(32, texType->getDimX(), nextLine, 0));
565 nextLine += mCacheLines.top()->mMaxHeight;
566 mCacheLines.push(new CacheTextureLine(32, texType->getDimX(), nextLine, 0))
    [all...]
  /cts/tools/cts-native-scanner/src/com/android/cts/nativescanner/
TestScanner.java 91 String line = scanner.nextLine();
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
Test.java 301 int nextLine = stack.indexOf('\n', endPoint + 1);
302 if (nextLine != -1) {
303 return stack.substring(0, nextLine);
  /cts/tools/cts-java-scanner/src/com/android/cts/javascanner/
DocletRunner.java 53 System.out.println(scanner.nextLine());
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
TestListParser.java 42 String line = scanner.nextLine();
  /frameworks/base/libs/androidfw/
VirtualKeyMap.cpp 140 mTokenizer->nextLine();
  /cts/tests/tests/security/src/android/security/cts/
VoldExploitTest.java 167 String line = scanner.nextLine().trim();
267 String line = scanner.nextLine().trim();
  /frameworks/opt/vcard/java/com/android/vcard/
VCardParserImpl_V21.java 661 final String nextLine = peekLine();
668 if (!TextUtils.isEmpty(nextLine) &&
669 nextLine.charAt(0) == ' ' &&
670 !"END:VCARD".contains(nextLine.toUpperCase())) {
677 builder.append(nextLine.substring(1));
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderLineBoxList.cpp 70 InlineFlowBox* nextLine;
72 nextLine = line->nextLineBox();
74 line = nextLine;
RenderInline.h 165 void paintOutlineForLine(GraphicsContext*, int tx, int ty, const IntRect& prevLine, const IntRect& thisLine, const IntRect& nextLine);
  /frameworks/native/libs/utils/
PropertyMap.cpp 213 mTokenizer->nextLine();
Tokenizer.cpp 147 void Tokenizer::nextLine() {
149 ALOGD("nextLine");

Completed in 816 milliseconds

1 2 3