/lvgl-latest/src/libs/thorvg/rapidjson/internal/ |
D | dtoa.h | 66 const DiyFp one(uint64_t(1) << -Mp.e, Mp.e); in DigitGen() 68 uint32_t p1 = static_cast<uint32_t>(Mp.f >> -one.e); in DigitGen() 69 uint64_t p2 = Mp.f & (one.f - 1); in DigitGen() 90 uint64_t tmp = (static_cast<uint64_t>(p1) << -one.e) + p2; in DigitGen() 93 GrisuRound(buffer, *len, delta, tmp, kPow10[kappa] << -one.e, wp_w.f); in DigitGen() 102 char d = static_cast<char>(p2 >> -one.e); in DigitGen() 105 p2 &= one.f - 1; in DigitGen() 110 GrisuRound(buffer, *len, delta, p2, one.f, wp_w.f * (index < 20 ? kPow10[index] : 0)); in DigitGen()
|
/lvgl-latest/docs/details/widgets/ |
D | spangroup.rst | 31 - :cpp:enumerator:`LV_PART_MAIN` Spangroup has only one part. 97 Like the Label Widget, a Spangroup can be set to one the following text-alignment modes: 111 A Spangroup can be set to one the following modes: 114 - :cpp:enumerator:`LV_SPAN_MODE_EXPAND` Expand size to text size but stay on one line. 123 A Spangroup can be set to handle text overflow in one of the following ways:
|
D | arc.rst | 65 The Arc can be one of the following modes: 104 exclusively use one or the other of the two methods. Mixing the two could 167 - ``LV_KEY_RIGHT/UP`` Increases value by one. 168 - ``LV_KEY_LEFT/DOWN`` Decreases value by one.
|
D | spinner.rst | 37 customize the duration of one revolution and the length of the arc.
|
D | chart.rst | 52 data series is created (more on this below). More than one data series can be 60 - LINE- and BAR-charts require only one data-value array to supply Y-values for each data point. 146 A chart can be one of the following types: 176 ``axis`` specifies which axis is used to scale its values, and may be one of the following: 184 (primary or secondary) with one of the X-axis values. 186 If you wish to have the chart use your own Y-value array instead of the one provided, 249 - :cpp:enumerator:`LV_CHART_UPDATE_MODE_SHIFT`: Shift old data to the left and add the new one to t… 325 programmatically using one of the functions below.
|
D | label.rst | 50 label or until another buffer is set via one of the above functions. 105 …higher, scroll vertically. Only one direction is scrolled and horizontal scrolling has higher prec… 107 …higher, scroll vertically. Only one direction is scrolled and horizontal scrolling has higher prec… 152 passing one of the ``LV_TEXT_ALIGN_...`` enumeration values.
|
D | buttonmatrix.rst | 18 New Button Matrix Widgets are added to the default group (if one is set). 118 :cpp:expr:`lv_buttonmatrix_set_one_checked(btn_matrix, true)` to allow only one button to 153 select one
|
D | animimg.rst | 11 difference is that instead of one source image, you set an array of
|
D | win.rst | 71 If more than one label is added, each label will share that space equally unless 80 to use is one of the ``LV_SYMBOL_...`` macros, such as :c:macro:`LV_SYMBOL_CLOSE`
|
D | list.rst | 51 with one of the ``lv_label_set_text...()`` functions.
|
D | keyboard.rst | 119 handler would replace the previous one. 135 selecting the one navigated to.
|
/lvgl-latest/examples/others/gridnav/ |
D | index.rst | 26 Grid navigation for only one axis
|
/lvgl-latest/docs/details/other-components/ |
D | fragment.rst | 70 /* Add one instance into manager stack. View object of current fragment will be destroyed, 75 /* Remove the top most fragment from the stack, and bring back previous one. */
|
/lvgl-latest/scripts/built_in_font/font_license/DejaVuSans/ |
D | LICENSE | 19 be included in all copies of one or more of the Font Software typefaces. 32 copy of one or more of the Font Software typefaces may be sold by itself. 66 shall be included in all copies of one or more of the Font Software 80 no copy of one or more of the Font Software typefaces may be sold by
|
/lvgl-latest/docs/ |
D | README.md | 70 While with `.md` files, it is important to allow paragraphs to flow off to the right with one long … 119 - **must** be followed by at least one blank line for the doc-generation logic to process it correc… 123 That unique name is then used to provide a link reference elsewhere in the documentation using one … 195 * There must be one empty line between the code block directive and the code. 196 …ve has 2 colons. (The only ReST and sphinx directives that are valid with one colon are **link ta… 261 Arguments that are expressions (more than one word), or contain non-alphanumeric characters will ca…
|
/lvgl-latest/docs/intro/add-lvgl-to-your-project/ |
D | timer_handler.rst | 8 periodically in one of the following:
|
/lvgl-latest/docs/details/libs/ |
D | tjpgd.rst | 39 enable one in ``lv_conf.h`` with ``LV_USE_FS_...`` config.
|
D | gif.rst | 36 enable one in ``lv_conf.h`` with ``LV_USE_FS_...``
|
D | lodepng.rst | 17 enable one in ``lv_conf.h`` with ``LV_USE_FS_...``
|
D | bmp.rst | 24 enable one in ``lv_conf.h`` with ``LV_USE_FS_...``
|
/lvgl-latest/src/draw/sw/ |
D | lv_draw_sw_gradient.c | 198 lv_color_t one, two; in lv_gradient_color_calculate() local 199 one = dsc->stops[found_i - 1].color; in lv_gradient_color_calculate() 210 *color_out = GRAD_CM(LV_UDIV255(two.red * mix + one.red * imix), in lv_gradient_color_calculate() 211 LV_UDIV255(two.green * mix + one.green * imix), in lv_gradient_color_calculate() 212 LV_UDIV255(two.blue * mix + one.blue * imix)); in lv_gradient_color_calculate()
|
/lvgl-latest/docs/details/main-components/ |
D | display.rst | 32 - Have two large TFT displays: one for a customer and one for the shop assistant. 34 If you set up LVGL to use more than one display, be aware that some functions use the 59 one is displayed at any given time) 216 Display remains the first one created. 242 - ``render_mode`` is one of the following: 278 If only one buffer is used, LVGL draws the content of the screen into 287 If two buffers are used LVGL can draw into one buffer while the content 310 * screen one-by-one. `put_px` is just an example. It needs to be implemented by you. */ 624 For example, if there are 4 CPU cores, one core can draw the screen's background while the other 3 … 630 … tiles and 4 cores, there will always be an independent area for each core within one of the tiles.
|
/lvgl-latest/docs/details/base-widget/ |
D | coord.rst | 143 However, there is one case in which you need to be aware of the 188 lv_obj_set_pos(widget, 10, 20); /* Or in one function */ 211 that call, that "anchor" will be remembered until another one is established. 222 /* Or combine the above in one function... */ 306 lv_obj_set_size(widget, 200, 100); /* Or in one function */ 369 - It also makes possible to modify the values in one place. 542 There is only one function that is the same for every layout:
|
/lvgl-latest/docs/details/integration/framework/ |
D | tasmota-berry.rst | 25 one-pass compiler and register-based VM, all the code is written in ANSI 35 - Fast: optimized one-pass bytecode compiler and register-based virtual machine.
|
/lvgl-latest/docs/details/integration/os/ |
D | qnx.rst | 84 As a general rule, if you only want to have one LVGL application in your system 85 then it is better to use a static library. If you have more than one, and
|