Searched refs:ExprType (Results 1 - 8 of 8) 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/v8/tools/gcmole/
H A Dgcmole.cc826 template<typename ExprType>
827 ExprEffect VisitArguments(ExprType* call, const Environment& env) {
834 template<typename ExprType>
835 void VisitArguments(ExprType* call,
/external/clang/include/clang/Parse/
H A DParser.h1249 ExprResult ParseParenExpression(ParenParseOption &ExprType,
1255 ExprResult ParseCXXAmbiguousParenExpression(ParenParseOption &ExprType,
/external/clang/lib/Sema/
H A DSemaStmt.cpp2130 QualType ExprType = E->getType(); local
2137 if (!Context.hasSameUnqualifiedType(ReturnType, 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,
H A DSemaDeclCXX.cpp2466 QualType ExprType = E->getType(); local
2467 QualType TargetType = SemaRef.Context.getRValueReferenceType(ExprType);
/external/clang/include/clang/Sema/
H A DSema.h2924 bool CheckUnaryExprOrTypeTraitOperand(QualType ExprType, SourceLocation OpLoc,
6779 QualType ExprType);

Completed in 736 milliseconds