Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmt.h1936 return NumMandatoryStmtPtr + hasElseStorage() + hasVarStorage() + in numTrailingObjects()
1941 return hasElseStorage(); in numTrailingObjects()
1980 bool hasElseStorage() const { return IfStmtBits.HasElse; } in hasElseStorage() function
2004 return hasElseStorage() ? getTrailingObjects<Stmt *>()[elseOffset()] in getElse()
2009 return hasElseStorage() ? getTrailingObjects<Stmt *>()[elseOffset()] in getElse()
2014 assert(hasElseStorage() && in setElse()
2070 return hasElseStorage() ? *getTrailingObjects<SourceLocation>() in getElseLoc()
2075 assert(hasElseStorage() && in setElseLoc()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DJSONNodeDumper.cpp1439 attributeOnlyIfTrue("hasElse", IS->hasElseStorage()); in VisitIfStmt()
H A DTextNodeDumper.cpp908 if (Node->hasElseStorage()) in VisitIfStmt()