Lines Matching defs:Chars
236 /// Chars, or npos if not found.
238 /// Note: O(size() + Chars.size())
239 StringRef::size_type StringRef::find_first_of(StringRef Chars,
242 for (char C : Chars)
258 /// in the string \arg Chars, or npos if not found.
260 /// Note: O(size() + Chars.size())
261 StringRef::size_type StringRef::find_first_not_of(StringRef Chars,
264 for (char C : Chars)
276 /// Note: O(size() + Chars.size())
277 StringRef::size_type StringRef::find_last_of(StringRef Chars,
280 for (char C : Chars)
299 /// \arg Chars, or npos if not found.
301 /// Note: O(size() + Chars.size())
302 StringRef::size_type StringRef::find_last_not_of(StringRef Chars,
305 for (char C : Chars)