HomeSort by relevance Sort by last modified time
    Searched refs:coll (Results 51 - 75 of 168) sorted by null

1 23 4 5 6 7

  /external/chromium_org/third_party/icu/source/test/intltest/
ssearch.cpp 18 #include "unicode/coll.h"
437 UCollator *coll = ucol_open(testCases[t].locale, &status); local
446 ucd = ucd_open(coll, &status);
476 ucol_close(coll);
685 OrderList(UCollator *coll, const UnicodeString &string, int32_t stringOffset = 0);
710 OrderList::OrderList(UCollator *coll, const UnicodeString &string, int32_t stringOffset)
714 UCollationElements *elems = ucol_openElements(coll, string.getBuffer(), string.length(), &status);
718 switch (ucol_getStrength(coll))
1228 UCollator *coll = NULL; local
1376 UCollator *coll = NULL; local
1452 UCollator *coll = NULL; local
1755 UCollator *coll; member in class:StringSetMonkey
2200 UCollator *coll = ucol_openFromShortString("S1", FALSE, NULL, &status); local
2339 UCollator *coll = ucol_openFromShortString("LEN_S1", FALSE, NULL, &status); local
    [all...]
tscoll.h 19 #include "unicode/coll.h"
52 UCollationResult compareUsingPartials(UCollator *coll, const UChar source[], int32_t sLen, const UChar target[], int32_t tLen, int32_t pieceSize, UErrorCode &status);
tsmthred.cpp 844 const UCollator *coll; member in class:CollatorThreadTest
849 coll(NULL),
856 coll = c;
870 resLen = ucol_getSortKey(coll, lines[i].buff, lines[i].buflen, newSk, 1024);
876 cmpres = ucol_strcoll(coll, lines[i-1].buff, lines[i-1].buflen, lines[i].buff, lines[i].buflen);
877 cmpres2 = ucol_strcoll(coll, lines[i].buff, lines[i].buflen, lines[i-1].buff, lines[i-1].buflen);
1005 UCollator *coll = ucol_open("root", &status); local
1010 ucol_setAttribute(coll, UCOL_NORMALIZATION_MODE, UCOL_ON, &status);
1011 ucol_setAttribute(coll, UCOL_CASE_FIRST, UCOL_OFF, &status);
1012 ucol_setAttribute(coll, UCOL_CASE_LEVEL, UCOL_OFF, &status)
    [all...]
