Lines Matching refs:Collator
21 myCollation = Collator::createInstance(Locale::getEnglish(), status);
133 static const Collator::EComparisonResult results[] = {
134 Collator::LESS,
135 Collator::LESS, /*Collator::GREATER,*/
136 Collator::LESS,
137 Collator::GREATER,
138 Collator::GREATER,
139 Collator::EQUAL,
140 Collator::LESS,
141 Collator::LESS,
142 Collator::LESS,
143 Collator::LESS, /*Collator::GREATER,*/ /* 10 */
144 Collator::GREATER,
145 Collator::LESS,
146 Collator::EQUAL,
147 Collator::LESS,
148 Collator::GREATER,
149 Collator::GREATER,
150 Collator::GREATER,
151 Collator::LESS,
152 Collator::LESS,
153 Collator::LESS, /* 20 */
154 Collator::LESS,
155 Collator::LESS,
156 Collator::LESS,
157 Collator::GREATER,
158 Collator::GREATER,
159 Collator::GREATER,
161 Collator::LESS,
162 Collator::LESS,
163 Collator::GREATER,
164 Collator::LESS, /* 30 */
165 Collator::GREATER,
166 Collator::EQUAL,
167 Collator::GREATER,
168 Collator::LESS,
169 Collator::LESS,
170 Collator::LESS,
172 Collator::EQUAL,
173 Collator::EQUAL,
175 Collator::EQUAL,
176 Collator::EQUAL, /* 40 */
177 Collator::LESS,
178 Collator::EQUAL,
179 Collator::EQUAL,
181 Collator::LESS,
182 Collator::LESS,
183 Collator::EQUAL,
184 Collator::LESS,
185 Collator::LESS,
186 Collator::LESS // 49
246 myCollation->setStrength(Collator::TERTIARY);
257 doTest(myCollation, testBugs[i], testBugs[j], Collator::LESS);
262 Collator::EComparisonResult expected;
269 expected = Collator::LESS;
271 expected = Collator::EQUAL;
273 expected = Collator::GREATER;
283 myCollation->setStrength(Collator::PRIMARY);
293 myCollation->setStrength(Collator::SECONDARY);
301 Collator::EComparisonResult expected;
308 expected = Collator::LESS;
310 expected = Collator::EQUAL;
312 expected = Collator::GREATER;
329 dataerrln("Collator couldn't be instantiated!");