/external/clang/include/clang/Sema/ |
D | LoopHint.h | 36 Expr *ValueExpr; member 40 ValueExpr(nullptr) {} in LoopHint()
|
D | Sema.h | 5225 ExprResult BuildObjCBoxedExpr(SourceRange SR, Expr *ValueExpr);
|
/external/clang/lib/Sema/ |
D | SemaStmtAttr.cpp | 61 Expr *ValueExpr = A.getArgAsExpr(3); in handleLoopHintAttr() local 88 if (ValueExpr) { in handleLoopHintAttr() 115 assert(ValueExpr && "Attribute must have a valid value expression."); in handleLoopHintAttr() 116 if (S.CheckLoopHintExpr(ValueExpr, St->getLocStart())) in handleLoopHintAttr() 139 ValueExpr, A.getRange()); in handleLoopHintAttr()
|
D | SemaExprObjC.cpp | 499 ExprResult Sema::BuildObjCBoxedExpr(SourceRange SR, Expr *ValueExpr) { in BuildObjCBoxedExpr() argument 500 if (ValueExpr->isTypeDependent()) { in BuildObjCBoxedExpr() 502 new (Context) ObjCBoxedExpr(ValueExpr, Context.DependentTy, nullptr, SR); in BuildObjCBoxedExpr() 508 ExprResult RValue = DefaultFunctionArrayLvalueConversion(ValueExpr); in BuildObjCBoxedExpr() 513 ValueExpr = RValue.get(); in BuildObjCBoxedExpr() 514 QualType ValueType(ValueExpr->getType()); in BuildObjCBoxedExpr() 576 dyn_cast<CharacterLiteral>(ValueExpr->IgnoreParens())) { in BuildObjCBoxedExpr() 598 CheckForIntOverflow(ValueExpr); in BuildObjCBoxedExpr() 607 << ValueType << ValueExpr->getSourceRange(); in BuildObjCBoxedExpr() 694 << ValueType << ValueExpr->getSourceRange(); in BuildObjCBoxedExpr() [all …]
|
D | TreeTransform.h | 2825 ExprResult RebuildObjCBoxedExpr(SourceRange SR, Expr *ValueExpr) { in RebuildObjCBoxedExpr() argument 2826 return getSema().BuildObjCBoxedExpr(SR, ValueExpr); in RebuildObjCBoxedExpr()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | NullabilityChecker.cpp | 174 const Stmt *ValueExpr = nullptr, 179 const Stmt *ValueExpr = nullptr) const { in reportBug() argument 188 if (ValueExpr) { in reportBug() 189 R->addRange(ValueExpr->getSourceRange()); in reportBug() 193 bugreporter::trackNullOrUndefValue(N, ValueExpr, *R); in reportBug() 460 CheckerContext &C, const Stmt *ValueExpr, bool SuppressPath) const { in reportBugIfInvariantHolds() argument 470 reportBug(Msg, Error, N, Region, C.getBugReporter(), ValueExpr); in reportBugIfInvariantHolds() 1110 const Expr *ValueExpr = matchValueExprForBind(S); in checkBind() local 1111 if (ValueExpr) { in checkBind() 1113 getNullabilityAnnotation(lookThroughImplicitCasts(ValueExpr)->getType()); in checkBind() [all …]
|
/external/clang/lib/CodeGen/ |
D | CGLoopInfo.cpp | 162 auto *ValueExpr = LH->getValue(); in push() local 163 if (ValueExpr) { in push() 164 llvm::APSInt ValueAPS = ValueExpr->EvaluateKnownConstInt(Ctx); in push()
|
/external/clang/lib/Parse/ |
D | ParseObjc.cpp | 3398 ExprResult ValueExpr(ParseAssignmentExpression()); in ParseObjCBoxedExpr() local 3402 if (ValueExpr.isInvalid()) in ParseObjCBoxedExpr() 3408 ValueExpr = Actions.ActOnParenExpr(LPLoc, RPLoc, ValueExpr.get()); in ParseObjCBoxedExpr() 3410 ValueExpr.get()); in ParseObjCBoxedExpr() 3470 ExprResult ValueExpr(ParseAssignmentExpression()); in ParseObjCDictionaryLiteral() local 3471 if (ValueExpr.isInvalid()) { in ParseObjCDictionaryLiteral() 3476 return ValueExpr; in ParseObjCDictionaryLiteral() 3487 KeyExpr.get(), ValueExpr.get(), EllipsisLoc, None in ParseObjCDictionaryLiteral()
|
D | ParseStmt.cpp | 1919 ArgsUnion(Hint.ValueExpr)}; in ParsePragmaLoopHint()
|
D | ParsePragma.cpp | 896 Hint.ValueExpr = R.get(); in HandlePragmaLoopHint()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/ |
D | NewGVN.cpp | 3359 auto *ValueExpr = ValueToExpression.lookup(SE->getStoreInst()); in verifyStoreExpressions() local 3360 assert(ValueExpr && ValueExpr->equals(*SE) && in verifyStoreExpressions()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/AsmParser/ |
D | ARMAsmParser.cpp | 9677 const MCExpr *ValueExpr; in parseDirectiveEabiAttr() local 9679 if (Parser.parseExpression(ValueExpr)) in parseDirectiveEabiAttr() 9682 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ValueExpr); in parseDirectiveEabiAttr()
|
/external/llvm/lib/Target/ARM/AsmParser/ |
D | ARMAsmParser.cpp | 9381 const MCExpr *ValueExpr; in parseDirectiveEabiAttr() local 9383 if (Parser.parseExpression(ValueExpr)) { in parseDirectiveEabiAttr() 9388 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ValueExpr); in parseDirectiveEabiAttr()
|