Home
last modified time | relevance | path

Searched refs:view (Results 351 - 375 of 980) sorted by relevance

1...<<11121314151617181920>>...40

/foundation/arkui/ui_lite/test/uitest/test_picker/
H A Dui_test_ui_picker.h42 bool OnClick(UIView& view, const ClickEvent& event) override;
52 void SetLastPos(UIView* view);
/foundation/arkui/ui_lite/test/uitest/test_dialog/
H A Dui_test_dialog.h37 bool OnClick(UIView &view, const ClickEvent& event) override;
38 bool ClickExpand(UIView &view, const ClickEvent& event);
/third_party/mesa3d/src/hgl/
H A DGLRenderer.cpp12 BGLRenderer::BGLRenderer(BGLView* view, ulong glOptions) in BGLRenderer() argument
15 fView(view), in BGLRenderer()
/third_party/mesa3d/src/gallium/auxiliary/driver_trace/
H A Dtr_dump_state.h69 void trace_dump_sampler_view_template(const struct pipe_sampler_view *view);
101 void trace_dump_image_view(const struct pipe_image_view *view);
/third_party/skia/src/gpu/
H A DGrDstProxyView.h50 void setProxyView(GrSurfaceProxyView view) { in setProxyView() argument
51 fProxyView = std::move(view); in setProxyView()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/sample/sfview/
H A DSFView.java25 SFFontView view = new SFFontView(font); in main()
26 JScrollPane sp = new JScrollPane(view); in main()
/third_party/skia/platform_tools/android/apps/AndroidKit/src/main/java/org/skia/androidkit/util/
H A DSurfaceRenderer.java11 import android.view.SurfaceHolder;
21 private android.view.Surface mAndroidSurface;
/third_party/skia/platform_tools/android/apps/androidkitdemo/src/main/java/org/skia/androidkitdemo1/
H A DSkottieAnimationActivity.java14 import android.view.SurfaceHolder;
15 import android.view.SurfaceView;
H A DRuntimeShaderActivity.java13 import android.view.SurfaceHolder;
14 import android.view.SurfaceView;
/third_party/mesa3d/src/gallium/drivers/r600/
H A Dr600_state.c628 texture_buffer_sampler_view(struct r600_pipe_sampler_view *view, in texture_buffer_sampler_view() argument
632 struct r600_texture *tmp = (struct r600_texture*)view->base.texture; in texture_buffer_sampler_view()
633 int stride = util_format_get_blocksize(view->base.format); in texture_buffer_sampler_view()
635 uint64_t offset = view->base.u.buf.offset; in texture_buffer_sampler_view()
636 unsigned size = view->base.u.buf.size; in texture_buffer_sampler_view()
638 r600_vertex_data_type(view->base.format, in texture_buffer_sampler_view()
642 view->tex_resource = &tmp->resource; in texture_buffer_sampler_view()
643 view->skip_mip_address_reloc = true; in texture_buffer_sampler_view()
645 view->tex_resource_words[0] = offset; in texture_buffer_sampler_view()
646 view in texture_buffer_sampler_view()
671 struct r600_pipe_sampler_view *view = CALLOC_STRUCT(r600_pipe_sampler_view); r600_create_sampler_view_custom() local
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/
H A Di915_vma.c116 const struct i915_gtt_view *view) in vma_create()
148 if (view && view->type != I915_GTT_VIEW_NORMAL) { in vma_create()
149 vma->gtt_view = *view; in vma_create()
150 if (view->type == I915_GTT_VIEW_PARTIAL) { in vma_create()
152 view->partial.offset, in vma_create()
153 view->partial.size, in vma_create()
155 vma->size = view->partial.size; in vma_create()
158 } else if (view->type == I915_GTT_VIEW_ROTATED) { in vma_create()
159 vma->size = intel_rotation_info_size(&view in vma_create()
114 vma_create(struct drm_i915_gem_object *obj, struct i915_address_space *vm, const struct i915_gtt_view *view) vma_create() argument
253 i915_vma_lookup(struct drm_i915_gem_object *obj, struct i915_address_space *vm, const struct i915_gtt_view *view) i915_vma_lookup() argument
291 i915_vma_instance(struct drm_i915_gem_object *obj, struct i915_address_space *vm, const struct i915_gtt_view *view) i915_vma_instance() argument
1236 intel_partial_pages(const struct i915_gtt_view *view, struct drm_i915_gem_object *obj) intel_partial_pages() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/r300/
H A Dr300_state.c1568 struct pipe_sampler_view *view = views[i]; in r300_set_sampler_views() local
1569 pipe_sampler_view_reference(&view, NULL); in r300_set_sampler_views()
1596 /* A new sampler view (= texture)... */ in r300_set_sampler_views()
1635 struct r300_sampler_view *view = CALLOC_STRUCT(r300_sampler_view); in r300_create_sampler_view_custom() local
1640 if (view) { in r300_create_sampler_view_custom()
1643 view->base = *templ; in r300_create_sampler_view_custom()
1644 view->base.reference.count = 1; in r300_create_sampler_view_custom()
1645 view->base.context = pipe; in r300_create_sampler_view_custom()
1646 view->base.texture = NULL; in r300_create_sampler_view_custom()
1647 pipe_resource_reference(&view in r300_create_sampler_view_custom()
1692 r300_sampler_view_destroy(struct pipe_context *pipe, struct pipe_sampler_view *view) r300_sampler_view_destroy() argument
[all...]
/foundation/arkui/ui_lite/frameworks/components/
H A Dui_view.cpp436 UIView* view = this; in Invalidate() local
437 while (view != nullptr) { in Invalidate()
438 if (view->transMap_ != nullptr && !view->GetTransformMap().IsInvalid() && view != this) { in Invalidate()
439 InvalidateRect(view->GetRect(), view); in Invalidate()
442 view = view->parent_; in Invalidate()
447 void UIView::InvalidateRect(const Rect& invalidatedArea, UIView* view) in InvalidateRect() argument
[all...]
H A Dui_image_animator.cpp38 void UIImageAnimatorView::ImageAnimatorCallback::Callback(UIView* view) in Callback() argument
40 if (view == nullptr) { in Callback()
43 UIImageAnimatorView* imageAnimatorView = static_cast<UIImageAnimatorView*>(view); in Callback()
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DCommandEncoder.cpp168 const TextureViewBase* attachment = colorAttachment.view; in ValidateResolveTarget()
220 TextureViewBase* attachment = colorAttachment.view; in ValidateRenderPassColorAttachment()
260 TextureViewBase* attachment = depthStencilAttachment->view; in ValidateRenderPassDepthStencilAttachment()
457 Aspect aspects = depthStencilAttachment->view->GetAspects(); in IsReadOnlyDepthStencilAttachment()
571 TextureViewBase* view = descriptor->colorAttachments[i].view; in APIBeginRenderPass()
574 cmd->colorAttachments[index].view = view; in APIBeginRenderPass()
581 usageTracker.TextureViewUsedAs(view, wgpu::TextureUsage::RenderAttachment); in APIBeginRenderPass()
590 TextureViewBase* view in APIBeginRenderPass()
[all...]
/third_party/skia/src/effects/imagefilters/
H A DSkLightingImageFilter.cpp480 GrSurfaceProxyView inputView = input->view(rContext); in filterImageGPU()
658 static std::unique_ptr<GrFragmentProcessor> Make(GrSurfaceProxyView view, in Make() argument
666 return std::unique_ptr<GrFragmentProcessor>(new DiffuseLightingEffect(std::move(view), in Make()
689 DiffuseLightingEffect(GrSurfaceProxyView view,
708 static std::unique_ptr<GrFragmentProcessor> Make(GrSurfaceProxyView view, in Make() argument
717 return std::unique_ptr<GrFragmentProcessor>(new SpecularLightingEffect(std::move(view), in Make()
1334 GrSurfaceProxyView view, in makeFragmentProcessor()
1340 return DiffuseLightingEffect::Make(std::move(view), in makeFragmentProcessor()
1476 GrSurfaceProxyView view, in makeFragmentProcessor()
1482 return SpecularLightingEffect::Make(std::move(view), in makeFragmentProcessor()
1333 makeFragmentProcessor( GrSurfaceProxyView view, const SkMatrix& matrix, const SkIRect* srcBounds, BoundaryMode boundaryMode, const GrCaps& caps) const makeFragmentProcessor() argument
1475 makeFragmentProcessor( GrSurfaceProxyView view, const SkMatrix& matrix, const SkIRect* srcBounds, BoundaryMode boundaryMode, const GrCaps& caps) const makeFragmentProcessor() argument
1632 LightingEffect(ClassID classID, GrSurfaceProxyView view, sk_sp<const SkImageFilterLight> light, SkScalar surfaceScale, const SkMatrix& matrix, BoundaryMode boundaryMode, const SkIRect* srcBounds, const GrCaps& caps) LightingEffect() argument
1676 DiffuseLightingEffect(GrSurfaceProxyView view, sk_sp<const SkImageFilterLight> light, SkScalar surfaceScale, const SkMatrix& matrix, SkScalar kd, BoundaryMode boundaryMode, const SkIRect* srcBounds, const GrCaps& caps) DiffuseLightingEffect() argument
1892 SpecularLightingEffect(GrSurfaceProxyView view, sk_sp<const SkImageFilterLight> light, SkScalar surfaceScale, const SkMatrix& matrix, SkScalar ks, SkScalar shininess, BoundaryMode boundaryMode, const SkIRect* srcBounds, const GrCaps& caps) SpecularLightingEffect() argument
[all...]
/foundation/arkui/ace_engine_lite/frameworks/src/core/animation/
H A Dtransition_impl.h129 * @param: view target view which run the animation
132 TransitionImpl(TransitionParams& params, UIView* view) in TransitionImpl() argument
133 : view_(view), in TransitionImpl()
162 void Callback(UIView* view) override;
/foundation/graphic/graphic_3d/lume/LumeRender/src/datastore/
H A Drender_data_store_pod.cpp121 array_view<const uint8_t> view; in Get() local
129 view = array_view<const uint8_t>(data, byteSize); in Get()
131 return view; in Get()
/kernel/linux/linux-5.10/include/linux/
H A Dregset.h203 * @regsets: Array of @n regsets available in this view.
209 * A regset view is a collection of regsets (&struct user_regset,
211 * from a given architecture/ABI environment. More than one view might
215 * view or from the 64-bit view. Either method reaches the same thread
232 * task_user_regset_view - Return the process's native regset view.
299 const struct user_regset_view *view,
306 * @view: &struct user_regset_view describing user thread machine state
307 * @setno: index in @view->regsets
313 const struct user_regset_view *view,
[all...]
/kernel/linux/linux-6.6/include/linux/
H A Dregset.h215 * @regsets: Array of @n regsets available in this view.
221 * A regset view is a collection of regsets (&struct user_regset,
223 * from a given architecture/ABI environment. More than one view might
227 * view or from the 64-bit view. Either method reaches the same thread
244 * task_user_regset_view - Return the process's native regset view.
310 const struct user_regset_view *view,
317 * @view: &struct user_regset_view describing user thread machine state
318 * @setno: index in @view->regsets
324 const struct user_regset_view *view,
[all...]
/third_party/node/test/fixtures/wpt/encoding/
H A Dtextdecoder-streaming.any.js46 const view = new Uint8Array(createBuffer(arrayBufferOrSharedArrayBuffer, byteArray.length));
47 view.set(byteArray);
48 return view;
/third_party/skia/experimental/webgpu-bazel/src/
H A Dbindings.cpp75 void drawPipeline(wgpu::Device device, wgpu::TextureView view, wgpu::RenderPipeline pipeline, in drawPipeline() argument
78 attachment.view = view; in drawPipeline()
/foundation/arkui/ui_lite/test/uitest/test_image/
H A Dui_test_image.cpp471 bool UITestImage::OnClick(UIView &view, const ClickEvent& event) in OnClick() argument
476 if (&view == gifToGif_) { in OnClick()
478 } else if (&view == gifToJpeg_) { in OnClick()
480 } else if (&view == gifToPng_) { in OnClick()
482 } else if (&view == gifToBin01_) { in OnClick()
484 } else if (&view == gifToBin02_) { in OnClick()
486 } else if (&view == gifToBin03_) { in OnClick()
488 } else if (&view == gifToBin04_) { in OnClick()
/foundation/arkui/ui_lite/test/uitest/test_opacity/
H A Dui_test_opacity.cpp296 UIView* view = new UIView(); in CreateTestCaseUIView() local
297 view->SetPosition(10, 30, BUTTON_WIDTH, BUTTON_HEIGHT); // 10: x 30: y in CreateTestCaseUIView()
298 view->SetStyle(STYLE_BACKGROUND_COLOR, (Color::White()).full); in CreateTestCaseUIView()
299 view->SetStyle(STYLE_BACKGROUND_OPA, OPA_OPAQUE); in CreateTestCaseUIView()
300 view->SetOpaScale(opaScale); in CreateTestCaseUIView()
301 return view; in CreateTestCaseUIView()
311 UIView* view = CreateTestCaseUIView(200); // 200 : opacity in UIKitOpacityTestUIView001() local
312 group->Add(view); in UIKitOpacityTestUIView001()
/third_party/mesa3d/src/intel/isl/
H A Disl.c2315 * model this as the CCS compressing a 2D-view of the entire surface. in isl_surf_get_ccs_surf()
2419 info->view->usage & (ISL_SURF_USAGE_RENDER_TARGET_BIT | in isl_surf_fill_state_s()
2425 assert((info->view->usage & ~ISL_SURF_USAGE_CUBE_BIT) == _base_usage); in isl_surf_fill_state_s()
2429 assert(info->view->base_array_layer + info->view->array_len <= in isl_surf_fill_state_s()
2432 assert(info->view->base_array_layer + info->view->array_len <= in isl_surf_fill_state_s()
2468 assert(info->view->base_array_layer + info->view->array_len <= in isl_emit_depth_stencil_hiz_s()
2471 assert(info->view in isl_emit_depth_stencil_hiz_s()
2968 isl_surf_get_uncompressed_surf(const struct isl_device *dev, const struct isl_surf *surf, const struct isl_view *view, struct isl_surf *ucompr_surf, struct isl_view *ucompr_view, uint64_t *offset_B, uint32_t *x_offset_el, uint32_t *y_offset_el) isl_surf_get_uncompressed_surf() argument
[all...]

Completed in 25 milliseconds

1...<<11121314151617181920>>...40