Searched defs:PolymorphicFunctor (Results 1 – 6 of 6) sorted by relevance
1078 struct PolymorphicFunctor { struct1079 typedef int result_type;1080 int operator()(int n) { return n; } in operator ()()1081 int operator()(const char* s) { return static_cast<int>(strlen(s)); } in operator ()()1082 std::string operator()(int* p) { return p ? "good ptr" : "null"; } in operator ()()
2133 TEST(FunctorActionTest, PolymorphicFunctor) { in TEST() argument
2085 TEST(FunctorActionTest, PolymorphicFunctor) { in TEST() argument