Home
last modified time | relevance | path

Searched refs:tailored (Results 1 - 25 of 29) sorted by relevance

12

/third_party/icu/icu4c/source/i18n/
H A Dcollationsets.cpp37 return true; // fallback to base, not tailored in enumTailoredRange()
73 tailored->add(start); in handleCE32()
132 // and in tailorings we assume that performance of tailored characters is more important. in compare()
150 // or when a single-character mapping was copied for tailored contractions. in compare()
207 if(tailored->contains(jamos[0]) || tailored->contains(jamos[1]) || in compare()
208 (length == 3 && tailored->contains(jamos[2]))) { in compare()
324 tailored->add(UnicodeString(unreversedPrefix).append(c)); in addPrefix()
338 tailored->add(UnicodeString(unreversedPrefix).append(c).append(sfx)); in addSuffix()
344 tailored in add()
[all...]
H A Dcollationsets.h47 tailored(t), in TailoredSet()
81 UnicodeSet *tailored; member in TailoredSet
132 int8_t checkTailored; // -1: collected tailored +1: exclude tailored
133 UnicodeSet tailored; member in ContractionsAndExpansions
H A Drulebasedcollator.cpp370 UnicodeSet *tailored = new UnicodeSet(); in getTailoredSet() local
371 if(tailored == NULL) { in getTailoredSet()
376 TailoredSet(tailored).forData(data, errorCode); in getTailoredSet()
378 delete tailored; in getTailoredSet()
382 return tailored; in getTailoredSet()
/third_party/node/deps/icu-small/source/i18n/
H A Dcollationsets.cpp37 return true; // fallback to base, not tailored in enumTailoredRange()
73 tailored->add(start); in handleCE32()
132 // and in tailorings we assume that performance of tailored characters is more important. in compare()
150 // or when a single-character mapping was copied for tailored contractions. in compare()
207 if(tailored->contains(jamos[0]) || tailored->contains(jamos[1]) || in compare()
208 (length == 3 && tailored->contains(jamos[2]))) { in compare()
324 tailored->add(UnicodeString(unreversedPrefix).append(c)); in addPrefix()
338 tailored->add(UnicodeString(unreversedPrefix).append(c).append(sfx)); in addSuffix()
344 tailored in add()
[all...]
H A Dcollationsets.h47 tailored(t), in TailoredSet()
81 UnicodeSet *tailored; member in TailoredSet
132 int8_t checkTailored; // -1: collected tailored +1: exclude tailored
133 UnicodeSet tailored; member in ContractionsAndExpansions
H A Drulebasedcollator.cpp372 UnicodeSet *tailored = new UnicodeSet(); in getTailoredSet() local
373 if(tailored == nullptr) { in getTailoredSet()
378 TailoredSet(tailored).forData(data, errorCode); in getTailoredSet()
380 delete tailored; in getTailoredSet()
384 return tailored; in getTailoredSet()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dcollationsets.cpp37 return TRUE; // fallback to base, not tailored in enumTailoredRange()
73 tailored->add(start); in handleCE32()
132 // and in tailorings we assume that performance of tailored characters is more important. in compare()
150 // or when a single-character mapping was copied for tailored contractions. in compare()
207 if(tailored->contains(jamos[0]) || tailored->contains(jamos[1]) || in compare()
208 (length == 3 && tailored->contains(jamos[2]))) { in compare()
324 tailored->add(UnicodeString(unreversedPrefix).append(c)); in addPrefix()
338 tailored->add(UnicodeString(unreversedPrefix).append(c).append(sfx)); in addSuffix()
344 tailored in add()
[all...]
H A Dcollationsets.h47 tailored(t), in TailoredSet()
81 UnicodeSet *tailored; member in TailoredSet
132 int8_t checkTailored; // -1: collected tailored +1: exclude tailored
133 UnicodeSet tailored; member in ContractionsAndExpansions
H A Drulebasedcollator.cpp370 UnicodeSet *tailored = new UnicodeSet(); in getTailoredSet() local
371 if(tailored == NULL) { in getTailoredSet()
376 TailoredSet(tailored).forData(data, errorCode); in getTailoredSet()
378 delete tailored; in getTailoredSet()
382 return tailored; in getTailoredSet()
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DTailoredSet.java44 private UnicodeSet tailored; field in TailoredSet
49 tailored = t; in TailoredSet()
66 return; // fallback to base, not tailored in enumTailoredRange()
90 tailored.add(start); in handleCE32()
147 // and in tailorings we assume that performance of tailored characters is more important. in compare()
165 // or when a single-character mapping was copied for tailored contractions. in compare()
224 if (tailored.contains(jamos.charAt(0)) || tailored.contains(jamos.charAt(1)) in compare()
225 || (length == 3 && tailored.contains(jamos.charAt(2)))) { in compare()
358 tailored in addPrefix()
[all...]
H A DContractionsAndExpansions.java30 private int checkTailored = 0; // -1: collected tailored +1: exclude tailored
31 private UnicodeSet tailored = new UnicodeSet(); field in ContractionsAndExpansions
63 // Add all from the base data but only for un-tailored code points. in forData()
64 tailored.freeze(); in forData()
76 // No need to collect nor check the tailored set. in enumCnERange()
80 return; // fallback to base, not tailored in enumCnERange()
82 cne.tailored.add(start, end); in enumCnERange()
84 // checkTailored > 0: Exclude tailored ranges from the base data enumeration. in enumCnERange()
86 if (cne.tailored in enumCnERange()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/
H A DTailoredSet.java46 private UnicodeSet tailored; field in TailoredSet
51 tailored = t; in TailoredSet()
68 return; // fallback to base, not tailored in enumTailoredRange()
92 tailored.add(start); in handleCE32()
149 // and in tailorings we assume that performance of tailored characters is more important. in compare()
167 // or when a single-character mapping was copied for tailored contractions. in compare()
226 if (tailored.contains(jamos.charAt(0)) || tailored.contains(jamos.charAt(1)) in compare()
227 || (length == 3 && tailored.contains(jamos.charAt(2)))) { in compare()
360 tailored in addPrefix()
[all...]
H A DContractionsAndExpansions.java34 private int checkTailored = 0; // -1: collected tailored +1: exclude tailored
35 private UnicodeSet tailored = new UnicodeSet(); field in ContractionsAndExpansions
70 // Add all from the base data but only for un-tailored code points. in forData()
71 tailored.freeze(); in forData()
83 // No need to collect nor check the tailored set. in enumCnERange()
87 return; // fallback to base, not tailored in enumCnERange()
89 cne.tailored.add(start, end); in enumCnERange()
91 // checkTailored > 0: Exclude tailored ranges from the base data enumeration. in enumCnERange()
93 if (cne.tailored in enumCnERange()
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Ditercoll.cpp224 RuleBasedCollator tailored("& a < ch", status); in TestOffset()
229 iter = tailored.createCollationElementIterator(contraction); in TestOffset()
241 iter = tailored.createCollationElementIterator(contraction); in TestOffset()
254 iter = tailored.createCollationElementIterator(surrogate); in TestOffset()
265 iter = tailored.createCollationElementIterator(surrogate); in TestOffset()
H A Dsrchtest.cpp1074 RuleBasedCollator *tailored = new RuleBasedCollator(rules, status); in TestCollator() local
1075 tailored->setStrength(getECollationStrength(COLLATOR[1].strength)); in TestCollator()
1080 delete tailored; in TestCollator()
1084 strsrch->setCollator(tailored, status); in TestCollator()
1085 if (U_FAILURE(status) || (*strsrch->getCollator()) != (*tailored)) { in TestCollator()
1088 delete tailored; in TestCollator()
1093 delete tailored; in TestCollator()
1102 delete tailored; in TestCollator()
1108 delete tailored; in TestCollator()
1928 RuleBasedCollator *tailored in TestCollatorCanonical() local
[all...]
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCollationIteratorTest.java260 RuleBasedCollator tailored = null; in TestOffset()
262 tailored = new RuleBasedCollator("& a < ch"); in TestOffset()
267 iter = tailored.getCollationElementIterator(contraction); in TestOffset()
275 iter = tailored.getCollationElementIterator(contraction); in TestOffset()
285 iter = tailored.getCollationElementIterator(surrogate); in TestOffset()
293 iter = tailored.getCollationElementIterator(surrogate); in TestOffset()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/
H A DCollationIteratorTest.java263 RuleBasedCollator tailored = null; in TestOffset()
265 tailored = new RuleBasedCollator("& a < ch"); in TestOffset()
270 iter = tailored.getCollationElementIterator(contraction); in TestOffset()
278 iter = tailored.getCollationElementIterator(contraction); in TestOffset()
288 iter = tailored.getCollationElementIterator(surrogate); in TestOffset()
296 iter = tailored.getCollationElementIterator(surrogate); in TestOffset()
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/search/
H A DSearchTest.java154 /* tailored */
164 /* tailored */
953 RuleBasedCollator tailored = null; in TestCollator()
955 tailored = new RuleBasedCollator(rules); in TestCollator()
956 tailored.setStrength(COLLATOR[1].strength); in TestCollator()
962 strsrch.setCollator(tailored); in TestCollator()
963 if (!strsrch.getCollator().equals(tailored)) { in TestCollator()
999 RuleBasedCollator tailored = null; in TestCollatorCanonical()
1001 tailored = new RuleBasedCollator(rules); in TestCollatorCanonical()
1002 tailored in TestCollatorCanonical()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/search/
H A DSearchTest.java157 /* tailored */
167 /* tailored */
956 RuleBasedCollator tailored = null; in TestCollator()
958 tailored = new RuleBasedCollator(rules); in TestCollator()
959 tailored.setStrength(COLLATOR[1].strength); in TestCollator()
965 strsrch.setCollator(tailored); in TestCollator()
966 if (!strsrch.getCollator().equals(tailored)) { in TestCollator()
1002 RuleBasedCollator tailored = null; in TestCollatorCanonical()
1004 tailored = new RuleBasedCollator(rules); in TestCollatorCanonical()
1005 tailored in TestCollatorCanonical()
[all...]
/third_party/icu/icu4c/source/test/cintltst/
H A Dusrchtst.c941 UCollator *tailored = NULL; in TestCollator() local
962 tailored = usearch_getCollator(strsrch); in TestCollator()
966 ucol_setStrength(tailored, UCOL_PRIMARY); in TestCollator()
991 tailored = ucol_openRules(rules, -1, UCOL_ON, COLLATOR[1].strength, in TestCollator()
997 usearch_setCollator(strsrch, tailored, &status); in TestCollator()
998 if (U_FAILURE(status) || usearch_getCollator(strsrch) != tailored) { in TestCollator()
1017 if (tailored != NULL) { in TestCollator()
1018 ucol_close(tailored); in TestCollator()
2044 UCollator *tailored = NULL; in TestCollatorCanonical() local
2077 tailored in TestCollatorCanonical()
[all...]
/third_party/icu/tools/colprobe/
H A DcolprobeNew.cpp658 UnicodeSet tailored; in processCollator() local
660 tailored = *((UnicodeSet *)ucol_getTailoredSet(gCol, &status)); in processCollator()
661 tailored.removeAll(CONTROL); in processCollator()
693 exemplarUSet.addAll(tailored); in processCollator()
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
H A DRuleBasedCollator.java961 * The argument defines whether full rules (root collation + tailored) rules are returned
972 * returning only the tailored rules
985 * Get a UnicodeSet that contains all the characters and sequences tailored in this collator.
993 UnicodeSet tailored = new UnicodeSet(); in getTailoredSet()
995 new TailoredSet(tailored).forData(data); in getTailoredSet()
997 return tailored; in getTailoredSet()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DRuleBasedCollator.java937 * The argument defines whether full rules (root collation + tailored) rules are returned
948 * returning only the tailored rules
960 * Get a UnicodeSet that contains all the characters and sequences tailored in this collator.
967 UnicodeSet tailored = new UnicodeSet(); in getTailoredSet()
969 new TailoredSet(tailored).forData(data); in getTailoredSet()
971 return tailored; in getTailoredSet()
/third_party/icu/icu4c/source/tools/genrb/
H A Dparse.cpp1043 UBool tailored = false; in writeCollationTOML() local
1094 tailored = !isRoot; in writeCollationTOML()
1109 if (tailored) { in writeCollationTOML()
/third_party/node/deps/icu-small/source/tools/genrb/
H A Dparse.cpp1043 UBool tailored = false; in writeCollationTOML() local
1094 tailored = !isRoot; in writeCollationTOML()
1109 if (tailored) { in writeCollationTOML()

Completed in 37 milliseconds

12