Lines Matching refs:pos
62 UTransPosition pos;
69 pos.contextLimit = 0;
70 pos.contextStart = 0;
71 pos.limit = 0;
72 pos.start = 0;
88 pos.start = 100;
89 pos.limit = testString.length();
90 t->transliterate(testString, pos, status);
95 pos.limit = 100;
96 pos.start = 0;
97 t->transliterate(testString, pos, status);
102 len = pos.contextLimit = testString.length();
103 pos.contextStart = 0;
104 pos.limit = len - 1;
105 pos.start = 5;
106 t->transliterate(testString, pos, insertString, status);
107 if (len == pos.limit) {
114 pos.contextStart = 0;
115 pos.contextLimit = testString.length();
116 pos.limit = testString.length() -1;
117 pos.start = 5;
118 t->transliterate(testString, pos, (UChar32)0x0061, status);
119 if (len == pos.limit) {
126 len = pos.limit = testString.length();
127 pos.contextStart = 0;
128 pos.contextLimit = testString.length() - 1;
129 pos.start = 5;
130 t->transliterate(testString, pos, insertString, status);