Searched defs:mDisplayList (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/libs/hwui/pipeline/skia/
H A DReorderBarrierDrawables.h51 SkiaDisplayList* mDisplayList; member in class:android::uirenderer::skiapipeline::StartReorderBarrierDrawable
H A DDumpOpsCanvas.h35 , mDisplayList(displayList)
157 for (auto& child : mDisplayList.mChildNodes) {
166 for (auto& child : mDisplayList.mChildFunctors) {
176 SkiaDisplayList& mDisplayList; member in class:android::uirenderer::skiapipeline::DumpOpsCanvas
H A DSkiaRecordingCanvas.h80 std::unique_ptr<SkiaDisplayList> mDisplayList; member in class:android::uirenderer::skiapipeline::SkiaRecordingCanvas
H A DSkiaDisplayList.h50 mDisplayList.reset();
76 bool isEmpty() const override { return mDisplayList.empty(); }
132 recorder->reset(&mDisplayList, bounds);
135 void draw(SkCanvas* canvas) { mDisplayList.draw(canvas); }
141 * elements and (2) mDisplayList holds pointers to the elements, so they
149 SkLiteDL mDisplayList; member in class:android::uirenderer::skiapipeline::SkiaDisplayList
/frameworks/base/libs/hwui/
H A DRecordingCanvas.h211 LinearAllocator& alloc() { return mDisplayList->allocator; }
219 T* dstBuffer = (T*)mDisplayList->allocator.alloc<T>(count * sizeof(T));
230 mDisplayList->pathResources.push_back(cachedPath);
257 mDisplayList->paints.emplace_back(cachedPaint);
276 mDisplayList->regions.push_back(std::move(copy));
294 mDisplayList->bitmapResources.emplace_back(&bitmap);
299 mDisplayList->patchResources.push_back(patch);
313 DisplayList* mDisplayList = nullptr; member in class:android::uirenderer::RecordingCanvas
H A DRenderNode.h113 bool isRenderable() const { return mDisplayList && !mDisplayList->isEmpty(); }
116 return mDisplayList && mDisplayList->projectionReceiveIndex >= 0;
175 return mDisplayList == nullptr || properties().getAlpha() <= 0 ||
180 const DisplayList* getDisplayList() const { return mDisplayList; }
253 DisplayList* mDisplayList; member in class:android::uirenderer::RenderNode
275 // mDisplayList, not mStagingDisplayList.
/frameworks/base/core/java/com/android/internal/app/
H A DResolverActivity.java1323 List<DisplayResolveInfo> mDisplayList; field in class:ResolverActivity.ResolveListAdapter
1338 mDisplayList = new ArrayList<>();
1361 return mDisplayList.get(mLastChosenPosition);
1405 mDisplayList.clear();
1688 mLastChosenPosition = mDisplayList.size() - 1;
1698 for (DisplayResolveInfo existingInfo : mDisplayList) {
1703 mDisplayList.add(dri);
1721 if (mDisplayList.size() > position) {
1722 return mDisplayList.get(position);
1728 int totalSize = mDisplayList
[all...]

Completed in 63 milliseconds