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 | 618 using MyFunction = void(bool, int*, char*); in TEST() typedef 620 Action<MyFunction> a = SetArrayArgument<1>(numbers, numbers + 3); in TEST() 654 using MyFunction = void(bool, int*); in TEST() typedef 656 Action<MyFunction> a = SetArrayArgument<1>(numbers, numbers); in TEST() 670 using MyFunction = void(bool, int*); in TEST() typedef 672 Action<MyFunction> a = SetArrayArgument<1>(chars, chars + 3); in TEST() 685 using MyFunction = void(bool, std::back_insert_iterator<std::string>); in TEST() typedef 687 Action<MyFunction> a = SetArrayArgument<1>(letters.begin(), letters.end()); in TEST()
|
/freebsd/contrib/googletest/googletest/test/ |
H A D | googletest-printers-test.cc | 745 void MyFunction(int /* n */) {} in MyFunction() function 753 reinterpret_cast<internal::BiggestInt>(&MyFunction))), in TEST() 754 Print(&MyFunction)); in TEST() 1417 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
|