/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/ |
H A D | InputMarginView.java | 21 import android.view.LayoutInflater; 22 import android.view.View; 57 * the current context for the view.
|
H A D | TestAudioActivity.java | 27 import android.view.View; 28 import android.view.WindowManager; 339 public void openAudio(View view) { in openAudio() argument 347 public void startAudio(View view) { in startAudio() argument 361 public void stopAudio(View view) { in stopAudio() argument 366 public void pauseAudio(View view) { in pauseAudio() argument 371 public void closeAudio(View view) { in closeAudio() argument
|
H A D | TapToToneActivity.java | 29 import android.view.Menu; 30 import android.view.MenuItem; 31 import android.view.MotionEvent; 32 import android.view.View; 85 // Start a blip test when the waveform view is tapped. in onCreate() 88 public boolean onTouch(View view, MotionEvent event) { in onCreate()
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/src/main/java/com/google/oboe/samples/rhythmgame/ |
H A D | GameSurfaceView.java | 22 import android.view.MotionEvent; 23 import android.view.SurfaceHolder;
|
/kernel/linux/common_modules/tzdriver/core/ |
H A D | tzdebug.c | 344 struct tee_trace_view_t view = { 0, 0, 0, 0, { 0 }, { 0 } }; in tee_trace_event_show() local 348 get_tee_trace_start(&view); in tee_trace_event_show() 349 if (view.buffer_is_full == 1) in tee_trace_event_show() 350 seq_printf(m, "Total Trace Events: %u (Notice: Buffer is full)\n", view.total); in tee_trace_event_show() 352 seq_printf(m, "Total Trace Events: %u\n", view.total); in tee_trace_event_show() 354 if (view.total > 0) { in tee_trace_event_show() 357 while (get_tee_trace_next(&view, &log_info, false) != -1) { in tee_trace_event_show()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/gem/ |
H A D | i915_gem_domain.c | 317 const struct i915_ggtt_view *view, in i915_gem_object_pin_to_display_plane() 360 (!view || view->type == I915_GGTT_VIEW_NORMAL)) in i915_gem_object_pin_to_display_plane() 361 vma = i915_gem_object_ggtt_pin_ww(obj, &ww, view, 0, alignment, in i915_gem_object_pin_to_display_plane() 365 vma = i915_gem_object_ggtt_pin_ww(obj, &ww, view, 0, in i915_gem_object_pin_to_display_plane() 315 i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj, u32 alignment, const struct i915_ggtt_view *view, unsigned int flags) i915_gem_object_pin_to_display_plane() argument
|
/kernel/linux/linux-5.10/tools/perf/ui/gtk/ |
H A D | annotate.c | 104 GtkWidget *view; in perf_gtk__annotate_symbol() local 115 view = gtk_tree_view_new(); in perf_gtk__annotate_symbol() 119 gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(view), in perf_gtk__annotate_symbol() 124 gtk_tree_view_set_model(GTK_TREE_VIEW(view), GTK_TREE_MODEL(store)); in perf_gtk__annotate_symbol() 154 gtk_container_add(GTK_CONTAINER(window), view); in perf_gtk__annotate_symbol() local
|
/kernel/linux/linux-6.6/tools/perf/ui/gtk/ |
H A D | annotate.c | 104 GtkWidget *view; in perf_gtk__annotate_symbol() local 115 view = gtk_tree_view_new(); in perf_gtk__annotate_symbol() 119 gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(view), in perf_gtk__annotate_symbol() 124 gtk_tree_view_set_model(GTK_TREE_VIEW(view), GTK_TREE_MODEL(store)); in perf_gtk__annotate_symbol() 154 gtk_container_add(GTK_CONTAINER(window), view); in perf_gtk__annotate_symbol() local
|
/third_party/skia/src/gpu/ |
H A D | GrThreadSafeCache.h | 30 // add a place holder view and then queue up the draw calls to complete it. In this way the 191 Entry(const GrUniqueKey& key, const GrSurfaceProxyView& view) in Entry() 193 , fView(view) in Entry() 234 GrSurfaceProxyView view() { in view() function 244 void set(const GrUniqueKey& key, const GrSurfaceProxyView& view) { in set() 247 fView = view; in set()
|
H A D | GrDstProxyView.h | 50 void setProxyView(GrSurfaceProxyView view) { in setProxyView() argument 51 fProxyView = std::move(view); in setProxyView()
|
/third_party/mesa3d/src/gallium/drivers/r600/ |
H A D | r600_state.c | 628 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 D | i915_vma.c | 116 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 D | r300_state.c | 1568 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...] |
/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
H A D | CommandEncoder.cpp | 168 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 D | SkLightingImageFilter.cpp | 480 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...] |
/third_party/mesa3d/src/intel/isl/ |
H A D | isl.c | 2315 * 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...] |
/third_party/mesa3d/src/hgl/ |
H A D | GLRenderer.cpp | 12 BGLRenderer::BGLRenderer(BGLView* view, ulong glOptions) in BGLRenderer() argument 15 fView(view), in BGLRenderer()
|
/third_party/mesa3d/src/gallium/auxiliary/driver_trace/ |
H A D | tr_dump_state.h | 69 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/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/sample/sfview/ |
H A D | SFView.java | 25 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 D | SurfaceRenderer.java | 11 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 D | SkottieAnimationActivity.java | 14 import android.view.SurfaceHolder; 15 import android.view.SurfaceView;
|
H A D | RuntimeShaderActivity.java | 13 import android.view.SurfaceHolder; 14 import android.view.SurfaceView;
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | regset.h | 203 * @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 D | regset.h | 215 * @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 D | textdecoder-streaming.any.js | 46 const view = new Uint8Array(createBuffer(arrayBufferOrSharedArrayBuffer, byteArray.length)); 47 view.set(byteArray); 48 return view;
|