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

/external/clang/test/SemaCXX/
H A Dcxx98-compat.cpp144 struct Typename { struct
147 typename ::Typename TypenameOutsideTemplate(); // expected-warning {{use of 'typename' outside of a template is incompatible with C++98}}
148 Typename::template Inner<int> TemplateOutsideTemplate(); // expected-warning {{use of 'template' keyword outside of a template is incompatible with C++98}}
/external/clang/include/clang/AST/
H A DDeclTemplate.h944 bool Typename : 1;
955 bool Typename)
956 : TypeDecl(TemplateTypeParm, DC, IdLoc, Id, KeyLoc), Typename(Typename),
967 IdentifierInfo *Id, bool Typename,
974 bool wasDeclaredWithTypename() const { return Typename; }
1009 void setDeclaredWithTypename(bool withTypename) { Typename = withTypename; }
953 TemplateTypeParmDecl(DeclContext *DC, SourceLocation KeyLoc, SourceLocation IdLoc, IdentifierInfo *Id, bool Typename) argument
/external/clang/lib/AST/
H A DDeclTemplate.cpp427 bool Typename, bool ParameterPack) {
429 new (C) TemplateTypeParmDecl(DC, KeyLoc, NameLoc, Id, Typename);
424 Create(const ASTContext &C, DeclContext *DC, SourceLocation KeyLoc, SourceLocation NameLoc, unsigned D, unsigned P, IdentifierInfo *Id, bool Typename, bool ParameterPack) argument
/external/clang/lib/Sema/
H A DSemaTemplate.cpp507 /// (e.g., "typename T") has been parsed. Typename specifies whether
515 Decl *Sema::ActOnTypeParameter(Scope *S, bool Typename, bool Ellipsis, argument
543 Typename, Ellipsis);
/external/clang/include/clang/Sema/
H A DSema.h3787 Decl *ActOnTypeParameter(Scope *S, bool Typename, bool Ellipsis,

Completed in 1022 milliseconds