/foundation/arkui/ui_lite/interfaces/kits/components/ |
H A D | ui_list.h | 31 * invoking of a callback when a child view at the preset position is selected as this list scrolls. It is used 50 * view is selected at the preset position as this list scrolls. The scroll state can be {@link 74 * @param index Indicates the index of the child view being selected at the preset position. This parameter should 75 * be set to {@link NULL_SELECT_INDEX} if no child view is selected or no position is preset. 76 * @param view Indicates the child view being selected at the preset position. This parameter should be set to 77 * <b>NULL</b> if no child view is selected or no position is preset. 81 virtual void OnScrollStart(int16_t index, UIView* view) {} in OnScrollStart() argument 86 * @param index Indicates the index of the child view being selected at the preset position. This parameter should 87 * be set to {@link NULL_SELECT_INDEX} if no child view i 94 OnScrollEnd(int16_t index, UIView* view) OnScrollEnd() argument 107 OnScrollTop(int16_t index, UIView* view) OnScrollTop() argument 120 OnScrollBottom(int16_t index, UIView* view) OnScrollBottom() argument 134 OnItemSelected(int16_t index, UIView* view) OnItemSelected() argument 450 AddScrapView(UIView* view) AddScrapView() argument [all...] |
/foundation/arkui/ui_lite/test/autotest/src/ |
H A D | ui_auto_test.cpp | 54 UIView* view = RootView::GetInstance()->GetChildById(id); in EnterSubMenu() local 55 if (view == nullptr) { in EnterSubMenu() 81 UIView* view = RootView::GetInstance()->GetChildById(id); in ClickViewById() local 82 if (view == nullptr) { in ClickViewById() 86 point.x = view->GetOrigRect().GetX(); in ClickViewById() 87 point.y = view->GetOrigRect().GetY(); in ClickViewById() 97 UIView* view = RootView::GetInstance()->GetChildById(id); in DragViewToHead() local 98 if (view == nullptr) { in DragViewToHead() 102 startPoint.x = view->GetOrigRect().GetX(); in DragViewToHead() 103 startPoint.y = view in DragViewToHead() 117 UIView* view = RootView::GetInstance()->GetChildById(id); DrageToView() local [all...] |
/kernel/linux/linux-5.10/security/apparmor/ |
H A D | policy_ns.c | 30 * aa_ns_visible - test if @view is visible from @curr 32 * @view: namespace to test if visible from @curr (NOT NULL) 33 * @subns: whether view of a subns is allowed 35 * Returns: true if @view is visible from @curr else false 37 bool aa_ns_visible(struct aa_ns *curr, struct aa_ns *view, bool subns) in aa_ns_visible() argument 39 if (curr == view) in aa_ns_visible() 45 for ( ; view; view = view->parent) { in aa_ns_visible() 46 if (view in aa_ns_visible() 61 aa_ns_name(struct aa_ns *curr, struct aa_ns *view, bool subns) aa_ns_name() argument 200 __aa_lookupn_ns(struct aa_ns *view, const char *hname, size_t n) __aa_lookupn_ns() argument 231 aa_lookupn_ns(struct aa_ns *view, const char *name, size_t n) aa_lookupn_ns() argument [all...] |
/kernel/linux/linux-6.6/security/apparmor/ |
H A D | policy_ns.c | 33 * aa_ns_visible - test if @view is visible from @curr 35 * @view: namespace to test if visible from @curr (NOT NULL) 36 * @subns: whether view of a subns is allowed 38 * Returns: true if @view is visible from @curr else false 40 bool aa_ns_visible(struct aa_ns *curr, struct aa_ns *view, bool subns) in aa_ns_visible() argument 42 if (curr == view) in aa_ns_visible() 48 for ( ; view; view = view->parent) { in aa_ns_visible() 49 if (view in aa_ns_visible() 64 aa_ns_name(struct aa_ns *curr, struct aa_ns *view, bool subns) aa_ns_name() argument 211 __aa_lookupn_ns(struct aa_ns *view, const char *hname, size_t n) __aa_lookupn_ns() argument 242 aa_lookupn_ns(struct aa_ns *view, const char *name, size_t n) aa_lookupn_ns() argument [all...] |
/foundation/arkui/ace_engine_lite/frameworks/src/core/base/ |
H A D | event_util.cpp | 61 JSValue EventUtil::CreateEvent(const char *type, UIView &view, const Event &event) in CreateEvent() argument 72 view.GetTargetView(point, ¤tTarget, &target); in CreateEvent() 84 JSValue EventUtil::CreateSwipeEvent(UIView &view, const DragEvent &event) in CreateSwipeEvent() argument 88 JSValue arg = EventUtil::CreateEvent(EVENT_SWIPE, view, event); in CreateSwipeEvent() 120 JSValue EventUtil::CreateTouchEvent(UIView &view, const DragEvent &event) in CreateTouchEvent() argument 124 JSValue arg = EventUtil::CreateEvent(EVENT_TOUCH, view, event); in CreateTouchEvent() 148 JSValue EventUtil::GetElementByUIView(UIView *view) in GetElementByUIView() argument 150 if (view == nullptr) { in GetElementByUIView() 151 HILOG_ERROR(HILOG_MODULE_ACE, "fail to get element by UI view."); in GetElementByUIView() 154 UIView::ViewExtraMsg *extraMsg = view in GetElementByUIView() [all...] |
/third_party/jerryscript/tests/jerry/es2015/ |
H A D | dataview.js | 159 var view = new DataView (buffer) 160 view[propName] ({ toString : function () { throw new ReferenceError ('fooBar') } }); 168 var view = new DataView (buffer) 172 assert(view[propName] (1.5) === 0); 174 assert(view[propName] (1.5) === undefined); 179 view[propName] (-1); 187 view[propName] (20); 195 function validateResult (view, offset, isLitteEndian, results) { 197 assert (results[i] === view[getters[i]](offset, isLitteEndian));
|
/third_party/skia/platform_tools/android/apps/viewer/src/main/java/org/skia/viewer/ |
H A D | ViewerActivity.java | 15 import android.view.KeyEvent; 16 import android.view.Menu; 17 import android.view.MenuInflater; 18 import android.view.MenuItem; 19 import android.view.MotionEvent; 20 import android.view.Surface; 21 import android.view.SurfaceHolder; 22 import android.view.SurfaceView; 23 import android.view.View;
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/ |
H A D | jsi_view_register_impl_ng.cpp | 206 auto* view = static_cast<JSView*>(obj->GetNativePointerField(vm, 0)); in AddCustomTitleBarComponent() local 207 if (!view && !static_cast<JSViewPartialUpdate*>(view) && !static_cast<JSViewFullUpdate*>(view)) { in AddCustomTitleBarComponent() 210 auto uiNode = AceType::DynamicCast<NG::UINode>(view->CreateViewNode(true)); in AddCustomTitleBarComponent() 281 auto* view = static_cast<JSView*>(obj->GetNativePointerField(vm, 0)); in UpdateRootComponent() local 282 if (!view && !static_cast<JSViewPartialUpdate*>(view) && !static_cast<JSViewFullUpdate*>(view)) { in UpdateRootComponent() 308 Container::SetCurrentUsePartialUpdate(!view in UpdateRootComponent() [all...] |
/foundation/arkui/ui_lite/test/unittest/components/ |
H A D | ui_view_group_unit_test.cpp | 63 UIView* view = new UIView(); in HWTEST_F() local 64 if (view == nullptr) { in HWTEST_F() 68 viewGroup_->Add(view); in HWTEST_F() 69 EXPECT_EQ(view, viewGroup_->GetChildrenHead()); in HWTEST_F() 70 EXPECT_EQ(view->GetParent(), viewGroup_); in HWTEST_F() 72 delete view; in HWTEST_F() 92 UIView* view = new UIView(); in HWTEST_F() local 95 viewGroup_->Insert(preView, view); in HWTEST_F() 96 EXPECT_EQ(view, preView->GetNextSibling()); in HWTEST_F() 99 delete view; in HWTEST_F() 114 UIView* view = new UIView(); HWTEST_F() local 139 UIView* view = new UIView(); HWTEST_F() local [all...] |
/foundation/arkui/ui_lite/test/uitest/test_image_animator/ |
H A D | ui_test_image_animator.cpp | 369 bool UITestImageAnimator::OnClick(UIView& view, const ClickEvent& event) in OnClick() argument 371 if (&view == startBtn_) { in OnClick() 373 } else if (&view == stopBtn_) { in OnClick() 375 } else if (&view == pauseBtn_) { in OnClick() 377 } else if (&view == resumeBtn_) { in OnClick() 379 } else if (&view == setImageBtn_) { in OnClick() 383 } else if (&view == setSpeedBtn_) { in OnClick() 387 } else if (&view == fixedBtn_) { in OnClick() 390 } else if (&view == repeatBtn_) { in OnClick() 394 } else if (&view in OnClick() [all...] |
/foundation/arkui/ui_lite/test/uitest/test_event_injector/ |
H A D | ui_test_event_injector.cpp | 129 bool OnKeyAct(UIView& view, const KeyEvent& event) override 366 void UITestEventInjector::SetLastPos(UIView* view) in SetLastPos() argument 368 if (view == nullptr) { in SetLastPos() 371 lastX_ = view->GetX(); in SetLastPos() 372 lastY_ = view->GetY() + view->GetHeight(); in SetLastPos() 403 bool UITestEventInjector::OnClick(UIView& view, const ClickEvent& event) in OnClick() argument 407 if (&view == clickBtn_) { in OnClick() 411 } else if (&view == dragBtn_) { in OnClick() 417 } else if (&view in OnClick() [all...] |
/foundation/ability/ability_lite/frameworks/ability_lite/example/entry/src/main/cpp/ |
H A D | event_listener.h | 25 using OnEventFunc = std::function<bool(UIView &view, const Event &event)>; 40 bool OnClick(UIView &view, const ClickEvent &event) override 45 return onClick_(view, event); 48 bool OnLongPress(UIView &view, const LongPressEvent &event) override 53 return onLongPress_(view, event);
|
/foundation/arkui/ui_lite/test/uitest/test_view_zindex/ |
H A D | ui_test_view_zindex.h | 35 bool OnClick(UIView& view, const ClickEvent& event) override; 36 void Callback(UIView* view) override; 46 void ClickZIndexBtn(UIView& view); 47 void ClickModifyBtn(UIView& view); 48 void UpdateClickHint(UIView& view);
|
/kernel/linux/linux-5.10/tools/perf/ui/gtk/ |
H A D | hists.c | 281 static void on_row_activated(GtkTreeView *view, GtkTreePath *path, in on_row_activated() argument 285 bool expanded = gtk_tree_view_row_expanded(view, path); in on_row_activated() 288 gtk_tree_view_collapse_row(view, path); in on_row_activated() 290 gtk_tree_view_expand_row(view, path, FALSE); in on_row_activated() 301 GtkWidget *view; in perf_gtk__show_hists() local 319 view = gtk_tree_view_new(); in perf_gtk__show_hists() 336 gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(view), in perf_gtk__show_hists() 345 column = gtk_tree_view_get_column(GTK_TREE_VIEW(view), col_idx); in perf_gtk__show_hists() 349 gtk_tree_view_set_expander_column(GTK_TREE_VIEW(view), in perf_gtk__show_hists() 354 gtk_tree_view_set_model(GTK_TREE_VIEW(view), GTK_TREE_MODE in perf_gtk__show_hists() 402 gtk_container_add(GTK_CONTAINER(window), view); perf_gtk__show_hists() local 505 GtkWidget *view; perf_gtk__show_hierarchy() local 590 gtk_container_add(GTK_CONTAINER(window), view); perf_gtk__show_hierarchy() local [all...] |
/kernel/linux/linux-6.6/tools/perf/ui/gtk/ |
H A D | hists.c | 281 static void on_row_activated(GtkTreeView *view, GtkTreePath *path, in on_row_activated() argument 285 bool expanded = gtk_tree_view_row_expanded(view, path); in on_row_activated() 288 gtk_tree_view_collapse_row(view, path); in on_row_activated() 290 gtk_tree_view_expand_row(view, path, FALSE); in on_row_activated() 301 GtkWidget *view; in perf_gtk__show_hists() local 319 view = gtk_tree_view_new(); in perf_gtk__show_hists() 336 gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(view), in perf_gtk__show_hists() 345 column = gtk_tree_view_get_column(GTK_TREE_VIEW(view), col_idx); in perf_gtk__show_hists() 349 gtk_tree_view_set_expander_column(GTK_TREE_VIEW(view), in perf_gtk__show_hists() 354 gtk_tree_view_set_model(GTK_TREE_VIEW(view), GTK_TREE_MODE in perf_gtk__show_hists() 402 gtk_container_add(GTK_CONTAINER(window), view); perf_gtk__show_hists() local 505 GtkWidget *view; perf_gtk__show_hierarchy() local 590 gtk_container_add(GTK_CONTAINER(window), view); perf_gtk__show_hierarchy() local [all...] |
/kernel/linux/linux-5.10/arch/s390/kernel/ |
H A D | debug.c | 52 struct debug_view *view; /* used view of debug info */ member 80 struct debug_view *view, char *out_buf); 81 static int debug_input_level_fn(debug_info_t *id, struct debug_view *view, 85 struct debug_view *view, char *out_buf); 86 static int debug_input_pages_fn(debug_info_t *id, struct debug_view *view, 89 static int debug_input_flush_fn(debug_info_t *id, struct debug_view *view, 92 static int debug_hex_ascii_format_fn(debug_info_t *id, struct debug_view *view, 94 static int debug_sprintf_format_fn(debug_info_t *id, struct debug_view *view, 389 struct debug_view *view in debug_format_entry() local 1133 debug_register_view(debug_info_t *id, struct debug_view *view) debug_register_view() argument 1182 debug_unregister_view(debug_info_t *id, struct debug_view *view) debug_unregister_view() argument 1249 debug_prolog_pages_fn(debug_info_t *id, struct debug_view *view, char *out_buf) debug_prolog_pages_fn() argument 1259 debug_input_pages_fn(debug_info_t *id, struct debug_view *view, struct file *file, const char __user *user_buf, size_t user_len, loff_t *offset) debug_input_pages_fn() argument 1298 debug_prolog_level_fn(debug_info_t *id, struct debug_view *view, char *out_buf) debug_prolog_level_fn() argument 1313 debug_input_level_fn(debug_info_t *id, struct debug_view *view, struct file *file, const char __user *user_buf, size_t user_len, loff_t *offset) debug_input_level_fn() argument 1383 debug_input_flush_fn(debug_info_t *id, struct debug_view *view, struct file *file, const char __user *user_buf, size_t user_len, loff_t *offset) debug_input_flush_fn() argument 1422 debug_hex_ascii_format_fn(debug_info_t *id, struct debug_view *view, char *out_buf, const char *in_buf) debug_hex_ascii_format_fn() argument 1445 debug_dflt_header_fn(debug_info_t *id, struct debug_view *view, int area, debug_entry_t *entry, char *out_buf) debug_dflt_header_fn() argument 1477 debug_sprintf_format_fn(debug_info_t *id, struct debug_view *view, char *out_buf, debug_sprintf_entry_t *curr_event) debug_sprintf_format_fn() argument [all...] |
/kernel/linux/linux-6.6/arch/s390/kernel/ |
H A D | debug.c | 52 struct debug_view *view; /* used view of debug info */ member 80 struct debug_view *view, char *out_buf); 81 static int debug_input_level_fn(debug_info_t *id, struct debug_view *view, 85 struct debug_view *view, char *out_buf); 86 static int debug_input_pages_fn(debug_info_t *id, struct debug_view *view, 89 static int debug_input_flush_fn(debug_info_t *id, struct debug_view *view, 92 static int debug_hex_ascii_format_fn(debug_info_t *id, struct debug_view *view, 94 static int debug_sprintf_format_fn(debug_info_t *id, struct debug_view *view, 389 struct debug_view *view in debug_format_entry() local 1179 debug_register_view(debug_info_t *id, struct debug_view *view) debug_register_view() argument 1229 debug_unregister_view(debug_info_t *id, struct debug_view *view) debug_unregister_view() argument 1296 debug_prolog_pages_fn(debug_info_t *id, struct debug_view *view, char *out_buf) debug_prolog_pages_fn() argument 1306 debug_input_pages_fn(debug_info_t *id, struct debug_view *view, struct file *file, const char __user *user_buf, size_t user_len, loff_t *offset) debug_input_pages_fn() argument 1345 debug_prolog_level_fn(debug_info_t *id, struct debug_view *view, char *out_buf) debug_prolog_level_fn() argument 1360 debug_input_level_fn(debug_info_t *id, struct debug_view *view, struct file *file, const char __user *user_buf, size_t user_len, loff_t *offset) debug_input_level_fn() argument 1430 debug_input_flush_fn(debug_info_t *id, struct debug_view *view, struct file *file, const char __user *user_buf, size_t user_len, loff_t *offset) debug_input_flush_fn() argument 1469 debug_hex_ascii_format_fn(debug_info_t *id, struct debug_view *view, char *out_buf, const char *in_buf) debug_hex_ascii_format_fn() argument 1492 debug_dflt_header_fn(debug_info_t *id, struct debug_view *view, int area, debug_entry_t *entry, char *out_buf) debug_dflt_header_fn() argument 1524 debug_sprintf_format_fn(debug_info_t *id, struct debug_view *view, char *out_buf, const char *inbuf) debug_sprintf_format_fn() argument [all...] |
/third_party/skia/src/gpu/effects/ |
H A D | GrGaussianConvolutionFragmentProcessor.cpp | 143 GrSurfaceProxyView view, 172 child = GrTextureEffect::MakeSubset(std::move(view), 181 child = GrTextureEffect::MakeSubset(std::move(view), 255 auto [view, ct, at] = d->randomView(); in TestCreate() 259 static_cast<int>(d->fRandom->nextRangeU(0, view.width() - 1)), in TestCreate() 260 static_cast<int>(d->fRandom->nextRangeU(0, view.height() - 1)), in TestCreate() 261 static_cast<int>(d->fRandom->nextRangeU(0, view.width() - 1)), in TestCreate() 262 static_cast<int>(d->fRandom->nextRangeU(0, view.height() - 1)), in TestCreate() 274 static_cast<int>(d->fRandom->nextRangeU(0, view.width() - 1)), in TestCreate() 275 static_cast<int>(d->fRandom->nextRangeU(0, view in TestCreate() [all...] |
/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
H A D | SwapChain.cpp | 180 // Return the same current texture view until Present is called. in APIGetCurrentTextureView() 183 // reuse the existing texture view. in APIGetCurrentTextureView() 188 // Create the backing texture and the view. in APIGetCurrentTextureView() 319 // reusing the existing texture view. in APIGetCurrentTextureView() 324 TextureViewBase* view = nullptr; in APIGetCurrentTextureView() local 325 if (GetDevice()->ConsumedError(GetCurrentTextureViewImpl(), &view)) { in APIGetCurrentTextureView() 329 // Check that the return texture view matches exactly what was given for this descriptor. in APIGetCurrentTextureView() 330 ASSERT(view->GetTexture()->GetFormat().format == mFormat); in APIGetCurrentTextureView() 331 ASSERT(IsSubset(mUsage, view->GetTexture()->GetUsage())); in APIGetCurrentTextureView() 332 ASSERT(view in APIGetCurrentTextureView() [all...] |
/foundation/arkui/ui_lite/test/framework/include/ |
H A D | ui_test.h | 69 * @brief Get test view to add to root view. 71 * @returns test container view. 76 static void DeleteChildren(UIView* view) in DeleteChildren() argument 78 if (view == nullptr) { in DeleteChildren() 81 while (view != nullptr) { in DeleteChildren() 82 UIView* tempView = view; in DeleteChildren() 83 view = view->GetNextSibling(); in DeleteChildren()
|
/foundation/arkui/ui_lite/frameworks/components/ |
H A D | ui_texture_mapper.cpp | 19 void UITextureMapper::TextureMapperAnimatorCallback::Callback(UIView* view) in Callback() argument 21 if (view == nullptr) { in Callback() 24 UITextureMapper* mapper = static_cast<UITextureMapper*>(view); in Callback() 28 void UITextureMapper::TextureMapperAnimatorCallback::OnStop(UIView& view) in OnStop() argument 30 UITextureMapper& mapper = static_cast<UITextureMapper&>(view); in OnStop() 32 mapper.listener_->OnAnimatorStop(view); in OnStop()
|
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/ |
H A D | scroll_layer.cpp | 38 UIScrollView *ScrollLayer::AddScrollLayer(UIView &view) const in AddScrollLayer() 42 HILOG_ERROR(HILOG_MODULE_ACE, "Scroll Layer: Create scroll view failed."); in AddScrollLayer() 51 scroll->Add(&view); in AddScrollLayer() 67 // root view will be attached soon, invoke the callback in AppendScrollLayer() 70 UIView *view = rootComponent->GetComponentRootView(); in AppendScrollLayer() local 71 if (view == nullptr) { in AppendScrollLayer() 72 HILOG_ERROR(HILOG_MODULE_ACE, "Scroll Layer: Failed to get view from js object."); in AppendScrollLayer() 76 scroll_ = AddScrollLayer(*view); in AppendScrollLayer() 77 pageRootView_ = (scroll_ == nullptr) ? view : scroll_; in AppendScrollLayer()
|
/third_party/skia/platform_tools/android/apps/AndroidKit/src/main/java/org/skia/androidkit/ |
H A D | Surface.java | 30 static public Surface CreateVulkan(android.view.Surface surface) { in CreateVulkan() 34 static public Surface CreateGL(android.view.Surface surface) { in CreateGL() 39 * Create a Surface backed by the provided Android Surface (android.view.Surface). 42 static public Surface createThreadedSurface(android.view.Surface surface) { in createThreadedSurface() 108 private static native long nCreateThreadedSurface(android.view.Surface surface); in nCreateThreadedSurface() 109 private static native long nCreateVKSurface(android.view.Surface surface); in nCreateVKSurface() 110 private static native long nCreateGLSurface(android.view.Surface surface); in nCreateGLSurface()
|
/third_party/skia/src/image/ |
H A D | SkImage_GpuBase.cpp | 110 auto [view, ct] = this->asView(dContext, GrMipmapped::kNo); in getROPixels() 111 if (!view) { in getROPixels() 116 auto sContext = dContext->priv().makeSC(std::move(view), std::move(colorInfo)); in getROPixels() 138 auto [view, ct] = this->asView(direct, GrMipmapped::kNo); in onMakeSubset() 139 SkASSERT(view); in onMakeSubset() 142 SkBudgeted isBudgeted = view.proxy()->isBudgeted(); in onMakeSubset() 144 std::move(view), in onMakeSubset() 172 auto [view, ct] = this->asView(dContext, GrMipmapped::kNo); in onReadPixels() 173 SkASSERT(view); in onReadPixels() 176 auto sContext = dContext->priv().makeSC(std::move(view), colorInf in onReadPixels() [all...] |
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | si_descriptors.c | 450 struct pipe_sampler_view *view = &sview->base; in si_set_sampler_view_desc() local 451 struct si_texture *tex = (struct si_texture *)view->texture; in si_set_sampler_view_desc() 463 if (vi_dcc_enabled(tex, view->u.tex.first_level)) in si_set_sampler_view_desc() 539 struct pipe_sampler_view *view = views[i]; in si_set_sampler_views() local 540 pipe_sampler_view_reference(&view, NULL); in si_set_sampler_views() 679 struct pipe_image_view *view = &images->views[i]; in si_release_image_views() local 681 pipe_resource_reference(&view->resource, NULL); in si_release_image_views() 692 struct pipe_image_view *view = &images->views[i]; in si_image_views_begin_new_cs() local 694 assert(view->resource); in si_image_views_begin_new_cs() 696 si_sampler_view_add_buffer(sctx, view in si_image_views_begin_new_cs() 707 struct pipe_image_view *view = &images->views[i]; si_image_views_check_encrypted() local 736 si_mark_image_range_valid(const struct pipe_image_view *view) si_mark_image_range_valid() argument 747 si_set_shader_image_desc(struct si_context *ctx, const struct pipe_image_view *view, bool skip_decompress, uint32_t *desc, uint32_t *fmask_desc) si_set_shader_image_desc() argument 830 si_set_shader_image(struct si_context *ctx, unsigned shader, unsigned slot, const struct pipe_image_view *view, bool skip_decompress) si_set_shader_image() argument 973 struct pipe_image_view view = {0}; si_update_ps_colorbuf0_slot() local 1622 struct pipe_image_view *view = &(*img_handle)->view; si_resident_handles_update_needs_color_decompress() local 1837 struct pipe_sampler_view *view = (*tex_handle)->view; si_rebind_buffer() local 1859 struct pipe_image_view *view = &(*img_handle)->view; si_rebind_buffer() local 1970 struct pipe_image_view *view = &img_handle->view; si_update_bindless_image_descriptor() local 2015 struct pipe_image_view *view = &images->views[i]; si_update_all_texture_descriptors() local 2027 struct pipe_sampler_view *view = samplers->views[i]; si_update_all_texture_descriptors() local 2416 si_create_texture_handle(struct pipe_context *ctx, struct pipe_sampler_view *view, const struct pipe_sampler_state *state) si_create_texture_handle() argument 2551 si_create_image_handle(struct pipe_context *ctx, const struct pipe_image_view *view) si_create_image_handle() argument 2612 struct pipe_image_view *view; si_make_image_handle_resident() local 2688 struct pipe_image_view *view = &(*img_handle)->view; si_resident_buffers_add_all_to_bo_list() local [all...] |