Home | History | Annotate | Download | only in base

Lines Matching refs:V8_INLINE

69 V8_INLINE size_t hash_combine() { return 0u; }
70 V8_INLINE size_t hash_combine(size_t seed) { return seed; }
73 V8_INLINE size_t hash_combine(T const& v, Ts const&... vs) {
79 V8_INLINE size_t hash_range(Iterator first, Iterator last) {
89 V8_INLINE size_t hash_value(type v) { return static_cast<size_t>(v); }
100 V8_INLINE size_t hash_value(signed type v) { \
110 V8_INLINE size_t hash_value(float v) {
115 V8_INLINE size_t hash_value(double v) {
121 V8_INLINE size_t hash_value(const T (&v)[N]) {
126 V8_INLINE size_t hash_value(T (&v)[N]) {
131 V8_INLINE size_t hash_value(T* const& v) {
136 V8_INLINE size_t hash_value(std::pair<T1, T2> const& v) {
143 V8_INLINE size_t operator()(T const& v) const { return hash_value(v); }
149 V8_INLINE size_t operator()(type const v) const { \
170 V8_INLINE size_t operator()(T* const v) const {
210 V8_INLINE bool operator()(type lhs, type rhs) const { \
216 V8_INLINE size_t operator()(type v) const { \