Searched defs:coll (Results 1 - 25 of 83) sorted by relevance

1234

/external/icu/icu4c/source/test/intltest/
H A Dthcoll.h21 Collator* coll; // Thai collator member in class:CollationThaiTest
H A Dcolldata.h60 * @param coll - the Collator used to collect the CEs.
68 CEList(UCollator *coll, const UnicodeString &string, UErrorCode &status);
292 UCollator *coll; member in class:CollData
H A Dallcoll.cpp11 #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;
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationCompare.java12 package com.ibm.icu.impl.coll;
H A DCollationRoot.java12 package com.ibm.icu.impl.coll;
47 ByteBuffer bytes = ICUBinary.getRequiredData("coll/ucadata.icu");
56 "CollationRoot", ICUData.ICU_BUNDLE + "/coll/ucadata.icu");
H A DCollationFCD.java12 package com.ibm.icu.impl.coll;
H A DCollationLoader.java14 package com.ibm.icu.impl.coll;
H A DIterCollationIterator.java12 package com.ibm.icu.impl.coll;
H A DSharedObject.java12 package com.ibm.icu.impl.coll;
H A DCollationTailoring.java12 package com.ibm.icu.impl.coll;
H A DUTF16CollationIterator.java12 package com.ibm.icu.impl.coll;
H A DUVector32.java10 package com.ibm.icu.impl.coll;
H A DUVector64.java10 package com.ibm.icu.impl.coll;
H A DBOCSU.java7 package com.ibm.icu.impl.coll;
H A DCollationDataReader.java12 package com.ibm.icu.impl.coll;
524 * Format of collation data (ucadata.icu, binary data in coll/ *.res files):
H A DFCDIterCollationIterator.java12 package com.ibm.icu.impl.coll;
H A DFCDUTF16CollationIterator.java12 package com.ibm.icu.impl.coll;
H A DTailoredSet.java12 package com.ibm.icu.impl.coll;
/external/clang/test/Index/
H A Dget-cursor.cpp140 void test(TestColl coll) { argument
141 for (auto lv : coll) {
260 // CHECK-FORRANGE: 141:18 DeclRefExpr=coll:140:20 Extent=[141:18 - 141:22] Spelling=coll ([141:18 - 141:22])
/external/icu/icu4c/source/i18n/
H A Dstsearch.cpp52 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) argument
257 usearch_setCollator(m_strsrch_, coll->toUCollator(), &status);
50 StringSearch(const UnicodeString &pattern, const UnicodeString &text, RuleBasedCollator *coll, BreakIterator *breakiter, UErrorCode &status) argument
107 StringSearch(const UnicodeString &pattern, CharacterIterator &text, RuleBasedCollator *coll, BreakIterator *breakiter, UErrorCode &status) argument
/external/icu/icu4c/source/samples/legacy/
H A Dnewcol.cpp29 UCollator *coll = ucol_open(locale, &status); local
33 int32_t result = ucol_getSortKey(coll, string, sLen, buffer, bLen);
34 ucol_close(coll);
H A Doldcol.cpp30 UCollator *coll = ucol_open(locale, &status); local
34 int32_t result = ucol_getSortKey(coll, string, sLen, buffer, bLen);
35 ucol_close(coll);
/external/lldb/include/lldb/Core/
H A DSTLUtils.h65 inline void PrintAllCollectionElements (std::ostream &s, const T& coll, const char* header_cstr=NULL, const char* separator_cstr=" ") argument
71 for (pos=coll.begin(); pos!=coll.end(); ++pos) {
/external/lldb/source/Core/
H A DVMRange.cpp20 VMRange::ContainsValue(const VMRange::collection& coll, lldb::addr_t value) argument
24 VMRange::const_iterator end = coll.end();
25 pos = std::find_if( coll.begin(), end, in_range_predicate );
32 VMRange::ContainsRange(const VMRange::collection& coll, const VMRange& range) argument
36 VMRange::const_iterator end = coll.end();
37 pos = std::find_if( coll.begin(), end, in_range_predicate );
44 VMRange::FindRangeIndexThatContainsValue (const VMRange::collection& coll, lldb::addr_t value) argument
47 VMRange::const_iterator begin = coll.begin();
48 VMRange::const_iterator end = coll.end();
/external/icu/icu4c/source/test/cintltst/
H A Dsorttest.c125 const UCollator *coll=(const UCollator *)context; local
129 return ucol_strcoll(coll, leftLine->s, STR_LEN, rightLine->s, STR_LEN);
134 UCollator *coll; local
139 coll=ucol_open("root", &errorCode);
165 linesComparator, coll, TRUE, &errorCode);
187 diff=ucol_strcoll(coll, p->s, STR_LEN, q->s, STR_LEN);
198 ucol_close(coll);

Completed in 6606 milliseconds

1234