Lines Matching defs:FromNNS
9748 ASTImporter::Import(NestedNameSpecifier *FromNNS) {
9749 if (!FromNNS)
9753 if (Error Err = importInto(Prefix, FromNNS->getPrefix()))
9756 switch (FromNNS->getKind()) {
9758 assert(FromNNS->getAsIdentifier() && "NNS should contain identifier.");
9760 Import(FromNNS->getAsIdentifier()));
9763 if (ExpectedDecl NSOrErr = Import(FromNNS->getAsNamespace())) {
9770 if (ExpectedDecl NSADOrErr = Import(FromNNS->getAsNamespaceAlias()))
9780 if (ExpectedDecl RDOrErr = Import(FromNNS->getAsRecordDecl()))
9788 if (ExpectedTypePtr TyOrErr = Import(FromNNS->getAsType())) {
9790 FromNNS->getKind() == NestedNameSpecifier::TypeSpecWithTemplate;
9802 ASTImporter::Import(NestedNameSpecifierLoc FromNNS) {
9805 NestedNameSpecifierLoc NNS = FromNNS;