Searched refs:ExprType (Results 1 - 7 of 7) sorted by relevance

/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaOpenMP.cpp128 QualType ExprType = VD->getType().getNonReferenceType(); local
130 ExprType,
H A DSemaExpr.cpp3234 bool Sema::CheckUnaryExprOrTypeTraitOperand(QualType ExprType, argument
3238 if (ExprType->isDependentType())
3245 if (const ReferenceType *Ref = ExprType->getAs<ReferenceType>())
3246 ExprType = Ref->getPointeeType();
3249 return CheckVecStepTraitOperandType(*this, ExprType, OpLoc, ExprRange);
3252 if (!CheckExtensionTraitOperandType(*this, ExprType, OpLoc, ExprRange,
3256 if (RequireCompleteType(OpLoc, ExprType,
3261 if (CheckObjCTraitOperandConstraints(*this, ExprType, OpLoc, ExprRange,
H A DSemaStmt.cpp2239 QualType ExprType = E->getType(); local
2246 if (!Context.hasSameUnqualifiedType(ReturnType, ExprType))
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseExpr.cpp1585 ParenParseOption ExprType = CastExpr; local
1588 Operand = ParseParenExpression(ExprType, true/*stopIfCastExpr*/,
1594 if (ExprType == CastExpr) {
1920 /// based on what is allowed by ExprType. The actual thing parsed is returned
1921 /// in ExprType. If stopIfCastExpr is true, it will only return the parsed type,
1941 Parser::ParseParenExpression(ParenParseOption &ExprType, bool stopIfCastExpr, argument
1956 ExprType >= CompoundLiteral? Sema::PCC_ParenthesizedExpression
1984 if (ExprType >= CompoundStmt && Tok.is(tok::l_brace)) {
1989 ExprType = CompoundStmt;
1997 } else if (ExprType >
[all...]
H A DParseExprCXX.cpp2792 Parser::ParseCXXAmbiguousParenExpression(ParenParseOption &ExprType, argument
2796 assert(ExprType == CastExpr && "Compound literals are not ambiguous!");
2876 ExprType = CompoundLiteral;
2900 ExprType = SimpleExpr;
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Parse/
H A DParser.h1284 ExprResult ParseParenExpression(ParenParseOption &ExprType,
1290 ExprResult ParseCXXAmbiguousParenExpression(ParenParseOption &ExprType,
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h3180 bool CheckUnaryExprOrTypeTraitOperand(QualType ExprType, SourceLocation OpLoc,
7080 QualType ExprType);

Completed in 133 milliseconds