Searched refs:GetMatchAtIndex (Results 1 - 11 of 11) sorted by relevance

/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DRegularExpression.h101 GetMatchAtIndex (const char* s, uint32_t idx, std::string& match_str) const;
104 GetMatchAtIndex (const char* s, uint32_t idx, llvm::StringRef& match_str) const;
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Core/
H A DRegularExpression.cpp163 RegularExpression::Match::GetMatchAtIndex (const char* s, uint32_t idx, std::string& match_str) const function in class:RegularExpression::Match
184 RegularExpression::Match::GetMatchAtIndex (const char* s, uint32_t idx, llvm::StringRef& match_str) const function in class:RegularExpression::Match
H A DDisassembler.cpp700 regex_match.GetMatchAtIndex (line.c_str(), 1, value);
773 regex_match.GetMatchAtIndex (line.c_str(), 1, key);
774 regex_match.GetMatchAtIndex (line.c_str(), 2, value);
H A DConnectionFileDescriptor.cpp73 if (regex_match.GetMatchAtIndex (host_and_port, 1, host_str) &&
74 regex_match.GetMatchAtIndex (host_and_port, 2, port_str))
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandObjectRegexCommand.cpp73 if (regex_match.GetMatchAtIndex (command, match_idx, match_str))
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DDynamicRegisterInfo.cpp154 if (regex_match.GetMatchAtIndex(slice_cstr, 1, reg_name_str) &&
155 regex_match.GetMatchAtIndex(slice_cstr, 2, msbit_str) &&
156 regex_match.GetMatchAtIndex(slice_cstr, 3, lsbit_str))
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFCompileUnit.cpp954 if (regex_match.GetMatchAtIndex (producer_cstr, 1, str))
956 if (regex_match.GetMatchAtIndex (producer_cstr, 2, str))
958 if (regex_match.GetMatchAtIndex (producer_cstr, 3, str))
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/
H A DDisassemblerLLVMC.cpp381 matches.GetMatchAtIndex(out_string, 1, m_opcode_name);
382 matches.GetMatchAtIndex(out_string, 2, m_mnemonics);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Symbol/
H A DObjectFile.cpp582 if (regex_match.GetMatchAtIndex (path_with_object, 1, path) &&
583 regex_match.GetMatchAtIndex (path_with_object, 2, obj))
H A DVariable.cpp404 if (regex_match.GetMatchAtIndex(variable_expr_path, 1, variable_name))
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Target/
H A DThreadPlanStepInRange.cpp332 regex_match.GetMatchAtIndex(frame_function_name,0, match);

Completed in 177 milliseconds