Lines Matching refs:Value
268 struct Value { struct
269 Value() : type(UNKNOWN) {} in Value() function
271 Value(int32_t v) { in Value() function
276 Value(int64_t v) { in Value() argument
281 Value(float v) { in Value() argument
286 Value(double v) { in Value() function
291 Value(const std::string& v) { in Value() argument
296 Value(const std::vector<uint8_t>& v) { in Value() function
342 Value(const Value& from); argument
344 bool operator==(const Value& that) const;
345 bool operator!=(const Value& that) const;
347 bool operator<(const Value& that) const;
348 bool operator>(const Value& that) const;
349 bool operator>=(const Value& that) const;
350 Value operator-(const Value& that) const;
351 Value& operator+=(const Value& that);
352 Value& operator=(const Value& that); argument
360 FieldValue(const Field& field, const Value& value) : mField(field), mValue(value) { in FieldValue()
381 Value mValue;
394 bool isAttributionUidField(const Field& field, const Value& value);