Home
last modified time | relevance | path

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

/external/clang/include/clang/Basic/
DStmtNodes.td92 def GNUNullExpr : DStmt<Expr>;
/external/v8/tools/gcmole/
Dgcmole.cc572 VISIT(GNUNullExpr); in VisitExpr()
640 IGNORE_EXPR(GNUNullExpr);
/external/clang/include/clang/AST/
DExpr.h3395 class GNUNullExpr : public Expr {
3400 GNUNullExpr(QualType Ty, SourceLocation Loc) in GNUNullExpr() function
3406 explicit GNUNullExpr(EmptyShell Empty) : Expr(GNUNullExprClass, Empty) { } in GNUNullExpr() function
3418 static bool classof(const GNUNullExpr *) { return true; } in classof() argument
DRecursiveASTVisitor.h2165 DEF_TRAVERSE_STMT(GNUNullExpr, { })
/external/clang/lib/AST/
DStmtProfile.cpp420 void StmtProfiler::VisitGNUNullExpr(const GNUNullExpr *S) { in VisitGNUNullExpr()
DStmtPrinter.cpp967 void StmtPrinter::VisitGNUNullExpr(GNUNullExpr *) { in VisitGNUNullExpr() argument
DExpr.cpp2934 } else if (isa<GNUNullExpr>(this)) { in isNullPointerConstant()
DASTContext.cpp1640 if (isa<GNUNullExpr>(E)) return true; in isSentinelNullExpr()
DExprConstant.cpp4025 bool VisitGNUNullExpr(const GNUNullExpr *E) { in VisitGNUNullExpr()
/external/clang/lib/Analysis/
DThreadSafety.cpp434 isa<GNUNullExpr>(Exp) || in buildSExpr()
1555 if (isa<CXXNullPtrLiteralExpr>(E) || isa<GNUNullExpr>(E)) { in getStaticBooleanValue()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp753 void ASTStmtReader::VisitGNUNullExpr(GNUNullExpr *E) { in VisitGNUNullExpr()
1890 S = new (Context) GNUNullExpr(Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp710 void ASTStmtWriter::VisitGNUNullExpr(GNUNullExpr *E) { in VisitGNUNullExpr()
/external/clang/tools/libclang/
DRecursiveASTVisitor.h2085 DEF_TRAVERSE_STMT(GNUNullExpr, { })
/external/clang/lib/Sema/
DSemaStmt.cpp1231 void VisitGNUNullExpr(GNUNullExpr *E) { } in VisitGNUNullExpr()
DSemaExpr.cpp6078 bool LHSNull = isa<GNUNullExpr>(LHS.get()->IgnoreParenImpCasts()); in checkArithmeticNull()
6079 bool RHSNull = isa<GNUNullExpr>(RHS.get()->IgnoreParenImpCasts()); in checkArithmeticNull()
9613 return Owned(new (Context) GNUNullExpr(Ty, TokenLoc)); in ActOnGNUNullExpr()
DTreeTransform.h6823 TreeTransform<Derived>::TransformGNUNullExpr(GNUNullExpr *E) { in TransformGNUNullExpr()
/external/clang/lib/CodeGen/
DCGExprScalar.cpp191 Value *VisitGNUNullExpr(const GNUNullExpr *E) { in VisitGNUNullExpr()