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

1 2

  /external/icu/icu4c/source/i18n/
collationsets.h 47 tailored(t),
81 UnicodeSet *tailored; member in class:TailoredSet
132 int8_t checkTailored; // -1: collected tailored +1: exclude tailored
133 UnicodeSet tailored; member in class:ContractionsAndExpansions
collationsets.cpp 37 return TRUE; // fallback to base, not tailored
73 tailored->add(start);
132 // and in tailorings we assume that performance of tailored characters is more important.
150 // or when a single-character mapping was copied for tailored contractions.
207 if(tailored->contains(jamos[0]) || tailored->contains(jamos[1]) ||
208 (length == 3 && tailored->contains(jamos[2]))) {
324 tailored->add(UnicodeString(unreversedPrefix).append(c));
338 tailored->add(UnicodeString(unreversedPrefix).append(c).append(sfx));
344 tailored->add(c)
    [all...]
rulebasedcollator.cpp 370 UnicodeSet *tailored = new UnicodeSet(); local
371 if(tailored == NULL) {
376 TailoredSet(tailored).forData(data, errorCode);
378 delete tailored;
382 return tailored;
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
TailoredSet.java 46 private UnicodeSet tailored; field in class:TailoredSet
51 tailored = t;
68 return; // fallback to base, not tailored
92 tailored.add(start);
149 // and in tailorings we assume that performance of tailored characters is more important.
167 // or when a single-character mapping was copied for tailored contractions.
226 if (tailored.contains(jamos.charAt(0)) || tailored.contains(jamos.charAt(1))
227 || (length == 3 && tailored.contains(jamos.charAt(2)))) {
360 tailored.add(new StringBuilder(unreversedPrefix.appendCodePoint(c)))
    [all...]
ContractionsAndExpansions.java 34 private int checkTailored = 0; // -1: collected tailored +1: exclude tailored
35 private UnicodeSet tailored = new UnicodeSet(); field in class:ContractionsAndExpansions
67 // Add all from the base data but only for un-tailored code points.
68 tailored.freeze();
80 // No need to collect nor check the tailored set.
84 return; // fallback to base, not tailored
86 cne.tailored.add(start, end);
88 // checkTailored > 0: Exclude tailored ranges from the base data enumeration.
90 if (cne.tailored.contains(start))
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
TailoredSet.java 44 private UnicodeSet tailored; field in class:TailoredSet
49 tailored = t;
66 return; // fallback to base, not tailored
90 tailored.add(start);
147 // and in tailorings we assume that performance of tailored characters is more important.
165 // or when a single-character mapping was copied for tailored contractions.
224 if (tailored.contains(jamos.charAt(0)) || tailored.contains(jamos.charAt(1))
225 || (length == 3 && tailored.contains(jamos.charAt(2)))) {
358 tailored.add(new StringBuilder(unreversedPrefix.appendCodePoint(c)))
    [all...]
ContractionsAndExpansions.java 30 private int checkTailored = 0; // -1: collected tailored +1: exclude tailored
31 private UnicodeSet tailored = new UnicodeSet(); field in class:ContractionsAndExpansions
63 // Add all from the base data but only for un-tailored code points.
64 tailored.freeze();
76 // No need to collect nor check the tailored set.
80 return; // fallback to base, not tailored
82 cne.tailored.add(start, end);
84 // checkTailored > 0: Exclude tailored ranges from the base data enumeration.
86 if (cne.tailored.contains(start))
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationIteratorTest.java 258 RuleBasedCollator tailored = null; local
260 tailored = new RuleBasedCollator("& a < ch");
265 iter = tailored.getCollationElementIterator(contraction);
273 iter = tailored.getCollationElementIterator(contraction);
283 iter = tailored.getCollationElementIterator(surrogate);
291 iter = tailored.getCollationElementIterator(surrogate);
CollationTest.java 990 UnicodeSet tailored = coll.getTailoredSet(); local
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationIteratorTest.java 257 RuleBasedCollator tailored = null; local
259 tailored = new RuleBasedCollator("& a < ch");
264 iter = tailored.getCollationElementIterator(contraction);
272 iter = tailored.getCollationElementIterator(contraction);
282 iter = tailored.getCollationElementIterator(surrogate);
290 iter = tailored.getCollationElementIterator(surrogate);
CollationTest.java 989 UnicodeSet tailored = coll.getTailoredSet(); local
    [all...]
  /external/icu/icu4c/source/test/intltest/
itercoll.cpp 224 RuleBasedCollator tailored("& a < ch", status);
229 iter = tailored.createCollationElementIterator(contraction);
241 iter = tailored.createCollationElementIterator(contraction);
254 iter = tailored.createCollationElementIterator(surrogate);
265 iter = tailored.createCollationElementIterator(surrogate);
srchtest.cpp 1074 RuleBasedCollator *tailored = new RuleBasedCollator(rules, status); local
1928 RuleBasedCollator *tailored = new RuleBasedCollator(rules, local
    [all...]
collationtest.cpp     [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/search/
SearchTest.java 151 /* tailored */
161 /* tailored */
950 RuleBasedCollator tailored = null; local
996 RuleBasedCollator tailored = null; local
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/search/
SearchTest.java 150 /* tailored */
160 /* tailored */
949 RuleBasedCollator tailored = null; local
995 RuleBasedCollator tailored = null; local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
usrchtst.c 930 UCollator *tailored = NULL; local
2033 UCollator *tailored = NULL; local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RuleBasedCollator.java 970 UnicodeSet tailored = new UnicodeSet(); local
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
RuleBasedCollator.java 993 UnicodeSet tailored = new UnicodeSet(); local
    [all...]
  /prebuilts/go/darwin-x86/src/net/smtp/
smtp_test.go 677 // smtp server, finely tailored to deal with our own client only!
  /prebuilts/go/linux-x86/src/net/smtp/
smtp_test.go 677 // smtp server, finely tailored to deal with our own client only!
  /external/blktrace/doc/
blktrace.tex 60 blktrace. Some of the specific instructions below may need to be tailored
585 The output from blkparse can be tailored for specific use - in particular,
    [all...]
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/misc/common/robolectric/lib/
icu4j-53.1.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar 

Completed in 1389 milliseconds

1 2