Searched refs:IfStmtBits (Results 1 – 3 of 3) sorted by relevance
931 IfStmtBits.HasElse = HasElse; in IfStmt()932 IfStmtBits.HasVar = HasVar; in IfStmt()933 IfStmtBits.HasInit = HasInit; in IfStmt()953 IfStmtBits.HasElse = HasElse; in IfStmt()954 IfStmtBits.HasVar = HasVar; in IfStmt()955 IfStmtBits.HasInit = HasInit; in IfStmt()
1205 IfStmtBitfields IfStmtBits;2212 bool hasInitStorage() const { return IfStmtBits.HasInit; }2215 bool hasVarStorage() const { return IfStmtBits.HasVar; }2218 bool hasElseStorage() const { return IfStmtBits.HasElse; }2309 SourceLocation getIfLoc() const { return IfStmtBits.IfLoc; }2310 void setIfLoc(SourceLocation IfLoc) { IfStmtBits.IfLoc = IfLoc; }2341 IfStmtBits.Kind = static_cast<unsigned>(Kind);2345 return static_cast<IfStatementKind>(IfStmtBits.Kind);
2963 BitsUnpacker IfStmtBits(Record[ASTStmtReader::NumStmtFields]); in ReadStmtFromStream() local2964 bool HasElse = IfStmtBits.getNextBit(); in ReadStmtFromStream()2965 bool HasVar = IfStmtBits.getNextBit(); in ReadStmtFromStream()2966 bool HasInit = IfStmtBits.getNextBit(); in ReadStmtFromStream()