Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmt.h1969 return NumMandatoryStmtPtr + hasElseStorage() + hasVarStorage() + in numTrailingObjects()
1974 return hasElseStorage(); in numTrailingObjects()
2013 bool hasElseStorage() const { return IfStmtBits.HasElse; } in hasElseStorage() function
2037 return hasElseStorage() ? getTrailingObjects<Stmt *>()[elseOffset()] in getElse()
2042 return hasElseStorage() ? getTrailingObjects<Stmt *>()[elseOffset()] in getElse()
2047 assert(hasElseStorage() && in setElse()
2103 return hasElseStorage() ? *getTrailingObjects<SourceLocation>() in getElseLoc()
2108 assert(hasElseStorage() && in setElseLoc()
/llvm-project-15.0.7/clang/lib/AST/
H A DJSONNodeDumper.cpp1497 attributeOnlyIfTrue("hasElse", IS->hasElseStorage()); in VisitIfStmt()
H A DTextNodeDumper.cpp956 if (Node->hasElseStorage()) in VisitIfStmt()