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

1234

/external/chromium_org/third_party/icu/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;
H A Ditercoll.cpp11 #include "unicode/coll.h"
298 RuleBasedCollator *coll = new RuleBasedCollator(rule, status); local
302 CollationElementIterator *iter = coll->createCollationElementIterator(str);
329 delete coll;
406 RuleBasedCollator *coll = local
409 if (coll == NULL || U_FAILURE(status))
417 coll->createCollationElementIterator(source);
432 coll->setAttribute(UCOL_NORMALIZATION_MODE, UCOL_ON, status);
434 = coll->createCollationElementIterator(source);
477 delete coll;
486 RuleBasedCollator *coll = local
543 RuleBasedCollator *coll = local
[all...]
H A Ducaconf.cpp87 void UCAConformanceTest::setCollNonIgnorable(Collator *coll) argument
89 coll->setAttribute(UCOL_NORMALIZATION_MODE, UCOL_ON, status);
90 coll->setAttribute(UCOL_CASE_FIRST, UCOL_OFF, status);
91 coll->setAttribute(UCOL_CASE_LEVEL, UCOL_OFF, status);
92 coll->setAttribute(UCOL_STRENGTH, isAtLeastUCA62 ? UCOL_IDENTICAL : UCOL_TERTIARY, status);
93 coll->setAttribute(UCOL_ALTERNATE_HANDLING, UCOL_NON_IGNORABLE, status);
96 void UCAConformanceTest::setCollShifted(Collator *coll) argument
98 coll->setAttribute(UCOL_NORMALIZATION_MODE, UCOL_ON, status);
99 coll->setAttribute(UCOL_CASE_FIRST, UCOL_OFF, status);
100 coll
180 testConformance(const Collator *coll) argument
[all...]
/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;
H A Ditercoll.cpp11 #include "unicode/coll.h"
353 RuleBasedCollator *coll = new RuleBasedCollator(rule, status); local
357 CollationElementIterator *iter = coll->createCollationElementIterator(str);
384 delete coll;
461 RuleBasedCollator *coll = local
464 if (coll == NULL || U_FAILURE(status))
472 coll->createCollationElementIterator(source);
487 coll->setAttribute(UCOL_NORMALIZATION_MODE, UCOL_ON, status);
489 = coll->createCollationElementIterator(source);
532 delete coll;
541 RuleBasedCollator *coll = local
598 RuleBasedCollator *coll = local
[all...]
H A Ducaconf.cpp89 void UCAConformanceTest::setCollNonIgnorable(Collator *coll) argument
91 coll->setAttribute(UCOL_NORMALIZATION_MODE, UCOL_ON, status);
92 coll->setAttribute(UCOL_CASE_FIRST, UCOL_OFF, status);
93 coll->setAttribute(UCOL_CASE_LEVEL, UCOL_OFF, status);
94 coll->setAttribute(UCOL_STRENGTH, isAtLeastUCA62 ? UCOL_IDENTICAL : UCOL_TERTIARY, status);
95 coll->setAttribute(UCOL_ALTERNATE_HANDLING, UCOL_NON_IGNORABLE, status);
98 void UCAConformanceTest::setCollShifted(Collator *coll) argument
100 coll->setAttribute(UCOL_NORMALIZATION_MODE, UCOL_ON, status);
101 coll->setAttribute(UCOL_CASE_FIRST, UCOL_OFF, status);
102 coll
171 testConformance(const Collator *coll) argument
[all...]
/external/stlport/test/eh/
H A Dtest.cpp6 inline void printElements(const T& coll, const char* msg = "") argument
10 for(it = coll.begin(); it != coll.end(); ++it) {
/external/chromium_org/third_party/icu/source/i18n/
H A Dstsearch.cpp65 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) argument
283 usearch_setCollator(m_strsrch_, coll->getUCollator(), &status);
63 StringSearch(const UnicodeString &pattern, const UnicodeString &text, RuleBasedCollator *coll, BreakIterator *breakiter, UErrorCode &status) argument
126 StringSearch(const UnicodeString &pattern, CharacterIterator &text, RuleBasedCollator *coll, BreakIterator *breakiter, UErrorCode &status) argument
H A Dtblcoll.cpp228 RuleBasedCollator* coll = new RuleBasedCollator(*this); local
230 if (coll != NULL && coll->ucollator == NULL) {
231 delete coll;
234 return coll;
/external/chromium_org/third_party/icu/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/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
H A Dcoleitr.cpp329 const RuleBasedCollator *coll,
331 : iter_(NULL), rbc_(coll), otherHalf_(0), dir_(0), offsets_(NULL) {
341 const RuleBasedCollator *coll,
343 : iter_(NULL), rbc_(coll), otherHalf_(0), dir_(0), offsets_(NULL) {
327 CollationElementIterator( const UnicodeString &source, const RuleBasedCollator *coll, UErrorCode &status) argument
339 CollationElementIterator( const CharacterIterator &source, const RuleBasedCollator *coll, 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/chromium_org/third_party/icu/source/test/cintltst/
H A Dsorttest.c127 const UCollator *coll=(const UCollator *)context; local
131 return ucol_strcoll(coll, leftLine->s, STR_LEN, rightLine->s, STR_LEN);
136 UCollator *coll; local
141 coll=ucol_open("root", &errorCode);
167 linesComparator, coll, TRUE, &errorCode);
189 diff=ucol_strcoll(coll, p->s, STR_LEN, q->s, STR_LEN);
200 ucol_close(coll);
/external/icu/icu4c/source/test/cintltst/
H A Dsorttest.c127 const UCollator *coll=(const UCollator *)context; local
131 return ucol_strcoll(coll, leftLine->s, STR_LEN, rightLine->s, STR_LEN);
136 UCollator *coll; local
141 coll=ucol_open("root", &errorCode);
167 linesComparator, coll, TRUE, &errorCode);
189 diff=ucol_strcoll(coll, p->s, STR_LEN, q->s, STR_LEN);
200 ucol_close(coll);
/external/chromium_org/third_party/icu/source/test/perf/DateFmtPerf/
H A DDateFmtPerf.h23 #include "unicode/coll.h"
465 Collator *coll = Collator::createInstance(Locale(locale), status); local
472 if(coll->compare(collation_strings[j], collation_strings[j+1]) == UCOL_LESS) {
478 delete coll;
/external/icu/icu4c/source/test/perf/DateFmtPerf/
H A DDateFmtPerf.h23 #include "unicode/coll.h"
465 Collator *coll = Collator::createInstance(Locale(locale), status); local
472 if(coll->compare(collation_strings[j], collation_strings[j+1]) == UCOL_LESS) {
478 delete coll;

Completed in 3874 milliseconds

1234