Home
last modified time | relevance | path

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

/external/clang/include/clang/Basic/
DStmtNodes.td93 def GNUNullExpr : DStmt<Expr>;
/external/v8/tools/gcmole/
Dgcmole.cc567 VISIT(GNUNullExpr); in VisitExpr()
632 IGNORE_EXPR(GNUNullExpr);
/external/clang/include/clang/AST/
DExpr.h3639 class GNUNullExpr : public Expr {
3644 GNUNullExpr(QualType Ty, SourceLocation Loc) in GNUNullExpr() function
3650 explicit GNUNullExpr(EmptyShell Empty) : Expr(GNUNullExprClass, Empty) { } in GNUNullExpr() function
DDataRecursiveASTVisitor.h2208 DEF_TRAVERSE_STMT(GNUNullExpr, {})
DRecursiveASTVisitor.h2238 DEF_TRAVERSE_STMT(GNUNullExpr, {})
/external/clang/lib/AST/
DStmtProfile.cpp704 void StmtProfiler::VisitGNUNullExpr(const GNUNullExpr *S) { in VisitGNUNullExpr()
DStmtPrinter.cpp1350 void StmtPrinter::VisitGNUNullExpr(GNUNullExpr *) { in VisitGNUNullExpr() argument
DExpr.cpp3243 } else if (isa<GNUNullExpr>(this)) { in isNullPointerConstant()
DASTContext.cpp1920 if (isa<GNUNullExpr>(E)) return true; in isSentinelNullExpr()
DExprConstant.cpp5974 bool VisitGNUNullExpr(const GNUNullExpr *E) { in VisitGNUNullExpr()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp840 void ASTStmtReader::VisitGNUNullExpr(GNUNullExpr *E) { in VisitGNUNullExpr()
2572 S = new (Context) GNUNullExpr(Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp782 void ASTStmtWriter::VisitGNUNullExpr(GNUNullExpr *E) { in VisitGNUNullExpr()
/external/clang/lib/Analysis/
DThreadSafety.cpp1312 if (isa<CXXNullPtrLiteralExpr>(E) || isa<GNUNullExpr>(E)) { in getStaticBooleanValue()
/external/clang/lib/Sema/
DSemaStmt.cpp1337 void VisitGNUNullExpr(GNUNullExpr *E) { } in VisitGNUNullExpr()
DSemaExpr.cpp7335 bool LHSNull = isa<GNUNullExpr>(LHS.get()->IgnoreParenImpCasts()); in checkArithmeticNull()
7336 bool RHSNull = isa<GNUNullExpr>(RHS.get()->IgnoreParenImpCasts()); in checkArithmeticNull()
11488 return new (Context) GNUNullExpr(Ty, TokenLoc); in ActOnGNUNullExpr()
DTreeTransform.h8079 TreeTransform<Derived>::TransformGNUNullExpr(GNUNullExpr *E) { in TransformGNUNullExpr()
/external/clang/lib/CodeGen/
DCGExprScalar.cpp238 Value *VisitGNUNullExpr(const GNUNullExpr *E) { in VisitGNUNullExpr()