Home
last modified time | relevance | path

Searched refs:GetMatchAtIndex (Results 1 – 13 of 13) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DRegularExpression.cpp112 bool RegularExpression::Match::GetMatchAtIndex(llvm::StringRef s, uint32_t idx, in GetMatchAtIndex() function in RegularExpression::Match
115 if (GetMatchAtIndex(s, idx, match_str_ref)) { in GetMatchAtIndex()
122 bool RegularExpression::Match::GetMatchAtIndex( in GetMatchAtIndex() function in RegularExpression::Match
/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionArgParser.cpp221 if (regex_match.GetMatchAtIndex(s, 1, name)) { in ToAddress()
222 if (regex_match.GetMatchAtIndex(s, 2, str)) { in ToAddress()
225 if (regex_match.GetMatchAtIndex(s, 3, str)) { in ToAddress()
H A DCommandObjectRegexCommand.cpp46 if (regex_match.GetMatchAtIndex(command, match_idx, match_str)) { in DoExecute()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DRegularExpression.h83 bool GetMatchAtIndex(llvm::StringRef s, uint32_t idx,
86 bool GetMatchAtIndex(llvm::StringRef s, uint32_t idx,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFUnit.cpp689 if (regex_match.GetMatchAtIndex(producer_cstr, 1, str)) in ParseProducerInfo()
692 if (regex_match.GetMatchAtIndex(producer_cstr, 2, str)) in ParseProducerInfo()
695 if (regex_match.GetMatchAtIndex(producer_cstr, 3, str)) in ParseProducerInfo()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DSocket.cpp263 if (regex_match.GetMatchAtIndex(host_and_port.data(), 1, host_str) && in DecodeHostAndPort()
264 regex_match.GetMatchAtIndex(host_and_port.data(), 2, port_str)) { in DecodeHostAndPort()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DDynamicRegisterInfo.cpp146 if (regex_match.GetMatchAtIndex(slice_str, 1, reg_name_str) && in SetRegisterInfo()
147 regex_match.GetMatchAtIndex(slice_str, 2, msbit_str) && in SetRegisterInfo()
148 regex_match.GetMatchAtIndex(slice_str, 3, lsbit_str)) { in SetRegisterInfo()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DObjectFile.cpp587 if (regex_match.GetMatchAtIndex(path_with_object, 1, path) && in SplitArchivePathWithObject()
588 regex_match.GetMatchAtIndex(path_with_object, 2, obj)) { in SplitArchivePathWithObject()
H A DVariable.cpp398 if (!regex_match.GetMatchAtIndex(variable_expr_path, 1, variable_name)) { in GetValuesForVariableExpressionPath()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DThreadPlanStepInRange.cpp378 regex_match.GetMatchAtIndex(frame_function_name, 0, match); in FrameMatchesAvoidCriteria()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DDisassembler.cpp800 regex_match.GetMatchAtIndex(line.c_str(), 1, value); in ReadArray()
866 regex_match.GetMatchAtIndex(line.c_str(), 1, key); in ReadDictionary()
867 regex_match.GetMatchAtIndex(line.c_str(), 2, value); in ReadDictionary()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/
H A DDisassemblerLLVMC.cpp388 matches.GetMatchAtIndex(out_string.c_str(), 1, m_opcode_name); in CalculateMnemonicOperandsAndComment()
389 matches.GetMatchAtIndex(out_string.c_str(), 2, m_mnemonics); in CalculateMnemonicOperandsAndComment()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp472 if (regex_match.GetMatchAtIndex(coord_s.str().c_str(), idx + 1, group)) in ParseCoordinate()