Lines Matching refs:value
56 uint32_t value;
58 #define I32_ENDIAN_HOST (o32_host_order.value)
66 // This function can be used by the gtest value printer.
77 const std::vector<uint32_t>& value() const { return value_; }
94 for (uint32_t value : words.value()) {
95 *os << "0x" << std::setw(8) << std::setfill('0') << std::hex << value
139 explicit AutoText(const std::string& value)
140 : str(value), text({str.data(), str.size()}) {}
146 // An example case for an enumerated value, optionally with operands.
153 // Returns the enum value as a uint32_t.
154 uint32_t value() const { return static_cast<uint32_t>(enum_value_); }