Home
last modified time | relevance | path

Searched refs:root (Results 1 – 25 of 52) sorted by relevance

123

/lvgl-latest/src/libs/thorvg/rapidjson/
Dpointer.h452 …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/
Dlv_example_fragment_1.c15 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()
Dlv_example_fragment_2.c38 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/
Dlv_example_snapshot_1.c26 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/
Dlv_rb.c59 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 …]
Dlv_math.c212 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()
Dlv_rb_private.h36 lv_rb_node_t * root; member
/lvgl-latest/env_support/rt-thread/
DSConscript28 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/
Dadd_translation.py27 for root, _, filenames in os.walk(dir_path):
30 files.append(os.path.join(root, filename))
Dexample_list.py129 for root, dirs, files in os.walk(path):
132 filelist.append(os.path.join(root, f))
Ddoc_builder.py277 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/
Dlv_demo_flex_layout_view.c58 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()
Dlv_demo_flex_layout_ctrl_pad.c83 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()
Dlv_demo_flex_layout_main.h31 lv_obj_t * root; member
/lvgl-latest/env_support/rt-thread/squareline/
DSConscript16 for root, dirs, files in os.walk(sls_src_cwd):
18 current_path = os.path.join(root, dir)
/lvgl-latest/scripts/gdb/lvglgdb/
Dlvgl.py248 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/
Dtest_obj_property.c35 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/
Dlv_svg_parser.h76 void _lv_svg_dump_tree(lv_svg_node_t * root, int depth);
/lvgl-latest/examples/widgets/menu/
Dindex.rst8 Simple Menu with root btn
/lvgl-latest/docs/details/integration/os/buildroot/
Dlvgl_app.rst101 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/
Dmenu.rst58 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/
DtvgSvgLoader.h41 Scene* root = nullptr; variable
/lvgl-latest/scripts/
Dproperties.py39 for root, dirs, files in os.walk(directory):
42 yield os.path.join(root, file)
/lvgl-latest/libs/nema_gfx/include/
Dnema_cmdlist.h59 struct nema_cmdlist_t_ *root; /**< Points to the head of the list */ member
/lvgl-latest/env_support/pikascript/
DREADME.md7 … are in the `pika_lvgl.pyi`, and you need copy the `pika_lvgl.pyi` to the root path of pikascript,…

123