Home
last modified time | relevance | path

Searched refs:level (Results 1 – 25 of 45) sorted by relevance

12

/lvgl-latest/src/misc/
Dlv_log.c72 void lv_log_add(lv_log_level_t level, const char * file, int line, const char * func, const char * … in lv_log_add() argument
74 if(level >= LV_LOG_LEVEL_NUM) return; /*Invalid level*/ in lv_log_add()
76 if(level >= LV_LOG_LEVEL) { in lv_log_add()
101 lvl_prefix[level], LOG_TIMESTAMP_EXPR func); in lv_log_add()
111 lvl_prefix[level], LOG_TIMESTAMP_EXPR func, msg LOG_FILE_LINE_EXPR); in lv_log_add()
112 custom_print_cb(level, buf); in lv_log_add()
Dlv_log.h60 typedef void (*lv_log_print_g_cb_t)(lv_log_level_t level, const char * buf);
91 void lv_log_add(lv_log_level_t level, const char * file, int line,
148 #define lv_log_add(level, file, line, ...) argument
/lvgl-latest/src/libs/thorvg/
DtvgSwPostEffect.cpp35 int level; member
111 static int _gaussianInit(int* kernel, float sigma, int level) in _gaussianInit() argument
123 for (int i = 0; i < level; i++) { in _gaussianInit()
137 data->level = int(SwGaussianBlur::MAX_LEVEL * ((params->quality - 1) * 0.01f)) + 1; in effectGaussianPrepare()
138 auto extends = _gaussianInit(data->kernel, params->sigma * params->sigma, data->level); in effectGaussianPrepare()
178 …bbox.min.y, bbox.max.x, bbox.max.y, params->sigma, params->direction, params->border, data->level); in effectGaussianBlur()
182 for (int i = 0; i < data->level; ++i) { in effectGaussianBlur()
196 for (int i = 0; i < data->level; ++i) { in effectGaussianBlur()
/lvgl-latest/src/libs/thorvg/rapidjson/
Dprettywriter.h211 typename Base::Level* level = Base::level_stack_.template Top<typename Base::Level>(); in PrettyPrefix() local
213 if (level->inArray) { in PrettyPrefix()
214 if (level->valueCount > 0) { in PrettyPrefix()
226 if (level->valueCount > 0) { in PrettyPrefix()
227 if (level->valueCount % 2 == 0) { in PrettyPrefix()
239 if (level->valueCount % 2 == 0) in PrettyPrefix()
242 if (!level->inArray && level->valueCount % 2 == 0) in PrettyPrefix()
244 level->valueCount++; in PrettyPrefix()
Dwriter.h476 Level* level = level_stack_.template Top<Level>(); in Prefix() local
477 if (level->valueCount > 0) { in Prefix()
478 if (level->inArray) in Prefix()
481 os_->Put((level->valueCount % 2 == 0) ? ',' : ':'); in Prefix()
483 if (!level->inArray && level->valueCount % 2 == 0) in Prefix()
485 level->valueCount++; in Prefix()
/lvgl-latest/tests/src/
Dlv_test_init.c14 static void test_log_print_cb(lv_log_level_t level, const char * buf);
89 static void test_log_print_cb(lv_log_level_t level, const char * buf) in test_log_print_cb() argument
91 if(level < LV_LOG_LEVEL_WARN) { in test_log_print_cb()
/lvgl-latest/env_support/rt-thread/
Dlv_rt_thread_port.c50 static void lv_rt_log(lv_log_level_t level, const char * buf)
52 (void) level;
/lvgl-latest/docs/details/debugging/
Dlog.rst24 The events which have a higher level than the set log level will be logged
47 void my_log_cb(lv_log_level_t level, const char * buf)
/lvgl-latest/src/drivers/nuttx/
Dlv_nuttx_entry.c47 static void syslog_print(lv_log_level_t level, const char * buf);
261 static void syslog_print(lv_log_level_t level, const char * buf) in syslog_print() argument
267 syslog(priority[level], "[LVGL] %s", buf); in syslog_print()
/lvgl-latest/src/drivers/
DREADME.md1 High level drivers for display controllers, frame buffers, etc
/lvgl-latest/scripts/
Dimage_viewer.py7 logging.basicConfig(level=logging.INFO)
/lvgl-latest/src/libs/expat/
Dxmlrole.c945 state->level = 1; in element1()
965 state->level = 2; in element2()
1056 state->level += 1; in element6()
1085 state->level -= 1; in element7()
1086 if (state->level == 0) { in element7()
1092 state->level -= 1; in element7()
1093 if (state->level == 0) { in element7()
1099 state->level -= 1; in element7()
1100 if (state->level == 0) { in element7()
1106 state->level -= 1; in element7()
[all …]
Dxmlrole.h124 unsigned level; member
/lvgl-latest/examples/arduino/LVGL_Arduino/
DLVGL_Arduino.ino28 void my_print( lv_log_level_t level, const char * buf )
30 LV_UNUSED(level);
/lvgl-latest/docs/details/integration/bindings/
Dmicropython.rst32 for accessing low-level hardware (I/O pins, ADC, UART, SPI, I2C, RTC, Timers etc.)
41 MicroPython `does not have a good native high-level GUI library <https://forum.micropython.org/view…
43 high-level GUI library, which seems to be a natural candidate to map into a higher level language, …
50 - Develop GUI in Python, a very popular high level language. Use paradigms such as Object-Oriented …
68 - Creating tools to work with LVGL at a higher level (e.g. drag-and-drop designer).
/lvgl-latest/scripts/gdb/lvglgdb/
Dlvgl.py251 self.dump_obj(root, limit=args.level)
259 self.dump_obj(screen, depth=depth + 1, limit=args.level)
/lvgl-latest/docs/details/integration/os/yocto/
Dterms_and_variables.rst38 As an example, assume a Source Directory top-level folder named poky and a
110 - **TMPDIR**: The top-level build output directory
118 As an example, assume a Source Directory top-level folder name poky, a default
/lvgl-latest/docs/
DREADME.md193 * Each indentation level use 4 spaces.
233 new level to align with its parent list item like this:
235 - level 2 item 1: text
236 - level 2 item 2: text
DCODE_OF_CONDUCT.rst.back11 expression, level of experience, nationality, personal appearance, race,
/lvgl-latest/docs/details/integration/os/
Dnuttx.rst46 high-level GUI library, that could fit very well for a RTOS with
55 - Usually, GUI development for low level RTOS requires multiple
/lvgl-latest/docs/details/libs/
Drle.rst19 of every compress level. For rare conditions, RLE compress may increase the file
/lvgl-latest/docs/details/integration/boards/
Driverdi.rst62 high-level drawing commands over a lower-bandwidth interface than
/lvgl-latest/docs/details/widgets/
Dmenu.rst11 The Menu Widget can be used to easily create multi-level menus. It
/lvgl-latest/docs/details/integration/renderers/
Dnema_gfx.rst7 NemaGFX is a high-level graphics API supported
/lvgl-latest/docs/details/other-components/
Dfont_manager.rst8 facilities for high-level applications to manage and use vector fonts. Currently

12