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

1 2

  /external/icu/icu4c/source/test/intltest/
ucaconf.cpp 94 coll->setAttribute(UCOL_CASE_FIRST, UCOL_OFF, status);
95 coll->setAttribute(UCOL_CASE_LEVEL, UCOL_OFF, status);
103 coll->setAttribute(UCOL_CASE_FIRST, UCOL_OFF, status);
104 coll->setAttribute(UCOL_CASE_LEVEL, UCOL_OFF, status);
apicoll.cpp 385 if (en_US->getAttribute(UCOL_NORMALIZATION_MODE, status) != UCOL_OFF)
429 col->setAttribute(UCOL_CASE_LEVEL, UCOL_OFF, err);
430 someCollators[index]->setAttribute(UCOL_CASE_LEVEL, UCOL_OFF, err);
    [all...]
regcoll.cpp 253 if (c->getAttribute(UCOL_NORMALIZATION_MODE, status) != UCOL_OFF)
433 c2->setAttribute(UCOL_NORMALIZATION_MODE, UCOL_OFF, status);
900 c->setAttribute(UCOL_NORMALIZATION_MODE, UCOL_OFF, status);
    [all...]
srchtest.cpp 566 collator->setAttribute(UCOL_NORMALIZATION_MODE, UCOL_OFF, status);
848 m_en_us_->setAttribute(UCOL_NORMALIZATION_MODE, UCOL_OFF, status);
    [all...]
tsmthred.cpp     [all...]
  /external/icu/icu4c/source/test/cintltst/
