Searched refs:MyFunction (Results 1 – 4 of 4) sorted by relevance
| /freebsd/contrib/googletest/googlemock/test/ |
| H A D | gmock-actions_test.cc | 1074 typedef void MyFunction(bool, int*, char*); in TEST() typedef 1075 Action<MyFunction> a = SetArgPointee<1>(2); in TEST() 1093 typedef void MyFunction(std::string*, const char**); in TEST() typedef 1094 Action<MyFunction> a = SetArgPointee<0>("hi"); in TEST() 1109 typedef void MyFunction(const wchar_t**); in TEST() typedef 1110 Action<MyFunction> a = SetArgPointee<0>(L"world"); in TEST() 1128 typedef void MyFunction(bool, std::string*, const char**); in TEST() typedef 1130 Action<MyFunction> a = SetArgPointee<1>(hi); in TEST() 1147 typedef void MyFunction(bool, const wchar_t**); in TEST() typedef 1149 Action<MyFunction> a = SetArgPointee<1>(hi); in TEST() [all …]
|
| H A D | gmock-more-actions_test.cc | 647 using MyFunction = void(bool, int*, char*); in TEST() typedef 649 Action<MyFunction> a = SetArrayArgument<1>(numbers, numbers + 3); in TEST() 683 using MyFunction = void(bool, int*); in TEST() typedef 685 Action<MyFunction> a = SetArrayArgument<1>(numbers, numbers); in TEST() 699 using MyFunction = void(bool, int*); in TEST() typedef 701 Action<MyFunction> a = SetArrayArgument<1>(chars, chars + 3); in TEST() 714 using MyFunction = void(bool, std::back_insert_iterator<std::string>); in TEST() typedef 716 Action<MyFunction> a = SetArrayArgument<1>(letters.begin(), letters.end()); in TEST()
|
| /freebsd/contrib/googletest/googletest/test/ |
| H A D | googletest-printers-test.cc | 755 void MyFunction(int /* n */) {} in MyFunction() function 763 reinterpret_cast<internal::BiggestInt>(&MyFunction))), in TEST() 764 Print(&MyFunction)); in TEST() 1427 void (*fp)(int n) = &MyFunction;
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Target/ |
| H A D | TargetInstrPredicate.td | 116 // MyFunction(MI->getOperand(Index).getImm()) == Val; 118 // In the example above, `MyFunction` is a function that takes as input an
|