Searched refs:StrE (Results 1 – 3 of 3) sorted by relevance
1139 StrE = dyn_cast<StringLiteral>(OrigArg->IgnoreParens())) { in doRewriteToUTF8StringBoxedExpressionHelper() local1140 commit.replaceWithInner(Msg->getSourceRange(), StrE->getSourceRange()); in doRewriteToUTF8StringBoxedExpressionHelper()1141 commit.insert(StrE->getBeginLoc(), "@"); in doRewriteToUTF8StringBoxedExpressionHelper()
3987 const StringLiteral *StrE = nullptr; in evaluateExpr() local3992 StrE = ObjCExpr->getString(); in evaluateExpr()3995 StrE = cast<StringLiteral>(I->getSubExprAsWritten()); in evaluateExpr()3999 std::string strRef(StrE->getString().str()); in evaluateExpr()4008 const StringLiteral *StrE = nullptr; in evaluateExpr() local4013 StrE = ObjCExpr->getString(); in evaluateExpr()4016 StrE = cast<StringLiteral>(expr); in evaluateExpr()4020 std::string strRef(StrE->getString().str()); in evaluateExpr()
7498 const StringLiteral *StrE = nullptr; in checkFormatStringExpr() local7501 StrE = ObjCFExpr->getString(); in checkFormatStringExpr()7503 StrE = cast<StringLiteral>(E); in checkFormatStringExpr()7505 if (StrE) { in checkFormatStringExpr()7506 if (Offset.isNegative() || Offset > StrE->getLength()) { in checkFormatStringExpr()7511 FormatStringLiteral FStr(StrE, Offset.sextOrTrunc(64).getSExtValue()); in checkFormatStringExpr()