Lines Matching refs:value
104 explicit AsUC16(uint16_t v) : value(v) {}
105 uint16_t value;
109 explicit AsUC32(int32_t v) : value(v) {}
110 int32_t value;
114 explicit AsReversiblyEscapedUC16(uint16_t v) : value(v) {}
115 uint16_t value;
119 explicit AsEscapedUC16ForJSON(uint16_t v) : value(v) {}
120 uint16_t value;
123 // Output the given value as hex, with a minimum width and optional prefix (0x).
125 // {min_width} and the value are 0.
128 : value(v), min_width(min_width), with_prefix(with_prefix) {}
129 uint64_t value;
138 // Output the given value as hex, separated in individual bytes.
141 // if both {min_bytes} and the value are 0.
146 : value(v), min_bytes(min_bytes), byte_order(byte_order) {}
147 uint64_t value;