Home
last modified time | relevance | path

Searched refs:StrE (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp1140 StrE = dyn_cast<StringLiteral>(OrigArg->IgnoreParens())) { in doRewriteToUTF8StringBoxedExpressionHelper() local
1141 commit.replaceWithInner(Msg->getSourceRange(), StrE->getSourceRange()); in doRewriteToUTF8StringBoxedExpressionHelper()
1142 commit.insert(StrE->getBeginLoc(), "@"); in doRewriteToUTF8StringBoxedExpressionHelper()
/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DCIndex.cpp4213 const StringLiteral *StrE = nullptr; in evaluateExpr() local
4218 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() local
4239 StrE = ObjCExpr->getString(); in evaluateExpr()
4242 StrE = cast<StringLiteral>(expr); in evaluateExpr()
4246 std::string strRef(StrE->getString().str()); in evaluateExpr()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaChecking.cpp9008 const StringLiteral *StrE = nullptr; in checkFormatStringExpr() local
9011 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()