Searched defs:PolymorphicFunctor (Results 1 – 4 of 4) sorted by relevance
1068 struct PolymorphicFunctor { struct1069 typedef int result_type;1070 int operator()(int n) { return n; } in operator ()()1071 int operator()(const char* s) { return static_cast<int>(strlen(s)); } in operator ()()1072 std::string operator()(int* p) { return p ? "good ptr" : "null"; } in operator ()()
2088 TEST(FunctorActionTest, PolymorphicFunctor) { in TEST() argument
4535 struct PolymorphicFunctor { struct4536 typedef int result_type;4537 int operator()(int n) { return n; } in operator ()()4538 int operator()(const char* s) { return static_cast<int>(strlen(s)); } in operator ()()4539 std::string operator()(int *p) { return p ? "good ptr" : "null"; } in operator ()()
1406 TEST(FunctorActionTest, PolymorphicFunctor) { in TEST() argument