Searched refs:total_matches (Results 1 – 5 of 5) sorted by relevance
/external/lldb/source/Symbol/ |
D | VariableList.cpp | 119 …ndVariablesIfUnique (const RegularExpression& regex, VariableList &var_list, size_t& total_matches) in AppendVariablesIfUnique() argument 128 total_matches++; in AppendVariablesIfUnique()
|
/external/lldb/source/Core/ |
D | ModuleList.cpp | 613 size_t total_matches = 0; in FindTypes() local 623 … total_matches += (*pos)->FindTypes (sc, name, name_is_fully_qualified, max_matches, types); in FindTypes() 625 if (total_matches >= max_matches) in FindTypes() 631 if (total_matches < max_matches) in FindTypes() 640 … total_matches += (*pos)->FindTypes (world_sc, name, name_is_fully_qualified, max_matches, types); in FindTypes() 642 if (total_matches >= max_matches) in FindTypes() 647 return total_matches; in FindTypes()
|
/external/lldb/include/lldb/Symbol/ |
D | VariableList.h | 64 size_t& total_matches);
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
D | SymbolFileDWARFDebugMap.cpp | 906 uint32_t total_matches = 0; in FindGlobalVariables() local 917 total_matches += oso_matches; in FindGlobalVariables() 924 if (max_matches >= total_matches) in FindGlobalVariables() 948 uint32_t total_matches = 0; in FindGlobalVariables() local 958 total_matches += oso_matches; in FindGlobalVariables() 965 if (max_matches >= total_matches) in FindGlobalVariables()
|
/external/lldb/examples/darwin/heap_find/ |
D | heap.py | 832 total_matches = 0 837 total_matches += display_match_results (result, options, arg_str_description, expr) 838 return total_matches
|