Home | History | Annotate | Download | only in ADT

Lines Matching defs:find

143   /// find - Search for the first character \p C in the string.
147 size_t find(char C, size_t From = 0) const {
148 return str().find(C, From);
155 size_t find(StringRef Str, size_t From = 0) const {
156 return str().find(Str, From);
175 /// Find the first character in the string that is \p C, or npos if not
176 /// found. Same as find.
181 /// Find the first character in the string that is in \p Chars, or npos if
189 /// Find the first character in the string that is not \p C or npos if not
195 /// Find the first character in the string that is not in the string
203 /// Find the last character in the string that is \p C, or npos if not
209 /// Find the last character in the string that is in \p C, or npos if not