Searched refs:find_first_not_of (Results 1 - 25 of 38) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Demangle/
H A DDemangle.cpp17 size_t Pos = MangledName.find_first_not_of('_');
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/
H A DCodeRegionGenerator.cpp82 unsigned Position = Comment.find_first_not_of(" \t");
90 Position = Comment.find_first_not_of(" \t");
102 Position = Comment.find_first_not_of(" \t");
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCSectionWasm.cpp25 if (Name.find_first_not_of("0123456789_."
H A DMCSectionELF.cpp31 if (Name.find_first_not_of("0123456789_."
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallString.h190 size_t find_first_not_of(char C, size_t From = 0) const { function in class:llvm::SmallString
191 return str().find_first_not_of(C, From);
198 size_t find_first_not_of(StringRef Chars, size_t From = 0) const { function in class:llvm::SmallString
199 return str().find_first_not_of(Chars, From);
H A DStringRef.h415 size_t find_first_not_of(char C, size_t From = 0) const;
422 size_t find_first_not_of(StringRef Chars, size_t From = 0) const;
812 return drop_front(std::min(Length, find_first_not_of(Char)));
819 return drop_front(std::min(Length, find_first_not_of(Chars)));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DStringExtras.cpp40 StringRef::size_type Start = Source.find_first_not_of(Delimiters);
H A DRegex.cpp185 StringRef Ref = Repl.slice(0, Repl.find_first_not_of("0123456789"));
H A DLockFileManager.cpp65 PIDStr = PIDStr.substr(PIDStr.find_first_not_of(" "));
H A DStringRef.cpp248 /// find_first_not_of - Find the first character in the string that is not
250 StringRef::size_type StringRef::find_first_not_of(char C, size_t From) const {
257 /// find_first_not_of - Find the first character in the string that is not
261 StringRef::size_type StringRef::find_first_not_of(StringRef Chars,
/freebsd-11-stable/contrib/atf/atf-c++/detail/
H A Dtext.cpp108 std::string::size_type pos1 = str.find_first_not_of(" \t");
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mc/
H A DDisassembler.cpp85 if (size_t Pos = Str.find_first_not_of(" \t\r\n,")) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DBreakableToken.cpp112 StringRef::size_type FirstNonWhitespace = Text.find_first_not_of(Blanks);
489 size_t StartOfLine = Lines[LineIndex].find_first_not_of(Blanks);
607 size_t Trimmed = Content[LineIndex].find_first_not_of(Blanks);
621 Lines[0].substr(1).find_first_not_of(Blanks) != StringRef::npos;
653 size_t BreakLength = Lines[0].substr(1).find_first_not_of(Blanks);
851 size_t Trimmed = Content[LineIndex].find_first_not_of(Blanks);
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenInstruction.cpp232 std::string::size_type start = CStr.find_first_not_of(" \t");
236 wpos = Name.find_first_not_of(" \t");
260 start = CStr.find_first_not_of(" \t");
271 wpos = CStr.find_first_not_of(" \t", pos + 1);
328 bidx = CStr.find_first_not_of(delims);
335 bidx = CStr.find_first_not_of(delims, eidx);
/freebsd-11-stable/contrib/libstdc++/include/bits/
H A Dbasic_string.h1801 find_first_not_of(const basic_string& __str, size_type __pos = 0) const function in class:basic_string
1802 { return this->find_first_not_of(__str.data(), __pos, __str.size()); }
1816 find_first_not_of(const _CharT* __s, size_type __pos,
1830 find_first_not_of(const _CharT* __s, size_type __pos = 0) const function in class:basic_string
1833 return this->find_first_not_of(__s, __pos, traits_type::length(__s));
1847 find_first_not_of(_CharT __c, size_type __pos = 0) const;
/freebsd-11-stable/contrib/libstdc++/include/ext/
H A Dvstring.h1526 find_first_not_of(const __versa_string& __str, size_type __pos = 0) const function in class:__versa_string
1527 { return this->find_first_not_of(__str.data(), __pos, __str.size()); }
1541 find_first_not_of(const _CharT* __s, size_type __pos,
1555 find_first_not_of(const _CharT* __s, size_type __pos = 0) const function in class:__versa_string
1558 return this->find_first_not_of(__s, __pos, traits_type::length(__s));
1572 find_first_not_of(_CharT __c, size_type __pos = 0) const;
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DIssueHash.cpp140 StringRef::size_type col = Str.find_first_not_of(Whitespaces);
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DScriptLexer.cpp128 size_t pos = s.find_first_not_of(
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp208 size_t FirstNonSymbol = Expr.find_first_not_of("0123456789"
448 FirstNonDigit = Expr.find_first_not_of("0123456789abcdefABCDEF", 2);
452 FirstNonDigit = Expr.find_first_not_of("0123456789");
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DYAMLTraits.h541 std::min(Input.find_first_not_of("0123456789"), Input.size()));
565 S.drop_front(2).find_first_not_of("01234567") == StringRef::npos;
568 return S.size() > 2 && S.drop_front(2).find_first_not_of(
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DRawCommentList.cpp401 size_t WhitespaceLen = TokText.find_first_not_of(" \t");
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1247 size_t start = command_string.find_first_not_of(k_white_space);
1283 start = command_string.find_first_not_of(k_white_space, end);
1297 size_t pos = s.find_first_not_of(k_white_space);
1347 command_string.erase(0, command_string.find_first_not_of(
1360 command_string.erase(0, command_string.find_first_not_of(
1370 size_t pos = command.find_first_not_of(k_valid_command_chars);
1643 size_t non_space = command_string.find_first_not_of(k_space_characters);
1754 size_t pos = remainder.find_first_not_of(k_white_space);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp254 Name = Name.substr(Name.find_first_not_of("._"));
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DRetainSummaryManager.cpp504 FName = FName.substr(FName.find_first_not_of('_'));
721 FName = FName.substr(FName.find_first_not_of('_'));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProfReader.cpp144 n3 += Rest.substr(n3).find_first_not_of(' ');
201 if ((*LineIt)[(*LineIt).find_first_not_of(' ')] == '#')

Completed in 428 milliseconds

12