Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h3872 assert(BinaryOperatorBits.HasFPFeatures); in getTrailingFPFeatures()
3877 assert(BinaryOperatorBits.HasFPFeatures); in getTrailingFPFeatures()
3890 BinaryOperatorBits.Opc = BO_Comma; in BinaryOperator()
3901 SourceLocation getOperatorLoc() const { return BinaryOperatorBits.OpLoc; } in getOperatorLoc()
3902 void setOperatorLoc(SourceLocation L) { BinaryOperatorBits.OpLoc = L; } in setOperatorLoc()
3905 return static_cast<Opcode>(BinaryOperatorBits.Opc); in getOpcode()
3907 void setOpcode(Opcode Opc) { BinaryOperatorBits.Opc = Opc; } in setOpcode()
4043 void setHasStoredFPFeatures(bool B) { BinaryOperatorBits.HasFPFeatures = B; } in setHasStoredFPFeatures()
4044 bool hasStoredFPFeatures() const { return BinaryOperatorBits.HasFPFeatures; } in hasStoredFPFeatures()
4053 assert(BinaryOperatorBits.HasFPFeatures); in setStoredFPFeatures()
[all …]
H A DStmt.h1230 BinaryOperatorBitfields BinaryOperatorBits;
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp3164 BitsUnpacker BinaryOperatorBits(Record[ASTStmtReader::NumExprFields]); in ReadStmtFromStream() local
3165 BinaryOperatorBits.advance(/*Size of opcode*/ 6); in ReadStmtFromStream()
3166 bool HasFPFeatures = BinaryOperatorBits.getNextBit(); in ReadStmtFromStream()
3172 BitsUnpacker BinaryOperatorBits(Record[ASTStmtReader::NumExprFields]); in ReadStmtFromStream() local
3173 BinaryOperatorBits.advance(/*Size of opcode*/ 6); in ReadStmtFromStream()
3174 bool HasFPFeatures = BinaryOperatorBits.getNextBit(); in ReadStmtFromStream()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp4767 BinaryOperatorBits.Opc = opc; in BinaryOperator()
4770 BinaryOperatorBits.OpLoc = opLoc; in BinaryOperator()
4773 BinaryOperatorBits.HasFPFeatures = FPFeatures.requiresTrailingStorage(); in BinaryOperator()
4784 BinaryOperatorBits.Opc = opc; in BinaryOperator()
4787 BinaryOperatorBits.OpLoc = opLoc; in BinaryOperator()
4790 BinaryOperatorBits.HasFPFeatures = FPFeatures.requiresTrailingStorage(); in BinaryOperator()