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

1 2

  /external/lldb/include/lldb/Symbol/
TypeVendor.h 40 uint32_t max_matches,
SymbolFile.h 136 virtual uint32_t FindGlobalVariables (const ConstString &name, const ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, VariableList& variables) = 0;
137 virtual uint32_t FindGlobalVariables (const RegularExpression& regex, bool append, uint32_t max_matches, VariableList& variables) = 0;
140 virtual uint32_t FindTypes (const SymbolContext& sc, const ConstString &name, const ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, TypeList& types) = 0;
141 // virtual uint32_t FindTypes (const SymbolContext& sc, const RegularExpression& regex, bool append, uint32_t max_matches, TypeList& types) = 0;
SymbolVendor.h 98 size_t max_matches,
104 size_t max_matches,
126 size_t max_matches,
  /external/lldb/include/lldb/Core/
RegularExpression.h 41 Match (uint32_t max_matches) :
44 if (max_matches > 0)
45 m_matches.resize(max_matches + 1);
Module.h 364 /// @param[in] max_matches
366 /// max_matches. Specify UINT32_MAX to get all possible matches.
379 size_t max_matches,
393 /// @param[in] max_matches
395 /// max_matches. Specify UINT32_MAX to get all possible matches.
407 size_t max_matches,
455 size_t max_matches,
489 size_t max_matches,
    [all...]
ModuleList.h 292 /// @param[in] max_matches
294 /// max_matches. Specify UINT32_MAX to get all possible matches.
306 size_t max_matches,
320 /// @param[in] max_matches
322 /// max_matches. Specify UINT32_MAX to get all possible matches.
334 size_t max_matches,
415 /// @param[in] max_matches
417 /// max_matches. Specify UINT32_MAX to get all possible matches.
437 size_t max_matches,
  /external/lldb/include/lldb/Interpreter/
CommandObjectRegexCommand.h 36 uint32_t max_matches,
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCTypeVendor.h 38 uint32_t max_matches,
  /external/lldb/source/Plugins/SymbolFile/Symtab/
SymbolFileSymtab.h 91 FindGlobalVariables(const lldb_private::ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, lldb_private::VariableList& variables);
94 FindGlobalVariables(const lldb_private::RegularExpression& regex, bool append, uint32_t max_matches, lldb_private::VariableList& variables);
103 FindTypes (const lldb_private::SymbolContext& sc,const lldb_private::ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, lldb_private::TypeList& types);
SymbolFileSymtab.cpp 330 SymbolFileSymtab::FindGlobalVariables(const ConstString &name, const ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, VariableList& variables)
336 SymbolFileSymtab::FindGlobalVariables(const RegularExpression& regex, bool append, uint32_t max_matches, VariableList& variables)
388 uint32_t max_matches,
  /external/lldb/source/Interpreter/
CommandObjectRegexCommand.cpp 33 uint32_t max_matches,
37 m_max_matches (max_matches),
  /external/lldb/source/Symbol/
SymbolVendor.cpp 281 SymbolVendor::FindGlobalVariables (const ConstString &name, const ClangNamespaceDecl *namespace_decl, bool append, size_t max_matches, VariableList& variables)
288 return m_sym_file_ap->FindGlobalVariables(name, namespace_decl, append, max_matches, variables);
294 SymbolVendor::FindGlobalVariables (const RegularExpression& regex, bool append, size_t max_matches, VariableList& variables)
301 return m_sym_file_ap->FindGlobalVariables(regex, append, max_matches, variables);
334 SymbolVendor::FindTypes (const SymbolContext& sc, const ConstString &name, const ClangNamespaceDecl *namespace_decl, bool append, size_t max_matches, TypeList& types)
341 return m_sym_file_ap->FindTypes(sc, name, namespace_decl, append, max_matches, types);
  /external/lldb/source/Plugins/SymbolFile/DWARF/
