Lines Matching defs:that
4 * Use of this source code is governed by a BSD-style license that can be
29 // This test verifies that lazy proxy callbacks get invoked during flush, after onFlush callbacks,
30 // but before Ops are executed. It also ensures that lazy proxy callbacks are invoked both for
267 TestCallback(const TestCallback& that) { SkASSERT(0); }
268 TestCallback(TestCallback&& that)
269 : fValue(that.fValue)
270 , fReleaseCallback(that.fReleaseCallback)
271 , fTexture(std::move(that.fTexture)) {
272 that.fValue = nullptr;
277 TestCallback& operator=(TestCallback&& that) {
278 fValue = std::exchange(that.fValue, nullptr);
281 TestCallback& operator=(const TestCallback& that) = delete;
401 // Test that when a lazy proxy fails to instantiate during flush that we drop the Op that it was