Searched refs:npos (Results 176 - 200 of 298) sorted by relevance

1234567891011>>

/freebsd-current/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DHTMLLogger.cpp552 if (Pos == llvm::StringRef::npos)
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DAnalysisConsumer.cpp515 Opts.AnalyzeSpecificFunction.find("(") != std::string::npos;
/freebsd-current/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp1129 return NumWhitespaceChars == StringRef::npos
2337 (Slash == StringRef::npos) ? "" : PartialPath.take_front(Slash);
2339 (Slash == StringRef::npos) ? PathStart : PathStart + Slash + 1;
3191 while (Pos != StringRef::npos) {
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp2446 while ((pos = str.find(oldStr, pos)) != std::string::npos) {
2567 if (!possible_package && module_name.find('.') != llvm::StringRef::npos) {
2573 if (module_name.find('-') != llvm::StringRef::npos) {
2646 if (word_sr.find('"') != llvm::StringRef::npos ||
2647 word_sr.find('\'') != llvm::StringRef::npos)
H A DPythonDataObjects.cpp208 if (dot_pos == llvm::StringRef::npos) {
230 if (dot_pos == llvm::StringRef::npos) {
/freebsd-current/contrib/llvm-project/clang/tools/clang-format/
H A DClangFormat.cpp309 while ((Index = Text.find_first_of("\n\r<&", From)) != StringRef::npos) {
/freebsd-current/contrib/llvm-project/lld/ELF/
H A DSymbols.cpp222 if (pos == StringRef::npos)
/freebsd-current/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandObject.cpp582 if (result == std::string::npos) {
H A DOptions.cpp1050 if (pos != std::string::npos)
1060 if (pos != std::string::npos)
/freebsd-current/contrib/llvm-project/lldb/source/Core/
H A DIOHandler.cpp333 if (pos == std::string::npos)
/freebsd-current/contrib/llvm-project/lldb/tools/driver/
H A DDriver.cpp418 while ((pos = arg.find_first_of("\"\\", pos)) != std::string::npos) {
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp262 if (Plus != StringRef::npos) {
/freebsd-current/contrib/llvm-project/llvm/lib/WindowsDriver/
H A DMSVCPaths.cpp718 if (pos == std::string::npos)
/freebsd-current/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp1000 if (FirstSpace == StringRef::npos)
1014 if (OpenParens != StringRef::npos) {
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp664 if (action_end_pos == std::string::npos) {
683 if (attribute_end_pos == std::string::npos) {
/freebsd-current/contrib/llvm-project/llvm/utils/TableGen/
H A DX86RecognizableInstr.cpp37 if (CondPos != StringRef::npos)
38 Mnemonic = AsmString.replace(CondPos, StringRef::npos, "CC");
H A DAsmMatcherEmitter.cpp835 if (start == std::string::npos)
837 Ops.first = Ops.first.slice(start + 1, std::string::npos);
842 if (start == std::string::npos)
844 Ops.second = Ops.second.slice(start + 1, std::string::npos);
1046 assert(EndPos != StringRef::npos &&
1071 if (AsmString.find('\n') != std::string::npos)
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp1054 std::string::npos) {
1066 size_t PrefixPos = StringRef::npos;
1070 if (PrefixPos == StringRef::npos)
1076 if (PrefixPos == StringRef::npos) {
1088 bool ProfileHasFUnique = (PostfixPos != StringRef::npos);
2351 std::string::npos)) {
/freebsd-current/contrib/bsnmp/tests/
H A Dcatch.hpp8394 return chars.find(c) != std::string::npos;
8398 return chars.find(c) != std::string::npos;
8402 return chars.find(c) != std::string::npos;
8411 size_t m_initialIndent = std::string::npos;
8472 auto initial = m_pos == 0 && m_stringIndex == 0 ? m_column.m_initialIndent : std::string::npos;
8473 return initial == std::string::npos ? m_column.m_indent : initial;
8489 assert(m_column.m_initialIndent == std::string::npos || m_column.m_width > m_column.m_initialIndent);
8796 if( delimiterPos != std::string::npos ) {
9244 auto filename = ( lastSlash == std::string::npos )
10392 lhs.find('\n') == std::string::npos
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Format/
H A DFormat.cpp3024 if (Pos == std::string::npos) {
3030 } while (Pos != std::string::npos);
3173 Code.substr(Prev, (Pos != StringRef::npos ? Pos : Code.size()) - Prev);
3211 Prev, (Pos != StringRef::npos ? Pos + 2 : Code.size()) - Prev);
3232 if (Pos == StringRef::npos || Pos + 1 == Code.size())
3366 Code.substr(Prev, (Pos != StringRef::npos ? Pos : Code.size()) - Prev);
3393 if (Pos == StringRef::npos || Pos + 1 == Code.size())
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DCommandLine.cpp504 if (EqualPos == StringRef::npos) {
612 while (Pos != StringRef::npos) {
1112 TokenPos != StringRef::npos;
H A DYAMLParser.cpp1021 != StringRef::npos) {
1065 StringRef(Position, 1).find_first_of(",[]{}") != StringRef::npos)
1906 FirstChar.find_first_of("-?:,[]{}#&*!|>'\"%@`") == StringRef::npos) ||
1907 (FirstChar.find_first_of("?:-") != StringRef::npos &&
2060 if (I == StringRef::npos)
2066 for (; I != StringRef::npos; I = UnquotedValue.find_first_of(LookupChars)) {
2074 LastNonSWhite != StringRef::npos) {
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1468 if (thread_pcs_pos != std::string::npos) {
1471 if (end != std::string::npos) {
1478 if (threads_pos != std::string::npos) {
1481 if (end != std::string::npos) {
2476 response.GetStringRef().find(";reason:exec;") != std::string::npos;
5038 while ((found = input.find(end_delimiter, pos)) != std::string::npos) {
/freebsd-current/contrib/llvm-project/clang/lib/Driver/
H A DToolChain.cpp381 if (LastComponent == std::string::npos)
1191 !VersionText.slice(1, StringRef::npos).getAsInteger(10, Version)) {
/freebsd-current/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMemory.cpp406 while ((idx = type_str.find(keyword, idx)) != std::string::npos) {
419 if (idx > 0 && idx != std::string::npos)

Completed in 409 milliseconds

1234567891011>>