Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DIRExecutionUnit.cpp716 for (auto candidate_sc : sc_list.SymbolContexts()) { in Resolve() local
718 if (!candidate_sc.symbol || in Resolve()
719 candidate_sc.symbol->GetType() != lldb::eSymbolTypeUndefined || in Resolve()
720 !candidate_sc.symbol->IsWeak()) in Resolve()
724 if (candidate_sc.symbol) { in Resolve()
725 load_address = candidate_sc.symbol->ResolveCallableAddress(*m_target); in Resolve()
727 Address addr = candidate_sc.symbol->GetAddress(); in Resolve()
735 if (load_address == LLDB_INVALID_ADDRESS && candidate_sc.function) { in Resolve()
736 Address addr = candidate_sc.function->GetAddress(); in Resolve()
745 (candidate_sc.function) || in Resolve()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTSource.cpp971 for (const SymbolContext &candidate_sc : candidate_sc_list) { in FindObjCMethodDecls() local
972 if (!candidate_sc.function) in FindObjCMethodDecls()
975 const char *candidate_name = candidate_sc.function->GetName().AsCString(); in FindObjCMethodDecls()
997 sc_list.Append(candidate_sc); in FindObjCMethodDecls()