regcoll.cpp 11 #include "unicode/coll.h"
809 Collator *coll = NULL; local
811 coll = Collator::createInstance(Locale::getJapan(), status);
813 if (coll == NULL || U_FAILURE(status))
816 delete coll;
823 coll->getCollationKey(test, key, status);
830 delete coll;
1084 static int32_t calcKeyIncremental(UCollator *coll, const UChar* text, int32_t len, uint8_t *keyBuf, int32_t /*keyBufLen*/, UErrorCode& status) {
1093 int32_t keyPartLen = ucol_nextSortKeyPart(coll, &uiter, state, &keyBuf[keyLen], count, &status);
1107 UCollator *coll; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
colldata.cpp 16 #include "unicode/coll.h"
40 CEList::CEList(UCollator *coll, const UnicodeString &string, UErrorCode &status)
43 UCollationElements *elems = ucol_openElements(coll, string.getBuffer(), string.length(), &status);
44 UCollationStrength strength = ucol_getStrength(coll);
45 UBool toShift = ucol_getAttribute(coll, UCOL_ALTERNATE_HANDLING, &status) == UCOL_SHIFTED;
46 uint32_t variableTop = ucol_getVariableTop(coll, &status);
315 : coll(NULL), ceToCharsStartingWith(NULL)
344 coll = ucol_safeClone(collator, NULL, NULL, &status);
350 coll = collator;
353 ucol_getContractionsAndExpansions(coll, contractions, expansions, FALSE, &status)
    [all...]
collationtest.cpp 16 #include "unicode/coll.h"
65 coll(NULL) {}
68 delete coll;
129 Collator *coll; member in class:CollationTest
162 RuleBasedCollator *rbc = dynamic_cast<RuleBasedCollator *>(coll);
285 coll->setAttribute(UCOL_STRENGTH, UCOL_IDENTICAL, errorCode);
303 UCollationResult order = coll->compareUTF8(fffd, illegal, errorCode);
    [all...]
tscoll.h 19 #include "unicode/coll.h"
52 UCollationResult compareUsingPartials(UCollator *coll, const UChar source[], int32_t sLen, const UChar target[], int32_t tLen, int32_t pieceSize, UErrorCode &status);
regcoll.cpp 11 #include "unicode/coll.h"
802 Collator *coll = NULL; local
804 coll = Collator::createInstance(Locale::getJapan(), status);
806 if (coll == NULL || U_FAILURE(status))
809 delete coll;
816 coll->getCollationKey(test, key, status);
823 delete coll;
1079 RuleBasedCollator coll(en_us->getRules() + " & C < ch , cH , Ch , CH < cat < crunchy", errorCode);
1081 CollationElementIterator *iter = coll.createCollationElementIterator(testText);
1198 UCollator *coll; local
    [all...]
tsmthred.cpp 141 #include "unicode/coll.h"
1138 const Collator *coll; member in class:CollatorThreadTest
    [all...]
  /external/chromium_org/third_party/icu/source/test/perf/strsrchperf/
strsrchperf.cpp 70 UCollator *coll = ucol_open(locale, &status); local
71 CollData *data = CollData::open(coll, status);
89 UCollator *coll = data->getCollator(); local
94 ucol_close(coll);
  /external/chromium_org/third_party/icu/source/i18n/
coleitr.cpp 50 m_data_ = ucol_openElements(other.m_data_->iteratordata_.coll, NULL, 0,
94 if (m_data_->iteratordata_.coll != that.m_data_->iteratordata_.coll)
202 uprv_init_collIterate(m_data_->iteratordata_.coll, string, length,
249 uprv_init_collIterate(m_data_->iteratordata_.coll, buffer, length,
256 UCollationStrength s = ucol_getStrength(m_data_->iteratordata_.coll);
474 coliter->coll = othercoliter->coll;
stsearch.cpp 65 RuleBasedCollator *coll,
76 if (coll == NULL) {
84 m_text_.length(), coll->ucollator,
128 RuleBasedCollator *coll,
139 if (coll == NULL) {
147 m_text_.length(), coll->ucollator,
280 void StringSearch::setCollator(RuleBasedCollator *coll, UErrorCode &status)
283 usearch_setCollator(m_strsrch_, coll->getUCollator(), &status);
colldata.cpp 17 #include "unicode/coll.h"
49 CEList::CEList(UCollator *coll, const UnicodeString &string, UErrorCode &status)
52 UCollationElements *elems = ucol_openElements(coll, string.getBuffer(), string.length(), &status);
53 UCollationStrength strength = ucol_getStrength(coll);
54 UBool toShift = ucol_getAttribute(coll, UCOL_ALTERNATE_HANDLING, &status) == UCOL_SHIFTED;
55 uint32_t variableTop = ucol_getVariableTop(coll, &status);
644 : coll(NULL), charsToCEList(NULL), ceToCharsStartingWith(NULL), key(NULL)
696 coll = ucol_safeClone(collator, NULL, NULL, &status);
702 coll = collator;
705 ucol_getContractionsAndExpansions(coll, contractions, expansions, FALSE, &status)
    [all...]
bmsearch.cpp 17 #include "unicode/coll.h"
83 UCollator *coll; member in class:Target
96 strengthMask(0), strength(UCOL_PRIMARY), variableTop(0), toShift(FALSE), coll(theCollator),
100 strength = ucol_getStrength(coll);
101 toShift = ucol_getAttribute(coll, UCOL_ALTERNATE_HANDLING, &status) == UCOL_SHIFTED;
102 variableTop = ucol_getVariableTop(coll, &status);
106 for (const uint8_t *expansion = coll->expansionCESize; *expansion != 0; expansion += 1) {
164 elements = ucol_openElements(coll, target->getBuffer(), target->length(), &status);
167 charBreakIterator = ubrk_open(UBRK_CHARACTER, ucol_getLocaleByType(coll, ULOC_VALID_LOCALE, &status),
337 if (U_IS_LEAD(ch) || ! ucol_unsafeCP(ch, coll)) {
    [all...]
bms.cpp 29 ucd_open(UCollator *coll, UErrorCode *status)
31 return STATIC_CAST(UCD *, CollData::open(coll, *status));
  /external/icu/icu4c/source/i18n/
stsearch.cpp 52 RuleBasedCollator *coll,
62 if (coll == NULL) {
70 m_text_.length(), coll->toUCollator(),
109 RuleBasedCollator *coll,
119 if (coll == NULL) {
127 m_text_.length(), coll->toUCollator(),
254 void StringSearch::setCollator(RuleBasedCollator *coll, UErrorCode &status)
257 usearch_setCollator(m_strsrch_, coll->toUCollator(), &status);
ucoleitr.cpp 192 void UCollationPCE::init(const Collator &coll)
196 strength = coll.getAttribute(UCOL_STRENGTH, status);
197 toShift = coll.getAttribute(UCOL_ALTERNATE_HANDLING, status) == UCOL_SHIFTED;
199 variableTop = coll.getVariableTop(status);
264 ucol_openElements(const UCollator *coll,
272 if (coll == NULL || (text == NULL && textLength != 0)) {
276 const RuleBasedCollator *rbc = RuleBasedCollator::rbcFromUCollator(coll);
278 *status = U_UNSUPPORTED_ERROR; // coll is a Collator but not a RuleBasedCollator
ucol_sit.cpp 24 #include "unicode/coll.h"
561 ucol_getShortDefinitionString(const UCollator *coll,
568 if(coll == NULL) {
572 return ((icu::Collator*)coll)->internalGetShortDefinitionString(locale,dst,capacity,*status);
606 * @param coll collator
612 ucol_getContractions( const UCollator *coll,
616 ucol_getContractionsAndExpansions(coll, contractions, NULL, FALSE, status);
623 * @param coll collator
631 ucol_getContractionsAndExpansions( const UCollator *coll,
640 if(coll == NULL)
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
colldata.h 72 * @param coll - the Collator used to collect the CEs.
82 CEList(UCollator *coll, const UnicodeString &string, UErrorCode &status);
434 UCollator *coll; member in class:CollData
bms.h 40 * @param coll - the collator
52 ucd_open(UCollator *coll, UErrorCode *status);
ucoleitr.h 73 * . UCollatorOld *coll;
77 * . coll = ucol_open(NULL, &success);
78 * . c = ucol_openElements(coll, str, u_strlen(str), &status);
83 * . ucol_close(coll);
111 * @param coll The collator containing the desired collation rules.
119 ucol_openElements(const UCollator *coll,
  /external/icu/icu4c/source/i18n/unicode/
ucoleitr.h 65 * . UCollatorOld *coll;
69 * . coll = ucol_open(NULL, &success);
70 * . c = ucol_openElements(coll, str, u_strlen(str), &status);
75 * . ucol_close(coll);
103 * @param coll The collator containing the desired collation rules.
111 ucol_openElements(const UCollator *coll,
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertStore1Test.java 410 Collection coll; local
412 coll = certS[i].getCertificates(null);
413 assertTrue("Result collection not empty", coll.isEmpty());
414 coll = certS[i].getCRLs(null);
415 assertTrue("Result collection not empty", coll.isEmpty());
  /prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.1/
commons-collections-3.2.1.jar 
  /external/chromium_org/third_party/icu/source/test/cintltst/
usrchtst.c 1644 UCollator *coll = NULL; local
2326 UCollator *coll = NULL; local
2359 UCollator *coll = NULL; local
2413 UCollator *coll; local
2502 UCollator *coll; local
    [all...]

Completed in 507 milliseconds

1 23 4 5 6 7