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.cpp717 for (auto candidate_sc : sc_list.SymbolContexts()) { in Resolve() local
719 if (!candidate_sc.symbol || in Resolve()
720 candidate_sc.symbol->GetType() != lldb::eSymbolTypeUndefined || in Resolve()
721 !candidate_sc.symbol->IsWeak()) in Resolve()
725 if (candidate_sc.symbol) { in Resolve()
726 load_address = candidate_sc.symbol->ResolveCallableAddress(*m_target); in Resolve()
728 Address addr = candidate_sc.symbol->GetAddress(); in Resolve()
736 if (load_address == LLDB_INVALID_ADDRESS && candidate_sc.function) { in Resolve()
738 candidate_sc.function->GetAddressRange().GetBaseAddress(); in Resolve()
747 (candidate_sc.function) || in Resolve()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTSource.cpp970 for (const SymbolContext &candidate_sc : candidate_sc_list) { in FindObjCMethodDecls() local
971 if (!candidate_sc.function) in FindObjCMethodDecls()
974 const char *candidate_name = candidate_sc.function->GetName().AsCString(); in FindObjCMethodDecls()
996 sc_list.Append(candidate_sc); in FindObjCMethodDecls()