OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:assertRuleValue
(Results
1 - 2
of
2
) sorted by null
/external/icu4c/test/intltest/
plurults.h
33
void
assertRuleValue
(const UnicodeString& rule, double expected);
plurults.cpp
311
PluralRulesTest::
assertRuleValue
(const UnicodeString& rule, double expected) {
328
assertRuleValue
("n is 1", 1);
329
assertRuleValue
("n in 2..2", 2);
330
assertRuleValue
("n within 2..2", 2);
331
assertRuleValue
("n in 3..4", UPLRULES_NO_UNIQUE_VALUE);
332
assertRuleValue
("n within 3..4", UPLRULES_NO_UNIQUE_VALUE);
333
assertRuleValue
("n is 2 or n is 2", 2);
334
assertRuleValue
("n is 2 and n is 2", 2);
335
assertRuleValue
("n is 2 or n is 3", UPLRULES_NO_UNIQUE_VALUE);
336
assertRuleValue
("n is 2 and n is 3", UPLRULES_NO_UNIQUE_VALUE)
[
all
...]
Completed in 228 milliseconds