Lines Matching refs:argument
13 | `ReturnArg<N>()` | Return the `N`-th (0-based) argument. |
26 | `DeleteArg<N>()` | Delete the `N`-th (0-based) argument, which must be a pointer. |
27 | `SaveArg<N>(pointer)` | Save the `N`-th (0-based) argument to `*pointer`. |
28 | `SaveArgPointee<N>(pointer)` | Save the value pointed to by the `N`-th (0-based) argument to `*po…
29 …gReferee<N>(value)` | Assign `value` to the variable referenced by the `N`-th (0-based) argument. |
30 …tArgPointee<N>(value)` | Assign `value` to the variable pointed by the `N`-th (0-based) argument. |
32 …range [`first`, `last`) to the array pointed to by the `N`-th (0-based) argument, which can be eit…
48 | `InvokeArgument<N>(arg1, arg2, ..., argk)` | Invoke the mock function's `N`-th (0-based) argument…
75 In `InvokeArgument<N>(...)`, if an argument needs to be passed by reference,
84 calls the mock function's #2 argument, passing to it `5` and `string("Hi")` by
103 | `WithArg<N>(a)` | Pass the `N`-th (0-based) argument of the mock function to actio…
111 …arg1; }` | Defines an action `Sum()` to return the sum of the mock function's argument #0 and #1. |
112 …n; }` | Defines an action `Plus(n)` to return the sum of the mock function's argument #0 and `n`. |