Lines Matching refs:class

54 class FunctionMockerBase;
56 // Note: class FunctionMocker really belongs to the ::testing
59 // friend class template. To workaround this compiler bug, we define
62 class FunctionMocker;
65 class FunctionMocker<R()> : public
77 // by the C++ standard [14.6.4] here, as the base class type is
85 class FunctionMocker<R(A1)> : public
98 // by the C++ standard [14.6.4] here, as the base class type is
106 class FunctionMocker<R(A1, A2)> : public
119 // by the C++ standard [14.6.4] here, as the base class type is
127 class FunctionMocker<R(A1, A2, A3)> : public
141 // by the C++ standard [14.6.4] here, as the base class type is
149 class FunctionMocker<R(A1, A2, A3, A4)> : public
163 // by the C++ standard [14.6.4] here, as the base class type is
172 class FunctionMocker<R(A1, A2, A3, A4, A5)> : public
186 // by the C++ standard [14.6.4] here, as the base class type is
195 class FunctionMocker<R(A1, A2, A3, A4, A5, A6)> : public
211 // by the C++ standard [14.6.4] here, as the base class type is
220 class FunctionMocker<R(A1, A2, A3, A4, A5, A6, A7)> : public
236 // by the C++ standard [14.6.4] here, as the base class type is
245 class FunctionMocker<R(A1, A2, A3, A4, A5, A6, A7, A8)> : public
261 // by the C++ standard [14.6.4] here, as the base class type is
270 class FunctionMocker<R(A1, A2, A3, A4, A5, A6, A7, A8, A9)> : public
287 // by the C++ standard [14.6.4] here, as the base class type is
297 class FunctionMocker<R(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10)> : public
315 // by the C++ standard [14.6.4] here, as the base class type is
326 // inside a header file. However, the FunctionMocker class template
826 // A MockFunction<F> class has one mock method whose type is F. It is
873 class MockFunction;
876 class MockFunction<R()> {
895 class MockFunction<R(A0)> {
914 class MockFunction<R(A0, A1)> {
933 class MockFunction<R(A0, A1, A2)> {
952 class MockFunction<R(A0, A1, A2, A3)> {
972 class MockFunction<R(A0, A1, A2, A3, A4)> {
992 class MockFunction<R(A0, A1, A2, A3, A4, A5)> {
1012 class MockFunction<R(A0, A1, A2, A3, A4, A5, A6)> {
1032 class MockFunction<R(A0, A1, A2, A3, A4, A5, A6, A7)> {
1052 class MockFunction<R(A0, A1, A2, A3, A4, A5, A6, A7, A8)> {
1074 class MockFunction<R(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9)> {