Home | History | Annotate | Download | only in Support

Lines Matching refs:Chars

196 /// Chars, or npos if not found.
198 /// Note: O(size() + Chars.size())
199 StringRef::size_type StringRef::find_first_of(StringRef Chars,
202 for (size_type i = 0; i != Chars.size(); ++i)
203 CharBits.set((unsigned char)Chars[i]);
221 /// in the string \arg Chars, or npos if not found.
223 /// Note: O(size() + Chars.size())
224 StringRef::size_type StringRef::find_first_not_of(StringRef Chars,
227 for (size_type i = 0; i != Chars.size(); ++i)
228 CharBits.set((unsigned char)Chars[i]);
239 /// Note: O(size() + Chars.size())
240 StringRef::size_type StringRef::find_last_of(StringRef Chars,
243 for (size_type i = 0; i != Chars.size(); ++i)
244 CharBits.set((unsigned char)Chars[i]);