cg7coll.c 170 tblColl1 = ucol_openRules(defRules, rlen, UCOL_OFF,
210 myCollation = ucol_openRules(temp, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH,NULL, &status);
241 myCollation = ucol_openRules(temp, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status);
270 myCollation = ucol_openRules(temp, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status);
300 myCollation = ucol_openRules(temp, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status);
callcoll.c 169 } else if(ucol_getAttribute(coll, UCOL_CASE_LEVEL, &errorCode) == UCOL_OFF || doneCase == TRUE || strength != UCOL_SECONDARY) {
748 myCollation=ucol_openRules(rules, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status);
773 myCollation=ucol_openRules(rules, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH,NULL, &status);
800 myCollation=ucol_openRules(rules, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH,NULL, &status);
825 myCollation=ucol_openRules(rules, len, UCOL_OFF, UCOL_IDENTICAL, NULL,&status);
849 myCollation=ucol_openRules(rules, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH,NULL, &status);
    [all...]
capitst.c 103 {UCOL_FRENCH_COLLATION, {UCOL_ON, UCOL_OFF}, 2, UCOL_SHIFTED},
104 {UCOL_ALTERNATE_HANDLING, {UCOL_NON_IGNORABLE, UCOL_SHIFTED}, 2, UCOL_OFF},/* attribute for handling variable elements*/
105 {UCOL_CASE_FIRST, {UCOL_OFF, UCOL_LOWER_FIRST, UCOL_UPPER_FIRST}, 3, UCOL_SHIFTED},/* who goes first, lower case or uppercase */
106 {UCOL_CASE_LEVEL, {UCOL_ON, UCOL_OFF}, 2, UCOL_SHIFTED},/* do we have an extra case level */
107 {UCOL_NORMALIZATION_MODE, {UCOL_ON, UCOL_OFF}, 2, UCOL_SHIFTED},/* attribute for normalization */
108 {UCOL_DECOMPOSITION_MODE, {UCOL_ON, UCOL_OFF}, 2, UCOL_SHIFTED},
110 {UCOL_HIRAGANA_QUATERNARY_MODE, {UCOL_ON, UCOL_OFF}, 2, UCOL_SHIFTED},/* when turned on, this attribute */
637 if (ucol_getAttribute(en_US, UCOL_NORMALIZATION_MODE, &status) != UCOL_OFF ||
792 ucol_setAttribute(someCollators[idx], UCOL_CASE_LEVEL, UCOL_OFF, &err);
800 ucol_setAttribute(someClonedCollators[idx], UCOL_CASE_LEVEL, UCOL_OFF, &err)
    [all...]
cmsccoll.c 93 coll = ucol_openRules(temp, u_strlen(temp), UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL,&status);
119 coll = ucol_openRules(temp, u_strlen(temp), UCOL_OFF, UCOL_DEFAULT_STRENGTH,NULL, &status);
192 ucol_setAttribute(coll, UCOL_NORMALIZATION_MODE, UCOL_OFF, &status);
281 UCOL_OFF,
293 UCOL_OFF,
315 "UCOL_OFF",
327 "UCOL_OFF",
511 coll = ucol_openRules(t1, ruleLen, UCOL_OFF, UCOL_TERTIARY,NULL, &status);
542 ucol_setAttribute(coll, UCOL_NORMALIZATION_MODE, UCOL_OFF, &status);
694 UCollator *coll = ucol_openRules(rulez, 0, UCOL_OFF, UCOL_TERTIARY,NULL, &status)
    [all...]
citertst.c 450 c1 = ucol_openRules(rule, u_strlen(rule), UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status);
474 c2 = ucol_openRules(rule, u_strlen(rule), UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status);
    [all...]
usrchtst.c 608 ucol_setAttribute(collator, UCOL_NORMALIZATION_MODE, UCOL_OFF, &status);
695 ucol_setAttribute(EN_US_, UCOL_NORMALIZATION_MODE, UCOL_OFF, &status);
    [all...]
  /external/icu/icu4c/source/i18n/
collationsettings.h 73 * the tri-value UCOL_CASE_FIRST attribute: UCOL_OFF vs. UCOL_LOWER_FIRST vs. UCOL_UPPER_FIRST.
160 return ((options & bit) != 0) ? UCOL_ON : UCOL_OFF;
167 return (option == 0) ? UCOL_OFF :
collationsettings.cpp 298 case UCOL_OFF:
316 case UCOL_OFF:
collationruleparser.cpp 561 value = UCOL_OFF;
740 return UCOL_OFF;
rulebasedcollator.cpp 432 return UCOL_OFF;
440 return ((settings->options & option) == 0) ? UCOL_OFF : UCOL_ON;
489 if(value != UCOL_OFF && value != UCOL_ON && value != UCOL_DEFAULT) {
    [all...]
ucol_sit.cpp 128 { 'X', UCOL_OFF }
coll.cpp 288 { "no", UCOL_OFF },
  /external/icu/icu4c/source/samples/coll/
coll.cpp 170 collator = ucol_openRules(rules, -1, UCOL_OFF, UCOL_TERTIARY,
  /external/icu/icu4c/source/samples/strsrch/
strsrch.cpp 160 collator = ucol_openRules(rules, -1, UCOL_OFF, UCOL_TERTIARY,
  /external/icu/icu4c/source/i18n/unicode/
ucol.h 111 UCOL_OFF = 16,
245 * being considered backwards and UCOL_OFF which treats secondary
262 * Acceptable values are UCOL_OFF (default), which orders
271 * level) is generated or not. Acceptable values are UCOL_OFF (default),
281 * are performed. When set to UCOL_OFF (default) no normalization check
411 * UCOL_OFF (expect the text to not need normalization),
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationRuleParser.java 120 private static final int UCOL_OFF = 0;
602 value = UCOL_OFF;
770 return UCOL_OFF;
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationRuleParser.java 116 private static final int UCOL_OFF = 0;
598 value = UCOL_OFF;
766 return UCOL_OFF;
    [all...]
  /external/v8/src/
i18n.cc 483 UCOL_NUMERIC_COLLATION, numeric ? UCOL_ON : UCOL_OFF, status);
499 collator->setAttribute(UCOL_CASE_FIRST, UCOL_OFF, status);
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
udbgutil.cpp 175 FIELD_NAME_STR( LEN_UCOL, UCOL_OFF ),
  /external/icu/icu4c/source/test/perf/collationperf/
collperf.cpp     [all...]

Completed in 1210 milliseconds

1 2