Lines Matching refs:os
3 import os
17 file_dirs = os.listdir(path)
19 if os.path.splitext(file_dir)[1] in ['.h', '.hpp']:
27 src = src + Glob(os.path.join(lvgl_src_cwd,'*.c'))
28 for root, dirs, files in os.walk(lvgl_src_cwd):
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
41 for root, dirs, files in os.walk(lvgl_src_cwd):
43 current_path = os.path.join(root, dir)
44 src = src + Glob(os.path.join(current_path,'*.c'))
51 for root, dirs, files in os.walk(lvgl_src_cwd):
53 current_path = os.path.join(root, dir)
54 src = src + Glob(os.path.join(current_path,'*.c'))
66 list = os.listdir(cwd)
68 path = os.path.join(cwd, d)
69 if os.path.isfile(os.path.join(path, 'SConscript')):
70 group = group + SConscript(os.path.join(d, 'SConscript'))