Home
last modified time | relevance | path

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

/external/clang/lib/Edit/
DRewriteObjCFoundationAPI.cpp1126 StrE = dyn_cast<StringLiteral>(OrigArg->IgnoreParens())) { in doRewriteToUTF8StringBoxedExpressionHelper() local
1127 commit.replaceWithInner(Msg->getSourceRange(), StrE->getSourceRange()); in doRewriteToUTF8StringBoxedExpressionHelper()
1128 commit.insert(StrE->getLocStart(), "@"); in doRewriteToUTF8StringBoxedExpressionHelper()
/external/clang/tools/libclang/
DCIndex.cpp3554 const StringLiteral *StrE = nullptr; in evaluateExpr() local
3559 StrE = ObjCExpr->getString(); in evaluateExpr()
3562 StrE = cast<StringLiteral>(I->getSubExprAsWritten()); in evaluateExpr()
3566 std::string strRef(StrE->getString().str()); in evaluateExpr()
3575 const StringLiteral *StrE = nullptr; in evaluateExpr() local
3580 StrE = ObjCExpr->getString(); in evaluateExpr()
3583 StrE = cast<StringLiteral>(expr); in evaluateExpr()
3587 std::string strRef(StrE->getString().str()); in evaluateExpr()
/external/clang/lib/Sema/
DSemaChecking.cpp3989 const StringLiteral *StrE = nullptr; in checkFormatStringExpr() local
3992 StrE = ObjCFExpr->getString(); in checkFormatStringExpr()
3994 StrE = cast<StringLiteral>(E); in checkFormatStringExpr()
3996 if (StrE) { in checkFormatStringExpr()
3997 CheckFormatString(S, StrE, E, Args, HasVAListArg, format_idx, in checkFormatStringExpr()