| /NextBSD/contrib/llvm/include/llvm/ADT/ |
| HD | SmallString.h | 191 size_t find_first_not_of(char C, size_t From = 0) const { 192 return str().find_first_not_of(C, From); 199 size_t find_first_not_of(StringRef Chars, size_t From = 0) const { 200 return str().find_first_not_of(Chars, From);
|
| HD | StringRef.h | 291 size_t find_first_not_of(char C, size_t From = 0) const; 297 size_t find_first_not_of(StringRef Chars, size_t From = 0) const; 512 return drop_front(std::min(Length, find_first_not_of(Chars)));
|
| /NextBSD/contrib/libc++/include/experimental/ |
| D | string_view | 148 constexpr size_type find_first_not_of(basic_string_view s, size_type pos = 0) const noexcept; 149 constexpr size_type find_first_not_of(charT c, size_type pos = 0) const noexcept; 150 constexpr size_type find_first_not_of(const charT* s, size_type pos, size_type n) const; 151 constexpr size_type find_first_not_of(const charT* s, size_type pos = 0) const; 534 // find_first_not_of 536 size_type find_first_not_of(basic_string_view __s, size_type __pos=0) const _NOEXCEPT 538 …BCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_first_not_of(): recieved … 544 size_type find_first_not_of(_CharT __c, size_type __pos=0) const _NOEXCEPT 551 size_type find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const 553 … _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_first_not_of(): recieved nullptr"); [all …]
|
| /NextBSD/contrib/llvm/utils/TableGen/ |
| HD | CodeGenInstruction.cpp | 204 std::string::size_type start = CStr.find_first_not_of(" \t"); in ParseConstraint() 208 wpos = Name.find_first_not_of(" \t"); in ParseConstraint() 225 start = CStr.find_first_not_of(" \t"); in ParseConstraint() 236 wpos = Name.find_first_not_of(" \t"); in ParseConstraint() 262 bidx = CStr.find_first_not_of(delims); in ParseConstraints() 269 bidx = CStr.find_first_not_of(delims, eidx); in ParseConstraints()
|
| /NextBSD/contrib/llvm/tools/lldb/tools/lldb-mi/ |
| HD | MIUtilString.cpp | 392 const size_t nPos = find_first_not_of("-.0123456789"); in IsNumber() 414 const size_t nPos = find_first_not_of("01234567890ABCDEFabcedf", 2); in IsHexadecimalNumber() 460 const size_t nPos = find_first_not_of("xX01234567890ABCDEFabcedf"); in ExtractNumberFromHexadecimal() 534 const size_t nPos2 = strNew.find_first_not_of(pWhiteSpace); in Trim()
|
| /NextBSD/contrib/llvm/tools/lldb/source/Host/common/ |
| HD | ThisThread.cpp | 34 std::string::size_type begin = truncated_name.find_first_not_of("(<"); in SetName()
|
| /NextBSD/contrib/libstdc++/include/debug/ |
| D | string | 692 find_first_not_of(const basic_string& __str, size_type __pos = 0) const 693 { return _Base::find_first_not_of(__str, __pos); } 696 find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const 699 return _Base::find_first_not_of(__s, __pos, __n); 703 find_first_not_of(const _CharT* __s, size_type __pos = 0) const 706 return _Base::find_first_not_of(__s, __pos); 710 find_first_not_of(_CharT __c, size_type __pos = 0) const 711 { return _Base::find_first_not_of(__c, __pos); }
|
| /NextBSD/contrib/llvm/lib/Support/ |
| HD | StringExtras.cpp | 40 StringRef::size_type Start = Source.find_first_not_of(Delimiters); in getToken()
|
| HD | StringRef.cpp | 212 StringRef::size_type StringRef::find_first_not_of(char C, size_t From) const { in find_first_not_of() function in StringRef 223 StringRef::size_type StringRef::find_first_not_of(StringRef Chars, in find_first_not_of() function in StringRef
|
| HD | Regex.cpp | 154 StringRef Ref = Repl.slice(0, Repl.find_first_not_of("0123456789")); in sub()
|
| HD | LockFileManager.cpp | 56 PIDStr = PIDStr.substr(PIDStr.find_first_not_of(" ")); in readLockFile()
|
| /NextBSD/contrib/libstdc++/include/bits/ |
| D | basic_string.h | 1801 find_first_not_of(const basic_string& __str, size_type __pos = 0) const in _GLIBCXX_BEGIN_NAMESPACE() 1802 { return this->find_first_not_of(__str.data(), __pos, __str.size()); } in _GLIBCXX_BEGIN_NAMESPACE() 1816 find_first_not_of(const _CharT* __s, size_type __pos, in _GLIBCXX_BEGIN_NAMESPACE() 1830 find_first_not_of(const _CharT* __s, size_type __pos = 0) const in _GLIBCXX_BEGIN_NAMESPACE() 1833 return this->find_first_not_of(__s, __pos, traits_type::length(__s)); in _GLIBCXX_BEGIN_NAMESPACE() 1847 find_first_not_of(_CharT __c, size_type __pos = 0) const; in _GLIBCXX_BEGIN_NAMESPACE()
|
| D | basic_string.tcc | 834 find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const in find_first_not_of() function in basic_string 846 find_first_not_of(_CharT __c, size_type __pos) const in find_first_not_of() function in basic_string
|
| /NextBSD/contrib/libstdc++/include/ext/ |
| D | vstring.h | 1526 find_first_not_of(const __versa_string& __str, size_type __pos = 0) const in _GLIBCXX_BEGIN_NAMESPACE() 1527 { return this->find_first_not_of(__str.data(), __pos, __str.size()); } in _GLIBCXX_BEGIN_NAMESPACE() 1541 find_first_not_of(const _CharT* __s, size_type __pos, in _GLIBCXX_BEGIN_NAMESPACE() 1555 find_first_not_of(const _CharT* __s, size_type __pos = 0) const in _GLIBCXX_BEGIN_NAMESPACE() 1558 return this->find_first_not_of(__s, __pos, traits_type::length(__s)); in _GLIBCXX_BEGIN_NAMESPACE() 1572 find_first_not_of(_CharT __c, size_type __pos = 0) const; in _GLIBCXX_BEGIN_NAMESPACE()
|
| D | vstring.tcc | 393 find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const in find_first_not_of() function in __versa_string 406 find_first_not_of(_CharT __c, size_type __pos) const in find_first_not_of() function in __versa_string
|
| /NextBSD/contrib/llvm/lib/MC/ |
| HD | MCSectionELF.cpp | 39 if (Name.find_first_not_of("0123456789_." in printName()
|
| /NextBSD/contrib/atf/atf-c++/detail/ |
| D | text.cpp | 108 std::string::size_type pos1 = str.find_first_not_of(" \t"); in trim()
|
| /NextBSD/contrib/llvm/include/llvm/Support/ |
| HD | YAMLTraits.h | 383 S.drop_front().find_first_not_of(OctalChars) == StringRef::npos) 387 S.drop_front(2).find_first_not_of(OctalChars) == StringRef::npos) 392 S.drop_front(2).find_first_not_of(HexChars) == StringRef::npos) 396 if (S.find_first_not_of(DecChars) == StringRef::npos) 443 if (S.find_first_not_of(ScalarSafeChars) != StringRef::npos)
|
| /NextBSD/contrib/llvm/tools/lldb/source/Interpreter/ |
| HD | CommandInterpreter.cpp | 1275 size_t start = command_string.find_first_not_of (k_white_space); in GetCommandObjectForCommand() 1312 start = command_string.find_first_not_of (k_white_space, end); in GetCommandObjectForCommand() 1333 size_t pos = s.find_first_not_of (k_white_space); in StripLeadingSpaces() 1395 … command_string.erase (0, command_string.find_first_not_of (k_white_space, end_quote_pos + 1)); in ExtractCommand() 1411 … command_string.erase(0, command_string.find_first_not_of (k_white_space, first_space_pos)); in ExtractCommand() 1423 size_t pos = command.find_first_not_of(k_valid_command_chars); in ExtractCommand() 1684 size_t non_space = command_string.find_first_not_of (k_space_characters); in HandleCommand() 1805 size_t pos = remainder.find_first_not_of (k_white_space); in HandleCommand()
|
| /NextBSD/contrib/llvm/tools/llvm-mc/ |
| HD | Disassembler.cpp | 86 if (size_t Pos = Str.find_first_not_of(" \t\r\n,")) { in SkipToToken()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Format/ |
| HD | BreakableToken.cpp | 69 StringRef::size_type FirstNonWhitespace = Text.find_first_not_of(Blanks); in getCommentSplit() 345 size_t StartOfLine = Lines[LineIndex].find_first_not_of(Blanks); in adjustWhitespace()
|
| /NextBSD/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| HD | RuntimeDyldChecker.cpp | 206 size_t FirstNonSymbol = Expr.find_first_not_of("0123456789" in parseSymbol() 452 FirstNonDigit = Expr.find_first_not_of("0123456789abcdefABCDEF", 2); in parseNumberString() 456 FirstNonDigit = Expr.find_first_not_of("0123456789"); in parseNumberString()
|
| /NextBSD/contrib/llvm/lib/DebugInfo/DWARF/ |
| HD | DWARFContext.cpp | 565 name = name.substr(name.find_first_not_of("._")); // Skip . and _ prefixes. in DWARFContextInMemory() 641 RelSecName.find_first_not_of("._")); // Skip . and _ prefixes. in DWARFContextInMemory()
|
| /NextBSD/contrib/libc++/include/ |
| D | string | 251 size_type find_first_not_of(const basic_string& str, size_type pos = 0) const noexcept; 252 size_type find_first_not_of(const value_type* s, size_type pos, size_type n) const noexcept; 253 size_type find_first_not_of(const value_type* s, size_type pos = 0) const noexcept; 254 size_type find_first_not_of(value_type c, size_type pos = 0) const noexcept; 1653 size_type find_first_not_of(const basic_string& __str, size_type __pos = 0) const _NOEXCEPT; 1654 …size_type find_first_not_of(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT; 1656 size_type find_first_not_of(const value_type* __s, size_type __pos = 0) const _NOEXCEPT; 1658 size_type find_first_not_of(value_type __c, size_type __pos = 0) const _NOEXCEPT; 3559 // find_first_not_of 3563 basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(const value_type* __s, [all …]
|
| /NextBSD/contrib/llvm/tools/bugpoint/ |
| HD | ToolRunner.cpp | 415 std::string::size_type lastPos = CommandLine.find_first_not_of(delimiters, 0); in lexCommand() 425 lastPos = CommandLine.find_first_not_of(delimiters, pos); in lexCommand()
|