Home | History | Annotate | Download | only in gin

Lines Matching refs:Invoker

90 struct Invoker {
102 struct Invoker<void, P1, P2, P3, P4> {
115 struct Invoker<R, P1, P2, P3, void> {
126 struct Invoker<void, P1, P2, P3, void> {
138 struct Invoker<R, P1, P2, void, void> {
148 struct Invoker<void, P1, P2, void, void> {
159 struct Invoker<R, P1, void, void, void> {
168 struct Invoker<void, P1, void, void, void> {
178 struct Invoker<R, void, void, void, void> {
186 struct Invoker<void, void, void, void, void> {
231 Invoker<R>::Go(&args, holder->callback);
252 Invoker<R, P1>::Go(&args, holder->callback, a1);
275 Invoker<R, P1, P2>::Go(&args, holder->callback, a1, a2);
300 Invoker<R, P1, P2, P3>::Go(&args, holder->callback, a1, a2, a3);
327 Invoker<R, P1, P2, P3, P4>::Go(&args, holder->callback, a1, a2, a3, a4);