Searched defs:ValueExpr (Results 1 - 7 of 7) sorted by relevance

/external/clang/include/clang/Sema/
H A DLoopHint.h36 Expr *ValueExpr; member in struct:clang::LoopHint
40 ValueExpr(nullptr) {}
/external/clang/lib/CodeGen/
H A DCGLoopInfo.cpp162 auto *ValueExpr = LH->getValue(); local
163 if (ValueExpr) {
164 llvm::APSInt ValueAPS = ValueExpr->EvaluateKnownConstInt(Ctx);
/external/clang/lib/Sema/
H A DSemaStmtAttr.cpp61 Expr *ValueExpr = A.getArgAsExpr(3); local
88 if (ValueExpr) {
115 assert(ValueExpr && "Attribute must have a valid value expression.");
116 if (S.CheckLoopHintExpr(ValueExpr, St->getLocStart()))
139 ValueExpr, A.getRange());
H A DSemaExprObjC.cpp499 ExprResult Sema::BuildObjCBoxedExpr(SourceRange SR, Expr *ValueExpr) { argument
500 if (ValueExpr->isTypeDependent()) {
502 new (Context) ObjCBoxedExpr(ValueExpr, Context.DependentTy, nullptr, SR);
508 ExprResult RValue = DefaultFunctionArrayLvalueConversion(ValueExpr);
513 ValueExpr = RValue.get();
514 QualType ValueType(ValueExpr->getType());
576 dyn_cast<CharacterLiteral>(ValueExpr->IgnoreParens())) {
598 CheckForIntOverflow(ValueExpr);
607 << ValueType << ValueExpr->getSourceRange();
694 << ValueType << ValueExpr
[all...]
H A DTreeTransform.h2825 ExprResult RebuildObjCBoxedExpr(SourceRange SR, Expr *ValueExpr) { argument
2826 return getSema().BuildObjCBoxedExpr(SR, ValueExpr);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DNullabilityChecker.cpp174 const Stmt *ValueExpr = nullptr,
179 const Stmt *ValueExpr = nullptr) const {
188 if (ValueExpr) {
189 R->addRange(ValueExpr->getSourceRange());
193 bugreporter::trackNullOrUndefValue(N, ValueExpr, *R);
460 CheckerContext &C, const Stmt *ValueExpr, bool SuppressPath) const {
470 reportBug(Msg, Error, N, Region, C.getBugReporter(), ValueExpr);
1110 const Expr *ValueExpr = matchValueExprForBind(S); local
1111 if (ValueExpr) {
1113 getNullabilityAnnotation(lookThroughImplicitCasts(ValueExpr)
458 reportBugIfInvariantHolds(StringRef Msg, ErrorKind Error, ExplodedNode *N, const MemRegion *Region, CheckerContext &C, const Stmt *ValueExpr, bool SuppressPath) const argument
[all...]
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp9381 const MCExpr *ValueExpr; local
9383 if (Parser.parseExpression(ValueExpr)) {
9388 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ValueExpr);

Completed in 212 milliseconds