Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DStmt.h1981 return NumMandatoryStmtPtr + hasElseStorage() + hasVarStorage() + in numTrailingObjects()
1986 return hasElseStorage(); in numTrailingObjects()
2025 bool hasElseStorage() const { return IfStmtBits.HasElse; } in hasElseStorage() function
2049 return hasElseStorage() ? getTrailingObjects<Stmt *>()[elseOffset()] in getElse()
2054 return hasElseStorage() ? getTrailingObjects<Stmt *>()[elseOffset()] in getElse()
2059 assert(hasElseStorage() && in setElse()
2115 return hasElseStorage() ? *getTrailingObjects<SourceLocation>() in getElseLoc()
2120 assert(hasElseStorage() && in setElseLoc()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DJSONNodeDumper.cpp1529 attributeOnlyIfTrue("hasElse", IS->hasElseStorage()); in VisitIfStmt()
H A DTextNodeDumper.cpp956 if (Node->hasElseStorage()) in VisitIfStmt()