Searched refs:GetMatchIndex (Results 1 – 1 of 1) sorted by relevance
/external/libtextclassifier/utils/utf8/ |
D | unilib-javaicu.cc | 189 int GetMatchIndex(const char32* array, int array_length, char32 c) { in GetMatchIndex() function 252 return GetMatchIndex(kOpeningBrackets, kNumOpeningBrackets, codepoint) >= 0; in IsOpeningBracket() 256 return GetMatchIndex(kClosingBrackets, kNumClosingBrackets, codepoint) >= 0; in IsClosingBracket() 260 return GetMatchIndex(kWhitespaces, kNumWhitespaces, codepoint) >= 0; in IsWhitespace() 270 if (GetMatchIndex(kUpperSingles, kNumUpperSingles, codepoint) >= 0) { in IsUpper() 292 GetMatchIndex(kToLowerSingles, kNumToLowerSingles, codepoint); in ToLower() 307 GetMatchIndex(kOpeningBrackets, kNumOpeningBrackets, codepoint); in GetPairedBracket() 312 GetMatchIndex(kClosingBrackets, kNumClosingBrackets, codepoint); in GetPairedBracket()
|