Home
last modified time | relevance | path

Searched refs:Lookups (Results 1 – 20 of 20) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DLogChannelDWARF.cpp21 DWARFLog::Lookups},
H A DLogChannelDWARF.h21 Lookups = Log::ChannelFlag<3>, enumerator
H A DDebugNamesDWARFIndex.cpp173 GetLog(DWARFLog::Lookups), in MaybeLogLookupError()
315 GetLog(DWARFLog::Lookups), parent.takeError(), in getParentChain()
H A DDWARFASTParserClang.cpp439 Log *log = GetLog(DWARFLog::TypeCompletion | DWARFLog::Lookups); in ParseTypeFromDWARF()
533 Log *log = GetLog(DWARFLog::TypeCompletion | DWARFLog::Lookups); in ExtractDataMemberLocation()
598 Log *log = GetLog(DWARFLog::TypeCompletion | DWARFLog::Lookups); in ParseTypeModifier()
852 } else if (Log *log = GetLog(DWARFLog::TypeCompletion | DWARFLog::Lookups)) { in MapDeclDIEToDefDIE()
864 Log *log = GetLog(DWARFLog::TypeCompletion | DWARFLog::Lookups); in ParseEnum()
987 Log *log = GetLog(DWARFLog::TypeCompletion | DWARFLog::Lookups); in ConvertDWARFCallingConventionToClang()
1045 Log *log = GetLog(DWARFLog::TypeCompletion | DWARFLog::Lookups); in ParseCXXMethod()
1175 Log *log = GetLog(DWARFLog::TypeCompletion | DWARFLog::Lookups); in ParseSubroutine()
1650 Log *log = GetLog(DWARFLog::TypeCompletion | DWARFLog::Lookups); in ParseStructureLikeDIE()
2796 Log *log = GetLog(DWARFLog::TypeCompletion | DWARFLog::Lookups); in CreateStaticMemberVariable()
H A DAppleDWARFIndex.cpp225 Log *log = GetLog(DWARFLog::TypeCompletion | DWARFLog::Lookups); in GetTypes()
H A DSymbolFileDWARF.cpp2357 Log *log = GetLog(DWARFLog::Lookups); in DeclContextMatchesThisSymbolFile()
2370 Log *log = GetLog(DWARFLog::Lookups); in FindGlobalVariables()
2458 Log *log = GetLog(DWARFLog::Lookups); in FindGlobalVariables()
2576 Log *log = GetLog(DWARFLog::Lookups); in FindFunctions()
2644 Log *log = GetLog(DWARFLog::Lookups); in FindFunctions()
2861 Log *log = GetLog(DWARFLog::Lookups); in FindNamespace()
3087 Log *log = GetLog(DWARFLog::TypeCompletion | DWARFLog::Lookups); in FindDefinitionDIE()
H A DManualDWARFIndex.cpp145 Log *log = GetLog(DWARFLog::Lookups); in IndexUnit()
/freebsd/crypto/openssl/doc/man7/
H A Dproperty.pod70 More details about that in the B<Lookups> section.
108 =head2 Lookups section in DESCRIPTION
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp17832 SmallVectorImpl<U> &Lookups, const llvm::function_ref<T(ValueDecl *)> Gen) { in filterLookupForUDReductionAndMapper() argument
17833 for (U &Set : Lookups) { in filterLookupForUDReductionAndMapper()
17861 SmallVectorImpl<UnresolvedSet<8>> &Lookups) { in argumentDependentLookup() argument
17910 Lookups.emplace_back(); in argumentDependentLookup()
17911 Lookups.back().addDecl(Underlying); in argumentDependentLookup()
17923 SmallVector<UnresolvedSet<8>, 4> Lookups; in buildDeclareReductionRef() local
17935 Lookups.emplace_back(); in buildDeclareReductionRef()
17936 Lookups.back().append(Lookup.begin(), Lookup.end()); in buildDeclareReductionRef()
17941 Lookups.push_back(UnresolvedSet<8>()); in buildDeclareReductionRef()
17945 Lookups.push_back(UnresolvedSet<8>()); in buildDeclareReductionRef()
[all …]
H A DSemaTemplateInstantiateDecl.cpp4839 SmallVector<DeclAccessPair, 32> Lookups; in SubstDefaultedFunction() local
4840 Lookups.reserve(DFI->getUnqualifiedLookups().size()); in SubstDefaultedFunction()
4848 Lookups.push_back(DeclAccessPair::make(D, DA.getAccess())); in SubstDefaultedFunction()
4855 SemaRef.Context, Lookups) in SubstDefaultedFunction()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp3089 ASTContext &Context, ArrayRef<DeclAccessPair> Lookups, in Create() argument
3095 Lookups.size(), DeletedMessage != nullptr); in Create()
3099 Info->NumLookups = Lookups.size(); in Create()
3102 std::uninitialized_copy(Lookups.begin(), Lookups.end(), in Create()
/freebsd/contrib/sendmail/src/
H A DTUNING118 * DNS Lookups
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp1105 SmallVector<DeclAccessPair, 8> Lookups; in VisitFunctionDecl() local
1109 Lookups.push_back(DeclAccessPair::make(ND, AS)); in VisitFunctionDecl()
1114 Reader.getContext(), Lookups, DeletedMessage)); in VisitFunctionDecl()
2066 assert(!Reader.Lookups.contains(MergeDD.Definition) && in MergeDefinitionData()
4332 Lookups[DC].Table.add( in loadDeclUpdateRecords()
H A DASTReader.cpp8049 auto It = Lookups.find(DC); in FindExternalVisibleDeclsByName()
8050 if (It == Lookups.end()) in FindExternalVisibleDeclsByName()
8074 auto It = Lookups.find(DC); in completeVisibleDeclsMap()
8075 assert(It != Lookups.end() && in completeVisibleDeclsMap()
8095 auto I = Lookups.find(Primary); in getLoadedLookupTables()
8096 return I == Lookups.end() ? nullptr : &I->second; in getLoadedLookupTables()
H A DASTWriter.cpp4336 auto *Lookups = Chain ? Chain->getLoadedLookupTables(DC) : nullptr; in GenerateNameLookupTable() local
4337 Generator.emit(LookupTable, Trait, Lookups ? &Lookups->Table : nullptr); in GenerateNameLookupTable()
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTReader.h606 serialization::reader::DeclContextLookupTable> Lookups; variable
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h1971 Create(ASTContext &Context, ArrayRef<DeclAccessPair> Lookups,
/freebsd/share/doc/IPv6/
H A DIMPLEMENTATION208 draft-ietf-ipngwg-icmp-name-lookups-09: IPv6 Name Lookups Through ICMP
/freebsd/contrib/ntp/
H A DChangeLog4954 * [Bug 690] Buffer overflow in Windows when doing DNS Lookups
/freebsd/contrib/sendmail/
H A DRELEASE_NOTES477 See also "DNS Lookups" in sendmail/TUNING.