Lines Matching refs:Arg
613 const APValue &Arg = Frame->Arguments[ArgIndex];
614 Arg.printPretty(Out, Frame->Info.Ctx, Param->getType());
4189 static bool EvaluateBuiltinConstantP(ASTContext &Ctx, const Expr *Arg) {
4190 QualType ArgType = Arg->getType();
4207 if (!Arg->EvaluateAsRValue(Result, Ctx) || Result.HasSideEffects)
4216 return Arg->isEvaluatable(Ctx);
4217 } else if (ArgType->isPointerType() || Arg->isGLValue()) {
4221 if ((Arg->isGLValue() ? EvaluateLValue(Arg, LV, Info)
4222 : EvaluatePointer(Arg, LV, Info)) &&
5566 const Expr *Arg,
5569 const StringLiteral *S = dyn_cast<StringLiteral>(Arg->IgnoreParenCasts());