Searched refs:StrE (Results 1 – 3 of 3) sorted by relevance
1140 StrE = dyn_cast<StringLiteral>(OrigArg->IgnoreParens())) { in doRewriteToUTF8StringBoxedExpressionHelper() local1141 commit.replaceWithInner(Msg->getSourceRange(), StrE->getSourceRange()); in doRewriteToUTF8StringBoxedExpressionHelper()1142 commit.insert(StrE->getBeginLoc(), "@"); in doRewriteToUTF8StringBoxedExpressionHelper()
4213 const StringLiteral *StrE = nullptr; in evaluateExpr() local4218 StrE = ObjCExpr->getString(); in evaluateExpr()4221 StrE = cast<StringLiteral>(I->getSubExprAsWritten()); in evaluateExpr()4225 std::string strRef(StrE->getString().str()); in evaluateExpr()4234 const StringLiteral *StrE = nullptr; in evaluateExpr() local4239 StrE = ObjCExpr->getString(); in evaluateExpr()4242 StrE = cast<StringLiteral>(expr); in evaluateExpr()4246 std::string strRef(StrE->getString().str()); in evaluateExpr()
9008 const StringLiteral *StrE = nullptr; in checkFormatStringExpr() local9011 StrE = ObjCFExpr->getString(); in checkFormatStringExpr()9013 StrE = cast<StringLiteral>(E); in checkFormatStringExpr()9015 if (StrE) { in checkFormatStringExpr()9016 if (Offset.isNegative() || Offset > StrE->getLength()) { in checkFormatStringExpr()9021 FormatStringLiteral FStr(StrE, Offset.sextOrTrunc(64).getSExtValue()); in checkFormatStringExpr()