Lines Matching refs:UChar

34 static const UChar unshapedLetters[NUM_LETTERS + 1] = {0x0630, 0, 0x0631, 0, 0x0632, 2};
35 static const UChar shapedLetters [NUM_LETTERS + 1] = {0xfeab, 0, 0xfead, 0, 0xfeaf, 1};
48 UChar src[STR_CAPACITY] = { 0 };
49 UChar dest[STR_CAPACITY] = { 0 };
50 UChar expected[STR_CAPACITY] = { 0 };
51 UChar temp[STR_CAPACITY * 2] = { 0 };
60 static char* pseudoScript(const UChar *str);
62 static void shapeDigits(UChar *str, UChar srcZero, UChar destZero);
64 static void shapeLetters(UChar *str, const UChar *from, const UChar *to);
66 static void logResultsForDir(const UChar *srcText, const UChar *destTxt,
67 const UChar *expectedTxt, UBiDiLevel inLevel, UBiDiLevel outLevel);
69 static void verifyResultsForAllOpt(const UBidiTestCases *pTest, const UChar *srcTxt,
70 const UChar *destTxt, const char *expectedChars, uint32_t digits,
74 static void substituteByPseudoChar(const UChar *src, char *dest,
75 const UChar baseReal, const char basePseudo, const char max);
89 substituteByPseudoChar(const UChar *src, char *dest, const UChar baseReal,
98 pseudoScript(const UChar *str) {
127 pseudoScript(const UChar *str) { in pseudoScript()
133 logResultsForDir(const UChar *srcTxt, const UChar *destTxt, const UChar *expectedTxt, in logResultsForDir()
201 shapeDigits(UChar *str, UChar srcZero, UChar destZero) in shapeDigits()
216 shapeLetters(UChar *str, const UChar *from, const UChar *to) in shapeLetters()
233 verifyResultsForAllOpt(const UBidiTestCases *pTest, const UChar *srcTxt, in verifyResultsForAllOpt()
234 const UChar *destTxt, const char *expectedChars, uint32_t digits, uint32_t letters) in verifyResultsForAllOpt()