Home
last modified time | relevance | path

Searched refs:mImpls (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/libs/hwui/
DDisplayList.h189 std::variant<EmptyList, std::unique_ptr<SkiaDisplayList>, CanvasOpBuffer> mImpls; variable
205 }, mImpls); in apply()
212 }, mImpls); in apply()
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);
247 return mImpls.index() != 0; in isValid()
263 return std::get<1>(mImpls).get(); in asSkiaDl()
267 return std::get<1>(mImpls).get(); in asSkiaDl()
[all …]
/frameworks/base/core/java/android/window/
DSplashScreen.java209 private final ArrayList<SplashScreenImpl> mImpls = new ArrayList<>(); field in SplashScreen.SplashScreenManagerGlobal
229 mImpls.add(impl); in addImpl()
235 mImpls.remove(impl); in removeImpl()
241 for (SplashScreenImpl impl : mImpls) { in findImpl()