Lines Matching refs:Value
282 struct Value { struct
283 Value() : type(UNKNOWN) {} in Value() function
285 Value(int32_t v) { in Value() function
290 Value(int64_t v) { in Value() argument
295 Value(float v) { in Value() function
300 Value(double v) { in Value() function
305 Value(const std::string& v) { in Value() argument
310 Value(const std::vector<uint8_t>& v) { in Value() function
358 Value(const Value& from); argument
360 bool operator==(const Value& that) const;
361 bool operator!=(const Value& that) const;
363 bool operator<(const Value& that) const;
364 bool operator>(const Value& that) const;
365 bool operator>=(const Value& that) const;
366 Value operator-(const Value& that) const;
367 Value& operator+=(const Value& that);
368 Value& operator=(const Value& that); argument
427 FieldValue(const Field& field, const Value& value) : mField(field), mValue(value) { in FieldValue()
456 Value mValue;
474 bool isAttributionUidField(const Field& field, const Value& value);