• Home
  • Raw
  • Download

Lines Matching full:then

52 …_THEN_MISMATCH)  // [r"static assertion failed due to requirement '.+': \|then\| callback's parame…
54 // Calling Then() with a callback that can't receive the original
58 OnceCallback<void(float*)> then;
59 std::move(original).Then(std::move(then));
62 …T) // [r"fatal error: static assertion failed due to requirement '.+': \|then\| callback cannot a…
64 // Calling Then() with a callback that can't receive the original
68 OnceCallback<void(float)> then;
69 std::move(original).Then(std::move(then));
72 …M) // [r"fatal error: static assertion failed due to requirement '.+': \|then\| callback must acc…
74 // Calling Then() with a callback that can't receive the original
78 OnceCallback<void()> then;
79 std::move(original).Then(std::move(then));
82 …_THEN_MISMATCH) // [r"static assertion failed due to requirement '.+': \|then\| callback's parame…
84 // Calling Then() with a callback that can't receive the original
88 RepeatingCallback<void(float*)> then;
89 std::move(original).Then(std::move(then));
92 …T) // [r"fatal error: static assertion failed due to requirement '.+': \|then\| callback cannot a…
94 // Calling Then() with a callback that can't receive the original
98 RepeatingCallback<void(float)> then;
99 std::move(original).Then(std::move(then));
102 …M) // [r"fatal error: static assertion failed due to requirement '.+': \|then\| callback must acc…
104 // Calling Then() with a callback that can't receive the original
108 RepeatingCallback<void()> then;
109 std::move(original).Then(std::move(then));
112 …_THEN_MISMATCH) // [r"static assertion failed due to requirement '.+': \|then\| callback's parame…
114 // Calling Then() with a callback that can't receive the original
118 RepeatingCallback<void(float*)> then;
119 original.Then(then);
122 …T) // [r"fatal error: static assertion failed due to requirement '.+': \|then\| callback cannot a…
124 // Calling Then() with a callback that can't receive the original
128 RepeatingCallback<void(float)> then;
129 original.Then(then);
132 …M) // [r"fatal error: static assertion failed due to requirement '.+': \|then\| callback must acc…
134 // Calling Then() with a callback that can't receive the original
138 RepeatingCallback<void()> then;
139 original.Then(then);