Home
last modified time | relevance | path

Searched refs:join (Results 1 – 25 of 58) sorted by relevance

123

/lvgl-latest/docs/
Dbuild.py275 project_path = os.path.abspath(os.path.join(base_path, '..'))
276 examples_path = os.path.join(project_path, 'examples')
277 lvgl_src_path = os.path.join(project_path, 'src')
278 latex_output_path = os.path.join(temp_directory, 'out_latex')
279 pdf_src_file = os.path.join(latex_output_path, 'LVGL.pdf')
280 pdf_dst_file = os.path.join(temp_directory, 'LVGL.pdf')
282 html_dst_path = os.path.join(project_path, 'out_html')
415 temp_path = os.path.join(temp_directory, 'CHANGELOG.rst')
417 temp_path = os.path.join(temp_directory, 'CODING_STYLE.rst')
419 temp_path = os.path.join(temp_directory, 'CONTRIBUTING.rst')
[all …]
Dconfig_builder.py13 dst_config = os.path.join(base_path, 'lv_conf.h')
14 src_config = os.path.abspath(os.path.join(
43 line = ' '.join(line)
49 data = '\n'.join(data)
Dadd_translation.py30 files.append(os.path.join(root, filename))
46 rst_file = os.path.join(temp_directory, 'index.rst')
Ddoc_builder.py149 args = ' '.join(str(arg) for arg in args)
200 fle = os.path.join(xml_path, fle + '.xml')
901 return '\n'.join(template)
1175 out_path = os.path.join(api_path, p)
1182 src_path = os.path.join(lvgl_src_path, p)
1192 if os.path.isdir(os.path.join(src_path, file)):
1193 folders.append((file, os.path.join(p, file)))
1203 index_file = open(os.path.join(out_path, 'index.rst'), 'w')
1215 rst_file = os.path.join(out_path, name + '.rst')
1216 html_file = os.path.join(p, name + '.html')
[all …]
Dexample_list.py122 output_path = os.path.join(temp_directory, 'examples.rst')
132 filelist.append(os.path.join(root, f))
/lvgl-latest/tests/
Dmain.py14 lvgl_script_path = os.path.join(lvgl_test_dir, "../scripts")
17 wayland_dir = os.path.join(lvgl_test_dir, "wayland_protocols")
74 return os.path.join(lvgl_test_dir, get_base_build_dir(options_name))
86 os.path.join(wayland_protocols_dir, "stable/xdg-shell/xdg-shell.xml"),
87 os.path.join(wayland_dir, "wayland_xdg_shell.h.original"),
92 os.path.join(wayland_protocols_dir, "stable/xdg-shell/xdg-shell.xml"),
93 os.path.join(wayland_dir, "wayland_xdg_shell.c.original"),
97 with open(os.path.join(wayland_dir, "wayland_xdg_shell.h"), "w") as outfile:
99 os.path.join(wayland_dir, "wayland_xdg_shell.h.original")], stdout=outfile)
101 with open(os.path.join(wayland_dir, "wayland_xdg_shell.c"), "w") as outfile:
[all …]
/lvgl-latest/env_support/rt-thread/
DSConscript27 src = src + Glob(os.path.join(lvgl_src_cwd,'*.c'))
30 current_path = os.path.join(root, dir)
31 …if current_path == os.path.join(lvgl_src_cwd, 'libs', 'thorvg', 'rapidjson', 'msinttypes'): # excl…
33 src = src + Glob(os.path.join(current_path,'*.c')) # add all .c files
43 current_path = os.path.join(root, dir)
44 src = src + Glob(os.path.join(current_path,'*.c'))
53 current_path = os.path.join(root, dir)
54 src = src + Glob(os.path.join(current_path,'*.c'))
68 path = os.path.join(cwd, d)
69 if os.path.isfile(os.path.join(path, 'SConscript')):
[all …]
/lvgl-latest/scripts/gen_json/
Dgen_json.py12 project_path = os.path.abspath(os.path.join(base_path, '..', '..'))
13 docs_path = os.path.join(project_path, 'docs')
31 lvgl_src_path = os.path.join(lvgl_path, 'src')
32 temp_lvgl = os.path.join(temp_directory, 'lvgl')
39 shutil.copytree(lvgl_src_path, os.path.join(temp_lvgl, 'src'))
40 shutil.copyfile(os.path.join(lvgl_path, 'lvgl.h'), os.path.join(temp_lvgl, 'lvgl.h'))
42 pp_file = os.path.join(temp_directory, target_header_base_name + '.pp')
45 lvgl_config_path = os.path.join(lvgl_path, 'lv_conf_template.h')
81 with open(os.path.join(temp_directory, 'lv_conf.h'), 'wb') as f:
82 f.write('\n'.join(data).encode('utf-8'))
[all …]
Dcreate_fake_lib_c.py153 fake_libc_path = os.path.join(temp_dir, 'fake_libc_include')
158 file = os.path.join(fake_libc_path, file)
163 pth = os.path.join(fake_libc_path, head)
Dget_sdl2.py13 file = os.path.join(p, file)
60 if not os.path.exists(os.path.join(sdl_include_path, 'SDL2')):
61 os.rename(include_path, os.path.join(sdl_include_path, 'SDL2'))
/lvgl-latest/tests/micropy_test/
D__init__.py50 args = ' '.join(repr(arg) for arg in args)
58 BASE_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__)))
59 TEST_PATH = os.path.join(BASE_PATH, 'micropy.py')
60 IMG_PATH = os.path.join(BASE_PATH, '../ref_imgs/binding.png')
308 b''.join(binascii.unhexlify(lne) for lne in test_data.result)
323 img.save(os.path.join(ARTIFACT_PATH, f'frame.png'), 'PNG')
326 with open(os.path.join(ARTIFACT_PATH, f'frame.bin'), 'wb') as f:
344 error = '\n'.join(error)
348 self.fail(b'\n'.join(test_data.result))
360 ARTIFACT_PATH = os.path.join(cwd, 'artifacts')
[all …]
/lvgl-latest/scripts/
Drelease_branch_updater.py19 …arg_parser.add_argument("--port-urls-path", default=os.path.join(os.path.dirname(__file__), "relea…
20 arg_parser.add_argument("--lvgl-path", default=os.path.join(os.path.dirname(__file__), ".."))
32 …print(LOG, "LVGL release branches:", ", ".join(fmt_release(br) for br in lvgl_release_branches) or…
36 ", ".join(fmt_release(br) for br in lvgl_release_branches) or "(none)")
51 …print(LOG, "port release branches:", ", ".join(fmt_release(br) for br in port_release_branches) or…
151 … subprocess.check_call((sys.executable, os.path.join(lvgl_path, "scripts/generate_lv_conf.py"),
152 … "--defaults", os.path.abspath(os.path.join(port_clone_tmpdir, port_lv_conf_defaults)),
153 … "--config", os.path.abspath(os.path.join(port_clone_tmpdir, port_lv_conf_h)), ))
Dgenerate_lv_conf.py8 REPO_ROOT = os.path.join(DIR_SCRIPTS, "..")
40 args.template = os.path.join(args.template, "lv_conf_template.h")
43 args.config = os.path.join(args.target, "lv_conf.h")
46 args.defaults = os.path.join(args.target, "lv_conf.defaults")
102 fatal('The following keys are deprecated:\n ' + '\n '.join(unused_keys))
Dlv_conf_internal_gen.py12 LV_CONF_TEMPLATE = os.path.join(SCRIPT_DIR, "..", "lv_conf_template.h")
13 LV_CONF_INTERNAL = os.path.join(SCRIPT_DIR, "..", "src", "lv_conf_internal.h")
Dproperties.py42 yield os.path.join(root, file)
209 args.directory = os.path.join(os.path.dirname(__file__), "../")
212 args.output = os.path.join(args.directory, "src/widgets/property/")
Dupdate_version.py45 DIR_REPO_ROOT = os.path.join(DIR_SCRIPTS, "..")
48 self.path_relative = os.path.join(*relative_path_segments)
49 self.path = os.path.join(self.DIR_REPO_ROOT, self.path_relative)
Dfiletohex.py18 print(textwrap.fill(', '.join([hex(a) for a in b]), 96))
Dcode-format.py49 cfg_file = os.path.join(script_dir, 'code-format.cfg')
Dtrace_filter.py36 + "|".join(MARK_LIST)
/lvgl-latest/src/draw/vg_lite/
Dlv_vg_lite_stroke.c50 lv_vector_stroke_join_t join; member
120 static vg_lite_join_style_t lv_stroke_join_to_vg(lv_vector_stroke_join_t join) in lv_stroke_join_to_vg() argument
122 switch(join) { in lv_stroke_join_to_vg()
153 search_key.lv.join = dsc->join; in lv_vg_lite_stroke_get()
241 lv_stroke_join_to_vg(item->lv.join), in stroke_create_cb()
366 if(lhs->lv.join != rhs->lv.join) { in stroke_compare_cb()
367 return lhs->lv.join > rhs->lv.join ? 1 : -1; in stroke_compare_cb()
/lvgl-latest/src/libs/thorvg/
DtvgLottieModifier.h51 StrokeJoin join; member
53 … offset, float miter = 4.0f, StrokeJoin join = StrokeJoin::Round) : offset(offset), miterLimit(mit… in offset()
DtvgRender.h115 StrokeJoin join = StrokeJoin::Bevel; member
145 join = rhs.join;
259 return stroke->join; in strokeJoin()
/lvgl-latest/tests/gen_json/
Dtest_gen_json.py9 SCRIPT_PATH = os.path.join(
14 OUTPUT_FILE = os.path.join(BASE_PATH, 'lvgl.json')
/lvgl-latest/env_support/rt-thread/squareline/
DSConscript18 current_path = os.path.join(root, dir)
19 src = src + Glob(os.path.join(current_path,'*.c')) # add all .c files
/lvgl-latest/docs/_ext/
Dlv_example.py23 examples_path = os.path.abspath(os.path.join(base_path, '..', 'examples'))
24 example_path = os.path.join(examples_path, example_path + '.' + language)

123