Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTImporter.h407 llvm::Expected<NestedNameSpecifier *> Import(NestedNameSpecifier *FromNNS);
415 Import(NestedNameSpecifierLoc FromNNS);
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTImporter.cpp9670 ASTImporter::Import(NestedNameSpecifier *FromNNS) { in Import() argument
9671 if (!FromNNS) in Import()
9675 if (Error Err = importInto(Prefix, FromNNS->getPrefix())) in Import()
9678 switch (FromNNS->getKind()) { in Import()
9680 assert(FromNNS->getAsIdentifier() && "NNS should contain identifier."); in Import()
9682 Import(FromNNS->getAsIdentifier())); in Import()
9685 if (ExpectedDecl NSOrErr = Import(FromNNS->getAsNamespace())) { in Import()
9692 if (ExpectedDecl NSADOrErr = Import(FromNNS->getAsNamespaceAlias())) in Import()
9702 if (ExpectedDecl RDOrErr = Import(FromNNS->getAsRecordDecl())) in Import()
9710 if (ExpectedTypePtr TyOrErr = Import(FromNNS->getAsType())) { in Import()
[all …]