Searched refs:Chars (Results 1 – 18 of 18) sorted by relevance
| /freebsd-9-stable/contrib/llvm/include/llvm/ADT/ |
| D | StringRef.h | 277 size_t find_first_of(StringRef Chars, size_t From = 0) const; 287 size_t find_first_not_of(StringRef Chars, size_t From = 0) const; 299 size_t find_last_of(StringRef Chars, size_t From = npos) const; 309 size_t find_last_not_of(StringRef Chars, size_t From = npos) const; 498 StringRef ltrim(StringRef Chars = " \t\n\v\f\r") const { 499 return drop_front(std::min(Length, find_first_not_of(Chars))); 504 StringRef rtrim(StringRef Chars = " \t\n\v\f\r") const { 505 return drop_back(Length - std::min(Length, find_last_not_of(Chars) + 1)); 510 StringRef trim(StringRef Chars = " \t\n\v\f\r") const { 511 return ltrim(Chars).rtrim(Chars);
|
| D | SmallString.h | 188 size_t find_first_of(StringRef Chars, size_t From = 0) const { 189 return str().find_first_of(Chars, From); 202 size_t find_first_not_of(StringRef Chars, size_t From = 0) const { 203 return str().find_first_not_of(Chars, From); 217 StringRef Chars, size_t From = StringRef::npos) const { 218 return str().find_last_of(Chars, From);
|
| /freebsd-9-stable/contrib/llvm/lib/Support/ |
| D | StringRef.cpp | 199 StringRef::size_type StringRef::find_first_of(StringRef Chars, in find_first_of() argument 202 for (size_type i = 0; i != Chars.size(); ++i) in find_first_of() 203 CharBits.set((unsigned char)Chars[i]); in find_first_of() 224 StringRef::size_type StringRef::find_first_not_of(StringRef Chars, in find_first_not_of() argument 227 for (size_type i = 0; i != Chars.size(); ++i) in find_first_not_of() 228 CharBits.set((unsigned char)Chars[i]); in find_first_not_of() 240 StringRef::size_type StringRef::find_last_of(StringRef Chars, in find_last_of() argument 243 for (size_type i = 0; i != Chars.size(); ++i) in find_last_of() 244 CharBits.set((unsigned char)Chars[i]); in find_last_of() 265 StringRef::size_type StringRef::find_last_not_of(StringRef Chars, in find_last_not_of() argument [all …]
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/Format/ |
| D | BreakableToken.cpp | 102 for (unsigned Chars = 0;;) { in getStringSplit() local 106 Chars += Advance; in getStringSplit() 109 Chars += encoding::columnWidthWithTabs( in getStringSplit() 110 Text.substr(0, Advance), UsedColumns + Chars, TabWidth, Encoding); in getStringSplit() 113 if (Chars > MaxSplit) in getStringSplit()
|
| /freebsd-9-stable/contrib/binutils/gas/doc/ |
| D | c-ia64.texi | 120 * IA-64-Chars:: Special Characters 126 @node IA-64-Chars
|
| D | c-arc.texi | 87 * ARC-Chars:: Special Characters 91 @node ARC-Chars
|
| D | c-avr.texi | 85 * AVR-Chars:: Special Characters 90 @node AVR-Chars
|
| D | c-sh.texi | 72 * SH-Chars:: Special Characters 77 @node SH-Chars
|
| D | c-alpha.texi | 120 * Alpha-Chars:: Special Characters 125 @node Alpha-Chars
|
| D | c-arm.texi | 285 * ARM-Chars:: Special Characters 290 @node ARM-Chars
|
| D | as.texinfo | 2397 * Chars:: Characters 2505 @node Chars
|
| /freebsd-9-stable/share/i18n/csmapper/CP/ |
| D | CP1161%UCS.src | 38 # CP1161 - Thai with Low Tone Marks & Ancient Chars - PC
|
| D | CP874%UCS.src | 38 # CP874 - Thai with Low Tone Marks & Ancient Chars - PC
|
| D | UCS%CP1161.src | 38 # CP1161 - Thai with Low Tone Marks & Ancient Chars - PC
|
| D | UCS%CP874.src | 38 # CP874 - Thai with Low Tone Marks & Ancient Chars - PC
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/Lex/ |
| D | Lexer.cpp | 1661 unsigned Chars = 1; in LexUDSuffix() local 1668 IsUDSuffix = (Chars == 1 && Buffer[0] == 's') || in LexUDSuffix() 1670 getLangOpts(), StringRef(Buffer, Chars)); in LexUDSuffix() 1674 if (Chars == MaxStandardSuffixLength) in LexUDSuffix() 1678 Buffer[Chars++] = Next; in LexUDSuffix()
|
| /freebsd-9-stable/contrib/binutils/gas/ |
| D | ChangeLog-9899 | 1971 * doc/c-arm.texi (ARM-Chars): Fix typo in use of '@'.
|
| D | ChangeLog-0001 | 7684 (ARM-Chars): Correct description of `#'. Mention that `;' is a
|