Searched refs:max_matches (Results 1 - 25 of 28) sorted by relevance

12

/external/lldb/include/lldb/Symbol/
H A DTypeVendor.h40 uint32_t max_matches,
H A DSymbolFile.h136 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;
H A DSymbolVendor.h98 size_t max_matches,
104 size_t max_matches,
126 size_t max_matches,
/external/lldb/include/lldb/Core/
H A DRegularExpression.h41 Match (uint32_t max_matches) : argument
44 if (max_matches > 0)
45 m_matches.resize(max_matches + 1);
H A DModule.h364 /// @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,
1076 size_t max_matches,
H A DModuleList.h292 /// @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/
H A DCommandObjectRegexCommand.h36 uint32_t max_matches,
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeVendor.h38 uint32_t max_matches,
H A DAppleObjCTypeVendor.cpp588 uint32_t max_matches,
601 max_matches);
586 FindTypes(const ConstString &name, bool append, uint32_t max_matches, std::vector <ClangASTType> &types) argument
/external/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.h91 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);
H A DSymbolFileSymtab.cpp330 SymbolFileSymtab::FindGlobalVariables(const ConstString &name, const ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, VariableList& variables) argument
336 SymbolFileSymtab::FindGlobalVariables(const RegularExpression& regex, bool append, uint32_t max_matches, VariableList& variables) argument
388 uint32_t max_matches,
384 FindTypes(const lldb_private::SymbolContext& sc, const lldb_private::ConstString &name, const ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, lldb_private::TypeList& types) argument
/external/lldb/source/Interpreter/
H A DCommandObjectRegexCommand.cpp33 uint32_t max_matches,
37 m_max_matches (max_matches),
27 CommandObjectRegexCommand( CommandInterpreter &interpreter, const char *name, const char *help, const char *syntax, uint32_t max_matches, uint32_t completion_type_mask ) argument
/external/lldb/source/Symbol/
H A DSymbolVendor.cpp281 SymbolVendor::FindGlobalVariables (const ConstString &name, const ClangNamespaceDecl *namespace_decl, bool append, size_t max_matches, VariableList& variables) argument
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) argument
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) argument
341 return m_sym_file_ap->FindTypes(sc, name, namespace_decl, append, max_matches, types);
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp870 uint32_t max_matches,
885 if (oso_dwarf->FindGlobalVariables(name, namespace_decl, true, max_matches, variables))
886 if (variables.GetSize() > max_matches)
895 SymbolFileDWARFDebugMap::FindGlobalVariables (const ConstString &name, const ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, VariableList& variables) argument
913 max_matches,
920 if (max_matches == UINT32_MAX)
924 if (max_matches >= total_matches)
929 max_matches -= oso_matches;
938 SymbolFileDWARFDebugMap::FindGlobalVariables (const RegularExpression& regex, bool append, uint32_t max_matches, VariableList& variables) argument
954 max_matches,
865 PrivateFindGlobalVariables( const ConstString &name, const ClangNamespaceDecl *namespace_decl, const std::vector<uint32_t> &indexes, uint32_t max_matches, VariableList& variables ) argument
1229 FindTypes( const SymbolContext& sc, const ConstString &name, const ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, TypeList& types ) argument
[all...]
H A DSymbolFileDWARFDebugMap.h83 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,
H A DSymbolFileDWARF.h118 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);
H A DSymbolFileDWARF.cpp3084 SymbolFileDWARF::FindGlobalVariables (const ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, VariableList& variables) argument
3091 "SymbolFileDWARF::FindGlobalVariables (name=\"%s\", namespace_decl=%p, append=%u, max_matches=%u, variables)",
3095 max_matches);
3174 if (variables.GetSize() - original_size >= max_matches)
3196 "SymbolFileDWARF::FindGlobalVariables (name=\"%s\", namespace_decl=%p, append=%u, max_matches=%u, variables) => %u",
3200 max_matches,
3207 SymbolFileDWARF::FindGlobalVariables(const RegularExpression& regex, bool append, uint32_t max_matches, VariableList& variables) argument
3214 "SymbolFileDWARF::FindGlobalVariables (regex=\"%s\", append=%u, max_matches=%u, variables)",
3217 max_matches);
3273 if (variables.GetSize() - original_size >= max_matches)
3893 FindTypes(const SymbolContext& sc, const ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, TypeList& types) argument
4110 FindTypes(std::vector<dw_offset_t> die_offsets, uint32_t max_matches, TypeList& types) argument
[all...]
/external/lldb/examples/darwin/heap_find/
H A Dheap.py232 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))
665 user_init_code = user_init_code_format % (options.max_matches, ptr_expr)
759 user_init_code = user_init_code_format % (options.max_matches, cstr)
947 if num_matches < options.max_matches:
948 options.max_matches = options.max_matches - num_matches
950 options.max_matches = 0
951 if options.max_matches
[all...]
/external/lldb/source/Core/
H A DModuleList.cpp481 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 argument
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)
479 FindGlobalVariables(const ConstString &name, bool append, size_t max_matches, VariableList& variable_list) const argument
496 FindGlobalVariables(const RegularExpression& regex, bool append, size_t max_matches, VariableList& variable_list) const argument
[all...]
H A DModule.cpp543 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, type
540 FindGlobalVariables(const ConstString &name, const ClangNamespaceDecl *namespace_decl, bool append, size_t max_matches, VariableList& variables) argument
553 FindGlobalVariables(const RegularExpression& regex, bool append, size_t max_matches, VariableList& variables) argument
756 FindTypes_Impl(const SymbolContext& sc, const ConstString &name, const ClangNamespaceDecl *namespace_decl, bool append, size_t max_matches, TypeList& types) argument
774 FindTypesInNamespace(const SymbolContext& sc, const ConstString &type_name, const ClangNamespaceDecl *namespace_decl, size_t max_matches, TypeList& type_list) argument
798 FindTypes(const SymbolContext& sc, const ConstString &name, bool exact_match, size_t max_matches, TypeList& types) argument
[all...]
/external/lldb/include/lldb/API/
H A DSBModule.h169 /// @param[in] max_matches
170 /// Allow the number of matches to be limited to \a max_matches.
178 uint32_t max_matches);
H A DSBTarget.h606 /// @param[in] max_matches
607 /// Allow the number of matches to be limited to \a max_matches.
614 uint32_t max_matches);
/external/lldb/source/API/
H A DSBModule.cpp457 SBModule::FindGlobalVariables (SBTarget &target, const char *name, uint32_t max_matches) argument
467 max_matches,
/external/lldb/source/Target/
H A DObjCLanguageRuntime.cpp118 const uint32_t max_matches = UINT32_MAX; local
124 max_matches,
/external/lldb/source/Expression/
H A DClangASTSource.cpp736 uint32_t max_matches = 1; local
741 max_matches,
1164 uint32_t max_matches = 1; local
1169 max_matches,
1335 uint32_t max_matches = 1; local
1340 max_matches,

Completed in 509 milliseconds

12