/external/webkit/WebCore/icu/unicode/ |
ucol.h | 349 * @param coll collator 358 ucol_getContractions( const UCollator *coll, 367 * @param coll The UCollator to close. 374 ucol_close(UCollator *coll); 379 * @param coll The UCollator containing the comparison rules. 392 ucol_strcoll( const UCollator *coll, 401 * @param coll The UCollator containing the comparison rules. 413 ucol_greater(const UCollator *coll, 420 * @param coll The UCollator containing the comparison rules. 432 ucol_greaterOrEqual(const UCollator *coll, [all...] |
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/icu4c/samples/coll/ |
coll.sln | 3 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "coll", "coll.vcproj", "{7664D0D2-0263-4BFB-AE19-9A1CAD231440}"
|
/external/icu4c/test/intltest/ |
allcoll.cpp | 11 #include "unicode/coll.h" 160 Collator *coll = Collator::createInstance("en_US", status); local 166 Collator::EComparisonResult result = coll->compare(source, target); 173 coll->setStrength(Collator::PRIMARY); 174 result = coll->compare(source, target); 183 coll->getCollationKey(source, sourceKeyOut, status); 184 coll->getCollationKey(target, targetKeyOut, status); 190 delete coll;
|
ssearch.h | 50 virtual int32_t monkeyTestCase(UCollator *coll, const UnicodeString &testCase, const UnicodeString &pattern, const UnicodeString &altPattern, 53 virtual int32_t bmMonkeyTestCase(UCollator *coll, const UnicodeString &testCase, const UnicodeString &pattern, const UnicodeString &altPattern,
|
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);
|
thcoll.cpp | 17 #include "unicode/coll.h" 38 coll = Collator::createInstance(Locale("th", "TH", ""), status); 39 if (coll && U_SUCCESS(status)) { 40 //coll->setStrength(Collator::TERTIARY); 42 delete coll; 43 coll = 0; 48 delete coll; 54 if((!coll) && exec) { 76 if (coll == 0) { 106 Collator::EComparisonResult result = coll->compare(lastWord, word) [all...] |
ssearch.cpp | 18 #include "unicode/coll.h" 444 UCollator *coll = ucol_open(testCases[t].locale, &status); local 453 ucd = ucd_open(coll, &status); 483 ucol_close(coll); 692 OrderList(UCollator *coll, const UnicodeString &string, int32_t stringOffset = 0); 717 OrderList::OrderList(UCollator *coll, const UnicodeString &string, int32_t stringOffset) 721 UCollationElements *elems = ucol_openElements(coll, string.getBuffer(), string.length(), &status); 725 switch (ucol_getStrength(coll)) 1086 PCEList(UCollator *coll, const UnicodeString &string); 1225 UCollator *coll = NULL; local 1286 UCollator *coll = NULL; local 1348 UCollator *coll = NULL; local 1654 UCollator *coll; member in class:StringSetMonkey 2074 UCollator *coll = ucol_openFromShortString("S1", FALSE, NULL, &status); local 2211 UCollator *coll = ucol_openFromShortString("S1", FALSE, NULL, &status); local [all...] |
apicoll.cpp | 34 #include "unicode/coll.h" 364 RuleBasedCollator *coll; local 368 coll = (RuleBasedCollator *)Collator::createInstance(Locale::getEnglish(), status); 377 coll->getRules(UCOL_TAILORING_ONLY, rules); 382 coll->getRules(UCOL_FULL_RULES, rules); 386 delete coll; 1419 Collator *coll = Collator::createInstance("en_US", error); local 1443 Collator *coll = Collator::createInstance(error); local 1548 Collator *coll = Collator::createInstance(status); local 1582 Collator *coll = NULL; local 1688 Collator *coll = Collator::createInstance(Locale("sh"), status); local 1832 RuleBasedCollator *coll = NULL; local 1865 RuleBasedCollator *coll local 2243 RuleBasedCollator *coll = new RuleBasedCollator(UnicodeString(buf, len), status); local [all...] |
dadrcoll.h | 22 #include "unicode/coll.h"
|
lcukocol.cpp | 12 #include "unicode/coll.h"
|
thcoll.h | 21 Collator* coll; // Thai collator member in class:CollationThaiTest
|
/external/icu4c/test/cintltst/ |
callcoll.c | 147 static char* U_EXPORT2 sortKeyToString(const UCollator *coll, const uint8_t *sortkey, char *buffer, uint32_t *len) { 157 while(strength <= UCOL_QUATERNARY && strength <= coll->strength) { 165 if(coll->caseLevel == UCOL_ON && strength == UCOL_SECONDARY && doneCase == FALSE) { 167 } else if(coll->caseLevel == UCOL_OFF || doneCase == TRUE || strength != UCOL_SECONDARY) { 173 if(strength == UCOL_QUATERNARY && coll->alternateHandling == UCOL_NON_IGNORABLE) { 178 if(coll->strength == UCOL_IDENTICAL) { 230 static UCollationResult compareUsingPartials(UCollator *coll, const UChar source[], int32_t sLen, const UChar target[], int32_t tLen, int32_t pieceSize, UErrorCode *status) { 248 sSize = ucol_nextSortKeyPart(coll, &sIter, sState, sBuf, pieceSize, status); 249 tSize = ucol_nextSortKeyPart(coll, &tIter, tState, tBuf, pieceSize, status); 562 void genericOrderingTestWithResult(UCollator *coll, const char * const s[], uint32_t size, UCollationResult result) 599 UCollator *coll = ucol_open(locale, &status); local 616 UCollator *coll = ucol_open(locale, &status); local 638 UCollator *coll = ucol_openRules(rlz, rlen, UCOL_DEFAULT, UCOL_DEFAULT,NULL, &status); local 659 UCollator *coll = ucol_open(locale, &status); local 686 UCollator *coll = NULL; local 1153 UCollator* coll=0; local 1233 UCollator *coll = ucol_open("es", &status); local [all...] |
citertst.c | 77 UCollator *coll = ucol_open(LOCALES[i], &status); local 78 UCollationElements *pitr = ucol_openElements(coll, pattern, -1, 80 UCollationElements *titer = ucol_openElements(coll, text, -1, 126 ucol_close(coll); 150 UCollator *coll = ucol_open(LOCALES[i], &status); local 154 ucol_setAttribute(coll, UCOL_NORMALIZATION_MODE, UCOL_ON, &status); 156 pitr = ucol_openElements(coll, pattern, -1, &status); 157 titer = ucol_openElements(coll, text, -1, &status); 202 ucol_close(coll); 353 UCollator *coll; local 421 UCollator *coll=NULL; local 785 UCollator *coll ;\/*= ucol_open("en_US", &status);*\/ local 942 UCollator *coll; local 1275 UCollator *coll = ucol_open("", &status); local 1402 UCollator *coll; local 1477 UCollator *coll; local 1652 UCollator *coll = ucol_open("root", &status); local 1851 UCollator *coll = ucol_open("en_US", &status); local [all...] |
callcoll.h | 47 void genericOrderingTestWithResult(UCollator *coll, const char * const s[], uint32_t size, UCollationResult result); 48 void genericOrderingTest(UCollator *coll, const char * const s[], uint32_t size);
|
/dalvik/libcore/security/src/test/java/tests/security/cert/ |
X509Certificate2Test.java | 506 Collection<List<?>> coll = cert.getSubjectAlternativeNames(); local 508 assertNotNull(coll); 511 coll.clear(); 517 if (coll.size() > 0) { 518 coll.remove(0); 524 assertTrue(coll.size() < 10); 542 Collection<List<?>> coll = cert.getIssuerAlternativeNames(); 544 assertNotNull(coll); 547 coll.clear(); 553 if (coll.size() > 0) [all...] |
/external/icu4c/samples/legacy/ |
oldcol.cpp | 30 UCollator *coll = ucol_open(locale, &status); local 34 int32_t result = ucol_getSortKey(coll, string, sLen, buffer, bLen); 35 ucol_close(coll);
|
/external/icu4c/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/icu4c/i18n/ |
ucol_imp.h | 40 #define U_ICUDATA_COLL U_ICUDATA_NAME U_TREE_SEPARATOR_STRING "coll" 285 const UCollator *coll; member in struct:collIterate 428 (s)->coll = (collator); \ 442 * @param coll const UCollator pointer 447 #define UCOL_GETMAXEXPANSION(coll, order, result) { \ 451 start = (coll)->endExpansionCE; \ 452 limit = (coll)->lastEndExpansionCE; \ 463 result = *((coll)->expansionCESize + (start - (coll)->endExpansionCE)); \ 466 result = *(coll->expansionCESize + (limit - coll->endExpansionCE)); [all...] |
bms.cpp | 27 ucd_open(UCollator *coll, UErrorCode *status) 29 return STATIC_CAST(UCD *, CollData::open(coll, *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); 641 : coll(NULL), charsToCEList(NULL), ceToCharsStartingWith(NULL), key(NULL) 693 coll = ucol_safeClone(collator, NULL, NULL, &status); 699 coll = collator; 702 ucol_getContractionsAndExpansions(coll, contractions, expansions, FALSE, &status) [all...] |
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) 204 uprv_init_collIterate(m_data_->iteratordata_.coll, string, length, 251 uprv_init_collIterate(m_data_->iteratordata_.coll, buffer, length, 258 UCollationStrength s = ucol_getStrength(m_data_->iteratordata_.coll); 499 coliter->coll = othercoliter->coll;
|
/external/webkit/WebCore/html/ |
HTMLMapElement.cpp | 82 RefPtr<HTMLCollection> coll = renderer()->document()->images(); local 83 for (Node* curr = coll->firstItem(); curr; curr = coll->nextItem()) {
|
/dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
CollationElementIteratorTest.java | 42 private RuleBasedCollator coll; field in class:CollationElementIteratorTest 45 coll = (RuleBasedCollator) Collator.getInstance(Locale.US); 55 CollationElementIterator iterator = coll 75 CollationElementIterator iterator = coll 109 CollationElementIterator iterator = coll 138 CollationElementIterator iterator = coll
|
/external/icu4c/i18n/unicode/ |
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,
|