/lvgl-latest/src/libs/thorvg/ |
D | tvgSwPostEffect.cpp | 172 auto back = buffer.buf8; in effectGaussianBlur() local 185 _gaussianBlur(front, back, stride, w, h, bbox, k, params->border, false); in effectGaussianBlur() 186 std::swap(front, back); in effectGaussianBlur() 193 …rasterXYFlip(reinterpret_cast<uint32_t*>(front), reinterpret_cast<uint32_t*>(back), stride, w, h, … in effectGaussianBlur() 194 std::swap(front, back); in effectGaussianBlur() 199 _gaussianBlur(front, back, stride, h, w, bbox, k, params->border, true); in effectGaussianBlur() 200 std::swap(front, back); in effectGaussianBlur() 204 …rasterXYFlip(reinterpret_cast<uint32_t*>(front), reinterpret_cast<uint32_t*>(back), stride, h, w, … in effectGaussianBlur() 205 std::swap(front, back); in effectGaussianBlur()
|
D | tvgLoader.cpp | 316 _activeLoaders.back(loader); in loader() 332 _activeLoaders.back(loader); in loader() 389 _activeLoaders.back(loader); in loader() 406 _activeLoaders.back(loader); in loader() 432 _activeLoaders.back(loader); in loader() 454 _activeLoaders.back(loader); in loader()
|
D | tvgInlist.h | 52 void back(T* element) in back() function 80 T* back() in back() function
|
D | tvgTaskScheduler.cpp | 67 taskDeque.back(task); in tryPush() 100 taskDeque.back(task); in push()
|
D | tvgLottieBuilder.cpp | 220 contexts.back(new RenderContext(*ctx, propagator, group->mergeable())); in updateGroup() 251 …contexts.back(new RenderContext(*ctx, static_cast<Shape*>(PP(ctx->propagator)->duplicate(parent->p… in _fragmented() 1278 contexts.back(new RenderContext(layer->pooling())); in updateLayer()
|
/lvgl-latest/docs/details/widgets/ |
D | menu.rst | 55 Root back button mode 58 The following root back button modes exist: 63 You can set root back button modes with 116 - :cpp:enumerator:`LV_EVENT_CLICKED` Sent when a back button in a header from either 121 back button.
|
D | list.rst | 42 button created, which you can use to, for example, add an event call-back.
|
D | win.rst | 81 to provide an "x" (close) symbol. You get back a pointer to the Button created so
|
D | keyboard.rst | 113 with a custom event handler if you wish, or add an additional call-back of your own.
|
D | label.rst | 104 …EL_LONG_SCROLL` If the text is wider than the label, scroll it horizontally back and forth. If it's
|
/lvgl-latest/demos/high_res/ |
D | lv_demo_high_res_app_about.c | 80 …lv_obj_t * back = lv_demo_high_res_simple_container_create(app_info, false, c->sz->gap[2], LV_FLEX… in lv_demo_high_res_app_about() local 81 lv_obj_add_event_cb(back, back_clicked_cb, LV_EVENT_CLICKED, NULL); in lv_demo_high_res_app_about() 83 lv_obj_t * back_icon = lv_image_create(back); in lv_demo_high_res_app_about() 88 lv_obj_t * back_label = lv_label_create(back); in lv_demo_high_res_app_about() 170 lv_obj_t * back = lv_event_get_target_obj(e); in back_clicked_cb() local 172 lv_obj_t * base_obj = lv_obj_get_parent(lv_obj_get_parent(lv_obj_get_parent(back))); in back_clicked_cb()
|
D | lv_demo_high_res_app_smart_home.c | 86 …lv_obj_t * back = lv_demo_high_res_simple_container_create(app_info, false, c->sz->gap[2], LV_FLEX… in lv_demo_high_res_app_smart_home() local 87 lv_obj_add_event_cb(back, back_clicked_cb, LV_EVENT_CLICKED, NULL); in lv_demo_high_res_app_smart_home() 89 lv_obj_t * back_icon = lv_image_create(back); in lv_demo_high_res_app_smart_home() 94 lv_obj_t * back_label = lv_label_create(back); in lv_demo_high_res_app_smart_home() 131 lv_obj_t * back = lv_event_get_target_obj(e); in back_clicked_cb() local 133 lv_obj_t * base_obj = lv_obj_get_parent(lv_obj_get_parent(lv_obj_get_parent(back))); in back_clicked_cb()
|
D | lv_demo_high_res_app_ev_charging.c | 125 …lv_obj_t * back = lv_demo_high_res_simple_container_create(app_info, false, c->sz->gap[2], LV_FLEX… in lv_demo_high_res_app_ev_charging() local 126 lv_obj_add_event_cb(back, back_clicked_cb, LV_EVENT_CLICKED, NULL); in lv_demo_high_res_app_ev_charging() 128 lv_obj_t * back_icon = lv_image_create(back); in lv_demo_high_res_app_ev_charging() 133 lv_obj_t * back_label = lv_label_create(back); in lv_demo_high_res_app_ev_charging() 232 lv_obj_t * back = lv_event_get_target_obj(e); in back_clicked_cb() local 234 lv_obj_t * base_obj = lv_obj_get_parent(lv_obj_get_parent(lv_obj_get_parent(back))); in back_clicked_cb()
|
D | lv_demo_high_res_app_smart_meter.c | 104 …lv_obj_t * back = lv_demo_high_res_simple_container_create(app_info, false, c->sz->gap[2], LV_FLEX… in lv_demo_high_res_app_smart_meter() local 105 lv_obj_add_event_cb(back, back_clicked_cb, LV_EVENT_CLICKED, NULL); in lv_demo_high_res_app_smart_meter() 107 lv_obj_t * back_icon = lv_image_create(back); in lv_demo_high_res_app_smart_meter() 112 lv_obj_t * back_label = lv_label_create(back); in lv_demo_high_res_app_smart_meter() 140 lv_obj_t * back = lv_event_get_target_obj(e); in back_clicked_cb() local 142 lv_obj_t * base_obj = lv_obj_get_parent(lv_obj_get_parent(lv_obj_get_parent(back))); in back_clicked_cb()
|
D | lv_demo_high_res_app_thermostat.c | 91 …lv_obj_t * back = lv_demo_high_res_simple_container_create(app_info, false, c->sz->gap[2], LV_FLEX… in lv_demo_high_res_app_thermostat() local 92 lv_obj_add_event_cb(back, back_clicked_cb, LV_EVENT_CLICKED, NULL); in lv_demo_high_res_app_thermostat() 94 lv_obj_t * back_icon = lv_image_create(back); in lv_demo_high_res_app_thermostat() 99 lv_obj_t * back_label = lv_label_create(back); in lv_demo_high_res_app_thermostat() 127 lv_obj_t * back = lv_event_get_target_obj(e); in back_clicked_cb() local 129 lv_obj_t * base_obj = lv_obj_get_parent(lv_obj_get_parent(lv_obj_get_parent(back))); in back_clicked_cb()
|
/lvgl-latest/docs/details/other-components/ |
D | fragment.rst | 75 /* Remove the top most fragment from the stack, and bring back previous one. */
|
/lvgl-latest/docs/details/main-components/ |
D | animation.rst | 155 - :cpp:func:`lv_anim_path_bounce`: bounce back a little from the end value (like 201 reversing course, animating from the ``end`` value back to the ``start`` value again. 247 has run from the ``end`` value back to the ``start`` value again;
|
D | draw.rst | 79 already-existing draw units further back in the list, making the earliest Draw Unit
|
/lvgl-latest/docs/ |
D | CODING_STYLE.rst | 126 - In comments use back-quotes (\`...\`) when referring to a code element, such as a variable, type, 202 - Use back-quotes (\`...\`) around code elements (variables, type names, function names). For type 204 documentation (when it exists) with or without the single back-quotes.
|
D | CHANGELOG.rst | 65 - **feat(anim): add lv_anim_speed_to_time back** `6531 <https://github.com/lvgl/lvgl/pull/6531>`__ 170 - **perf(array): optimize array push back function performance** `6431 <https://github.com/lvgl/lvg… 437 - **chore(rt-thread): revert macro back to PKG_USING_LVGL_SQUARELINE** `6481 <https://github.com/lv…
|
/lvgl-latest/docs/details/integration/os/buildroot/ |
D | lvgl_app.rst | 101 Navigate back to the root of the project and clone the repository:
|
/lvgl-latest/docs/details/base-widget/styles/ |
D | style.rst | 105 for its current state it will fall back to the default state's property. 447 going back to default slowly.
|
/lvgl-latest/docs/intro/add-lvgl-to-your-project/ |
D | threading.rst | 38 back to the state before the operation was started. To other threads it must
|
/lvgl-latest/docs/details/base-widget/ |
D | scroll.rst | 179 released the content scrolled in it is animated back to the closest valid
|
/lvgl-latest/docs/details/integration/driver/display/ |
D | lcd_stm32_guide.rst | 60 #. Switch back to the Pinout & Configuration tab, and in the Middleware and Software Packs category…
|