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

12

/external/lldb/include/lldb/Symbol/
H A DSymbol.h33 lldb::SymbolType type,
47 lldb::SymbolType type,
65 Compare (const ConstString& name, lldb::SymbolType type) const;
128 lldb::SymbolType
131 return (lldb::SymbolType)m_type;
135 SetType (lldb::SymbolType type)
137 m_type = (lldb::SymbolType)type;
H A DSymtab.h59 Symbol * FindSymbolWithType (lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, uint32_t &start_idx);
60 uint32_t AppendSymbolIndexesWithType (lldb::SymbolType symbol_type, std::vector<uint32_t>& indexes, uint32_t start_idx = 0, uint32_t end_index = UINT32_MAX) const;
61 uint32_t AppendSymbolIndexesWithTypeAndFlagsValue (lldb::SymbolType symbol_type, uint32_t flags_value, std::vector<uint32_t>& indexes, uint32_t start_idx = 0, uint32_t end_index = UINT32_MAX) const;
62 uint32_t AppendSymbolIndexesWithType (lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& matches, uint32_t start_idx = 0, uint32_t end_index = UINT32_MAX) const;
65 uint32_t AppendSymbolIndexesWithNameAndType (const ConstString& symbol_name, lldb::SymbolType symbol_type, std::vector<uint32_t>& matches);
66 uint32_t AppendSymbolIndexesWithNameAndType (const ConstString& symbol_name, lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& matches);
67 uint32_t AppendSymbolIndexesMatchingRegExAndType (const RegularExpression &regex, lldb::SymbolType symbol_type, std::vector<uint32_t>& indexes);
68 uint32_t AppendSymbolIndexesMatchingRegExAndType (const RegularExpression &regex, lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& indexes);
69 size_t FindAllSymbolsWithNameAndType (const ConstString &name, lldb::SymbolType symbol_type, std::vector<uint32_t>& symbol_indexes);
70 size_t FindAllSymbolsWithNameAndType (const ConstString &name, lldb::SymbolType symbol_typ
[all...]
/external/lldb/include/lldb/API/
H A DSBModule.h127 lldb::SymbolType type = eSymbolTypeAny);
131 lldb::SymbolType type = eSymbolTypeAny);
H A DSBSymbol.h58 SymbolType
H A DSBTarget.h776 lldb::SymbolType type = eSymbolTypeAny);
/external/lldb/source/Symbol/
H A DSymtab.cpp309 const SymbolType symbol_type = symbol->GetType();
482 Symtab::AppendSymbolIndexesWithType (SymbolType symbol_type, std::vector<uint32_t>& indexes, uint32_t start_idx, uint32_t end_index) const
500 Symtab::AppendSymbolIndexesWithTypeAndFlagsValue (SymbolType symbol_type, uint32_t flags_value, std::vector<uint32_t>& indexes, uint32_t start_idx, uint32_t end_index) const
518 Symtab::AppendSymbolIndexesWithType (SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& indexes, uint32_t start_idx, uint32_t end_index) const
673 Symtab::AppendSymbolIndexesWithNameAndType (const ConstString& symbol_name, SymbolType symbol_type, std::vector<uint32_t>& indexes)
692 Symtab::AppendSymbolIndexesWithNameAndType (const ConstString& symbol_name, SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& indexes)
712 Symtab::AppendSymbolIndexesMatchingRegExAndType (const RegularExpression &regexp, SymbolType symbol_type, std::vector<uint32_t>& indexes)
736 Symtab::AppendSymbolIndexesMatchingRegExAndType (const RegularExpression &regexp, SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& indexes)
763 Symtab::FindSymbolWithType (SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, uint32_t& start_idx)
783 Symtab::FindAllSymbolsWithNameAndType (const ConstString &name, SymbolType symbol_typ
[all...]
H A DSymbol.cpp50 SymbolType type,
84 SymbolType type,
366 Symbol::Compare(const ConstString& name, SymbolType type) const
410 return "<unknown SymbolType>";
H A DObjectFile.cpp395 const SymbolType symbol_type = symbol->GetType();
/external/lldb/include/lldb/Expression/
H A DClangExpressionDeclMap.h301 lldb::SymbolType symbol_type);
305 lldb::SymbolType symbol_type);
/external/lldb/scripts/Python/interface/
H A DSBSymbol.i53 SymbolType
H A DSBModule.i184 lldb::SymbolType type = eSymbolTypeAny);
188 lldb::SymbolType type = eSymbolTypeAny);
H A DSBTarget.i740 FindSymbols (const char *name, lldb::SymbolType type = eSymbolTypeAny);
/external/lldb/include/lldb/Core/
H A DModule.h210 /// SymbolType enumeration value, then search only for
219 lldb::SymbolType symbol_type = lldb::eSymbolTypeAny);
223 lldb::SymbolType symbol_type,
228 lldb::SymbolType symbol_type,
H A DModuleList.h390 lldb::SymbolType symbol_type,
396 lldb::SymbolType symbol_type,
/external/llvm/tools/llvm-symbolizer/
H A DLLVMSymbolize.cpp63 SymbolRef::Type SymbolType; local
64 if (error(Symbol.getType(SymbolType)))
66 if (SymbolType != SymbolRef::ST_Function && SymbolType != SymbolRef::ST_Data)
88 SymbolMapTy &M = SymbolType == SymbolRef::ST_Function ? Functions : Objects;
/external/lldb/source/API/
H A DSBSymbol.cpp200 SymbolType
H A DSBModule.cpp355 lldb::SymbolType symbol_type)
370 SBModule::FindSymbols (const char *name, lldb::SymbolType symbol_type)
H A DSBTarget.cpp2552 SBTarget::FindSymbols (const char *name, lldb::SymbolType symbol_type)
/external/lldb/include/lldb/
H A Dlldb-enumerations.h453 typedef enum SymbolType enum in namespace:lldb
484 } SymbolType; typedef in namespace:lldb
/external/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp284 QualType SymbolType = LHS->getType(); local
286 uint64_t TypeWidth = Ctx.getTypeSize(SymbolType);
290 ConvertedRHS = &BasicVals.Convert(SymbolType, RHS);
295 if (RHS.isSigned() && !SymbolType->isSignedIntegerOrEnumerationType())
296 ConvertedRHS = &BasicVals.Convert(SymbolType, RHS);
/external/lldb/source/Core/
H A DModule.cpp712 SymbolType sym_type = sc.symbol->GetType();
736 SymbolType sym_type = sc.symbol->GetType();
1149 Module::FindFirstSymbolWithNameAndType (const ConstString &name, SymbolType symbol_type)
1204 Module::FindSymbolsWithNameAndType (const ConstString &name, SymbolType symbol_type, SymbolContextList &sc_list)
1230 Module::FindSymbolsMatchingRegExAndType (const RegularExpression &regex, SymbolType symbol_type, SymbolContextList &sc_list)
H A DModuleList.cpp514 SymbolType symbol_type,
531 lldb::SymbolType symbol_type,
/external/lldb/source/Expression/
H A DClangExpressionDeclMap.cpp594 ClangExpressionDeclMap::GetSymbolAddress (Target &target, Process *process, const ConstString &name, lldb::SymbolType symbol_type)
671 ClangExpressionDeclMap::GetSymbolAddress (const ConstString &name, lldb::SymbolType symbol_type)
/external/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.cpp851 const SymbolType symbol_type = symbol->GetType();
2008 SymbolType type = eSymbolTypeInvalid;
2736 SymbolType type = eSymbolTypeInvalid;
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV2.cpp295 SymbolType sym_type = lldb::eSymbolTypeData)

Completed in 1097 milliseconds

12