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

/external/clang/lib/Parse/
H A DParseExpr.cpp1609 ParenParseOption ExprType = CastExpr; local
1612 Operand = ParseParenExpression(ExprType, true/*stopIfCastExpr*/,
1618 if (ExprType == CastExpr) {
1940 /// based on what is allowed by ExprType. The actual thing parsed is returned
1941 /// in ExprType. If stopIfCastExpr is true, it will only return the parsed type,
1961 Parser::ParseParenExpression(ParenParseOption &ExprType, bool stopIfCastExpr, argument
1976 ExprType >= CompoundLiteral? Sema::PCC_ParenthesizedExpression
2000 if (ExprType >= CompoundStmt && Tok.is(tok::l_brace)) {
2005 ExprType = CompoundStmt;
2013 } else if (ExprType >
[all...]
H A DParseExprCXX.cpp2709 Parser::ParseCXXAmbiguousParenExpression(ParenParseOption &ExprType, argument
2713 assert(ExprType == CastExpr && "Compound literals are not ambiguous!");
2793 ExprType = CompoundLiteral;
2817 ExprType = SimpleExpr;
/external/clang/lib/Sema/
H A DSemaStmt.cpp2130 QualType ExprType = E->getType(); local
2137 if (!Context.hasSameUnqualifiedType(ReturnType, ExprType))
H A DSemaDeclCXX.cpp2466 QualType ExprType = E->getType(); local
2467 QualType TargetType = SemaRef.Context.getRValueReferenceType(ExprType);
H A DSemaExpr.cpp3008 bool Sema::CheckUnaryExprOrTypeTraitOperand(QualType ExprType, argument
3012 if (ExprType->isDependentType())
3019 if (const ReferenceType *Ref = ExprType->getAs<ReferenceType>())
3020 ExprType = Ref->getPointeeType();
3023 return CheckVecStepTraitOperandType(*this, ExprType, OpLoc, ExprRange);
3026 if (!CheckExtensionTraitOperandType(*this, ExprType, OpLoc, ExprRange,
3030 if (RequireCompleteType(OpLoc, ExprType,
3035 if (CheckObjCTraitOperandConstraints(*this, ExprType, OpLoc, ExprRange,

Completed in 94 milliseconds