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