Lines Matching defs:Chars
234 /// Chars, or npos if not found.
236 /// Note: O(size() + Chars.size())
237 StringRef::size_type StringRef::find_first_of(StringRef Chars,
240 for (char C : Chars)
256 /// in the string \arg Chars, or npos if not found.
258 /// Note: O(size() + Chars.size())
259 StringRef::size_type StringRef::find_first_not_of(StringRef Chars,
262 for (char C : Chars)
274 /// Note: O(size() + Chars.size())
275 StringRef::size_type StringRef::find_last_of(StringRef Chars,
278 for (char C : Chars)
297 /// \arg Chars, or npos if not found.
299 /// Note: O(size() + Chars.size())
300 StringRef::size_type StringRef::find_last_not_of(StringRef Chars,
303 for (char C : Chars)