Lines Matching refs:PUNCT_START
145 } else if(PUNCT_START <= c && c < PUNCT_LIMIT) { in compareUTF16()
146 leftPair = table[c - PUNCT_START + LATIN_LIMIT]; in compareUTF16()
176 } else if(PUNCT_START <= c && c < PUNCT_LIMIT) { in compareUTF16()
177 rightPair = table[c - PUNCT_START + LATIN_LIMIT]; in compareUTF16()
227 } else if(PUNCT_START <= c && c < PUNCT_LIMIT) { in compareUTF16()
228 leftPair = table[c - PUNCT_START + LATIN_LIMIT]; in compareUTF16()
252 } else if(PUNCT_START <= c && c < PUNCT_LIMIT) { in compareUTF16()
253 rightPair = table[c - PUNCT_START + LATIN_LIMIT]; in compareUTF16()
801 if(PUNCT_START <= c && c < PUNCT_LIMIT) { in lookup()
802 return table[c - PUNCT_START + LATIN_LIMIT]; in lookup()
878 if(PUNCT_START <= c2 && c2 < PUNCT_LIMIT) { in nextPair()
879 c2 = c2 - PUNCT_START + LATIN_LIMIT; // 2000..203F -> 0180..01BF in nextPair()