HomeSort by relevance Sort by last modified time
    Searched refs:collator (Results 26 - 49 of 49) sorted by null

12

  /external/icu4c/i18n/
nfrule.cpp 1141 RuleBasedCollator* collator = (RuleBasedCollator*)formatter->getCollator(); local
1443 RuleBasedCollator* collator = (RuleBasedCollator*)(formatter->getCollator()); local
    [all...]
rbnf.cpp 656 , collator(NULL)
673 , collator(NULL)
690 , collator(NULL)
706 , collator(NULL)
723 , collator(NULL)
737 , collator(NULL)
811 , collator(NULL)
    [all...]
coll.cpp 60 * Release all static memory held by collator.
130 return Collator::makeInstance(loc, status);
140 : ICULocaleService(UNICODE_STRING_SIMPLE("Collator"))
147 return ((Collator*)instance)->clone();
160 return Collator::makeInstance(loc, status);
168 Collator* result = (Collator*)ICULocaleService::getKey(key, actualReturn, status);
231 Collator::createUCollator(const char *loc,
237 Collator *col = (Collator*)gService->get(desiredLocale, *status)
385 Collator *collator; local
    [all...]
bmsearch.cpp 610 UCollator *collator = data->getCollator(); local
612 patCEs = new CEList(collator, patternString, status);
627 target = new Target(collator, targetString, patCEs->size(), status);
ucol_imp.h 93 * uint32_t options; - offset to default collator options (UColOptionSet *),
342 uprv_init_collIterate(const UCollator *collator,
462 #define init_collIterate(collator, sourceString, sourceLen, s) { \
469 (s)->coll = (collator); \
472 if(((collator)->normalizationMode == UCOL_ON)) (s)->flags |= UCOL_ITER_NORM; \
482 * Hence we only have to search the tailored collator only.
566 * Makes a copy of the Collator's rule data. The format is
578 * Used to set requested and valid locales on a collator returned by the collator
    [all...]
ucol.cpp 99 inline void IInit_collIterate(const UCollator *collator, const UChar *sourceString,
121 (s)->coll = (collator);
124 if(collator->normalizationMode == UCOL_ON) {
127 if(collator->hiraganaQ == UCOL_ON && collator->strength >= UCOL_QUATERNARY) {
135 uprv_init_collIterate(const UCollator *collator, const UChar *sourceString,
139 IInit_collIterate(collator, sourceString, sourceLen, s, status);
527 /* copy the collator options */
752 /* copy the collator options */
795 * @param coll collator
    [all...]
  /external/icu4c/i18n/unicode/
tblcoll.h 10 * \brief C++ API: RuleBasedCollator class provides the simple implementation of Collator.
31 * to be used by Collator::createDefault(). General
49 * 11/02/99 helena Collator performance enhancements. Eliminates the
85 * Collator, using data-driven tables. The user can create a customized
108 * @see Collator
111 class U_I18N_API RuleBasedCollator : public Collator
181 /** Opens a collator from a collator binary image created using
183 * collator remains owned by the user and should stay around for
184 * the lifetime of the collator. The API also takes a base collato
    [all...]
rbnf.h 57 class Collator;
995 Collator* collator; member in class:RuleBasedNumberFormat
    [all...]
  /libcore/luni/src/main/native/
libcore_icu_NativeCollation.cpp 87 const UCollator* collator = toCollator(address); local
91 size_t byteArraySize = ucol_getSortKey(collator, source.get(), source.size(), usedByteArray, sizeof(byteArray) - 1);
96 byteArraySize = ucol_getSortKey(collator, source.get(), source.size(), usedByteArray, byteArraySize);
  /development/apps/Development/src/com/android/development/
PackageBrowser.java 39 import java.text.Collator;
100 return collator.compare(a.label, b.label);
103 private final Collator collator = Collator.getInstance();
  /development/samples/ApiDemos/src/com/example/android/apis/
ApiDemos.java 28 import java.text.Collator;
114 private final Collator collator = Collator.getInstance();
117 return collator.compare(map1.get("title"), map2.get("title"));
  /development/samples/Support13Demos/src/com/example/android/supportv13/
Support13Demos.java 28 import java.text.Collator;
114 private final Collator collator = Collator.getInstance();
117 return collator.compare(map1.get("title"), map2.get("title"));
  /development/samples/Support4Demos/src/com/example/android/supportv4/
Support4Demos.java 28 import java.text.Collator;
114 private final Collator collator = Collator.getInstance();
117 return collator.compare(map1.get("title"), map2.get("title"));
  /external/chromium/chrome/browser/chromeos/input_method/
input_method_util.cc 279 // corresponding language names, using the ICU collator.
282 explicit CompareLanguageCodesByLanguageName(icu::Collator* collator)
283 : collator_(collator) {
298 icu::Collator* collator_;
541 // We should build collator outside of the comparator. We cannot have
545 scoped_ptr<icu::Collator> collator(
546 icu::Collator::createInstance(locale, error));
548 collator.reset()
    [all...]
  /external/icu4c/test/intltest/
ssearch.cpp 213 // Get the collator normalization flag. Default is UCOL_OFF.
288 // Open a collator and StringSearch based on the parameters
292 LocalUCollatorPointer collator(ucol_open(clocale, &status));
293 ucol_setStrength(collator.getAlias(), collatorStrength);
294 ucol_setAttribute(collator.getAlias(), UCOL_NORMALIZATION_MODE, normalize, &status);
295 ucol_setAttribute(collator.getAlias(), UCOL_ALTERNATE_HANDLING, alternateHandling, &status);
298 collator.getAlias(),
336 collator.getAlias(),
442 errln("Could not open collator for %s", testCases[t].locale);
551 // Get the collator normalization flag. Default is UCOL_OFF
630 UCollator *collator = ucol_open(clocale, &status); local
    [all...]
svccoll.cpp 42 Collator* frcol = Collator::createInstance(FR, status);
43 Collator* uscol = Collator::createInstance(US, status);
51 { // try override en_US collator
52 URegistryKey key = Collator::registerInstance(frcol, US, status);
54 Collator* ncol = Collator::createInstance(US_FOO, status);
56 errln("register of french collator for en_US failed on request for en_US_FOO");
58 // ensure original collator's params not touche
217 Collator* collator; member in struct:CollatorInfo
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/
certificate_manager_handler.cc 104 explicit DictionaryIdComparator(icu::Collator* collator)
105 : collator_(collator) {
124 icu::Collator* collator_;
883 scoped_ptr<icu::Collator> collator; local
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_model.cc 99 explicit SortComparator(icu::Collator* collator) : collator_(collator) { }
115 icu::Collator* collator_;
436 scoped_ptr<icu::Collator> collator(
437 icu::Collator::createInstance(
441 collator.reset(NULL);
445 SortComparator(collator.get()));
  /external/chromium/chrome/browser/task_manager/
task_manager.cc 285 static icu::Collator* collator = NULL;
286 if (!collator) {
288 collator = icu::Collator::createInstance(create_status);
290 collator = NULL;
297 UCollationResult compare_result = collator->compare(
    [all...]
  /external/icu4c/tools/dumpce/
dumpce.cpp 66 * Collator used in this program
287 * Prints the attribute values in the argument collator into the output stream
288 * @param collator
290 void outputAttribute(UCollator *collator, UErrorCode *error)
304 int attributeval = ucol_getAttribute(collator, attribute, error);
306 fprintf(stdout, "Failure in reading collator attribute\n");
322 * Prints the normalization mode in the argument collator into the output stream
323 * @param collator
325 void outputNormalization(UCollator *collator)
328 int normmode = ucol_getAttribute(collator, UCOL_NORMALIZATION_MODE, &status)
    [all...]
  /external/icu4c/test/cintltst/
cmsccoll.c 48 typedef UCollationResult tst_strcoll(void *collator, const int object,
268 log_err_status(status, "ERROR: in creation of rule based collator: %s\n", myErrorName(status));
658 static UCollationResult ucaTest(void *collator, const int object, const UChar *source, const int sLen, const UChar *target, const int tLen) {
659 UCollator *UCA = (UCollator *)collator;
664 static UCollationResult winTest(void *collator, const int object, const UChar *source, const int sLen, const UChar *target, const int tLen) {
666 LCID lcid = (LCID)collator;
674 static UCollationResult swampEarlier(tst_strcoll* func, void *collator, int opts,
686 return func(collator, opts, source, sLen+1, target, tLen+1);
689 static UCollationResult swampLater(tst_strcoll* func, void *collator, int opts,
701 return func(collator, opts, source, sLen+1, target, tLen+1)
    [all...]
usrchdat.c 29 const char *collator; /* currently supported "fr" "es" "de", plus NULL/other => "en" */ member in struct:SearchData
232 static const SearchData COLLATOR[] = {
    [all...]
  /external/webkit/Source/WebCore/editing/
TextIterator.cpp 1888 UCollator* collator = usearch_getCollator(searcher); local
    [all...]
  /prebuilt/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 

Completed in 1116 milliseconds

12