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

1 2 3 4

  /external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
TestMetadata.java 36 errln(title + " differ:" + CldrUtility.LINE_SEPARATOR + firstTitle
37 + ":" + CldrUtility.LINE_SEPARATOR + "\t" + cldrFileOrder
38 + CldrUtility.LINE_SEPARATOR + secondTitle + ":"
39 + CldrUtility.LINE_SEPARATOR + "\t" + dtdAttributeOrder
40 + CldrUtility.LINE_SEPARATOR
42 + CldrUtility.LINE_SEPARATOR + "\t"
44 + CldrUtility.LINE_SEPARATOR + "Differences:");
58 errln("..." + CldrUtility.LINE_SEPARATOR + "\tSame: "
69 errln("Same: " + end + CldrUtility.LINE_SEPARATOR
TestCollationMapMaker.java 72 .transform("\u0001\u001F" + CldrUtility.LINE_SEPARATOR
  /external/cldr/tools/java/org/unicode/cldr/tool/
GenerateLikelySubtagTests.java 18 private static final String SEPARATOR = CldrUtility.LINE_SEPARATOR;
30 out.println("<?xml version='1.0' encoding='UTF-8' ?>" + CldrUtility.LINE_SEPARATOR +
31 "<!DOCTYPE cldrTest SYSTEM '../../common/dtd/cldrTest.dtd'>" + CldrUtility.LINE_SEPARATOR +
32 "<!-- For information, see readme.html -->" + CldrUtility.LINE_SEPARATOR +
33 "<cldrTest version='" + VERSION + "' base='aa'>" + CldrUtility.LINE_SEPARATOR +
69 out.println(CldrUtility.LINE_SEPARATOR + "// END");
71 out.println(" </likelySubtags>" + CldrUtility.LINE_SEPARATOR + "</cldrTest>");
91 + CldrUtility.LINE_SEPARATOR + " },");
GenerateSupplementalZoneData.java 48 String sep = CldrUtility.LINE_SEPARATOR + " ";
53 + CldrUtility.LINE_SEPARATOR + " </variable>");
GenerateTransform.java 103 result.append("::lowerCase ;" + CldrUtility.LINE_SEPARATOR);
134 + CldrUtility.LINE_SEPARATOR);
137 result.append(show(pair[0]) + " {} " + show(pair[1]) + " ? ? ;" + CldrUtility.LINE_SEPARATOR);
141 result.append("# Main rules" + CldrUtility.LINE_SEPARATOR);
146 result.append(pair.getFirst() + " ? " + pair.getSecond() + " ;" + CldrUtility.LINE_SEPARATOR);
151 result.append("# Removal of hyphenation point for disambiguation" + CldrUtility.LINE_SEPARATOR);
156 + CldrUtility.LINE_SEPARATOR);
161 result.append("# Retargetting items for completeness" + CldrUtility.LINE_SEPARATOR);
165 + CldrUtility.LINE_SEPARATOR);
172 + missingSource.toPattern(false) + CldrUtility.LINE_SEPARATOR);
    [all...]
PivotData.java 31 + CldrUtility.LINE_SEPARATOR +
32 "These are Lang+Script+Region, then Lang+Region, then Lang+Script" + CldrUtility.LINE_SEPARATOR +
116 if (DEBUG) System.out.format("LocaleID: %s, %s" + CldrUtility.LINE_SEPARATOR, localeID, parentID);
144 + CldrUtility.LINE_SEPARATOR + fullPath + CldrUtility.LINE_SEPARATOR + oldFullXPath);
154 System.out.format("LocaleID: %s is EMPTY, no changes necessary" + CldrUtility.LINE_SEPARATOR, localeID);
162 if (DEBUG) System.out.format("Siblings: %s" + CldrUtility.LINE_SEPARATOR, siblings);
169 if (DEBUG) System.out.format("%s changes in: %s" + CldrUtility.LINE_SEPARATOR, uniquePaths.size(), localeID);
178 if (DEBUG) System.out.format("%s changes in: %s" + CldrUtility.LINE_SEPARATOR, deltaChangeCount, parentID);
190 if (DEBUG) System.out.format("%s changes in: %s" + CldrUtility.LINE_SEPARATOR, deltaChangeCount, id)
    [all...]
GenerateComparison.java 359 + CldrUtility.LINE_SEPARATOR
364 + CldrUtility.LINE_SEPARATOR
367 + CldrUtility.LINE_SEPARATOR
370 + CldrUtility.LINE_SEPARATOR
373 + CldrUtility.LINE_SEPARATOR
378 + CldrUtility.LINE_SEPARATOR
417 + CldrUtility.LINE_SEPARATOR
422 + CldrUtility.LINE_SEPARATOR
425 + CldrUtility.LINE_SEPARATOR
428 + CldrUtility.LINE_SEPARATOR
    [all...]
GenerateMaximalLocales.java 88 private static final String SEPARATOR = OUTPUT_STYLE == OutputStyle.C || OUTPUT_STYLE == OutputStyle.C_ALT ? CldrUtility.LINE_SEPARATOR
373 + CldrUtility.LINE_SEPARATOR
376 CldrUtility.LINE_SEPARATOR
379 CldrUtility.LINE_SEPARATOR
382 CldrUtility.LINE_SEPARATOR
385 CldrUtility.LINE_SEPARATOR
388 CldrUtility.LINE_SEPARATOR
391 CldrUtility.LINE_SEPARATOR
394 CldrUtility.LINE_SEPARATOR
397 CldrUtility.LINE_SEPARATOR
    [all...]
