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

/external/clang/lib/Sema/
H A DSemaOpenMP.cpp138 QualType ExprType = VD->getType().getNonReferenceType(); local
139 ExprResult DE = BuildDeclRefExpr(VD, ExprType, VK_RValue, Id.getLoc());
H A DSemaStmt.cpp2337 QualType ExprType = E->getType(); local
2344 if (!Context.hasSameUnqualifiedType(ReturnType, ExprType))
H A DSemaExpr.cpp3307 bool Sema::CheckUnaryExprOrTypeTraitOperand(QualType ExprType, argument
3311 if (ExprType->isDependentType())
3318 if (const ReferenceType *Ref = ExprType->getAs<ReferenceType>())
3319 ExprType = Ref->getPointeeType();
3322 return CheckVecStepTraitOperandType(*this, ExprType, OpLoc, ExprRange);
3325 if (!CheckExtensionTraitOperandType(*this, ExprType, OpLoc, ExprRange,
3329 if (RequireCompleteType(OpLoc, ExprType,
3334 if (CheckObjCTraitOperandConstraints(*this, ExprType, OpLoc, ExprRange,
/external/clang/lib/Parse/
H A DParseExpr.cpp1597 ParenParseOption ExprType = CastExpr; local
1600 Operand = ParseParenExpression(ExprType, true/*stopIfCastExpr*/,
1606 if (ExprType == CastExpr) {
1932 /// based on what is allowed by ExprType. The actual thing parsed is returned
1933 /// in ExprType. If stopIfCastExpr is true, it will only return the parsed type,
1953 Parser::ParseParenExpression(ParenParseOption &ExprType, bool stopIfCastExpr, argument
1968 ExprType >= CompoundLiteral? Sema::PCC_ParenthesizedExpression
1996 if (ExprType >= CompoundStmt && Tok.is(tok::l_brace)) {
2001 ExprType = CompoundStmt;
2009 } else if (ExprType >
[all...]
H A DParseExprCXX.cpp2897 Parser::ParseCXXAmbiguousParenExpression(ParenParseOption &ExprType, argument
2901 assert(ExprType == CastExpr && "Compound literals are not ambiguous!");
2981 ExprType = CompoundLiteral;
3005 ExprType = SimpleExpr;

Completed in 432 milliseconds