Home | History | Annotate | Download | only in base

Lines Matching refs:HashValue

40 class NET_EXPORT HashValue {
42 explicit HashValue(HashValueTag tag) : tag(tag) {}
43 HashValue() : tag(HASH_VALUE_SHA1) {}
51 bool Equals(const HashValue& other) const;
64 // Deserializes a HashValue from a string. On error, returns
65 // false and MAY change the contents of HashValue to contain invalid data.
68 // Serializes the HashValue to a string. If an invalid HashValue
85 typedef std::vector<HashValue> HashValueVector;
106 explicit HashValuesEqual(const HashValue& fingerprint) :
109 bool operator()(const HashValue& other) const {
113 const HashValue& fingerprint_;