Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DExpr.h1074 enum IdentType { enum
1086 IdentType Type;
1088 PredefinedExpr(SourceLocation l, QualType type, IdentType IT) in PredefinedExpr()
1099 IdentType getIdentType() const { return Type; } in getIdentType()
1100 void setIdentType(IdentType IT) { Type = IT; } in setIdentType()
1105 static std::string ComputeName(IdentType IT, const Decl *CurrentDecl);
/external/clang/lib/CodeGen/
DCGExpr.cpp1871 unsigned IdentType = E->getIdentType(); in EmitPredefinedLValue() local
1874 switch (IdentType) { in EmitPredefinedLValue()
1902 : PredefinedExpr::ComputeName((PredefinedExpr::IdentType)IdentType, in EmitPredefinedLValue()
/external/clang/lib/Sema/
DSemaTemplateInstantiate.cpp1086 PredefinedExpr::IdentType IT = E->getIdentType(); in TransformPredefinedExpr()
DSemaExpr.cpp2496 PredefinedExpr::IdentType IT; in ActOnPredefinedExpr()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp344 E->setIdentType((PredefinedExpr::IdentType)Record[Idx++]); in VisitPredefinedExpr()
/external/clang/lib/AST/
DExpr.cpp399 std::string PredefinedExpr::ComputeName(IdentType IT, const Decl *CurrentDecl) { in ComputeName()