Searched refs:element (Results 1 – 17 of 17) sorted by relevance
/lvgl-latest/src/libs/thorvg/ |
D | tvgInlist.h | 52 void back(T* element) in back() 55 tail->next = element; in back() 56 element->prev = tail; in back() 57 element->next = nullptr; in back() 58 tail = element; in back() 60 head = tail = element; in back() 61 element->prev = nullptr; in back() 62 element->next = nullptr; in back() 66 void front(T* element) in front() 69 head->prev = element; in front() [all …]
|
D | tvgArray.h | 56 void push(T element) in push() 62 data[count++] = element; in push()
|
/lvgl-latest/docs/ |
D | doc_builder.py | 160 def build_docstring(element): argument 162 if element.tag == 'parameterlist': 165 if element.text: 166 docstring = element.text.strip() 168 for item in element: 176 if element.tag == 'para': 180 if element.tag == 'ref': 183 if element.tail: 185 docstring += ' ' + element.tail.strip() 187 docstring = element.tail.strip() [all …]
|
D | README.md | 59 …me (i.e. "event" from file name "event.rst") and compares this with code-element names found by Do… 61 … ensure the stem of the file name matches the beginning part of the code-element name you want it … 63 …u are creating, ensure the stem of the file name DOES NOT match any code-element names found in th…
|
D | CODING_STYLE.rst | 126 - In comments use back-quotes (\`...\`) when referring to a code element, such as a variable, type, 184 - Always start Doxygen comment with a brief description of the code element it documents.
|
/lvgl-latest/src/font/ |
D | lv_font_fmt_txt.c | 38 static int unicode_list_compare(const void * ref, const void * element); 39 static int kern_pair_8_compare(const void * ref, const void * element); 40 static int kern_pair_16_compare(const void * ref, const void * element); 364 static int kern_pair_8_compare(const void * ref, const void * element) in kern_pair_8_compare() argument 367 const uint8_t * element8_p = element; in kern_pair_8_compare() 374 static int kern_pair_16_compare(const void * ref, const void * element) in kern_pair_16_compare() argument 377 const uint16_t * element16_p = element; in kern_pair_16_compare() 594 static int unicode_list_compare(const void * ref, const void * element) in unicode_list_compare() argument 596 return (*(uint16_t *)ref) - (*(uint16_t *)element); in unicode_list_compare()
|
/lvgl-latest/src/misc/ |
D | lv_array.c | 174 lv_result_t lv_array_push_back(lv_array_t * array, const void * element) in lv_array_push_back() argument 189 if(element) lv_memcpy(data, element, array->element_size); in lv_array_push_back()
|
D | lv_array.h | 165 lv_result_t lv_array_push_back(lv_array_t * array, const void * element);
|
/lvgl-latest/src/core/ |
D | lv_obj_property.c | 95 static int property_name_compare(const void * ref, const void * element); 333 static int property_name_compare(const void * ref, const void * element) in property_name_compare() argument 335 const lv_property_name_t * prop = element; in property_name_compare()
|
/lvgl-latest/docs/details/widgets/ |
D | buttonmatrix.rst | 49 that the last element must be either ``NULL`` or an empty string 60 element of the array. 110 An element of ``ctrl_map`` should look like
|
/lvgl-latest/docs/details/other-components/ |
D | obj_property.rst | 76 the corresponding array element will be initialized with a function pointer. 203 lv_style_value_t style; /**< Make sure it's the first element in struct. */
|
D | observer.rst | 208 The trick is that when any element of the group is notified the subject group will be notified as w…
|
D | xml.rst | 104 - ``<component>``: The root element.
|
/lvgl-latest/docs/details/integration/bindings/ |
D | api_json.rst | 52 Those categories are the element names undert the root of the JSON data. 202 element of a ``"function"`` type.
|
/lvgl-latest/docs/details/base-widget/layouts/ |
D | grid.rst | 56 by declaring 2 arrays and the track sizes in them. The last element must
|
/lvgl-latest/docs/details/main-components/ |
D | indev.rst | 147 1. in the input device by the ``indev->rotary_sensitivity`` element (1/256 unit), and 233 keypad or encoder. It works similar to the *TAB* key on the PC to select an element
|
/lvgl-latest/docs/details/base-widget/styles/ |
D | style.rst | 575 .. _pseudo-element: https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/Selectors#…
|