Home
last modified time | relevance | path

Searched refs:UnaryOperatorBits (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h2246 assert(UnaryOperatorBits.HasFPFeatures); in getTrailingFPFeatures()
2251 assert(UnaryOperatorBits.HasFPFeatures); in getTrailingFPFeatures()
2266 UnaryOperatorBits.Opc = UO_AddrOf; in UnaryOperator()
2267 UnaryOperatorBits.HasFPFeatures = HasFPFeatures; in UnaryOperator()
2279 return static_cast<Opcode>(UnaryOperatorBits.Opc); in getOpcode()
2281 void setOpcode(Opcode Opc) { UnaryOperatorBits.Opc = Opc; } in setOpcode()
2287 SourceLocation getOperatorLoc() const { return UnaryOperatorBits.Loc; } in getOperatorLoc()
2288 void setOperatorLoc(SourceLocation L) { UnaryOperatorBits.Loc = L; } in setOperatorLoc()
2296 bool canOverflow() const { return UnaryOperatorBits.CanOverflow; } in canOverflow()
2297 void setCanOverflow(bool C) { UnaryOperatorBits.CanOverflow = C; } in setCanOverflow()
[all …]
H A DStmt.h1341 UnaryOperatorBitfields UnaryOperatorBits;
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp4943 UnaryOperatorBits.Opc = opc; in UnaryOperator()
4944 UnaryOperatorBits.CanOverflow = CanOverflow; in UnaryOperator()
4945 UnaryOperatorBits.Loc = l; in UnaryOperator()
4946 UnaryOperatorBits.HasFPFeatures = FPFeatures.requiresTrailingStorage(); in UnaryOperator()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp3226 BitsUnpacker UnaryOperatorBits(Record[ASTStmtReader::NumStmtFields]); in ReadStmtFromStream() local
3227 UnaryOperatorBits.advance(ASTStmtReader::NumExprBits); in ReadStmtFromStream()
3228 bool HasFPFeatures = UnaryOperatorBits.getNextBit(); in ReadStmtFromStream()