Home
last modified time | relevance | path

Searched refs:toSource (Results 1 – 5 of 5) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/util/
DIso639Data.java46 static Map<String, Source> toSource; field in Iso639Data
156 Source result = toSource.get(languageSubtag); in getSource()
303 toSource = new HashMap<String, Source>(); in getData()
304 toSource.put("sh", Source.ISO_639_1); // add deprecated language in getData()
444 toSource.put(languageSubtag, Source.ISO_639_2); in getData()
456toSource.put(languageSubtag, languageSubtag.length() == 2 ? Source.ISO_639_1 : Source.ISO_639_2); in getData()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
DRoundTripTest.java1108 UnicodeSet toSource; field in RoundTripTest.TransliterationTest
1212 toSource = new UnicodeSet(backtoSourceRange); in test()
1213 toSource.addAll(okAnyway); in test()
1524 if (!toSource.containsAll(targ)
1527 if (!toSource.containsAll(targD)
1530 … logWrongScript("" + getTargetSource(transliteratorID) + "", cs, targ, toSource, badCharacters);
1595 … if (!toSource.containsAll(targ) /*&& !failTargSource.contains(c) && !failTargSource.contains(d)*/
1598 … if (!toSource.containsAll(targD) /*&& !failTargSource.contains(c) && !failTargSource.contains(d)*/
1600 … logWrongScript("" + getTargetSource(transliteratorID) + "", cs, targ, toSource, badCharacters);
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
DRoundTripTest.java1105 UnicodeSet toSource; field in RoundTripTest.TransliterationTest
1209 toSource = new UnicodeSet(backtoSourceRange); in test()
1210 toSource.addAll(okAnyway); in test()
1521 if (!toSource.containsAll(targ)
1524 if (!toSource.containsAll(targD)
1527 … logWrongScript("" + getTargetSource(transliteratorID) + "", cs, targ, toSource, badCharacters);
1592 … if (!toSource.containsAll(targ) /*&& !failTargSource.contains(c) && !failTargSource.contains(d)*/
1595 … if (!toSource.containsAll(targD) /*&& !failTargSource.contains(c) && !failTargSource.contains(d)*/
1597 … logWrongScript("" + getTargetSource(transliteratorID) + "", cs, targ, toSource, badCharacters);
/external/icu/icu4c/source/test/intltest/
Dtransrt.cpp340 UnicodeSet toSource; member in RTTest
503 this->toSource.clear(); in test()
504 this->toSource.applyPattern(sourceRangeVal, status); in test()
510 this->toSource.addAll(okAnyway); in test()
771 if (toSource.containsAll(targ) == FALSE || in test2()
779 if (toSource.containsAll(targD) == FALSE) { in test2()
846 if (toSource.containsAll(targ) == FALSE || in test2()
856 if (toSource.containsAll(targD) == FALSE in test2()
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DSocksProxy.java193 BufferedSource toSource = Okio.buffer(Okio.source(toSocket)); in acceptCommand() local
196 transfer(fromAddress, toAddress, toSource, fromSink); in acceptCommand()