Home
last modified time | relevance | path

Searched refs:found (Results 1 – 16 of 16) sorted by relevance

/lvgl-3.7.0/src/draw/sdl/
Dlv_draw_sdl_texture_cache.c44 bool * found);
68 …w_sdl_texture_cache_get(lv_draw_sdl_ctx_t * ctx, const void * key, size_t key_length, bool * found) in lv_draw_sdl_texture_cache_get() argument
70 return lv_draw_sdl_texture_cache_get_with_userdata(ctx, key, key_length, found, NULL); in lv_draw_sdl_texture_cache_get()
74 bool * found, void ** userdata) in lv_draw_sdl_texture_cache_get_with_userdata() argument
76 draw_cache_value_t * value = draw_cache_get_entry(ctx, key, key_length, found); in lv_draw_sdl_texture_cache_get_with_userdata()
158 bool * found) in draw_cache_get_entry() argument
164 if(found) { in draw_cache_get_entry()
165 *found = false; in draw_cache_get_entry()
169 if(found) { in draw_cache_get_entry()
170 *found = true; in draw_cache_get_entry()
Dlv_draw_sdl_texture_cache.h80 …_sdl_texture_cache_get(lv_draw_sdl_ctx_t * ctx, const void * key, size_t key_length, bool * found);
83 bool * found, void ** userdata);
/lvgl-3.7.0/src/font/
Dlv_font.c80 bool found = f->get_glyph_dsc(f, dsc_out, letter, letter_next); in lv_font_get_glyph_dsc() local
81 if(found) { in lv_font_get_glyph_dsc()
/lvgl-3.7.0/src/core/
Dlv_obj_style.c227 lv_style_res_t found = LV_STYLE_RES_NOT_FOUND; in lv_obj_get_style_prop() local
229 found = get_prop_core(obj, part, prop, &value_act); in lv_obj_get_style_prop()
230 if(found == LV_STYLE_RES_FOUND) break; in lv_obj_get_style_prop()
234 if(found != LV_STYLE_RES_INHERIT && part != LV_PART_MAIN) { in lv_obj_get_style_prop()
243 if(found != LV_STYLE_RES_FOUND) { in lv_obj_get_style_prop()
610 lv_style_res_t found; in get_prop_core() local
620 found = lv_style_get_prop(obj_style->style, prop, &value_tmp); in get_prop_core()
621 if(found == LV_STYLE_RES_FOUND) { in get_prop_core()
625 else if(found == LV_STYLE_RES_INHERIT) { in get_prop_core()
644 found = lv_style_get_prop(obj_style->style, prop, &value_tmp); in get_prop_core()
[all …]
Dlv_obj.c405 bool found = obj_valid_child(disp->screens[i], obj); in lv_obj_is_valid() local
406 if(found) return true; in lv_obj_is_valid()
969 bool found = obj_valid_child(child, obj_to_find); in obj_valid_child() local
970 if(found) { in obj_valid_child()
/lvgl-3.7.0/docs/get-started/platforms/
Drenesas.md11 …ask or suspend the CPU for power savings. Supported draw callbacks can be found in “src/draw/renes…
13 …ask or suspend the CPU for power savings. Supported draw callbacks can be found in “src/draw/renes…
Despressif.md5 More information about ESP-IDF build system can be found [here](https://docs.espressif.com/projects…
Dpc-simulator.md56 2. Install SDL2: `sudo apt-get install libsdl2-2.0-0` (replace with the found version)
/lvgl-3.7.0/docs/overview/
Dfont.md204 A ready to use FreeType can be found in [lv_freetype](https://github.com/lvgl/lv_lib_freetype) repo…
237 return true; /*true: glyph found; false: glyph was not found*/
249 return bitmap; /*Or NULL if not found*/
Dfile-system.md53 …ct* that describes the opened file or `NULL` if there were any issues (e.g. the file wasn't found).
Dstyle.md78 …eleased (it's in default state) it will be red because a perfect match is found in the most recent…
/lvgl-3.7.0/demos/
DREADME.md4 1. demos can be found in the 'demos' folder once you clone the lvgl.
/lvgl-3.7.0/scripts/
DDoxyfile113 # used to form the text in various listings. Each string in this list, if found
507 # documentation blocks found inside the body of a function. If set to NO, these
1617 # to a relative location where the documentation can be found. The format is:
2011 # C-preprocessor directives found in the sources and include files.
2034 # INCLUDE_PATH will be searched if a #include is found.
2067 # macro definition that is found in the sources will be used. Use the PREDEFINED
2069 # definition found in the source code.
2153 # the mscgen tool resides. If left empty the tool is assumed to be found in the
2161 # If left empty dia is assumed to be found in the default search path.
2355 # found. If left blank, it is assumed the dot tool can be found in the path.
/lvgl-3.7.0/docs/
DCONTRIBUTING.md232 If you found and fixed a bug don't hesitate to send a [Pull request](#pull-request) with the fix.
DCHANGELOG.md298 - fix(demo): can not found lvgl.h file [`3477`](https://github.com/lvgl/lvgl/pull/3477)
1853 - Fix division by zero in draw_pattern (lv_draw_rect.c) if the image or letter is not found
/lvgl-3.7.0/
DKconfig669 bool "Enable drawing placeholders when glyph dsc is not found."