Lines Matching refs:Impl
61 ::v8::base::Check##name##Impl<decltype(lhs), decltype(rhs)>( \
76 ::v8::base::Cmp##name##Impl<decltype(lhs), decltype(rhs)>(lhs, rhs); \
91 // Build the error message string. This is separate from the "Impl"
93 // be out of line, while the "Impl" code should be inline. Caller
137 #define DEFINE_SIGNED_MISMATCH_COMP(CHECK, NAME, IMPL) \
140 Cmp##NAME##Impl(Lhs const& lhs, Rhs const& rhs) { \
141 return IMPL; \
164 // The Cmp##NAME##Impl function is only instantiable if one of the two types is
174 Cmp##NAME##Impl(typename PassType<Lhs>::type lhs, \
179 V8_INLINE std::string* Check##NAME##Impl(typename PassType<Lhs>::type lhs, \
182 bool cmp = Cmp##NAME##Impl<Lhs, Rhs>(lhs, rhs); \
186 extern template V8_BASE_EXPORT std::string* Check##NAME##Impl<float, float>( \
189 Check##NAME##Impl<double, double>(double lhs, double rhs, \