Home | History | Annotate | Download | only in scripts

Lines Matching refs:os

61 import os
68 DEFAULT_GTEST_ROOT_DIR = os.path.join(os.path.dirname(__file__), '..')
92 if not os.path.isfile(os.path.join(directory, relative_path)):
117 output_file = os.path.join(output_dir, relative_path)
118 if os.path.exists(output_file):
131 parent_directory = os.path.dirname(output_file)
132 if not os.path.isdir(parent_directory):
133 os.makedirs(parent_directory)
149 output_file = file(os.path.join(output_dir, GTEST_H_OUTPUT), 'w')
162 for line in file(os.path.join(gtest_root, gtest_header_path), 'r'):
190 for line in file(os.path.join(gtest_root, gtest_source_file), 'r'):
221 output_file = file(os.path.join(output_dir, GTEST_ALL_CC_OUTPUT), 'w')