Home
last modified time | relevance | path

Searched refs:GNUNullExpr (Results 1 – 18 of 18) sorted by relevance

/external/clang/include/clang/Basic/
DStmtNodes.td100 def GNUNullExpr : DStmt<Expr>;
/external/v8/tools/gcmole/
Dgcmole.cc567 VISIT(GNUNullExpr); in VisitExpr()
632 IGNORE_EXPR(GNUNullExpr);
/external/clang/include/clang/AST/
DExpr.h3690 class GNUNullExpr : public Expr {
3695 GNUNullExpr(QualType Ty, SourceLocation Loc) in GNUNullExpr() function
3701 explicit GNUNullExpr(EmptyShell Empty) : Expr(GNUNullExprClass, Empty) { } in GNUNullExpr() function
DRecursiveASTVisitor.h2229 DEF_TRAVERSE_STMT(GNUNullExpr, {})
/external/clang/lib/AST/
DStmtProfile.cpp793 void StmtProfiler::VisitGNUNullExpr(const GNUNullExpr *S) { in VisitGNUNullExpr()
DStmtPrinter.cpp1506 void StmtPrinter::VisitGNUNullExpr(GNUNullExpr *) { in VisitGNUNullExpr() argument
DExpr.cpp3337 } else if (isa<GNUNullExpr>(this)) { in isNullPointerConstant()
DASTContext.cpp2033 if (isa<GNUNullExpr>(E)) return true; in isSentinelNullExpr()
DExprConstant.cpp6103 bool VisitGNUNullExpr(const GNUNullExpr *E) { in VisitGNUNullExpr()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1531 GNUNullExpr> gnuNullExpr;
/external/clang/lib/Serialization/
DASTReaderStmt.cpp880 void ASTStmtReader::VisitGNUNullExpr(GNUNullExpr *E) { in VisitGNUNullExpr()
2828 S = new (Context) GNUNullExpr(Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp825 void ASTStmtWriter::VisitGNUNullExpr(GNUNullExpr *E) { in VisitGNUNullExpr()
/external/clang/lib/Analysis/
DThreadSafety.cpp1309 if (isa<CXXNullPtrLiteralExpr>(E) || isa<GNUNullExpr>(E)) { in getStaticBooleanValue()
/external/clang/lib/Sema/
DSemaStmt.cpp1339 void VisitGNUNullExpr(GNUNullExpr *E) { } in VisitGNUNullExpr()
DSemaExpr.cpp7566 bool LHSNull = isa<GNUNullExpr>(LHS.get()->IgnoreParenImpCasts()); in checkArithmeticNull()
7567 bool RHSNull = isa<GNUNullExpr>(RHS.get()->IgnoreParenImpCasts()); in checkArithmeticNull()
11795 return new (Context) GNUNullExpr(Ty, TokenLoc); in ActOnGNUNullExpr()
DTreeTransform.h8750 TreeTransform<Derived>::TransformGNUNullExpr(GNUNullExpr *E) { in TransformGNUNullExpr()
/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp2370 TEST(Matcher, GNUNullExpr) { in TEST() argument
/external/clang/lib/CodeGen/
DCGExprScalar.cpp243 Value *VisitGNUNullExpr(const GNUNullExpr *E) { in VisitGNUNullExpr()