HomeSort by relevance Sort by last modified time
    Searched refs:num_matches (Results 1 - 25 of 31) sorted by null

1 2

  /external/compiler-rt/lib/lsan/
lsan_common_linux.cc 40 uptr num_matches = GetListOfModules( local
42 if (num_matches == 1) {
46 if (num_matches == 0)
49 else if (num_matches > 1)
  /external/lldb/source/Commands/
CommandObjectSource.cpp 456 size_t num_matches = 0; local
473 num_matches += matching_modules.FindFunctions (name, eFunctionNameTypeAuto, include_symbols, include_inlines, append, sc_list);
479 num_matches = target->GetImages().FindFunctions (name, eFunctionNameTypeAuto, include_symbols, include_inlines, append, sc_list);
481 return num_matches;
486 size_t num_matches = 0; local
499 num_matches += matching_modules.FindFunctionSymbols (name, eFunctionNameTypeAuto, sc_list);
505 num_matches = target->GetImages().FindFunctionSymbols (name, eFunctionNameTypeAuto, sc_list);
507 return num_matches;
530 size_t num_matches = FindMatchingFunctions (target, name, sc_list); local
531 if (!num_matches)
672 uint32_t num_matches = sc_list.GetSize(); local
769 size_t num_matches = 0; local
    [all...]
CommandObjectTarget.cpp 1361 uint32_t num_matches = 0; local
1590 uint32_t num_matches = 0; local
1639 const uint32_t num_matches = sc_list.GetSize(); local
1673 size_t num_matches = 0; local
1719 size_t num_matches = 0; local
1775 size_t num_matches = 1; local
1825 const uint32_t num_matches = module->ResolveSymbolContextsForFileSpec(file_spec, line, check_inlines, local
1882 const size_t num_matches = target->GetImages().FindModules (module_spec, module_list); local
2166 const size_t num_matches = FindModulesByName (target, arg_cstr, module_list, true); local
2291 const size_t num_matches = FindModulesByName (target, arg_cstr, module_list, true); local
2399 const size_t num_matches = FindModulesByName (target, arg_cstr, module_list, true); local
2809 const size_t num_matches = target->GetImages().FindModules (module_spec, matching_modules); local
3166 const size_t num_matches = FindModulesByName (target, arg_cstr, module_list, use_global_module_list); local
3595 size_t num_matches = sc_list.GetSize(); local
4080 const size_t num_matches = FindModulesByName (target, arg_cstr, module_list, false); local
4285 size_t num_matches = 0; local
    [all...]
CommandCompletions.cpp 429 const size_t num_matches = g_property_names.AutoComplete (partial_setting_name, matches, exact_matches_idx); local
431 return num_matches;
444 const uint32_t num_matches = PluginManager::AutoCompletePlatformName(partial_name, matches); local
445 word_complete = num_matches == 1;
446 return num_matches;
458 const uint32_t num_matches = ArchSpec::AutoComplete (partial_name, matches); local
459 word_complete = num_matches == 1;
460 return num_matches;
CommandObjectHelp.cpp 126 size_t num_matches = matches.GetSize(); local
127 for (size_t match_idx = 0; match_idx < num_matches; match_idx++)
CommandObjectFrame.cpp 424 size_t num_matches = 0; local
427 num_matches);
457 else if (num_matches == 0)
CommandObjectMultiword.cpp 67 int num_matches = CommandObject::AddNamesMatchingPartialString (m_subcommand_dict, sub_cmd, *matches); local
69 if (num_matches == 1)
  /external/lldb/include/lldb/Core/
RegularExpression.h 51 const size_t num_matches = m_matches.size(); local
53 for (size_t i=0; i<num_matches; ++i)
  /external/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
ItaniumABILanguageRuntime.cpp 123 uint32_t num_matches = 0; local
128 num_matches = sc.module_sp->FindTypes (sc,
138 if (num_matches == 0)
140 num_matches = target->GetImages().FindTypes (sc,
148 if (num_matches == 0)
154 if (num_matches == 1)
166 else if (num_matches > 1)
171 for (i = 0; i < num_matches; i++)
186 for (i = 0; i < num_matches; i++)
205 if (i == num_matches)
    [all...]
  /external/lldb/source/Breakpoint/
BreakpointResolverFileRegex.cpp 64 uint32_t num_matches = line_matches.size(); local
65 for (uint32_t i = 0; i < num_matches; i++)
  /external/chromium_org/components/history/core/browser/
history_types.cc 49 size_t* num_matches) const {
52 if (num_matches)
53 *num_matches = 0;
60 if (num_matches)
61 *num_matches = found->second->size();
history_types.h 187 // for entries with the given URL. The array will be |*num_matches| long.
188 // |num_matches| can be NULL if the caller is not interested in the number of
192 // When there is no match, it will return NULL and |*num_matches| will be 0.
193 const size_t* MatchesForURL(const GURL& url, size_t* num_matches) const;
  /external/lldb/examples/python/
memory.py 158 num_matches = 0
166 num_matches = num_matches + 1
170 if num_matches == 0:
  /external/chromium_org/components/omnibox/
autocomplete_result.cc 237 size_t num_matches; local
238 for (num_matches = 0u; (num_matches < max_num_matches) &&
239 (comparing_object.GetDemotedRelevance(*match_at(num_matches)) > 0);
240 ++num_matches) {}
241 matches_.resize(num_matches);
  /external/lldb/source/API/
SBModule.cpp 380 const size_t num_matches = symtab->FindAllSymbolsWithNameAndType(ConstString(name), symbol_type, matching_symbol_indexes); local
381 if (num_matches)
386 for (size_t i=0; i<num_matches; ++i)
535 const uint32_t num_matches = module_sp->FindTypes (sc, local
541 if (num_matches > 0)
543 for (size_t idx = 0; idx < num_matches; idx++)
  /external/lldb/source/Core/
SourceManager.cpp 291 size_t num_matches = executable_ptr->FindFunctions (main_name, local
298 for (size_t idx = 0; idx < num_matches; idx++)
354 size_t num_matches = target->GetImages().ResolveSymbolContextForFilePath (file_spec.GetFilename().AsCString(), local
360 if (num_matches != 0)
362 if (num_matches > 1)
367 for (unsigned i = 0; i < num_matches; i++)
Module.cpp 700 const size_t num_matches = symbol_indexes.size(); local
701 if (num_matches)
709 for (size_t i=0; i<num_matches; ++i)
733 for (size_t i=start_size; i<num_matches; ++i)
790 const size_t num_matches = FindTypes (sc, name, exact_match, 1, type_list); local
791 if (num_matches)
804 size_t num_matches = 0; local
826 num_matches = types.GetSize();
836 num_matches = FindTypes_Impl(sc, ConstString(type_name_cstr), NULL, append, max_matches, types);
838 num_matches = types.GetSize()
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
bookmark_provider.cc 125 size_t num_matches = local
127 std::partial_sort(matches_.begin(), matches_.begin() + num_matches,
129 matches_.resize(num_matches);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/tests/
rc_test_helpers.c 39 int num_matches)
53 err_code = regexec(&regex, search_str, num_matches, matches, 0);
55 for (i = 0; i < num_matches; i++) {
  /external/lldb/source/Target/
ThreadPlanStepInRange.cpp 292 size_t num_matches = 0; local
295 num_matches = 1;
297 RegularExpression::Match regex_match(num_matches);
  /external/mesa3d/src/gallium/drivers/r300/compiler/tests/
rc_test_helpers.c 39 int num_matches)
53 err_code = regexec(&regex, search_str, num_matches, matches, 0);
55 for (i = 0; i < num_matches; i++) {
  /external/lldb/source/Plugins/SymbolFile/DWARF/
SymbolFileDWARF.cpp 2487 const size_t num_matches = method_die_offsets.size(); local
3192 const uint32_t num_matches = variables.GetSize() - original_size; local
3258 const size_t num_matches = die_offsets.size(); local
3399 const size_t num_matches = die_offsets.size(); local
3582 uint32_t num_matches = 0; local
3832 const uint32_t num_matches = sc_list.GetSize() - original_size; local
3990 const uint32_t num_matches = types.GetSize() - initial_types_size; local
4063 const size_t num_matches = die_offsets.size(); local
4119 uint32_t num_matches = 0; local
4802 const size_t num_matches = die_offsets.size(); local
5046 const size_t num_matches = die_offsets.size(); local
5218 const size_t num_matches = die_offsets.size(); local
7184 const size_t num_matches = die_offsets.size(); local
7823 const size_t num_matches = die_offsets.size(); local
    [all...]
  /external/lldb/examples/darwin/heap_find/
heap.py 632 unsigned num_matches;
643 if (info->num_matches < MAX_MATCHES) {
644 info->matches[info->num_matches].addr = (void*)ptr_addr;
645 info->matches[info->num_matches].size = ptr_size;
646 info->matches[info->num_matches].offset = idx*sizeof(T);
647 info->matches[info->num_matches].type = type;
648 ++info->num_matches;
660 user_return_code = '''if (baton.num_matches < MAX_MATCHES)
661 baton.matches[baton.num_matches].addr = 0; // Terminate the matches array
    [all...]
  /external/lldb/source/Interpreter/
CommandInterpreter.cpp 1682 const size_t num_matches = matches.GetSize(); local
1832 int num_matches; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
dtlstransportchannel_unittest.cc 300 int num_matches = 0; local
303 ++num_matches;
306 return (num_matches < ((static_cast<int>(size) - 5) / 10));

Completed in 6148 milliseconds

1 2