Searched defs:Typename (Results 1 - 5 of 5) sorted by relevance

/external/clang/test/CodeGenCXX/
H A Dmangle-ms-templates.cpp9 class Typename { }; class
34 Class<Typename> c1;
38 Class<Nested<Typename> > c2;
/external/clang/test/SemaCXX/
H A Dcxx98-compat.cpp184 struct Typename { struct
187 typename ::Typename TypenameOutsideTemplate(); // expected-warning {{use of 'typename' outside of a template is incompatible with C++98}}
188 Typename::template Inner<int> TemplateOutsideTemplate(); // expected-warning {{use of 'template' keyword outside of a template is incompatible with C++98}}
/external/clang/lib/AST/
H A DDeclTemplate.cpp459 bool Typename, bool ParameterPack) {
461 new (C) TemplateTypeParmDecl(DC, KeyLoc, NameLoc, Id, Typename);
456 Create(const ASTContext &C, DeclContext *DC, SourceLocation KeyLoc, SourceLocation NameLoc, unsigned D, unsigned P, IdentifierInfo *Id, bool Typename, bool ParameterPack) argument
/external/clang/include/clang/AST/
H A DDeclTemplate.h900 bool Typename : 1;
911 bool Typename)
912 : TypeDecl(TemplateTypeParm, DC, IdLoc, Id, KeyLoc), Typename(Typename),
923 IdentifierInfo *Id, bool Typename,
932 bool wasDeclaredWithTypename() const { return Typename; }
967 void setDeclaredWithTypename(bool withTypename) { Typename = withTypename; }
909 TemplateTypeParmDecl(DeclContext *DC, SourceLocation KeyLoc, SourceLocation IdLoc, IdentifierInfo *Id, bool Typename) argument
/external/clang/lib/Sema/
H A DSemaTemplate.cpp536 /// (e.g., "typename T") has been parsed. Typename specifies whether
544 Decl *Sema::ActOnTypeParameter(Scope *S, bool Typename, bool Ellipsis, argument
573 Typename, Ellipsis);

Completed in 162 milliseconds