/lvgl-latest/src/libs/thorvg/rapidjson/ |
D | pointer.h | 452 …ValueType& Create(ValueType& root, typename ValueType::AllocatorType& allocator, bool* alreadyExis… 454 ValueType* v = &root; 534 …UriType GetUri(ValueType& root, const UriType& rootUri, size_t* unresolvedTokenIndex = 0, Allocato… 539 ValueType* v = &root; 573 …UriType GetUri(const ValueType& root, const UriType& rootUri, size_t* unresolvedTokenIndex = 0, Al… 574 return GetUri(const_cast<ValueType&>(root), rootUri, unresolvedTokenIndex, allocator); 595 ValueType* Get(ValueType& root, size_t* unresolvedTokenIndex = 0) const { 597 ValueType* v = &root; 630 const ValueType* Get(const ValueType& root, size_t* unresolvedTokenIndex = 0) const { 631 return Get(const_cast<ValueType&>(root), unresolvedTokenIndex); [all …]
|
/lvgl-latest/examples/others/fragment/ |
D | lv_example_fragment_1.c | 15 static lv_obj_t * root = NULL; variable 30 root = lv_obj_create(lv_screen_active()); in lv_example_fragment_1() 31 lv_obj_set_size(root, LV_PCT(100), LV_PCT(100)); in lv_example_fragment_1() 34 lv_obj_add_event_cb(root, sample_container_delete, LV_EVENT_DELETE, manager); in lv_example_fragment_1() 37 lv_fragment_manager_replace(manager, fragment, &root); in lv_example_fragment_1()
|
D | lv_example_fragment_2.c | 38 lv_obj_t * root = lv_obj_create(lv_screen_active()); in lv_example_fragment_2() local 39 lv_obj_set_size(root, LV_PCT(100), LV_PCT(100)); in lv_example_fragment_2() 40 lv_obj_set_layout(root, LV_LAYOUT_GRID); in lv_example_fragment_2() 43 lv_obj_set_grid_dsc_array(root, col_dsc, row_dsc); in lv_example_fragment_2() 44 container = lv_obj_create(root); in lv_example_fragment_2() 48 lv_obj_t * push_btn = lv_button_create(root); in lv_example_fragment_2() 52 lv_obj_t * pop_btn = lv_button_create(root); in lv_example_fragment_2() 60 lv_obj_add_event_cb(root, sample_container_delete, LV_EVENT_DELETE, manager); in lv_example_fragment_2()
|
/lvgl-latest/examples/others/snapshot/ |
D | lv_example_snapshot_1.c | 26 lv_obj_t * root = lv_screen_active(); in lv_example_snapshot_1() local 27 lv_obj_set_style_bg_color(root, lv_palette_main(LV_PALETTE_LIGHT_BLUE), 0); in lv_example_snapshot_1() 30 lv_obj_t * snapshot_obj = lv_image_create(root); in lv_example_snapshot_1() 37 lv_obj_t * container = lv_obj_create(root); in lv_example_snapshot_1()
|
/lvgl-latest/src/misc/ |
D | lv_rb.c | 59 tree->root = NULL; in lv_rb_init() 79 if(tree->root == NULL) { in lv_rb_insert() 80 tree->root = node; in lv_rb_insert() 110 lv_rb_node_t * current = tree->root; in lv_rb_find() 148 tree->root = replace; in lv_rb_remove_node() 198 tree->root = child; in lv_rb_remove_node() 265 lv_rb_node_t * node = tree->root; in lv_rb_destroy() 290 tree->root = NULL; in lv_rb_destroy() 299 return lv_rb_minimum_from(tree->root); in lv_rb_minimum() 308 return lv_rb_maximum_from(tree->root); in lv_rb_maximum() [all …]
|
D | lv_math.c | 212 uint32_t root = 0; in lv_sqrt() local 216 trial = root + mask; in lv_sqrt() 217 if(trial * trial <= x) root = trial; in lv_sqrt() 221 q->i = root >> 4; in lv_sqrt() 222 q->f = (root & 0xf) << 4; in lv_sqrt()
|
D | lv_rb_private.h | 36 lv_rb_node_t * root; member
|
/lvgl-latest/env_support/rt-thread/ |
D | SConscript | 28 for root, dirs, files in os.walk(lvgl_src_cwd): 30 current_path = os.path.join(root, dir) 41 for root, dirs, files in os.walk(lvgl_src_cwd): 43 current_path = os.path.join(root, dir) 51 for root, dirs, files in os.walk(lvgl_src_cwd): 53 current_path = os.path.join(root, dir)
|
/lvgl-latest/docs/ |
D | add_translation.py | 27 for root, _, filenames in os.walk(dir_path): 30 files.append(os.path.join(root, filename))
|
D | example_list.py | 129 for root, dirs, files in os.walk(path): 132 filelist.append(os.path.join(root, f))
|
D | doc_builder.py | 277 root = load_xml(refid) 279 for compounddef in root: 420 root = load_xml(parent.refid) 422 for compounddef in root: 580 root = load_xml(parent.refid) 582 for compounddef in root: 793 root = load_xml(parent.refid) 795 for compounddef in root: 952 root = load_xml(parent.refid) 954 for compounddef in root: [all …]
|
/lvgl-latest/demos/flex_layout/ |
D | lv_demo_flex_layout_view.c | 58 ui->root = obj_child_node_create(par, ui); in view_create() 59 lv_obj_set_size(ui->root, lv_pct(50), lv_pct(80)); in view_create() 104 lv_obj_send_event(ui->root, LV_EVENT_CLICKED, NULL); /*Make it active by default*/ in view_create() 107 lv_obj_fade_in(ui->root, 600, 0); in view_create()
|
D | lv_demo_flex_layout_ctrl_pad.c | 83 if(ui->obj_cur == ui->root) { in ctrl_pad_btn_remove_event_handler() 84 lv_obj_clean(ui->root); in ctrl_pad_btn_remove_event_handler()
|
D | lv_demo_flex_layout_main.h | 31 lv_obj_t * root; member
|
/lvgl-latest/env_support/rt-thread/squareline/ |
D | SConscript | 16 for root, dirs, files in os.walk(sls_src_cwd): 18 current_path = os.path.join(root, dir)
|
/lvgl-latest/scripts/gdb/lvglgdb/ |
D | lvgl.py | 248 if args.root: 249 root = gdb.parse_and_eval(args.root) 250 root = LVObject(root) 251 self.dump_obj(root, limit=args.level)
|
/lvgl-latest/tests/src/test_cases/widgets/ |
D | test_obj_property.c | 35 lv_obj_t * root = lv_obj_create(lv_screen_active()); in test_obj_property_set_get_should_match() local 76 prop.ptr = root; in test_obj_property_set_get_should_match() 78 TEST_ASSERT_EQUAL_PTR(root, lv_obj_get_parent(obj)); in test_obj_property_set_get_should_match() 79 TEST_ASSERT_EQUAL_PTR(root, lv_obj_get_property(obj, LV_PROPERTY_OBJ_PARENT).ptr); in test_obj_property_set_get_should_match() 84 prop.ptr = root; in test_obj_property_set_get_should_match() 86 TEST_ASSERT_EQUAL_PTR(root, lv_obj_get_parent(img)); in test_obj_property_set_get_should_match() 87 TEST_ASSERT_EQUAL_PTR(root, lv_obj_get_property(img, LV_PROPERTY_OBJ_PARENT).ptr); in test_obj_property_set_get_should_match()
|
/lvgl-latest/src/libs/svg/ |
D | lv_svg_parser.h | 76 void _lv_svg_dump_tree(lv_svg_node_t * root, int depth);
|
/lvgl-latest/examples/widgets/menu/ |
D | index.rst | 8 Simple Menu with root btn
|
/lvgl-latest/docs/details/integration/os/buildroot/ |
D | lvgl_app.rst | 101 Navigate back to the root of the project and clone the repository: 133 In Buildroot, a rootfs overlay (or root filesystem overlay) is a mechanism that 135 the root filesystem of the target image during the build process. It is a way 136 to extend or modify the content of the root filesystem without altering the
|
/lvgl-latest/docs/details/widgets/ |
D | menu.rst | 58 The following root back button modes exist: 63 You can set root back button modes with 120 - :cpp:expr:`lv_menu_back_button_is_root(menu, button)` to check if button is root
|
/lvgl-latest/src/libs/thorvg/ |
D | tvgSvgLoader.h | 41 Scene* root = nullptr; variable
|
/lvgl-latest/scripts/ |
D | properties.py | 39 for root, dirs, files in os.walk(directory): 42 yield os.path.join(root, file)
|
/lvgl-latest/libs/nema_gfx/include/ |
D | nema_cmdlist.h | 59 struct nema_cmdlist_t_ *root; /**< Points to the head of the list */ member
|
/lvgl-latest/env_support/pikascript/ |
D | README.md | 7 … are in the `pika_lvgl.pyi`, and you need copy the `pika_lvgl.pyi` to the root path of pikascript,…
|