Lines Matching refs:path

274     base_path = os.path.abspath(os.path.dirname(__file__))
275 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')
389 if os.path.exists(html_dst_path):
412 c1 = os.path.exists(temp_directory)
415 temp_path = os.path.join(temp_directory, 'CHANGELOG.rst')
416 c2 = os.path.exists(temp_path)
417 temp_path = os.path.join(temp_directory, 'CODING_STYLE.rst')
418 c3 = os.path.exists(temp_path)
419 temp_path = os.path.join(temp_directory, 'CONTRIBUTING.rst')
420 c4 = os.path.exists(temp_path)
421 temp_path = os.path.join(temp_directory, '_ext')
422 c5 = os.path.exists(temp_path)
423 temp_path = os.path.join(temp_directory, '_static')
424 c6 = os.path.exists(temp_path)
425 temp_path = os.path.join(temp_directory, 'details')
426 c7 = os.path.exists(temp_path)
427 temp_path = os.path.join(temp_directory, 'intro')
428 c8 = os.path.exists(temp_path)
429 temp_path = os.path.join(temp_directory, 'examples')
430 c9 = os.path.exists(temp_path)
453 shutil.copytree(examples_path, os.path.join(temp_directory, 'examples'), dirs_exist_ok=True)
460 with open(os.path.join(temp_directory, 'Doxyfile'), 'rb') as f:
463 data = data.replace('#*#*LV_CONF_PATH*#*#', os.path.join(base_path, 'lv_conf.h'))
466 with open(os.path.join(temp_directory, 'Doxyfile'), 'wb') as f:
500 os.path.join(temp_directory, 'intro'),
501 os.path.join(temp_directory, 'intro', 'add-lvgl-to-your-project'),
502 os.path.join(temp_directory, 'details'),
503 os.path.join(temp_directory, 'details', 'base-widget'),
504 os.path.join(temp_directory, 'details', 'base-widget', 'layouts'),
505 os.path.join(temp_directory, 'details', 'base-widget', 'styles'),
506 os.path.join(temp_directory, 'details', 'debugging'),
507 os.path.join(temp_directory, 'details', 'integration'),
508 os.path.join(temp_directory, 'details', 'integration', 'bindings'),
509 os.path.join(temp_directory, 'details', 'integration', 'building'),
510 os.path.join(temp_directory, 'details', 'integration', 'chip'),
511 os.path.join(temp_directory, 'details', 'integration', 'driver'),
512 os.path.join(temp_directory, 'details', 'integration', 'driver', 'display'),
513 os.path.join(temp_directory, 'details', 'integration', 'driver', 'touchpad'),
514 os.path.join(temp_directory, 'details', 'integration', 'framework'),
515 os.path.join(temp_directory, 'details', 'integration', 'ide'),
516 os.path.join(temp_directory, 'details', 'integration', 'os'),
517 os.path.join(temp_directory, 'details', 'integration', 'os', 'yocto'),
518 os.path.join(temp_directory, 'details', 'integration', 'renderers'),
519 os.path.join(temp_directory, 'details', 'libs'),
520 os.path.join(temp_directory, 'details', 'main-components'),
521 os.path.join(temp_directory, 'details', 'other-components'),
522 os.path.join(temp_directory, 'details', 'widgets')
534 index_path = os.path.join(temp_directory, 'index.rst')
576 path = os.path.join(project_path, 'lv_version.h')
580 with open(path, 'r') as file:
640 if os.path.exists(temp_directory):