HomeSort by: relevance | last modified time | path
    Searched refs:HasElse (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
Stmt.cpp 913 bool HasElse = Else != nullptr;
916 IfStmtBits.HasElse = HasElse;
924 if (HasElse)
932 if (HasElse)
936 IfStmt::IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit)
938 IfStmtBits.HasElse = HasElse;
947 bool HasElse = Else != nullptr;
952 NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Stmt.h 167 unsigned HasElse : 1;
1958 explicit IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit);
1970 static IfStmt *CreateEmpty(const ASTContext &Ctx, bool HasElse, bool HasVar,
1980 bool hasElseStorage() const { return IfStmtBits.HasElse; }
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriterStmt.cpp 137 bool HasElse = S->getElse() != nullptr;
142 Record.push_back(HasElse);
148 if (HasElse)
158 if (HasElse)
ASTReaderStmt.cpp 217 bool HasElse = Record.readInt();
223 if (HasElse)
233 if (HasElse)
2735 /* HasElse=*/Record[ASTStmtReader::NumStmtFields + 1],

Completed in 23 milliseconds