Lines Matching refs:targ2
638 UnicodeString targ2 = srcStr; in test2() local
639 sourceToTarget2->transliterate(targ2); in test2()
640 if (targ != targ2) { in test2()
641 logToRulesFails("Source-Target, toRules", srcStr, targ, targ2); in test2()
653 UnicodeString targ2 = srcStr; in test2() local
654 targetToSource2->transliterate(targ2); in test2()
655 if (targ != targ2) { in test2()
656 logToRulesFails("Target-Source, toRules", srcStr, targ, targ2); in test2()
694 UnicodeString targ2 = cs2; in test2() local
695 sourceToTarget->transliterate(targ2); in test2()
696 if (targ != targ2) { in test2()
697 logNotCanonical("Source-Target", srcStr, targ,cs2, targ2); in test2()
742 UnicodeString targ2 = cs2; in test2() local
743 sourceToTarget->transliterate(targ2); in test2()
744 if (targ != targ2) { in test2()
745 logNotCanonical("Source-Target", srcStr, targ, cs2,targ2); in test2()
799 UnicodeString targ2; in test2() local
800 Normalizer::decompose(targ, FALSE, 0, targ2, status); in test2()
805 UnicodeString reverse2 = targ2; in test2()
808 logNotCanonical("Target-Source", targ, reverse, targ2, reverse2); in test2()
820 UnicodeString targ2; in test2() local
873 targ2.truncate(0); // empty the variable without construction/destruction in test2()
874 Normalizer::decompose(targ, FALSE, 0, targ2, status); in test2()
879 reverse2 = targ2; in test2()
882 logNotCanonical("Target-Source", targ,reverse, targ2, reverse2); in test2()