/lvgl-latest/src/misc/ |
D | lv_rb.c | 110 lv_rb_node_t * current = tree->root; in lv_rb_find() local 112 while(current != NULL) { in lv_rb_find() 113 lv_rb_compare_res_t cmp = tree->compare(key, current->data); in lv_rb_find() 116 return current; in lv_rb_find() 119 current = current->left; in lv_rb_find() 122 current = current->right; in lv_rb_find() 357 lv_rb_node_t * current = tree->root; in rb_find_leaf_parent() local 358 lv_rb_node_t * parent = current; in rb_find_leaf_parent() 360 while(current != NULL) { in rb_find_leaf_parent() 361 parent = current; in rb_find_leaf_parent() [all …]
|
/lvgl-latest/src/libs/thorvg/rapidjson/internal/ |
D | regex.h | 487 SizeType current = kRegexInvalidRange; in RAPIDJSON_DIAG_OFF() local 504 RAPIDJSON_ASSERT(current != kRegexInvalidRange); in RAPIDJSON_DIAG_OFF() 505 GetRange(current).next = r; in RAPIDJSON_DIAG_OFF() 535 if (current != kRegexInvalidRange) in RAPIDJSON_DIAG_OFF() 536 GetRange(current).next = r; in RAPIDJSON_DIAG_OFF() 539 current = r; in RAPIDJSON_DIAG_OFF() 546 GetRange(current).end = codepoint; in RAPIDJSON_DIAG_OFF() 657 Stack<Allocator> *current = &state0_, *next = &state1_; in RAPIDJSON_DIAG_OFF() local 661 bool matched = AddState(*current, regex_.root_); in RAPIDJSON_DIAG_OFF() 663 while (!current->Empty() && (codepoint = ds.Take()) != 0) { in RAPIDJSON_DIAG_OFF() [all …]
|
/lvgl-latest/src/drivers/windows/ |
D | lv_windows_input.c | 424 lv_windows_keypad_queue_item_t * current = (lv_windows_keypad_queue_item_t *)( in lv_windows_keypad_driver_read_callback() local 426 if(current) { in lv_windows_keypad_driver_read_callback() 427 data->key = current->key; in lv_windows_keypad_driver_read_callback() 428 data->state = current->state; in lv_windows_keypad_driver_read_callback() 430 lv_ll_remove(&context->keypad.queue, current); in lv_windows_keypad_driver_read_callback() 431 lv_free(current); in lv_windows_keypad_driver_read_callback() 467 lv_windows_keypad_queue_item_t * current = (lv_windows_keypad_queue_item_t *)( in lv_windows_push_key_to_keyboard_queue() local 469 if(current) { in lv_windows_push_key_to_keyboard_queue() 470 current->key = key; in lv_windows_push_key_to_keyboard_queue() 471 current->state = state; in lv_windows_push_key_to_keyboard_queue()
|
/lvgl-latest/scripts/gdb/lvglgdb/ |
D | lvgl.py | 30 self.current = self.head 46 if not self.current: 50 node = self.current.cast(nodetype) 52 self.current = self._next(self.current)
|
/lvgl-latest/docs/details/widgets/ |
D | arc.rst | 67 - :cpp:enumerator:`LV_ARC_MODE_NORMAL` Indicator Arc is drawn clockwise from minimum to current val… 69 from maximum to current value. 70 - :cpp:enumerator:`LV_ARC_MODE_SYMMETRICAL` Indicator Arc is drawn from middle point to current val… 133 Another Widget can be positioned according to the current position of 134 the Arc in order to follow the Arc's current value (angle). To do this 139 used to rotate the Widget to the current value of the Arc.
|
D | calendar.rst | 14 - highlight the current day (today); 21 To make the Calendar flexible, by default it does not show the current 56 To set the current date (today), use the 159 current year and month.
|
D | switch.rst | 27 - :cpp:enumerator:`LV_PART_INDICATOR` The indicator that shows the current state of 48 To get the current state of the Switch (with ``true`` being on), use
|
D | slider.rst | 26 - :cpp:enumerator:`LV_PART_INDICATOR` The indicator that shows the current state of 28 - :cpp:enumerator:`LV_PART_KNOB` A rectangle (or circle) drawn at the current value; 76 current value. Requires negative minimum range and positive maximum range.
|
D | textarea.rst | 35 inserted. The cursor's area is always the bounding box of the current 53 You can insert text or characters to the current cursor's position with: 78 To delete the character to the left of the current cursor position, use 166 improved. It does this by saving some additional information about the current 198 - :cpp:expr:`lv_textarea_clear_selection(textarea)` clears current text selection. 250 - ``Any character`` Add the character to the current cursor position
|
D | bar.rst | 12 indicator against the background indicates the Bar's current value. 70 - :cpp:enumerator:`LV_BAR_MODE_SYMMETRICAL` Draws indicator from zero value to current value. Requi…
|
D | tabview.rst | 101 returns the zero based index of the current tab.
|
D | canvas.rst | 68 Canvas to blue with 50% opacity. Note that if the current color format
|
/lvgl-latest/ |
D | lv_version.h.in | 3 * The current version of LVGL
|
/lvgl-latest/examples/widgets/bar/ |
D | index.rst | 31 Custom drawer to show the current value
|
/lvgl-latest/docs/details/other-components/ |
D | fragment.rst | 62 …/* Replace current fragment with instance of sample_cls, and init_argument is user defined pointer… 70 /* Add one instance into manager stack. View object of current fragment will be destroyed,
|
/lvgl-latest/examples/styles/ |
D | index.rst | 80 Extending the current theme
|
/lvgl-latest/docs/details/integration/driver/display/ |
D | fbdev.rst | 9 access to the framebuffer (the part of a computer's video memory containing a current video frame) …
|
/lvgl-latest/src/libs/lz4/ |
D | lz4.c | 1032 U32 const current = (U32)(forwardIp - base); in LZ4_compress_generic_validated() local 1034 assert(matchIndex <= current); in LZ4_compress_generic_validated() 1070 LZ4_putIndexOnHash(current, h, cctx->hashTable, tableType); in LZ4_compress_generic_validated() 1072 DEBUGLOG(7, "candidate at pos=%u (offset=%u \n", matchIndex, current - matchIndex); in LZ4_compress_generic_validated() 1074 assert(matchIndex < current); in LZ4_compress_generic_validated() 1076 && (matchIndex+LZ4_DISTANCE_MAX < current)) { in LZ4_compress_generic_validated() 1079 … assert((current - matchIndex) <= LZ4_DISTANCE_MAX); /* match now expected within distance */ in LZ4_compress_generic_validated() 1082 if (maybe_extMem) offset = current - matchIndex; in LZ4_compress_generic_validated() 1241 U32 const current = (U32)(ip-base); in LZ4_compress_generic_validated() local 1243 assert(matchIndex < current); in LZ4_compress_generic_validated() [all …]
|
/lvgl-latest/demos/music/ |
D | README.md | 17 - Zoom the album cover proportionality to the current bass value
|
/lvgl-latest/demos/smartwatch/ |
D | lv_demo_smartwatch_home.c | 225 lv_obj_t * current = lv_obj_get_child(home_panel, i); in lv_demo_smartwatch_face_load() local 226 if(current != NULL) { in lv_demo_smartwatch_face_load() 227 lv_obj_set_parent(current, face_park); in lv_demo_smartwatch_face_load()
|
/lvgl-latest/demos/high_res/ |
D | lv_demo_high_res_app_smart_meter.c | 32 int32_t current[WIDGET3_POINT_COUNT]; member 540 …anim_values->current[i] = lv_map(v, 0, WIDGET3_ANIM_RANGE_END, anim_values->start[i], end_values[i… in widget3_chart_anim_cb() 568 lv_chart_set_ext_y_array(chart, ser, anim_values->current); in widget3_chart_selected_day_observer_cb() 571 lv_memcpy(anim_values->start, anim_values->current, sizeof(anim_values->current)); in widget3_chart_selected_day_observer_cb()
|
/lvgl-latest/docs/details/base-widget/ |
D | obj.rst | 88 lv_slider_set_value(slider1, 40, LV_ANIM_ON); /* Set the current value (position) */ 103 To get a Widget's current parent, use :cpp:expr:`lv_obj_get_parent(widget)`. 163 …lv_obj_t * parent = lv_obj_create(lv_screen_active()); /* Create a parent Widget on current scree… 216 UIs can be created based on the current environment of the device. For 295 - are automatically attached to the :ref:`default_display` current when the Screen 362 …:enumerator:`LV_SCR_LOAD_ANIM_OVER_BOTTOM`: Move the new screen over the current towards the given… 363 …umerator:`LV_SCR_LOAD_ANIM_OUT_BOTTOM`: Move out the old screen over the current towards the given… 364 …E_TOP` and :cpp:enumerator:`LV_SCR_LOAD_ANIM_MOVE_BOTTOM`: Move both the current and new screens t…
|
/lvgl-latest/env_support/rt-thread/ |
D | SConscript | 9 cwd = GetCurrentDir() # get current dir path
|
/lvgl-latest/docs/intro/ |
D | basics.rst | 137 when the Screen is the :ref:`active_screen`. If you want to delete the current Screen 139 ``auto_del`` argument. If you want to keep the current Screen in RAM when you load a 247 current event code and other event-related information. The current event code can 372 If a property is not set for the current state, the style with
|
/lvgl-latest/src/stdlib/builtin/ |
D | lv_tlsf.c | 613 block_header_t * current = control->blocks[fl][sl]; in insert_free_block() local 614 tlsf_assert(current && "free list cannot have a null entry"); in insert_free_block() 616 block->next_free = current; in insert_free_block() 618 current->prev_free = block; in insert_free_block()
|