Lines Matching refs:FromNNS
6226 NestedNameSpecifier *ASTImporter::Import(NestedNameSpecifier *FromNNS) { in Import() argument
6227 if (!FromNNS) in Import()
6230 NestedNameSpecifier *prefix = Import(FromNNS->getPrefix()); in Import()
6232 switch (FromNNS->getKind()) { in Import()
6234 if (IdentifierInfo *II = Import(FromNNS->getAsIdentifier())) { in Import()
6241 cast<NamespaceDecl>(Import(FromNNS->getAsNamespace()))) { in Import()
6248 cast<NamespaceAliasDecl>(Import(FromNNS->getAsNamespaceAlias()))) { in Import()
6258 cast<CXXRecordDecl>(Import(FromNNS->getAsRecordDecl()))) { in Import()
6265 QualType T = Import(QualType(FromNNS->getAsType(), 0u)); in Import()
6267 bool bTemplate = FromNNS->getKind() == in Import()
6279 NestedNameSpecifierLoc ASTImporter::Import(NestedNameSpecifierLoc FromNNS) { in Import() argument