Home
last modified time | relevance | path

Searched refs:match_idx (Results 1 – 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
HDCommandObjectRegexCommand.cpp38 for (uint32_t match_idx = 1; match_idx <= m_max_matches; ++match_idx) { in DoExecute() local
39 if (match_idx < matches.size()) { in DoExecute()
40 const std::string match_str = matches[match_idx].str(); in DoExecute()
42 ::snprintf(percent_var, sizeof(percent_var), "%%%u", match_idx); in DoExecute()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
HDCommandObjectHelp.cpp137 for (size_t match_idx = 0; match_idx < num_matches; match_idx++) { in DoExecute() local
138 s.Printf("\n\t%s", matches.GetStringAtIndex(match_idx)); in DoExecute()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
HDLineTable.cpp229 uint32_t match_idx = std::distance(begin_pos, pos); in FindLineEntryByAddress() local
230 success = ConvertEntryAtIndexToLineEntry(match_idx, line_entry); in FindLineEntryByAddress()
232 *index_ptr = match_idx; in FindLineEntryByAddress()