Home
last modified time | relevance | path

Searched refs:find_first_not_of (Results 1 – 25 of 43) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/
H A DCodeRegionGenerator.cpp92 unsigned Position = Comment.find_first_not_of(" \t"); in HandleComment()
100 Position = Comment.find_first_not_of(" \t"); in HandleComment()
112 Position = Comment.find_first_not_of(" \t"); in HandleComment()
127 unsigned Position = Comment.find_first_not_of(" \t"); in HandleComment()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallString.h179 [[nodiscard]] size_t find_first_not_of(char C, size_t From = 0) const {
180 return str().find_first_not_of(C, From);
187 [[nodiscard]] size_t find_first_not_of(StringRef Chars,
189 return str().find_first_not_of(Chars, From);
H A DStringRef.h374 [[nodiscard]] size_t find_first_not_of(char C, size_t From = 0) const;
380 [[nodiscard]] size_t find_first_not_of(StringRef Chars,
777 return drop_front(std::min(Length, find_first_not_of(Char))); in ltrim()
783 return drop_front(std::min(Length, find_first_not_of(Chars)));
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenInstruction.cpp304 StringRef::size_type start = CStr.find_first_not_of(" \t"); in ParseConstraint()
308 wpos = Name.find_first_not_of(" \t"); in ParseConstraint()
333 start = CStr.find_first_not_of(" \t"); in ParseConstraint()
344 wpos = CStr.find_first_not_of(" \t", pos + 1); in ParseConstraint()
401 bidx = CStr.find_first_not_of(delims); in ParseConstraints()
408 bidx = CStr.find_first_not_of(delims, eidx); in ParseConstraints()
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DBreakableToken.cpp60 Comment.find_first_not_of(' ', KnownPrefix.size()); in getLineCommentIndentPrefix()
144 StringRef::size_type FirstNonWhitespace = Text.find_first_not_of(Blanks); in getCommentSplit()
637 size_t StartOfLine = Lines[LineIndex].find_first_not_of(Blanks); in adjustWhitespace()
750 size_t Trimmed = Content[LineIndex].find_first_not_of(Blanks); in getReflowSplit()
765 Lines[0].substr(1).find_first_not_of(Blanks) != StringRef::npos; in introducesBreakBeforeToken()
797 size_t BreakLength = Lines[0].substr(1).find_first_not_of(Blanks); in adaptStartOfLine()
1046 size_t Trimmed = Content[LineIndex].find_first_not_of(Blanks); in getReflowSplit()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dstring_view157 constexpr size_type find_first_not_of(basic_string_view s, size_type pos = 0) const noexcept;
158 constexpr size_type find_first_not_of(charT c, size_type pos = 0) const noexcept;
159 …constexpr size_type find_first_not_of(const charT* s, size_type pos, size_type n) const noexcept; …
160 …constexpr size_type find_first_not_of(const charT* s, size_type pos = 0) const noexcept; // noexce…
588 // find_first_not_of
590 find_first_not_of(basic_string_view __s, size_type __pos = 0) const _NOEXCEPT {
592 … __s.size() == 0 || __s.data() != nullptr, "string_view::find_first_not_of(): received nullptr");
598 find_first_not_of(_CharT __c, size_type __pos = 0) const _NOEXCEPT {
603 find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const _NOEXCEPT {
604 …_LIBCPP_ASSERT_NON_NULL(__n == 0 || __s != nullptr, "string_view::find_first_not_of(): received nu…
[all …]
H A Dstring321 …size_type find_first_not_of(const basic_string& str, size_type pos = 0) const noexcept; // con…
323 …size_type find_first_not_of(const T& t, size_type pos = 0) const noexcept; // C++17, …
324 …size_type find_first_not_of(const value_type* s, size_type pos, size_type n) const noexcept; // co…
325 …size_type find_first_not_of(const value_type* s, size_type pos = 0) const noexcept; // con…
326 …size_type find_first_not_of(value_type c, size_type pos = 0) const noexcept; // con…
1769 find_first_not_of(const basic_string& __str, size_type __pos = 0) const _NOEXCEPT;
1773 find_first_not_of(const _Tp& __t, size_type __pos = 0) const _NOEXCEPT;
1776 find_first_not_of(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
1778 find_first_not_of(const value_type* __s, size_type __pos = 0) const _NOEXCEPT;
1780 find_first_not_of(value_type __c, size_type __pos = 0) const _NOEXCEPT;
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCSectionWasm.cpp25 if (Name.find_first_not_of("0123456789_." in printName()
H A DMCSectionELF.cpp31 if (Name.find_first_not_of("0123456789_." in printName()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DStringRef.cpp251 StringRef::size_type StringRef::find_first_not_of(char C, size_t From) const { in find_first_not_of() function in StringRef
252 return std::string_view(*this).find_first_not_of(C, From); in find_first_not_of()
259 StringRef::size_type StringRef::find_first_not_of(StringRef Chars, in find_first_not_of() function in StringRef
H A DStringExtras.cpp42 StringRef::size_type Start = Source.find_first_not_of(Delimiters); in getToken()
H A DRegex.cpp209 StringRef Ref = Repl.slice(0, Repl.find_first_not_of("0123456789")); in isLiteralERE()
H A DLockFileManager.cpp69 PIDStr = PIDStr.substr(PIDStr.find_first_not_of(' ')); in readLockFile()
/freebsd/contrib/atf/atf-c++/detail/
H A Dtext.cpp108 std::string::size_type pos1 = str.find_first_not_of(" \t"); in trim()
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVUtils.cpp364 size_t NameSpaceStart = Name.find_first_not_of("rVKRO", 3); in getOclOrSpirvBuiltinDemangledName()
370 Start = Name.find_first_not_of("0123456789", DemangledNameLenStart); in getOclOrSpirvBuiltinDemangledName()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DYAMLTraits.h589 S.drop_front(2).find_first_not_of("01234567") == StringRef::npos;
592 return S.size() > 2 && S.drop_front(2).find_first_not_of(
/freebsd/contrib/llvm-project/llvm/tools/llvm-mc/
H A DDisassembler.cpp83 if (size_t Pos = Str.find_first_not_of(" \t\r\n,")) { in SkipToToken()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DCommandObjectTraceStartIntelPT.cpp187 const auto non_digit_index = size_expression.find_first_not_of("0123456789"); in ParseUserFriendlySizeExpression()
/freebsd/contrib/llvm-project/libcxx/include/__string/
H A Dextern_template_lists.h41 _Func(_LIBCPP_EXPORTED_FROM_ABI basic_string<_CharType>::size_type basic_string<_CharType>::find_first_not_of(value_type const*, size_type, size_type) const) \
89 _Func(_LIBCPP_EXPORTED_FROM_ABI basic_string<_CharType>::size_type basic_string<_CharType>::find_first_not_of(value_type const*, size_type, size_type) const) \
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DIssueHash.cpp143 StringRef::size_type col = Str.find_first_not_of(Whitespaces); in NormalizeLine()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1492 size_t start = command_string.find_first_not_of(k_white_space); in GetCommandObjectForCommand()
1529 start = command_string.find_first_not_of(k_white_space, end); in GetCommandObjectForCommand()
1543 size_t pos = s.find_first_not_of(k_white_space); in StripLeadingSpaces()
1593 command_string.erase(0, command_string.find_first_not_of( in ExtractCommand()
1606 command_string.erase(0, command_string.find_first_not_of( in ExtractCommand()
1616 size_t pos = command.find_first_not_of(k_valid_command_chars); in ExtractCommand()
1895 size_t non_space = command_string.find_first_not_of(k_space_characters); in HandleCommand()
2024 size_t pos = remainder.find_first_not_of(k_white_space); in HandleCommand()
H A DCommandObject.cpp653 size_t result = line.find_first_not_of(" \t"); in FormatLongHelpText()
/freebsd/contrib/llvm-project/lld/ELF/
H A DScriptLexer.cpp147 size_t pos = s.find_first_not_of( in tokenize()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp230 size_t FirstNonSymbol = Expr.find_first_not_of("0123456789" in parseSymbol()
521 FirstNonDigit = Expr.find_first_not_of("0123456789abcdefABCDEF", 2); in parseNumberString()
525 FirstNonDigit = Expr.find_first_not_of("0123456789"); in parseNumberString()
/freebsd/contrib/kyua/engine/
H A Datf_result.cpp299 const std::string::size_type delim = data.second.find_first_not_of( in parse()

12