Home
last modified time | relevance | path

Searched refs:candidate_sc (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/lldb/source/Expression/
H A DIRExecutionUnit.cpp715 for (auto candidate_sc : sc_list.SymbolContexts()) { in Resolve() local
717 if (!candidate_sc.symbol || in Resolve()
718 candidate_sc.symbol->GetType() != lldb::eSymbolTypeUndefined || in Resolve()
719 !candidate_sc.symbol->IsWeak()) in Resolve()
723 if (candidate_sc.symbol) { in Resolve()
724 load_address = candidate_sc.symbol->ResolveCallableAddress(*m_target); in Resolve()
726 Address addr = candidate_sc.symbol->GetAddress(); in Resolve()
734 if (load_address == LLDB_INVALID_ADDRESS && candidate_sc.function) { in Resolve()
736 candidate_sc.function->GetAddressRange().GetBaseAddress(); in Resolve()
745 (candidate_sc.function) || in Resolve()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTSource.cpp1029 SymbolContext candidate_sc; in FindObjCMethodDecls() local
1031 if (!candidate_sc_list.GetContextAtIndex(ci, candidate_sc)) in FindObjCMethodDecls()
1034 if (!candidate_sc.function) in FindObjCMethodDecls()
1037 const char *candidate_name = candidate_sc.function->GetName().AsCString(); in FindObjCMethodDecls()
1059 sc_list.Append(candidate_sc); in FindObjCMethodDecls()