Home
last modified time | relevance | path

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

/external/clang/include/clang/Basic/
DStmtNodes.td100 def GNUNullExpr : DStmt<Expr>;
/external/v8/tools/gcmole/
Dgcmole.cc599 VISIT(GNUNullExpr); in VisitExpr()
664 IGNORE_EXPR(GNUNullExpr);
/external/clang/include/clang/AST/
DExpr.h3624 class GNUNullExpr : public Expr {
3629 GNUNullExpr(QualType Ty, SourceLocation Loc) in GNUNullExpr() function
3635 explicit GNUNullExpr(EmptyShell Empty) : Expr(GNUNullExprClass, Empty) { } in GNUNullExpr() function
DRecursiveASTVisitor.h2333 DEF_TRAVERSE_STMT(GNUNullExpr, {})
/external/clang/unittests/ASTMatchers/
DASTMatchersNodeTest.cpp689 TEST(Matcher, GNUNullExpr) { in TEST() argument
/external/clang/lib/AST/
DStmtProfile.cpp909 void StmtProfiler::VisitGNUNullExpr(const GNUNullExpr *S) { in VisitGNUNullExpr()
DStmtPrinter.cpp1636 void StmtPrinter::VisitGNUNullExpr(GNUNullExpr *) { in VisitGNUNullExpr() argument
DASTImporter.cpp223 Expr *VisitGNUNullExpr(GNUNullExpr *E);
5358 Expr *ASTNodeImporter::VisitGNUNullExpr(GNUNullExpr *E) { in VisitGNUNullExpr()
5363 return new (Importer.getToContext()) GNUNullExpr( in VisitGNUNullExpr()
DExpr.cpp3196 } else if (isa<GNUNullExpr>(this)) { in isNullPointerConstant()
DASTContext.cpp2031 if (isa<GNUNullExpr>(E)) return true; in isSentinelNullExpr()
DExprConstant.cpp6287 bool VisitGNUNullExpr(const GNUNullExpr *E) { in VisitGNUNullExpr()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1719 const internal::VariadicDynCastAllOfMatcher<Stmt, GNUNullExpr> gnuNullExpr;
/external/clang/lib/Serialization/
DASTReaderStmt.cpp885 void ASTStmtReader::VisitGNUNullExpr(GNUNullExpr *E) { in VisitGNUNullExpr()
3130 S = new (Context) GNUNullExpr(Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp837 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.cpp1344 void VisitGNUNullExpr(GNUNullExpr *E) { } in VisitGNUNullExpr()
DSemaExpr.cpp8002 bool LHSNull = isa<GNUNullExpr>(LHS.get()->IgnoreParenImpCasts()); in checkArithmeticNull()
8003 bool RHSNull = isa<GNUNullExpr>(RHS.get()->IgnoreParenImpCasts()); in checkArithmeticNull()
12334 return new (Context) GNUNullExpr(Ty, TokenLoc); in ActOnGNUNullExpr()
DTreeTransform.h9057 TreeTransform<Derived>::TransformGNUNullExpr(GNUNullExpr *E) { in TransformGNUNullExpr()
/external/clang/lib/CodeGen/
DCGExprScalar.cpp243 Value *VisitGNUNullExpr(const GNUNullExpr *E) { in VisitGNUNullExpr()