Lines Matching refs:FromNNS
4790 NestedNameSpecifier *ASTImporter::Import(NestedNameSpecifier *FromNNS) { in Import() argument
4791 if (!FromNNS) in Import()
4794 NestedNameSpecifier *prefix = Import(FromNNS->getPrefix()); in Import()
4796 switch (FromNNS->getKind()) { in Import()
4798 if (IdentifierInfo *II = Import(FromNNS->getAsIdentifier())) { in Import()
4805 cast<NamespaceDecl>(Import(FromNNS->getAsNamespace()))) { in Import()
4812 cast<NamespaceAliasDecl>(Import(FromNNS->getAsNamespaceAlias()))) { in Import()
4822 cast<CXXRecordDecl>(Import(FromNNS->getAsRecordDecl()))) { in Import()
4829 QualType T = Import(QualType(FromNNS->getAsType(), 0u)); in Import()
4831 bool bTemplate = FromNNS->getKind() == in Import()
4843 NestedNameSpecifierLoc ASTImporter::Import(NestedNameSpecifierLoc FromNNS) { in Import() argument