Searched refs:UnaryOperatorBits (Results 1 – 4 of 4) sorted by relevance
2192 return UnaryOperatorBits.HasFPFeatures ? 1 : 0; in numTrailingObjects()2196 assert(UnaryOperatorBits.HasFPFeatures); in getTrailingFPFeatures()2201 assert(UnaryOperatorBits.HasFPFeatures); in getTrailingFPFeatures()2216 UnaryOperatorBits.Opc = UO_AddrOf; in UnaryOperator()2217 UnaryOperatorBits.HasFPFeatures = HasFPFeatures; in UnaryOperator()2229 return static_cast<Opcode>(UnaryOperatorBits.Opc); in getOpcode()2231 void setOpcode(Opcode Opc) { UnaryOperatorBits.Opc = Opc; } in setOpcode()2237 SourceLocation getOperatorLoc() const { return UnaryOperatorBits.Loc; } in getOperatorLoc()2238 void setOperatorLoc(SourceLocation L) { UnaryOperatorBits.Loc = L; } in setOperatorLoc()2246 bool canOverflow() const { return UnaryOperatorBits.CanOverflow; } in canOverflow()[all …]
1224 UnaryOperatorBitfields UnaryOperatorBits; in alignas() member
4852 UnaryOperatorBits.Opc = opc; in UnaryOperator()4853 UnaryOperatorBits.CanOverflow = CanOverflow; in UnaryOperator()4854 UnaryOperatorBits.Loc = l; in UnaryOperator()4855 UnaryOperatorBits.HasFPFeatures = FPFeatures.requiresTrailingStorage(); in UnaryOperator()
3099 BitsUnpacker UnaryOperatorBits(Record[ASTStmtReader::NumStmtFields]); in ReadStmtFromStream() local3100 UnaryOperatorBits.advance(ASTStmtReader::NumExprBits); in ReadStmtFromStream()3101 bool HasFPFeatures = UnaryOperatorBits.getNextBit(); in ReadStmtFromStream()