Searched refs:shouldSortLowercaseFirst (Results 1 - 2 of 2) sorted by relevance

/macosx-10.10.1/WTF-7600.1.24/wtf/unicode/
H A DCollator.h58 WTF_EXPORT_PRIVATE explicit Collator(const char* locale = nullptr, bool shouldSortLowercaseFirst = false);
/macosx-10.10.1/WTF-7600.1.24/wtf/unicode/icu/
H A DCollatorICU.cpp115 Collator::Collator(const char* locale, bool shouldSortLowercaseFirst) argument
121 if (cachedCollator && localesMatch(cachedCollatorLocale, locale) && cachedCollatorShouldSortLowercaseFirst == shouldSortLowercaseFirst) {
124 m_shouldSortLowercaseFirst = shouldSortLowercaseFirst;
138 ucol_setAttribute(m_collator, UCOL_CASE_FIRST, shouldSortLowercaseFirst ? UCOL_LOWER_FIRST : UCOL_UPPER_FIRST, &status);
145 m_shouldSortLowercaseFirst = shouldSortLowercaseFirst;

Completed in 203 milliseconds