SymbolFileDWARFDebugMap.cpp     [all...]
SymbolFileDWARFDebugMap.h 83 virtual uint32_t FindGlobalVariables (const lldb_private::ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, lldb_private::VariableList& variables);
84 virtual uint32_t FindGlobalVariables (const lldb_private::RegularExpression& regex, bool append, uint32_t max_matches, lldb_private::VariableList& variables);
87 virtual uint32_t FindTypes (const lldb_private::SymbolContext& sc, const lldb_private::ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, lldb_private::TypeList& types);
251 uint32_t max_matches,
SymbolFileDWARF.h 118 virtual uint32_t FindGlobalVariables(const lldb_private::ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, lldb_private::VariableList& variables);
119 virtual uint32_t FindGlobalVariables(const lldb_private::RegularExpression& regex, bool append, uint32_t max_matches, lldb_private::VariableList& variables);
122 virtual uint32_t FindTypes (const lldb_private::SymbolContext& sc, const lldb_private::ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, lldb_private::TypeList& types);
447 uint32_t FindTypes(std::vector<dw_offset_t> die_offsets, uint32_t max_matches, lldb_private::TypeList& types);
  /external/chromium_org/chrome/browser/autocomplete/
history_url_provider_unittest.cc 1007 int max_matches; local
1022 base::string16(), false, output, max_matches)); local
1032 base::string16(), false, output, max_matches)); local
    [all...]
  /external/lldb/examples/darwin/heap_find/
heap.py 232 parser.add_option('-M', '--max-matches', type='int', dest='max_matches', help='the maximum number of matches to print', default=32)
457 if i > options.max_matches:
458 result.AppendMessage('warning: the max number of matches (%u) was reached, use the --max-matches option to get more results' % (options.max_matches))
623 #define MAX_MATCHES %u
633 $malloc_match matches[MAX_MATCHES];
643 if (info->num_matches < MAX_MATCHES) {
660 user_return_code = '''if (baton.num_matches < MAX_MATCHES)
665 user_init_code = user_init_code_format % (options.max_matches, ptr_expr)
    [all...]
  /external/lldb/source/Core/
ModuleList.cpp 481 size_t max_matches,
489 (*pos)->FindGlobalVariables (name, NULL, append, max_matches, variable_list);
498 size_t max_matches,
506 (*pos)->FindGlobalVariables (regex, append, max_matches, variable_list);
609 ModuleList::FindTypes (const SymbolContext& sc, const ConstString &name, bool name_is_fully_qualified, size_t max_matches, TypeList& types) const
623 total_matches += (*pos)->FindTypes (sc, name, name_is_fully_qualified, max_matches, types);
625 if (total_matches >= max_matches)
631 if (total_matches < max_matches)
640 total_matches += (*pos)->FindTypes (world_sc, name, name_is_fully_qualified, max_matches, types);
642 if (total_matches >= max_matches)
    [all...]
Module.cpp 543 size_t max_matches,
548 return symbols->FindGlobalVariables(name, namespace_decl, append, max_matches, variables);
555 size_t max_matches,
560 return symbols->FindGlobalVariables(regex, append, max_matches, variables);
760 size_t max_matches,
768 return symbols->FindTypes(sc, name, namespace_decl, append, max_matches, types);
777 size_t max_matches,
781 return FindTypes_Impl(sc, type_name, namespace_decl, append, max_matches, type_list);
801 size_t max_matches,
823 if (FindTypes_Impl(sc, type_basename_const_str, NULL, append, max_matches, types)
    [all...]
  /external/chromium_org/chrome/browser/history/
in_memory_url_index.h 122 // to the cursor being at the end. In total, |max_matches| of items will be
126 size_t max_matches);
in_memory_url_index.cc 167 size_t max_matches) {
171 max_matches,
url_index_private_data.h 68 // |max_matches| of items will be returned in the |ScoredHistoryMatches|
72 size_t max_matches,
  /external/lldb/include/lldb/API/
SBModule.h 169 /// @param[in] max_matches
170 /// Allow the number of matches to be limited to \a max_matches.
178 uint32_t max_matches);
  /external/lldb/source/API/
SBModule.cpp 457 SBModule::FindGlobalVariables (SBTarget &target, const char *name, uint32_t max_matches)
467 max_matches,
  /external/lldb/source/Target/
ObjCLanguageRuntime.cpp 118 const uint32_t max_matches = UINT32_MAX; local
124 max_matches,

Completed in 1301 milliseconds

1 2