Lines Matching refs:From
78 size_t find(char C, size_t From = 0) const;
79 size_t find_lower(char C, size_t From = 0) const;
80 size_t find_if(function_ref<bool(char)> F, size_t From = 0) const;
81 size_t find_if_not(function_ref<bool(char)> F, size_t From = 0) const;
82 size_t find(StringRef Str, size_t From = 0) const;
83 size_t find_lower(StringRef Str, size_t From = 0) const;
84 size_t rfind(char C, size_t From = npos) const;
85 size_t rfind_lower(char C, size_t From = npos) const;
88 size_t find_first_of(char C, size_t From = 0) const;
89 size_t find_first_of(StringRef Chars, size_t From = 0) const;
90 size_t find_first_not_of(char C, size_t From = 0) const;
91 size_t find_first_not_of(StringRef Chars, size_t From = 0) const;
92 size_t find_last_of(char C, size_t From = npos) const;
93 size_t find_last_of(StringRef Chars, size_t From = npos) const;
94 size_t find_last_not_of(char C, size_t From = npos) const;
95 size_t find_last_not_of(StringRef Chars, size_t From = npos) const;