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

1 2

  /packages/apps/Email/emailcommon/src/org/apache/commons/io/
LineIterator.java 39 * String line = it.nextLine();
129 return nextLine();
138 public String nextLine() {
  /cts/tests/appsecurity-tests/src/com/android/cts/monkey/
MonkeyTest.java 51 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 74 String line = scanner.nextLine();
98 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;
  /frameworks/base/include/utils/
Tokenizer.h 100 void nextLine();
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
Test.java 164 int nextLine = stack.indexOf('\n', endPoint + 1);
165 if (nextLine != -1) {
166 return stack.substring(0, nextLine);
  /frameworks/base/libs/hwui/
FontRenderer.cpp 495 int nextLine = 0;
496 mCacheLines.push(new CacheTextureLine(mCacheWidth, 18, nextLine, 0));
497 nextLine += mCacheLines.top()->mMaxHeight;
498 mCacheLines.push(new CacheTextureLine(mCacheWidth, 26, nextLine, 0));
499 nextLine += mCacheLines.top()->mMaxHeight;
500 mCacheLines.push(new CacheTextureLine(mCacheWidth, 26, nextLine, 0));
501 nextLine += mCacheLines.top()->mMaxHeight;
502 mCacheLines.push(new CacheTextureLine(mCacheWidth, 34, nextLine, 0));
503 nextLine += mCacheLines.top()->mMaxHeight;
504 mCacheLines.push(new CacheTextureLine(mCacheWidth, 34, nextLine, 0))
    [all...]
  /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/base/libs/rs/
rsFont.cpp 539 int32_t nextLine = 0;
540 mCacheLines.push(new CacheTextureLine(16, texType->getDimX(), nextLine, 0));
541 nextLine += mCacheLines.top()->mMaxHeight;
542 mCacheLines.push(new CacheTextureLine(24, texType->getDimX(), nextLine, 0));
543 nextLine += mCacheLines.top()->mMaxHeight;
544 mCacheLines.push(new CacheTextureLine(24, texType->getDimX(), nextLine, 0));
545 nextLine += mCacheLines.top()->mMaxHeight;
546 mCacheLines.push(new CacheTextureLine(32, texType->getDimX(), nextLine, 0));
547 nextLine += mCacheLines.top()->mMaxHeight;
548 mCacheLines.push(new CacheTextureLine(32, texType->getDimX(), nextLine, 0))
    [all...]
  /cts/tests/tests/net/src/android/net/cts/
ListeningPortsTest.java 107 String line = scanner.nextLine().trim();
  /frameworks/base/libs/ui/
VirtualKeyMap.cpp 140 mTokenizer->nextLine();
  /cts/tests/tests/security/src/android/security/cts/
VoldExploitTest.java 252 String line = scanner.nextLine().trim();
352 String line = scanner.nextLine().trim();
  /frameworks/opt/vcard/java/com/android/vcard/
VCardParserImpl_V21.java 684 final String nextLine = peekLine();
691 if (!TextUtils.isEmpty(nextLine) &&
692 nextLine.charAt(0) == ' ' &&
693 !"END:VCARD".contains(nextLine.toUpperCase())) {
700 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);
  /cts/tools/cts-native-xml-generator/src/com/android/cts/nativexml/
Generator.java 164 String line = scanner.nextLine();
  /frameworks/base/libs/utils/
PropertyMap.cpp 213 mTokenizer->nextLine();
Tokenizer.cpp 135 void Tokenizer::nextLine() {
137 LOGD("nextLine");
  /frameworks/base/core/tests/hosttests/src/android/content/pm/
PackageManagerHostTestUtils.java 498 String nextLine = null;
499 while (null != (nextLine = output.readLine())) {
500 Log.i(LOG_TAG, nextLine);
    [all...]
  /external/webkit/Tools/android/webkitmerge/
webkitmerge.cpp 328 goto nextLine;
332 goto nextLine;
343 goto nextLine;
354 goto nextLine;
358 goto nextLine;
363 goto nextLine;
367 goto nextLine;
379 goto nextLine;
426 goto nextLine;
444 nextLine
    [all...]
  /external/icu4c/layoutex/layout/
ParagraphLayout.h 51 * can only be created by calling <code>ParagraphLayout::nextLine()</code>. Each line
529 Line *nextLine(float width);

Completed in 6722 milliseconds

1 2