Home
last modified time | relevance | path

Searched refs:message (Results 1 – 25 of 27) sorted by relevance

12

/lvgl-latest/tests/unity/
Dunity.h103 …fine TEST_FAIL_MESSAGE(message) UN… argument
105 …ne TEST_IGNORE_MESSAGE(message) UNIT… argument
107 #define TEST_MESSAGE(message) … argument
110 #define TEST_PRINTF(message, ...) … argument
116 #define TEST_PASS_MESSAGE(message) … argument
419 …ESSAGE(condition, message) UNITY_TEST_ASSERT( … argument
420 …E_MESSAGE(condition, message) UNITY_TEST_ASSERT( … argument
421 …SS_MESSAGE(condition, message) UNITY_TEST_ASSERT( … argument
422 …E_MESSAGE(condition, message) UNITY_TEST_ASSERT( … argument
423 …LL_MESSAGE(pointer, message) UNITY_TEST_ASSERT_NUL… argument
[all …]
Dunity_internals.h667 UNITY_NORETURN void UnityFail(const char* message, const UNITY_LINE_TYPE line);
668 UNITY_NORETURN void UnityIgnore(const char* message, const UNITY_LINE_TYPE line);
670 void UnityFail(const char* message, const UNITY_LINE_TYPE line);
671 void UnityIgnore(const char* message, const UNITY_LINE_TYPE line);
674 void UnityMessage(const char* message, const UNITY_LINE_TYPE line);
871 #define UNITY_TEST_FAIL(line, message) UnityFail( (message), (UNITY_LINE_TYPE)(line)) argument
872 #define UNITY_TEST_IGNORE(line, message) UnityIgnore( (message), (UNITY_LINE_TYPE)(line)) argument
878 …e, message) do { if (condition) { /* nothing*/ } else… argument
879 …ointer, line, message) UNITY_TEST_ASSERT(((pointer) == N… argument
880 …(pointer, line, message) UNITY_TEST_ASSERT(((pointer) != NUL… argument
[all …]
/lvgl-latest/scripts/
Dchangelog-template.hbs8 {{#commit-list merges heading='' message='BREAKING CHANGE'}}
9 - .. warning: {{message}} `{{id}} <{{href}}>`__
11 {{#commit-list commits heading='' message='BREAKING CHANGE'}}
14 {{#commit-list fixes heading='' message='BREAKING CHANGE'}}
21 {{#commit-list merges heading='' message='^arch' exclude='BREAKING CHANGE'}}
22 - **{{message}}** `{{id}} <{{href}}>`__
24 {{#commit-list commits heading='' message='^arch' exclude='BREAKING CHANGE'}}
27 {{#commit-list fixes heading='' message='^arch' exclude='BREAKING CHANGE'}}
34 {{#commit-list merges heading='' message='^feat' exclude='BREAKING CHANGE'}}
35 - **{{message}}** `{{id}} <{{href}}>`__
[all …]
/lvgl-latest/tests/src/test_cases/widgets/
Dtest_list.c21 const char * message = "LVGL Rocks!"; in test_list_get_text_from_added_button() local
22 lv_obj_t * button_ok = lv_list_add_button(list, LV_SYMBOL_OK, message); in test_list_get_text_from_added_button()
24 TEST_ASSERT_EQUAL_STRING(message, lv_list_get_button_text(list, button_ok)); in test_list_get_text_from_added_button()
29 const char * message = "LVGL Rocks!"; in test_list_get_text_from_button_without_symbol() local
30 lv_obj_t * button_ok = lv_list_add_button(list, NULL, message); in test_list_get_text_from_button_without_symbol()
32 TEST_ASSERT_EQUAL_STRING(message, lv_list_get_button_text(list, button_ok)); in test_list_get_text_from_button_without_symbol()
45 const char * message = "LVGL Rocks!"; in test_list_get_text_from_label() local
46 lv_obj_t * label = lv_list_add_text(list, message); in test_list_get_text_from_label()
48 TEST_ASSERT_EQUAL_STRING(message, lv_label_get_text(label)); in test_list_get_text_from_label()
Dtest_checkbox.c66 const char * message = "Hello World!"; in test_checkbox_should_return_dynamically_allocated_text() local
71 lv_checkbox_set_text(checkbox, message); in test_checkbox_should_return_dynamically_allocated_text()
73 TEST_ASSERT_EQUAL_STRING(message, lv_checkbox_get_text(checkbox)); in test_checkbox_should_return_dynamically_allocated_text()
100 const char * message = in test_checkbox_rtl() local
113 lv_checkbox_set_text(test_checkbox, message); in test_checkbox_rtl()
Dtest_label.c572 const char * message = in test_label_rtl_dot_long_mode() local
588 lv_label_set_text(test_label, message); in test_label_rtl_dot_long_mode()
/lvgl-latest/docs/details/widgets/
Dmsgbox.rst20 The message box can be modal (blocking clicks on the rest of the screen)
30 The message box is built from other Widgets, so you can check these
45 Create a message box
48 :cpp:expr:`lv_msgbox_create(parent)` creates a message box.
49 If ``parent`` is ``NULL`` the message box will be modal, and will use the
72 The building blocks of the message box can be obtained using the
82 Functions that add something to the message box return a pointer to the newly added Widget:
93 Close the message box
96 :cpp:expr:`lv_msgbox_close(msgbox)` closes (deletes) the message box.
98 :cpp:expr:`lv_msgbox_close_async(msgbox)` closes (deletes) the message box
[all …]
/lvgl-latest/src/libs/lz4/
Dlz4.h780 # define LZ4_DEPRECATED(message) /* disable deprecation warnings */ argument
783 # define LZ4_DEPRECATED(message) [[deprecated(message)]] argument
785 # define LZ4_DEPRECATED(message) __declspec(deprecated(message)) argument
787 # define LZ4_DEPRECATED(message) __attribute__((deprecated(message))) argument
789 # define LZ4_DEPRECATED(message) __attribute__((deprecated)) argument
791 # pragma message("WARNING: LZ4_DEPRECATED needs custom implementation for this compiler")
792 # define LZ4_DEPRECATED(message) /* disabled */ argument
/lvgl-latest/demos/smartwatch/
Dlv_demo_smartwatch_notifications.h56 void lv_demo_smartwatch_add_notification(int app_id, const char * message, int index);
64 void lv_demo_smartwatch_show_notification(int app_id, const char * message, const char * time);
Dlv_demo_smartwatch.h68 void lv_demo_smartwatch_show_dialog(const char * title, const char * message);
166 void lv_demo_smartwatch_add_notification(int app_id, const char * message, int index);
174 void lv_demo_smartwatch_show_notification(int app_id, const char * message, const char * time);
Dlv_demo_smartwatch_notifications.c105 void lv_demo_smartwatch_add_notification(int app_id, const char * message, int index) in lv_demo_smartwatch_add_notification() argument
140 lv_label_set_text(notification_text, message); in lv_demo_smartwatch_add_notification()
147 void lv_demo_smartwatch_show_notification(int app_id, const char * message, const char * time) in lv_demo_smartwatch_show_notification() argument
150 lv_label_set_text(message_content, message); in lv_demo_smartwatch_show_notification()
Dlv_demo_smartwatch.c179 void lv_demo_smartwatch_show_dialog(const char * title, const char * message) in lv_demo_smartwatch_show_dialog() argument
193 lv_label_set_text(dialog_message, message); in lv_demo_smartwatch_show_dialog()
/lvgl-latest/src/drivers/windows/
Dlv_windows_display.c161 MSG message; in lv_windows_display_thread_entrypoint() local
162 while(GetMessageW(&message, NULL, 0, 0)) { in lv_windows_display_thread_entrypoint()
163 TranslateMessage(&message); in lv_windows_display_thread_entrypoint()
164 DispatchMessageW(&message); in lv_windows_display_thread_entrypoint()
/lvgl-latest/tests/
DCMakeLists.txt41 message(FATAL_ERROR "Unknown language ${lang}")
152 message(FATAL_ERROR "Must provide a known options value (check main.py?).")
157 message("Non AMD64 target is specified")
372 message("Disable OpenGL, GLEW or glfw3 for non-amd64 build")
384 message("Enable LV_USE_OPENGLES")
386 message("OpenGL, GLEW or glfw3 not found, defaulting to 0")
392 message("libinput not found, defaulting to 0")
400 message("xkbcommon not found, defaulting to 0")
409 message("libdrm not found, defaulting to 0")
/lvgl-latest/docs/_static/js/
Dcustom.js55 console.error('Fetch error: ' + error.message);
/lvgl-latest/src/drivers/glfw/
Dlv_opengles_driver.c370 char * message = lv_malloc_zeroed(length * sizeof(char)); in lv_opengles_shader_compile() local
371 GL_CALL(glGetShaderInfoLog(id, length, &length, message)); in lv_opengles_shader_compile()
373 LV_LOG_ERROR("%s", message); in lv_opengles_shader_compile()
/lvgl-latest/src/libs/libpng/
Dlv_libpng.c333 LV_LOG_ERROR("png decode failed: %s", image.message); in decode_png()
/lvgl-latest/docs/
DCONTRIBUTING.rst69 4. Add a commit message on the bottom of the page.
94 Commit message format
DCODING_STYLE.rst375 the commit message, if any file gets formatted by **astyle** you will
/lvgl-latest/docs/details/integration/driver/
Dwayland.rst124 Causing the driver to wait until the arrival of any message on the wayland socket, the process is i…
/lvgl-latest/docs/details/integration/chip/
Dnxp.rst45 there will be logged just an error message via `LV_LOG_ERROR`.
218 message via `LV_LOG_ERROR`.
/lvgl-latest/docs/details/base-widget/
Devent.rst228 For example, this can be used to manually close a message box by
/lvgl-latest/docs/intro/
Dintroduction.rst67 …://forum.lvgl.io/c/my-projects/10>`__ category of the forum or a private message to `lvgl.io <http…
/lvgl-latest/src/
Dlv_conf_internal.h65 …#pragma message("Possible failure to include lv_conf.h, please read the comment in this file if yo…
/lvgl-latest/docs/details/main-components/
Dindev.rst277 - If you press the encoder on a complex object (like a list, message box, etc.)

12