Home
last modified time | relevance | path

Searched refs:common_prefix (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/llvm/utils/
H A Dupdate_mca_test_checks.py121 def _break_down_block(block_info, common_prefix): argument
160 result.append((common_prefix, line[0]))
265 def _get_block_infos(run_infos, test_path, args, common_prefix): # noqa argument
381 if common_prefix and len(block_infos[block_num]) > 1:
394 def _write_block(output, block, not_prefix_set, common_prefix, prefix_pad): argument
415 if num_lines_of_prefix > 1 or any(p == common_prefix
435 args, common_prefix, prefix_pad): argument
482 common_prefix,
504 common_prefix,
551 common_prefix, prefix_pad = _get_useful_prefix_info(run_infos)
[all …]
/llvm-project-15.0.7/lldb/source/API/
H A DSBCommandInterpreter.cpp265 std::string common_prefix = lldb_matches.LongestCommonPrefix(); in HandleCompletionWithDescriptions() local
267 common_prefix.erase(0, partial_name_len); in HandleCompletionWithDescriptions()
273 common_prefix = in HandleCompletionWithDescriptions()
274 Args::EscapeLLDBCommandArgument(common_prefix, quote_char); in HandleCompletionWithDescriptions()
276 common_prefix.push_back(quote_char); in HandleCompletionWithDescriptions()
277 common_prefix.push_back(' '); in HandleCompletionWithDescriptions()
279 lldb_matches.InsertStringAtIndex(0, common_prefix.c_str()); in HandleCompletionWithDescriptions()