Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DLocalizationChecker.cpp1011 auto *LiteralExpr = dyn_cast<ObjCStringLiteral>(Point->getStmt()); in VisitNode() local
1012 if (!LiteralExpr) in VisitNode()
1015 SVal LiteralSVal = Succ->getSVal(LiteralExpr); in VisitNode()
1029 Piece->addRange(LiteralExpr->getSourceRange()); in VisitNode()
/netbsd/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExpr.cpp6862 SourceLocation RParenLoc, Expr *LiteralExpr) { in BuildCompoundLiteralExpr() argument
6869 SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd()))) in BuildCompoundLiteralExpr()
6889 InitializationSequence InitSeq(*this, Entity, Kind, LiteralExpr); in BuildCompoundLiteralExpr()
6890 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, LiteralExpr, in BuildCompoundLiteralExpr()
6894 LiteralExpr = Result.get(); in BuildCompoundLiteralExpr()
6922 if (auto ILE = dyn_cast<InitListExpr>(LiteralExpr)) in BuildCompoundLiteralExpr()
6929 VK, LiteralExpr, isFileScope); in BuildCompoundLiteralExpr()
6931 if (!LiteralExpr->isTypeDependent() && in BuildCompoundLiteralExpr()
6932 !LiteralExpr->isValueDependent() && in BuildCompoundLiteralExpr()
6934 if (CheckForConstantInitializer(LiteralExpr, literalType)) in BuildCompoundLiteralExpr()
[all …]
/netbsd/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h5426 Expr *LiteralExpr);