Searched refs:Chars (Results 1 - 5 of 5) sorted by relevance

/freebsd-9.3-release/contrib/llvm/include/llvm/ADT/
H A DStringRef.h273 /// Find the first character in the string that is in \p Chars, or npos if
276 /// Complexity: O(size() + Chars.size())
277 size_t find_first_of(StringRef Chars, size_t From = 0) const;
284 /// \p Chars, or npos if not found.
286 /// Complexity: O(size() + Chars.size())
287 size_t find_first_not_of(StringRef Chars, size_t From = 0) const;
298 /// Complexity: O(size() + Chars.size())
299 size_t find_last_of(StringRef Chars, size_t From = npos) const;
305 /// Find the last character in the string that is not in \p Chars, or
308 /// Complexity: O(size() + Chars
[all...]
H A DSmallString.h184 /// Find the first character in the string that is in \p Chars, or npos if
187 /// Complexity: O(size() + Chars.size())
188 size_t find_first_of(StringRef Chars, size_t From = 0) const { argument
189 return str().find_first_of(Chars, From);
199 /// \p Chars, or npos if not found.
201 /// Complexity: O(size() + Chars.size())
202 size_t find_first_not_of(StringRef Chars, size_t From = 0) const { argument
203 return str().find_first_not_of(Chars, From);
215 /// Complexity: O(size() + Chars.size())
217 StringRef Chars, size_
216 find_last_of( StringRef Chars, size_t From = StringRef::npos) const argument
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DStringRef.cpp196 /// 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[
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Format/
H A DBreakableToken.cpp102 for (unsigned Chars = 0;;) {
106 Chars += Advance;
109 Chars += encoding::columnWidthWithTabs(
110 Text.substr(0, Advance), UsedColumns + Chars, TabWidth, Encoding);
113 if (Chars > MaxSplit)
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Lex/
H A DLexer.cpp1661 unsigned Chars = 1; local
1668 IsUDSuffix = (Chars == 1 && Buffer[0] == 's') ||
1670 getLangOpts(), StringRef(Buffer, Chars));
1674 if (Chars == MaxStandardSuffixLength)
1678 Buffer[Chars++] = Next;

Completed in 183 milliseconds