/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
D | BindGroup.cpp | 339 mLayout(descriptor->layout), in BindGroupBase() 340 mBindingData(mLayout->ComputeBindingDataPointers(bindingDataStart)) { in BindGroupBase() 341 for (BindingIndex i{0}; i < mLayout->GetBindingCount(); ++i) { in BindGroupBase() 352 ASSERT(bindingIndex < mLayout->GetBindingCount()); in BindGroupBase() 409 if (mLayout != nullptr) { in DestroyImpl() 411 for (BindingIndex i{0}; i < mLayout->GetBindingCount(); ++i) { in DestroyImpl() 421 Ref<BindGroupLayoutBase> layout = mLayout; in DeleteThis() 440 return mLayout.Get(); in GetLayout() 445 return mLayout.Get(); in GetLayout() 455 ASSERT(bindingIndex < mLayout->GetBindingCount()); in GetBindingAsBufferBinding() [all …]
|
D | Pipeline.cpp | 109 : ApiObjectBase(device, label), mLayout(layout) { in PipelineBase() 160 return mLayout.Get(); in GetLayout() 165 return mLayout.Get(); in GetLayout() 189 DAWN_TRY(GetDevice()->ValidateObject(mLayout.Get())); in ValidateGetBindGroupLayout() 202 if (!mLayout->GetBindGroupLayoutsMask()[groupIndex]) { in GetBindGroupLayout() 205 return Ref<BindGroupLayoutBase>(mLayout->GetBindGroupLayout(groupIndex)); in GetBindGroupLayout() 221 recorder.Record(mLayout->GetContentHash()); in ComputeContentHash() 235 if (a->mLayout.Get() != b->mLayout.Get() || a->mStageMask != b->mStageMask) { in EqualForCache()
|
D | BindGroup.h | 86 Ref<BindGroupLayoutBase> mLayout; variable
|
D | Pipeline.h | 92 Ref<PipelineLayoutBase> mLayout; variable
|
/third_party/flutter/skia/platform_tools/android/apps/viewer/src/main/java/org/skia/viewer/ |
D | StateAdapter.java | 45 private LinearLayout mLayout; field in StateAdapter 61 if (mLayout != null) { in setState() 91 if (mLayout == null) { in getView() 92 mLayout = new LinearLayout(mViewerActivity); in getView() 93 mLayout.setOrientation(LinearLayout.VERTICAL); in getView() 96 return mLayout; in getView() 169 if (mStateJson.length() < mLayout.getChildCount()) { in updateDrawer() 170 mLayout.removeViews( in updateDrawer() 171 mStateJson.length(), mLayout.getChildCount() - mStateJson.length()); in updateDrawer() 175 View childView = mLayout.getChildAt(i); in updateDrawer() [all …]
|
/third_party/skia/platform_tools/android/apps/viewer/src/main/java/org/skia/viewer/ |
D | StateAdapter.java | 45 private LinearLayout mLayout; field in StateAdapter 61 if (mLayout != null) { in setState() 91 if (mLayout == null) { in getView() 92 mLayout = new LinearLayout(mViewerActivity); in getView() 93 mLayout.setOrientation(LinearLayout.VERTICAL); in getView() 96 return mLayout; in getView() 169 if (mStateJson.length() < mLayout.getChildCount()) { in updateDrawer() 170 mLayout.removeViews( in updateDrawer() 171 mStateJson.length(), mLayout.getChildCount() - mStateJson.length()); in updateDrawer() 175 View childView = mLayout.getChildAt(i); in updateDrawer() [all …]
|
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/ |
D | BindGroup.cpp | 162 : ObjectBase(device), mLayout(descriptor->layout) { in BindGroupBase() 207 return mLayout.Get(); in GetLayout() 213 ASSERT(mLayout->GetBindingInfo().mask[binding]); in GetBindingAsBufferBinding() 214 ASSERT(mLayout->GetBindingInfo().types[binding] == dawn::BindingType::UniformBuffer || in GetBindingAsBufferBinding() 215 mLayout->GetBindingInfo().types[binding] == dawn::BindingType::StorageBuffer); in GetBindingAsBufferBinding() 223 ASSERT(mLayout->GetBindingInfo().mask[binding]); in GetBindingAsSampler() 224 ASSERT(mLayout->GetBindingInfo().types[binding] == dawn::BindingType::Sampler); in GetBindingAsSampler() 231 ASSERT(mLayout->GetBindingInfo().mask[binding]); in GetBindingAsTextureView() 232 ASSERT(mLayout->GetBindingInfo().types[binding] == dawn::BindingType::SampledTexture); in GetBindingAsTextureView()
|
D | Pipeline.cpp | 46 : ObjectBase(device), mStageMask(stages), mLayout(layout) { in PipelineBase() 60 return mLayout.Get(); in GetLayout() 65 return mLayout.Get(); in GetLayout()
|
D | Pipeline.h | 48 Ref<PipelineLayoutBase> mLayout; variable
|
D | BindGroup.h | 55 Ref<BindGroupLayoutBase> mLayout; variable
|
/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/plugin/editing/ |
D | InputConnectionAdaptor.java | 32 private final Layout mLayout; field in InputConnectionAdaptor 49 …mLayout = new DynamicLayout(mEditable, new TextPaint(), Integer.MAX_VALUE, Layout.Alignment.ALIGN_… in InputConnectionAdaptor() 170 boolean isRtl = mLayout.isRtlCharAt(mLayout.getLineForOffset(selStart)); in sendKeyEvent() 173 Selection.extendRight(mEditable, mLayout); in sendKeyEvent() 175 Selection.extendLeft(mEditable, mLayout); in sendKeyEvent()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
D | DescriptorSetAllocator.cpp | 37 : ObjectBase(layout->GetDevice()), mLayout(layout) { in DescriptorSetAllocator() 154 std::vector<VkDescriptorSetLayout> layouts(mMaxSets, mLayout->GetHandle()); in AllocateDescriptorPool()
|
D | DescriptorSetAllocator.h | 52 BindGroupLayout* mLayout; variable
|
/third_party/flutter/skia/third_party/externals/sdl/android-project/src/org/libsdl/app/ |
D | SDLActivity.java | 54 protected static ViewGroup mLayout; field in SDLActivity 106 mLayout = null; in initialize() 176 mLayout = new RelativeLayout(this); in onCreate() 177 mLayout.addView(mSurface); in onCreate() 179 setContentView(mLayout); in onCreate() 519 mLayout.addView(mTextEdit, params); in run()
|