Home
last modified time | relevance | path

Searched refs:xml_id (Results 1 – 6 of 6) sorted by relevance

/lvgl-latest/src/libs/svg/
Dlv_svg.c34 t->xml_id = NULL; in lv_svg_node_constructor()
44 if(t->xml_id) { in lv_svg_node_destructor()
45 lv_free(t->xml_id); in lv_svg_node_destructor()
Dlv_svg.h294 char * xml_id; /* xml_id or content */ member
Dlv_svg_parser.c2034 node->xml_id = str; in _process_attrs_tag()
2174 node->xml_id = content; in _process_begin_tag()
2277 printf("content: [%s]\n", root->xml_id); in _lv_svg_dump_tree()
2281 if(root->xml_id) { in _lv_svg_dump_tree()
2282 printf(" - id [%s]", root->xml_id); in _lv_svg_dump_tree()
Dlv_svg_render.c1024 if((node->type != LV_SVG_TAG_CONTENT) && node->xml_id) { in _set_render_attrs()
1025 obj->id = lv_strdup(node->xml_id); in _set_render_attrs()
1105 const char * str = node->xml_id; in _init_content()
/lvgl-latest/tests/src/test_cases/
Dtest_svg.c622 const char * content = svg_node1->xml_id; in testTextAttrs()
636 const char * content1 = svg_node1->xml_id; in testTextAttrs()
639 const char * content2 = svg_node1->xml_id; in testTextAttrs()
643 const char * content3 = svg_node2->xml_id; in testTextAttrs()
657 TEST_ASSERT_EQUAL_STRING(svg_node->xml_id, "gt1"); in testGradient()
677 TEST_ASSERT_EQUAL_STRING(svg_node1->xml_id, "gt2"); in testGradient()
Dtest_svg_anim.c87 TEST_ASSERT_EQUAL_STRING(xlink, path_node->xml_id); in testAnimateMotion()