Searched refs:ComparisonHelper (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/ppapi/tests/
H A Dtest_case.h354 // ComparisonHelper classes wrap the left-hand parameter of a binary comparison
357 // For all other parameters, we use ComparisonHelper. There's also a
358 // specialization of ComparisonHelper for int below (see below for why
361 // ComparisonHelper does two things for the left param:
365 struct ComparisonHelper { struct in namespace:internal
366 explicit ComparisonHelper(const T& param) : value(param) {} function in struct:internal::ComparisonHelper
444 struct ComparisonHelper<int> { struct in namespace:internal
445 explicit ComparisonHelper(int param) : value(param) {} function in struct:internal::ComparisonHelper
481 static ComparisonHelper<T> WrapValue(const T& value) {
482 return ComparisonHelper<
[all...]

Completed in 151 milliseconds