Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h2167 return NumMandatoryStmtPtr + hasElseStorage() + hasVarStorage() + in numTrailingObjects()
2172 return hasElseStorage(); in numTrailingObjects()
2211 bool hasElseStorage() const { return IfStmtBits.HasElse; } in hasElseStorage() function
2235 return hasElseStorage() ? getTrailingObjects<Stmt *>()[elseOffset()] in getElse()
2240 return hasElseStorage() ? getTrailingObjects<Stmt *>()[elseOffset()] in getElse()
2245 assert(hasElseStorage() && in setElse()
2306 return hasElseStorage() ? *getTrailingObjects<SourceLocation>() in getElseLoc()
2311 assert(hasElseStorage() && in setElseLoc()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DJSONNodeDumper.cpp1602 attributeOnlyIfTrue("hasElse", IS->hasElseStorage()); in VisitIfStmt()
H A DTextNodeDumper.cpp1049 if (Node->hasElseStorage()) in VisitIfStmt()