Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/lldb/source/Expression/
DIRExecutionUnit.cpp803 for (auto candidate_sc : sc_list.SymbolContexts()) { in FindInSymbols() local
805 if (!candidate_sc.symbol) in FindInSymbols()
807 else if (candidate_sc.symbol->GetType() != lldb::eSymbolTypeUndefined in FindInSymbols()
808 || !candidate_sc.symbol->IsWeak()) in FindInSymbols()
812 (candidate_sc.function) || in FindInSymbols()
813 (candidate_sc.symbol && candidate_sc.symbol->IsExternal()); in FindInSymbols()
814 if (candidate_sc.symbol) { in FindInSymbols()
815 load_address = candidate_sc.symbol->ResolveCallableAddress(*target); in FindInSymbols()
820 candidate_sc.symbol->GetAddress().GetLoadAddress(target); in FindInSymbols()
822 load_address = candidate_sc.symbol->GetAddress().GetFileAddress(); in FindInSymbols()
[all …]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
DClangASTSource.cpp1020 SymbolContext candidate_sc; in FindObjCMethodDecls() local
1022 if (!candidate_sc_list.GetContextAtIndex(ci, candidate_sc)) in FindObjCMethodDecls()
1025 if (!candidate_sc.function) in FindObjCMethodDecls()
1028 const char *candidate_name = candidate_sc.function->GetName().AsCString(); in FindObjCMethodDecls()
1050 sc_list.Append(candidate_sc); in FindObjCMethodDecls()