Lines Matching refs:os
122 import os
200 fle = os.path.join(xml_path, fle + '.xml')
285 self.header_file = os.path.splitext(child.text)[0]
745 self.header_file = os.path.splitext(name)[0]
1175 out_path = os.path.join(api_path, p)
1182 src_path = os.path.join(lvgl_src_path, p)
1188 for file in os.listdir(src_path):
1192 if os.path.isdir(os.path.join(src_path, file)):
1193 folders.append((file, os.path.join(p, file)))
1199 if not os.path.exists(out_path):
1200 os.makedirs(out_path)
1203 index_file = open(os.path.join(out_path, 'index.rst'), 'w')
1212 name = os.path.splitext(file)[0]
1215 rst_file = os.path.join(out_path, name + '.rst')
1216 html_file = os.path.join(p, name + '.html')
1237 index_file = open(os.path.join(out_path, 'index.rst'), 'w')
1247 index_file.write(' ' + os.path.split(folder)[-1] + '/index\n')
1329 bp = os.path.abspath(os.path.dirname(__file__))
1331 lvgl_path = os.path.join(temp_directory, 'lvgl')
1332 src_path = os.path.join(lvgl_path, 'src')
1334 doxy_path = os.path.join(bp, 'Doxyfile')
1341 os.path.join(temp_directory, 'lv_conf.h')
1345 with open(os.path.join(temp_directory, 'Doxyfile'), 'wb') as f:
1373 os.environ['LVGL_URLPATH'] = branch
1374 os.environ['LVGL_GITCOMMIT'] = gitcommit
1389 start_dir = os.getcwd()
1391 saved_dir = os.getcwd()
1392 os.chdir(start_dir)
1421 os.chdir(saved_dir)
1428 xml_path = os.path.join(temp_directory, 'xml')
1500 xml_path = os.path.join(base_path, 'xml')
1501 api_path = os.path.join(base_path, 'API')
1502 lvgl_src_path = os.path.join(project_path, 'src')
1506 if not os.path.exists(api_path):
1507 os.makedirs(api_path)
1580 (os.path.splitext(item)[0], os.path.join(folder, item))
1581 for item in os.listdir(folder)