Lines Matching refs:lookup
106 bool lookup[UCHAR_MAX + 1] = { false }; in find_first_of() local
107 BuildLookupTable(s, lookup); in find_first_of()
109 if (lookup[static_cast<unsigned char>(ptr_[i])]) { in find_first_of()
128 bool lookup[UCHAR_MAX + 1] = { false }; in find_first_not_of() local
129 BuildLookupTable(s, lookup); in find_first_not_of()
131 if (!lookup[static_cast<unsigned char>(ptr_[i])]) { in find_first_not_of()
158 bool lookup[UCHAR_MAX + 1] = { false }; in find_last_of() local
159 BuildLookupTable(s, lookup); in find_last_of()
161 if (lookup[static_cast<unsigned char>(ptr_[i])]) in find_last_of()
182 bool lookup[UCHAR_MAX + 1] = { false }; in find_last_not_of() local
183 BuildLookupTable(s, lookup); in find_last_not_of()
185 if (!lookup[static_cast<unsigned char>(ptr_[i])]) in find_last_not_of()