Home
last modified time | relevance | path

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

/frameworks/base/libs/hwui/
DDisplayList.h185 std::variant<EmptyList, std::unique_ptr<SkiaDisplayList>, CanvasOpBuffer> mImpls; variable
201 }, mImpls); in apply()
208 }, mImpls); in apply()
217 : mImpls(std::move(impl)) {} in MultiDisplayList()
219 explicit MultiDisplayList(CanvasOpBuffer&& opBuffer) : mImpls(std::move(opBuffer)) {} in MultiDisplayList()
222 MultiDisplayList(MultiDisplayList&& other) : mImpls(std::move(other.mImpls)) {} in MultiDisplayList()
224 mImpls = std::move(other.mImpls);
243 return mImpls.index() != 0; in isValid()
259 return std::get<1>(mImpls).get(); in asSkiaDl()
263 return std::get<1>(mImpls).get(); in asSkiaDl()
[all …]
/frameworks/base/core/java/android/window/
DSplashScreen.java206 private final ArrayList<SplashScreenImpl> mImpls = new ArrayList<>(); field in SplashScreen.SplashScreenManagerGlobal
226 mImpls.add(impl); in addImpl()
232 mImpls.remove(impl); in removeImpl()
238 for (SplashScreenImpl impl : mImpls) { in findImpl()