Home | History | Annotate | Download | only in intltest

Lines Matching defs:revResult

45 CollationMonkeyTest::report(UnicodeString& s, UnicodeString& t, int32_t result, int32_t revResult)
47 if (revResult != -result)
55 msg += (UnicodeString) " (result " + result + ", reverse Result " + revResult + ")";
96 int32_t revResult = collationKey2.compareTo(collationKey1); // Tertiary
97 report( subs, subt, result, revResult);
103 revResult = collationKey2.compareTo(collationKey1); // Secondary
104 report( subs, subt, result, revResult);
110 revResult = collationKey2.compareTo(collationKey1); // Primary
111 report(subs, subt, result, revResult);
166 int32_t revResult = myCollator->compare(subt, subs); // Tertiary
167 report(subs, subt, result, revResult);
171 revResult = myCollator->compare(subt, subs); // Secondary
172 report(subs, subt, result, revResult);
176 revResult = myCollator->compare(subt, subs); // Primary
177 report(subs, subt, result, revResult);