Home | History | Annotate | Download | only in base

Lines Matching defs:base

16 #include "src/base/macros.h"
19 namespace base {
21 // base::hash is an implementation of the hash function object specified by
26 // base::hash is implemented by calling the hash_value function. The namespace
33 // simple function base::hash_combine to pass hash-relevant member variables
34 // into, in order to define a decent hash function. base::hash_combine is
46 // return base::hash_combine(p.x, p.y);
52 // base::hash<bar::Point> h;
149 return ::v8::base::hash_value(v); \
170 return ::v8::base::hash_value(v);
175 // base::bit_equal_to is a function object class for bitwise equality
179 // base::bit_hash is a function object class for bitwise hashing, similar to
180 // base::hash. It can be used together with base::bit_equal_to to implement a
224 } // namespace base