VettingAdder.java 313 entry = "==========" + Utility.LINE_SEPARATOR + lastLocale + Utility.LINE_SEPARATOR;
317 entry += "\tpath:\t" + path + Utility.LINE_SEPARATOR + "\tcurrent value:\t" + getValue(any_latin, current)
318 + Utility.LINE_SEPARATOR;
320 entry += "\tEnglish value:\t" + getValue(any_latin, english.getStringValue(path)) + Utility.LINE_SEPARATOR;
325 + Utility.LINE_SEPARATOR;
  /external/icu/android_icu4j/src/main/java/android/icu/lang/
UCharacterCategory.java 66 case LINE_SEPARATOR :
UCharacterEnums.java 104 public static final byte LINE_SEPARATOR = 13;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
UCharacterCategory.java 67 case LINE_SEPARATOR :
UCharacterEnums.java 120 public static final byte LINE_SEPARATOR = 13;
  /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);
  /external/guava/guava/src/com/google/common/base/
StandardSystemProperty.java 107 LINE_SEPARATOR("line.separator"),
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Strings.java 18 private static String LINE_SEPARATOR;
24 LINE_SEPARATOR = AccessController.doPrivileged(new PrivilegedAction<String>()
39 LINE_SEPARATOR = String.format("%n");
43 LINE_SEPARATOR = "\n"; // we're desperate use this...
297 return LINE_SEPARATOR;
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/util/
Strings.java 20 private static String LINE_SEPARATOR;
26 LINE_SEPARATOR = AccessController.doPrivileged(new PrivilegedAction<String>()
41 LINE_SEPARATOR = String.format("%n");
45 LINE_SEPARATOR = "\n"; // we're desperate use this...
299 return LINE_SEPARATOR;
  /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);
  /external/cldr/tools/java/org/unicode/cldr/test/
TestMisc.java 122 System.out.println(test + CldrUtility.LINE_SEPARATOR +
123 codes.toPattern(true) + CldrUtility.LINE_SEPARATOR +
124 bf.showSetNames(set.complement().complement()) + CldrUtility.LINE_SEPARATOR);
298 System.out.println("SimpleCaseFolded & !CaseFolded & Functional & !Archaic:" + CldrUtility.LINE_SEPARATOR
314 System.out.println("Common & Functional & !Archaic:" + CldrUtility.LINE_SEPARATOR
319 System.out.println("Inherited & Functional & !Archaic:" + CldrUtility.LINE_SEPARATOR
323 System.out.println("Nl:" + CldrUtility.LINE_SEPARATOR + bf.showSetNames(new UnicodeSet("[:Nl:]")));
324 System.out.println("Nl & Functional & !Archaic:" + CldrUtility.LINE_SEPARATOR + bf.showSetNames(nl));
375 System.out.println(CldrUtility.LINE_SEPARATOR + "Macrolanguages");
421 // System.out.format("Wide %s" + Utility.LINE_SEPARATOR + "" + Utility.LINE_SEPARATOR, wide)
    [all...]
QuickCheck.java 270 System.out.format("Distinguishing Elements: %s" + CldrUtility.LINE_SEPARATOR, distinguishing);
271 System.out.format("Nondistinguishing Elements: %s" + CldrUtility.LINE_SEPARATOR, nonDistinguishing);
272 System.out.format("Skipped %s" + CldrUtility.LINE_SEPARATOR, skipAttributes);
276 System.out.println(CldrUtility.LINE_SEPARATOR + "Showing Path to PrettyPath mapping"
277 + CldrUtility.LINE_SEPARATOR);
291 System.out.println(CldrUtility.LINE_SEPARATOR + "Showing Paths not in root"
292 + CldrUtility.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/cldr/tools/java/org/unicode/cldr/util/
ExtractCollationRules.java 110 rules.append(CldrUtility.LINE_SEPARATOR);
119 rules.append(CldrUtility.LINE_SEPARATOR);
133 results.append("[" + attribute + " " + value + "]" + CldrUtility.LINE_SEPARATOR);
FindDTDOrder.java 140 System.out.println(CldrUtility.LINE_SEPARATOR + "======== Start Attributes to Elements (unblocked) "
141 + CldrUtility.LINE_SEPARATOR);
151 System.out.println(CldrUtility.LINE_SEPARATOR + "======== End Attributes to Elements"
152 + CldrUtility.LINE_SEPARATOR);
153 System.out.println(CldrUtility.LINE_SEPARATOR + "======== Start Elements to Children (skipping alias, special)"
154 + CldrUtility.LINE_SEPARATOR);
156 System.out.println(CldrUtility.LINE_SEPARATOR + "======== End Elements to Children"
157 + CldrUtility.LINE_SEPARATOR);
316 String sep = CldrUtility.LINE_SEPARATOR + "\t\t\t";
408 "<elementOrder>", "</elementOrder>", "\t\t\t", CldrUtility.LINE_SEPARATOR + "\t\t")
    [all...]
TestStateDictionaryBuilder.java 223 System.out.println("States:" + CldrUtility.LINE_SEPARATOR + stateDictionary);
227 System.out.println("Structure:" + CldrUtility.LINE_SEPARATOR + stateDictionary.debugShow());
340 return CldrUtility.LINE_SEPARATOR + "TEXT:\t" + stateMatcher.text + CldrUtility.LINE_SEPARATOR + "STATE:\t"
341 + showValues(stateStatus, stateMatcher) + CldrUtility.LINE_SEPARATOR + "SIMPLE:\t"
403 System.out.format("Finding words in: \"%s\"" + CldrUtility.LINE_SEPARATOR, myText);

Completed in 406 milliseconds

1 2 3 4