Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DCodeCompletion.cpp306 auto DeclOrErr = Importer->Import(Decl); in completeVisibleDeclsMap() local
307 if (!DeclOrErr) { in completeVisibleDeclsMap()
314 llvm::consumeError(DeclOrErr.takeError()); in completeVisibleDeclsMap()
318 if (!llvm::isa<NamedDecl>(*DeclOrErr)) in completeVisibleDeclsMap()
321 NamedDecl *importedNamedDecl = llvm::cast<NamedDecl>(*DeclOrErr); in completeVisibleDeclsMap()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExternalASTMerger.cpp175 auto DeclOrErr = OtherImporter.Import(Persistent); in ImportImpl() local
178 if (!DeclOrErr) in ImportImpl()
179 return DeclOrErr.takeError(); in ImportImpl()
180 Decl *D = *DeclOrErr; in ImportImpl()