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

  /src/external/apache2/llvm/dist/clang/lib/AST/
Stmt.cpp 916 IfStmtBits.HasElse = HasElse;
917 IfStmtBits.HasVar = HasVar;
918 IfStmtBits.HasInit = HasInit;
938 IfStmtBits.HasElse = HasElse;
939 IfStmtBits.HasVar = HasVar;
940 IfStmtBits.HasInit = HasInit;
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Stmt.h 1009 IfStmtBitfields IfStmtBits;
1974 bool hasInitStorage() const { return IfStmtBits.HasInit; }
1977 bool hasVarStorage() const { return IfStmtBits.HasVar; }
1980 bool hasElseStorage() const { return IfStmtBits.HasElse; }
2066 SourceLocation getIfLoc() const { return IfStmtBits.IfLoc; }
2067 void setIfLoc(SourceLocation IfLoc) { IfStmtBits.IfLoc = IfLoc; }
2080 bool isConstexpr() const { return IfStmtBits.IsConstexpr; }
2081 void setConstexpr(bool C) { IfStmtBits.IsConstexpr = C; }

Completed in 37 milliseconds