HomeSort by relevance Sort by last modified time
    Searched full:line_separator (Results 1 - 25 of 306) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/command/
CompatibilityConsole.java 168 LINE_SEPARATOR +
170 + " specific options ----- " + LINE_SEPARATOR +
171 "\tp[lans] List all plans available" + LINE_SEPARATOR +
172 "\tm[odules] List all modules available" + LINE_SEPARATOR +
173 "\tr[esults] List all results" + LINE_SEPARATOR;
182 LINE_SEPARATOR +
184 + " specific options ----- " + LINE_SEPARATOR +
185 "\t<plan> --module/-m <module> Run a test module" + LINE_SEPARATOR +
188 + "<native_binary_name>" + LINE_SEPARATOR +
189 "\t\tAvailable Options:" + LINE_SEPARATOR
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/command/
Console.java 89 protected static final String LINE_SEPARATOR = System.getProperty("line.separator");
303 allHelpBuilder.append(LINE_SEPARATOR);
349 return ArrayUtil.join(LINE_SEPARATOR, genericHelp);
434 "%s help:" + LINE_SEPARATOR +
435 "\ti[nvocations] List all invocation threads" + LINE_SEPARATOR +
436 "\td[evices] List all detected or known devices" + LINE_SEPARATOR +
438 LINE_SEPARATOR +
440 "waiting to be executed" + LINE_SEPARATOR +
441 "\tconfigs List all known configurations" + LINE_SEPARATOR,
445 "%s help:" + LINE_SEPARATOR
    [all...]
  /external/jarjar/src/main/com/tonicsystems/jarjar/
Main.java 25 private static final String LINE_SEPARATOR = System.getProperty("line.separator");
41 sb.append(line).append(LINE_SEPARATOR);
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
StringUtils.java 24 public static final String LINE_SEPARATOR = StandardSystemProperty.LINE_SEPARATOR.value();
  /tools/tradefederation/core/src/com/android/tradefed/util/
PsParser.java 29 private static final String LINE_SEPARATOR = "\\n";
46 String processLines[] = psOutput.split(LINE_SEPARATOR);
  /frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
BRWriter.kt 23 public fun write(pkg : String): String = "package $pkg;${StringUtils.LINE_SEPARATOR}$klass"
KCode.kt 23 private val lineSeparator = StringUtils.LINE_SEPARATOR
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Strings.java 16 private static String LINE_SEPARATOR;
22 LINE_SEPARATOR = AccessController.doPrivileged(new PrivilegedAction<String>()
37 LINE_SEPARATOR = String.format("%n");
41 LINE_SEPARATOR = "\n"; // we're desperate use this...
358 return LINE_SEPARATOR;
  /frameworks/base/core/java/android/util/jar/
StrictJarManifest.java 43 private static final byte[] LINE_SEPARATOR = new byte[] { '\r', '\n' };
275 out.write(LINE_SEPARATOR);
286 out.write(LINE_SEPARATOR);
307 os.write(LINE_SEPARATOR);
  /frameworks/data-binding/compilationTests/src/test/java/android/databinding/compilationTest/
CompilationResult.java 58 for (String line : error.split(StringUtils.LINE_SEPARATOR)) {
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
MicrobenchmarkAllocationWorker.java 52 private static final String LINE_SEPARATOR = System.getProperty("line.separator");
113 builder.append(LINE_SEPARATOR).append(" ").append(allocationStats);
116 builder.append(LINE_SEPARATOR).append(" ").append(delta);
  /tools/tradefederation/core/prod-tests/src/com/android/performance/tests/
HermeticMemoryTest.java 66 private static final String LINE_SEPARATOR = "\\n";
200 String line[] = dumpInfo.split(LINE_SEPARATOR);
228 String lineSplit[] = memInfo.split(LINE_SEPARATOR);
264 String processes[] = cachedProcesses.split(LINE_SEPARATOR);
273 processInfo = processInfoStr.split(LINE_SEPARATOR);
  /developers/samples/android/ui/text/TextStyling-Java/app/src/main/java/com/android/example/text/styling/parser/
Parser.java 53 private static final String LINE_SEPARATOR = System.getProperty("line.separator");
96 int endOfParagraph = string.indexOf(LINE_SEPARATOR, endIndex);
  /developers/samples/android/ui/text/TextStyling-Kotlin/app/src/main/java/com/android/example/text/styling/parser/
Parser.kt 77 var endOfParagraph = string.indexOf(LINE_SEPARATOR, endIndex)
157 private val LINE_SEPARATOR = System.getProperty("line.separator")
  /external/guava/guava/src/com/google/common/base/
StandardSystemProperty.java 107 LINE_SEPARATOR("line.separator"),
  /external/icu/android_icu4j/src/main/java/android/icu/lang/
UCharacterCategory.java 66 case LINE_SEPARATOR :
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
UCharacterCategory.java 67 case LINE_SEPARATOR :
  /packages/apps/DocumentsUI/src/com/android/documentsui/clipping/
ClipStorage.java 68 private static final byte[] LINE_SEPARATOR = System.lineSeparator().getBytes();
221 mOut.write(LINE_SEPARATOR);
  /tools/tradefederation/core/src/com/android/tradefed/device/metric/
AtraceRunMetricCollector.java 52 private static final String LINE_SEPARATOR = "\\n";
157 String[] outputLines = output.split(LINE_SEPARATOR);
  /external/slf4j/integration/lib/
slf4j-simple-1.5.4-SNAPSHOT.jar 
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
UCharacterCompare.java 156 if (uchartype == UCharacterCategory.LINE_SEPARATOR && jchartype == Character.LINE_SEPARATOR)
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
UCharacterCompare.java 153 if (uchartype == UCharacterCategory.LINE_SEPARATOR && jchartype == Character.LINE_SEPARATOR)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/media/
MediaProjectionPermissionActivity.java 113 if (type == Character.LINE_SEPARATOR
  /frameworks/data-binding/.idea/
codeStyleSettings.xml 6 <option name="LINE_SEPARATOR" value="&#10;" />
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/processing/
ScopedException.java 92 return Joiner.on(' ').join(Splitter.on(StringUtils.LINE_SEPARATOR).split(sb));

Completed in 740 milliseconds

1 2 3 4 5 6 7 8 91011>>