Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp1139 StrE = dyn_cast<StringLiteral>(OrigArg->IgnoreParens())) { in doRewriteToUTF8StringBoxedExpressionHelper() local
1140 commit.replaceWithInner(Msg->getSourceRange(), StrE->getSourceRange()); in doRewriteToUTF8StringBoxedExpressionHelper()
1141 commit.insert(StrE->getBeginLoc(), "@"); in doRewriteToUTF8StringBoxedExpressionHelper()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp3987 const StringLiteral *StrE = nullptr; in evaluateExpr() local
3992 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() local
4013 StrE = ObjCExpr->getString(); in evaluateExpr()
4016 StrE = cast<StringLiteral>(expr); in evaluateExpr()
4020 std::string strRef(StrE->getString().str()); in evaluateExpr()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaChecking.cpp7498 const StringLiteral *StrE = nullptr; in checkFormatStringExpr() local
7501 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()