/lvgl-latest/tests/src/test_cases/ |
D | test_txt.c | 78 char target[20] = {0}; in test_txt_should_insert_string_into_another() local 81 strcpy(target, msg); in test_txt_should_insert_string_into_another() 83 _lv_txt_ins(target, msg_len, suffix); in test_txt_should_insert_string_into_another() 85 TEST_ASSERT_EQUAL_STRING("Hello World", target); in test_txt_should_insert_string_into_another() 91 char target[20] = {0}; in test_txt_should_handle_null_pointers_when_inserting() local 94 strcpy(target, msg); in test_txt_should_handle_null_pointers_when_inserting() 96 _lv_txt_ins(target, msg_len, NULL); in test_txt_should_handle_null_pointers_when_inserting() 98 TEST_ASSERT_EQUAL_STRING("Hello ", target); in test_txt_should_handle_null_pointers_when_inserting()
|
/lvgl-latest/src/draw/sdl/ |
D | lv_draw_sdl_layer.c | 61 … transform_ctx->target = lv_draw_sdl_composite_texture_obtain(ctx, texture_id, target_w, target_h, in lv_draw_sdl_layer_init() 71 SDL_SetTextureBlendMode(transform_ctx->target, SDL_BLENDMODE_BLEND); in lv_draw_sdl_layer_init() 72 SDL_SetRenderTarget(renderer, transform_ctx->target); in lv_draw_sdl_layer_init() 112 SDL_SetTextureAlphaMod(transform_ctx->target, draw_dsc->opa); in lv_draw_sdl_layer_blend() 113 SDL_RenderCopyEx(renderer, transform_ctx->target, &transform_ctx->target_rect, &trans_rect, in lv_draw_sdl_layer_blend() 122 if(!transform_ctx->target_in_cache && transform_ctx->target != NULL) { in lv_draw_sdl_layer_destroy() 124 SDL_DestroyTexture(transform_ctx->target); in lv_draw_sdl_layer_destroy()
|
D | lv_draw_sdl_layer.h | 29 SDL_Texture * target; member
|
D | lv_draw_sdl_line.c | 125 SDL_Texture * target = SDL_GetRenderTarget(sdl_ctx->renderer); in line_texture_create() local 153 SDL_SetRenderTarget(sdl_ctx->renderer, target); in line_texture_create()
|
/lvgl-latest/examples/event/ |
D | lv_example_event_3.c | 7 lv_obj_t * target = lv_event_get_target(e); in event_cb() local 13 if(target == cont) return; in event_cb() 16 lv_obj_set_style_bg_color(target, lv_palette_main(LV_PALETTE_RED), 0); in event_cb()
|
D | lv_example_event_3.py | 4 target = e.get_target() 8 if type(target) != type(lv.btn()): 12 target.set_style_bg_color(lv.palette_main(lv.PALETTE.RED), 0)
|
/lvgl-latest/docs/get-started/platforms/ |
D | cmake.md | 37 # The target "MyFirmware" depends on LVGL 41 …y between the two targets **MyFirmware** and **lvgl**. Upon building the target **MyFirmware** thi… 62 LVGL [examples](https://docs.lvgl.io/master/examples.html) have their own CMake target. If you want… 65 # The target "MyFirmware" depends on LVGL and examples 77 # The target "MyFirmware" depends on LVGL, drivers and demos
|
/lvgl-latest/docs/overview/renderers/ |
D | arm-2d.md | 23 - The target processors are **Cortex-M55** and/or **Cortex-M85** 24 - The target processors support **[Helium](https://developer.arm.com/documentation/102102/0103/?lan… 26 - The target device contains [DMA-350](https://community.arm.com/arm-community-blogs/b/internet-of-…
|
/lvgl-latest/src/extra/widgets/tabview/ |
D | lv_tabview.c | 298 lv_obj_t * target = lv_event_get_target(e); in lv_tabview_event() local 301 lv_tabview_set_act(target, lv_tabview_get_tab_act(target), LV_ANIM_OFF); in lv_tabview_event()
|
/lvgl-latest/src/core/ |
D | lv_event.c | 58 e.target = obj; in lv_event_send() 107 return e->target; in lv_event_get_target() 152 if(e->current_target == obj || e->target == obj) e->deleted = 1; in _lv_event_mark_deleted()
|
D | lv_event.h | 94 struct _lv_obj_t * target; member
|
/lvgl-latest/src/extra/others/gridnav/ |
D | lv_gridnav.c | 245 lv_obj_t * target = lv_event_get_target(e); in gridnav_event_cb() local 246 if(target == obj) { in gridnav_event_cb()
|
/lvgl-latest/docs/overview/ |
D | event.md | 163 The *target* parameter of the event is always the current target object, not the original object. T…
|
D | animation.md | 30 /*Set target of the animation*/
|
D | style.md | 5 …ts to change their appearance. Upon assignment, the target part (*pseudo-element* in CSS) and targ… 290 …- `LV_LAYER_SIMPLE_BUF_SIZE`: [bytes] the optimal target buffer size. LVGL will try to allocate th…
|
D | image.md | 290 … or not. Image caching may not be worth it if you have a deeply embedded target which decodes smal…
|
/lvgl-latest/ |
D | Kconfig | 225 string "include path of CMSIS header of target processor" 229 Must be defined to include path of CMSIS header of target processor 235 string "include path of target processor" 239 Must be defined to include path of target processor 245 string "include path of CMSIS header of target processor" 249 Must be defined to include path of CMSIS header of target processor
|
/lvgl-latest/docs/get-started/os/ |
D | nuttx.md | 85 $ sudo openocd -f interface/stlink-v2.cfg -f target/stm32f4x.cfg -c init -c "reset halt" -c "flash …
|
/lvgl-latest/docs/ |
D | CHANGELOG.md | 294 - fix(sdl): clear streaming/target texture with FillRect [`3682`](https://github.com/lvgl/lvgl/pull… 777 - fix(obj): in obj event use the current target instead of target [`2785`](https://github.com/littl… 948 - feat(make) add lvgl interface target for micropython [`2529`](https://github.com/lvgl/lvgl/pull/2…
|
/lvgl-latest/scripts/ |
D | Doxyfile | 2166 # and usage relations if the target is undocumented or is not a class.
|