Searched refs:Value_ (Results 1 – 2 of 2) sorted by relevance
52 SaturatingUINT64(uint64_t Value_) : Value(Value_) {} in SaturatingUINT64()55 void operator+=(uint64_t Value_) { in operator +=()57 if (Value < OverflowValue - Value_) in operator +=()58 Value += Value_; in operator +=()
2348 BoolExpr(bool Value_) : Node(KBoolExpr), Value(Value_) {} in BoolExpr() argument2416 IntegerLiteral(std::string_view Type_, std::string_view Value_) in IntegerLiteral() argument2417 : Node(KIntegerLiteral), Type(Type_), Value(Value_) {} in IntegerLiteral()