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

/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLSL.h204 enum ExprType { enum in class:GrGLSLExpr
209 ExprType fType;
/external/skia/src/gpu/gl/
H A DGrGLSL.h204 enum ExprType { enum in class:GrGLSLExpr
209 ExprType fType;
/external/clang/lib/Parse/
H A DParseExpr.cpp1526 ParenParseOption ExprType = CastExpr; local
1529 Operand = ParseParenExpression(ExprType, true/*stopIfCastExpr*/,
1535 if (ExprType == CastExpr) {
1902 /// based on what is allowed by ExprType. The actual thing parsed is returned
1903 /// in ExprType. If stopIfCastExpr is true, it will only return the parsed type,
1923 Parser::ParseParenExpression(ParenParseOption &ExprType, bool stopIfCastExpr, argument
1939 ExprType >= CompoundLiteral? Sema::PCC_ParenthesizedExpression
1965 if (ExprType >= CompoundStmt && Tok.is(tok::l_brace)) {
1970 ExprType = CompoundStmt;
1978 } else if (ExprType >
[all...]
H A DParseExprCXX.cpp2910 Parser::ParseCXXAmbiguousParenExpression(ParenParseOption &ExprType, argument
2915 assert(ExprType == CastExpr && "Compound literals are not ambiguous!");
3000 ExprType = CompoundLiteral;
3027 ExprType = SimpleExpr;
/external/clang/lib/Sema/
H A DSemaOpenMP.cpp679 QualType ExprType = VD->getType().getNonReferenceType(); local
680 ExprResult DE = BuildDeclRefExpr(VD, ExprType, VK_LValue, Id.getLoc());
H A DSemaExpr.cpp3491 bool Sema::CheckUnaryExprOrTypeTraitOperand(QualType ExprType, argument
3495 if (ExprType->isDependentType())
3504 if (const ReferenceType *Ref = ExprType->getAs<ReferenceType>())
3505 ExprType = Ref->getPointeeType();
3511 ExprType = Context.getBaseElementType(ExprType);
3514 return CheckVecStepTraitOperandType(*this, ExprType, OpLoc, ExprRange);
3517 if (!CheckExtensionTraitOperandType(*this, ExprType, OpLoc, ExprRange,
3521 if (RequireCompleteType(OpLoc, ExprType,
3526 if (ExprType
[all...]

Completed in 120 milliseconds