Searched refs:TheExpr (Results 1 – 3 of 3) sorted by relevance
/external/llvm-project/clang/include/clang/AST/ |
D | OSLog.h | 73 const Expr *TheExpr = nullptr; variable 82 : TheKind(kind), TheExpr(expr), Size(size), Flags(flags), in TheKind() 104 const Expr *getExpr() const { return TheExpr; } in getExpr()
|
/external/llvm-project/clang-tools-extra/clang-tidy/misc/ |
D | RedundantExpressionCheck.cpp | 336 static const TExpr *checkOpKind(const Expr *TheExpr, in checkOpKind() argument 338 const auto *AsTExpr = dyn_cast_or_null<TExpr>(TheExpr); in checkOpKind() 364 static bool hasSameOperatorParent(const Expr *TheExpr, in hasSameOperatorParent() argument 368 const DynTypedNodeList Parents = Context.getParents(*TheExpr); in hasSameOperatorParent() 386 markDuplicateOperands(const TExpr *TheExpr, in markDuplicateOperands() argument 389 const OverloadedOperatorKind OpKind = getOp(TheExpr); in markDuplicateOperands() 394 const std::pair<const Expr *, const Expr *> Operands = getOperands(TheExpr); in markDuplicateOperands() 401 if (hasSameOperatorParent<TExpr>(TheExpr, OpKind, Context)) in markDuplicateOperands()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGBuiltin.cpp | 1772 } else if (const Expr *TheExpr = Item.getExpr()) { in emitBuiltinOSLogFormat() local 1773 ArgVal = EmitScalarExpr(TheExpr, /*Ignore*/ false); in emitBuiltinOSLogFormat() 1791 if (TheExpr->getType()->isObjCRetainableType() && in emitBuiltinOSLogFormat() 1792 getLangOpts().ObjCAutoRefCount && LifetimeExtendObject(TheExpr)) { in emitBuiltinOSLogFormat() 1793 assert(getEvaluationKind(TheExpr->getType()) == TEK_Scalar && in emitBuiltinOSLogFormat() 1797 QualType Ty = TheExpr->getType(); in emitBuiltinOSLogFormat()
|