HomeSort by relevance Sort by last modified time
    Searched refs:CaseFold (Results 1 - 4 of 4) sorted by null

  /external/regex-re2/re2/
unicode_casefold.h 53 struct CaseFold {
59 extern CaseFold unicode_casefold[];
62 extern CaseFold unicode_tolower[];
65 // Returns the CaseFold* in the tables that contains rune.
66 // If rune is not in the tables, returns the first CaseFold* after rune.
68 extern CaseFold* LookupCaseFold(CaseFold*, int, Rune rune);
71 extern Rune ApplyFold(CaseFold *f, Rune r);
unicode_casefold.cc 11 CaseFold unicode_casefold[] = {
298 CaseFold unicode_tolower[] = {
parse.cc 241 // Searches the case folding tables and returns the CaseFold* that contains r.
242 // If there isn't one, returns the CaseFold* with smallest f->lo bigger than r.
244 CaseFold* LookupCaseFold(CaseFold *f, int n, Rune r) {
245 CaseFold* ef = f + n;
272 Rune ApplyFold(CaseFold *f, Rune r) {
308 CaseFold* f = LookupCaseFold(unicode_casefold, num_unicode_casefold, r);
331 CaseFold* f = LookupCaseFold(unicode_casefold, num_unicode_casefold, lo);
    [all...]
prefilter.cc 178 CaseFold *f = LookupCaseFold(unicode_tolower, num_unicode_tolower, r);

Completed in 518 milliseconds