Lines Matching refs:move
40 : mImpl(std::move(impl)) {} in SkiaDisplayListWrapper()
43 SkiaDisplayListWrapper(SkiaDisplayListWrapper&& other) : mImpl(std::move(other.mImpl)) {} in SkiaDisplayListWrapper()
45 mImpl = std::move(other.mImpl);
54 mImpl->updateChildren(std::move(updateFn)); in updateChildren()
57 void visit(std::function<void(const RenderNode&)> func) const { mImpl->visit(std::move(func)); } in visit()
129 observer, info, functorsNeedLayer, std::move(childFn)); in prepareListAndChildren()
221 : mImpls(std::move(impl)) {} in MultiDisplayList()
223 explicit MultiDisplayList(CanvasOpBuffer&& opBuffer) : mImpls(std::move(opBuffer)) {} in MultiDisplayList()
226 MultiDisplayList(MultiDisplayList&& other) : mImpls(std::move(other.mImpls)) {} in MultiDisplayList()
228 mImpls = std::move(other.mImpls);
237 apply([&](auto& it) { it.updateChildren(std::move(updateFn)); }); in updateChildren()
304 return it.prepareListAndChildren(observer, info, functorsNeedLayer, std::move(childFn)); in prepareListAndChildren()