Home
last modified time | relevance | path

Searched refs:IdentType (Results 1 – 6 of 6) sorted by relevance

/external/clang/include/clang/AST/
DExpr.h1149 enum IdentType { enum
1161 IdentType Type;
1163 PredefinedExpr(SourceLocation l, QualType type, IdentType IT) in PredefinedExpr()
1174 IdentType getIdentType() const { return Type; } in getIdentType()
1175 void setIdentType(IdentType IT) { Type = IT; } in setIdentType()
1180 static std::string ComputeName(IdentType IT, const Decl *CurrentDecl);
/external/clang/lib/CodeGen/
DCGExpr.cpp1940 unsigned IdentType = E->getIdentType(); in EmitPredefinedLValue() local
1943 switch (IdentType) { in EmitPredefinedLValue()
1971 : PredefinedExpr::ComputeName((PredefinedExpr::IdentType)IdentType, in EmitPredefinedLValue()
/external/clang/lib/Sema/
DSemaTemplateInstantiate.cpp1155 PredefinedExpr::IdentType IT = E->getIdentType(); in TransformPredefinedExpr()
DSemaExpr.cpp2761 PredefinedExpr::IdentType IT; in ActOnPredefinedExpr()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp427 E->setIdentType((PredefinedExpr::IdentType)Record[Idx++]); in VisitPredefinedExpr()
/external/clang/lib/AST/
DExpr.cpp478 std::string PredefinedExpr::ComputeName(IdentType IT, const Decl *CurrentDecl) { in ComputeName()