Home
last modified time | relevance | path

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

/external/clang/lib/StaticAnalyzer/Checkers/
DLocalizationChecker.cpp909 auto *LiteralExpr = dyn_cast<ObjCStringLiteral>(Point->getStmt()); in VisitNode() local
910 if (!LiteralExpr) in VisitNode()
914 SVal LiteralSVal = State->getSVal(LiteralExpr, Succ->getLocationContext()); in VisitNode()
928 Piece->addRange(LiteralExpr->getSourceRange()); in VisitNode()
/external/clang/lib/Sema/
DSemaExpr.cpp5516 SourceLocation RParenLoc, Expr *LiteralExpr) { in BuildCompoundLiteralExpr() argument
5523 LiteralExpr->getSourceRange().getEnd()))) in BuildCompoundLiteralExpr()
5527 << SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd())); in BuildCompoundLiteralExpr()
5531 SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd()))) in BuildCompoundLiteralExpr()
5540 InitializationSequence InitSeq(*this, Entity, Kind, LiteralExpr); in BuildCompoundLiteralExpr()
5541 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, LiteralExpr, in BuildCompoundLiteralExpr()
5545 LiteralExpr = Result.get(); in BuildCompoundLiteralExpr()
5549 !LiteralExpr->isTypeDependent() && in BuildCompoundLiteralExpr()
5550 !LiteralExpr->isValueDependent() && in BuildCompoundLiteralExpr()
5552 if (CheckForConstantInitializer(LiteralExpr, literalType)) in BuildCompoundLiteralExpr()
[all …]
/external/clang/include/clang/Sema/
DSema.h4039 Expr *LiteralExpr);