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

1 2

  /external/icu/icu4c/source/test/intltest/
ucaconf.cpp 92 coll->setAttribute(UCOL_CASE_FIRST, UCOL_OFF, status);
93 coll->setAttribute(UCOL_CASE_LEVEL, UCOL_OFF, status);
101 coll->setAttribute(UCOL_CASE_FIRST, UCOL_OFF, status);
102 coll->setAttribute(UCOL_CASE_LEVEL, UCOL_OFF, status);
apicoll.cpp 366 if (en_US->getAttribute(UCOL_NORMALIZATION_MODE, status) != UCOL_OFF)
410 col->setAttribute(UCOL_CASE_LEVEL, UCOL_OFF, err);
411 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 563 collator->setAttribute(UCOL_NORMALIZATION_MODE, UCOL_OFF, status);
845 m_en_us_->setAttribute(UCOL_NORMALIZATION_MODE, UCOL_OFF, status);
    [all...]
tsmthred.cpp     [all...]
  /external/icu/icu4c/source/test/cintltst/
cg7coll.c 168 tblColl1 = ucol_openRules(defRules, rlen, UCOL_OFF,
208 myCollation = ucol_openRules(temp, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH,NULL, &status);
239 myCollation = ucol_openRules(temp, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status);
268 myCollation = ucol_openRules(temp, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status);
298 myCollation = ucol_openRules(temp, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status);
callcoll.c 167 } else if(ucol_getAttribute(coll, UCOL_CASE_LEVEL, &errorCode) == UCOL_OFF || doneCase == TRUE || strength != UCOL_SECONDARY) {
746 myCollation=ucol_openRules(rules, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status);
771 myCollation=ucol_openRules(rules, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH,NULL, &status);
798 myCollation=ucol_openRules(rules, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH,NULL, &status);
823 myCollation=ucol_openRules(rules, len, UCOL_OFF, UCOL_IDENTICAL, NULL,&status);
847 myCollation=ucol_openRules(rules, len, UCOL_OFF, UCOL_DEFAULT_STRENGTH,NULL, &status);
    [all...]
capitst.c 101 {UCOL_FRENCH_COLLATION, {UCOL_ON, UCOL_OFF}, 2, UCOL_SHIFTED},
102 {UCOL_ALTERNATE_HANDLING, {UCOL_NON_IGNORABLE, UCOL_SHIFTED}, 2, UCOL_OFF},/* attribute for handling variable elements*/
103 {UCOL_CASE_FIRST, {UCOL_OFF, UCOL_LOWER_FIRST, UCOL_UPPER_FIRST}, 3, UCOL_SHIFTED},/* who goes first, lower case or uppercase */
104 {UCOL_CASE_LEVEL, {UCOL_ON, UCOL_OFF}, 2, UCOL_SHIFTED},/* do we have an extra case level */
105 {UCOL_NORMALIZATION_MODE, {UCOL_ON, UCOL_OFF}, 2, UCOL_SHIFTED},/* attribute for normalization */
106 {UCOL_DECOMPOSITION_MODE, {UCOL_ON, UCOL_OFF}, 2, UCOL_SHIFTED},
108 {UCOL_HIRAGANA_QUATERNARY_MODE, {UCOL_ON, UCOL_OFF}, 2, UCOL_SHIFTED},/* when turned on, this attribute */
635 if (ucol_getAttribute(en_US, UCOL_NORMALIZATION_MODE, &status) != UCOL_OFF ||
790 ucol_setAttribute(someCollators[idx], UCOL_CASE_LEVEL, UCOL_OFF, &err);
798 ucol_setAttribute(someClonedCollators[idx], UCOL_CASE_LEVEL, UCOL_OFF, &err)
    [all...]
cmsccoll.c 94 coll = ucol_openRules(temp, u_strlen(temp), UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL,&status);
120 coll = ucol_openRules(temp, u_strlen(temp), UCOL_OFF, UCOL_DEFAULT_STRENGTH,NULL, &status);
193 ucol_setAttribute(coll, UCOL_NORMALIZATION_MODE, UCOL_OFF, &status);
282 UCOL_OFF,
294 UCOL_OFF,
316 "UCOL_OFF",
328 "UCOL_OFF",
512 coll = ucol_openRules(t1, ruleLen, UCOL_OFF, UCOL_TERTIARY,NULL, &status);
543 ucol_setAttribute(coll, UCOL_NORMALIZATION_MODE, UCOL_OFF, &status);
695 UCollator *coll = ucol_openRules(rulez, 0, UCOL_OFF, UCOL_TERTIARY,NULL, &status)
    [all...]
citertst.c 447 c1 = ucol_openRules(rule, u_strlen(rule), UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status);
471 c2 = ucol_openRules(rule, u_strlen(rule), UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status);
    [all...]
usrchtst.c 606 ucol_setAttribute(collator, UCOL_NORMALIZATION_MODE, UCOL_OFF, &status);
693 ucol_setAttribute(EN_US_, UCOL_NORMALIZATION_MODE, UCOL_OFF, &status);
    [all...]
  /external/icu/icu4c/source/i18n/
collationsettings.h 71 * the tri-value UCOL_CASE_FIRST attribute: UCOL_OFF vs. UCOL_LOWER_FIRST vs. UCOL_UPPER_FIRST.
158 return ((options & bit) != 0) ? UCOL_ON : UCOL_OFF;
165 return (option == 0) ? UCOL_OFF :
collationsettings.cpp 296 case UCOL_OFF:
314 case UCOL_OFF:
collationruleparser.cpp 559 value = UCOL_OFF;
738 return UCOL_OFF;
rulebasedcollator.cpp 430 return UCOL_OFF;
438 return ((settings->options & option) == 0) ? UCOL_OFF : UCOL_ON;
487 if(value != UCOL_OFF && value != UCOL_ON && value != UCOL_DEFAULT) {
    [all...]
ucol_sit.cpp 126 { 'X', UCOL_OFF }
coll.cpp 284 { "no", UCOL_OFF },
  /external/icu/icu4c/source/samples/coll/
coll.cpp 164 collator = ucol_openRules(rules, -1, UCOL_OFF, UCOL_TERTIARY,
  /external/icu/icu4c/source/samples/strsrch/
strsrch.cpp 155 collator = ucol_openRules(rules, -1, UCOL_OFF, UCOL_TERTIARY,
  /external/icu/icu4c/source/i18n/unicode/
ucol.h 109 UCOL_OFF = 16,
237 * being considered backwards and UCOL_OFF which treats secondary
254 * Acceptable values are UCOL_OFF (default), which orders
263 * level) is generated or not. Acceptable values are UCOL_OFF (default),
273 * are performed. When set to UCOL_OFF (default) no normalization check
400 * UCOL_OFF (expect the text to not need normalization),
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationRuleParser.java 118 private static final int UCOL_OFF = 0;
600 value = UCOL_OFF;
768 return UCOL_OFF;
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationRuleParser.java 114 private static final int UCOL_OFF = 0;
596 value = UCOL_OFF;
764 return UCOL_OFF;
    [all...]
  /external/v8/src/
i18n.cc 486 UCOL_NUMERIC_COLLATION, numeric ? UCOL_ON : UCOL_OFF, status);
502 collator->setAttribute(UCOL_CASE_FIRST, UCOL_OFF, status);
    [all...]
  /external/icu/icu4c/source/test/perf/collationperf/
collperf.cpp     [all...]
  /external/icu/icu4c/source/test/perf/collperf/
collperf.cpp 616 ucol_setAttribute(col, UCOL_FRENCH_COLLATION, UCOL_OFF, &status);

Completed in 288 milliseconds

1 2