Home | History | Annotate | Download | only in CodeCoverage

Lines Matching refs:os

30 import os, sys
35 directory already exists like os.makedirs
38 os.makedirs(dir)
48 for root, dirs, files in os.walk(src):
53 base,ext = os.path.splitext(file)
55 sources.append( os.path.join(root, file) )
66 Wow, the first time os.path.join is doing the right thing. We might
67 have a relative path in the depends using os.path.join(dirname of .d, dep)
77 dir = os.path.dirname(obj)
82 deps = map(lambda x: os.path.abspath(os.path.join(dir, x)), deps)
108 filepath = split[1][:-5].replace('#',os.path.sep)
109 return os.path.join(os.path.sep,filepath)
114 filepath = split[1][:-5].replace('#',os.path.sep)
115 return os.path.abspath(os.path.join(root,os.path.pardir,os.path.pardir,filepath))
120 filepath = split[1][:-5].replace('#',os.path.sep)
121 return os.path.abspath(os.path.join(root,filepath))
124 basename=os.path.basename(cov_file).replace('#',os.path.sep)[:-5]
125 return os.path.abspath(os.path.join(root,basename))
136 import os
137 split = path.split(os.path.sep)
141 str = os.path.sep
143 str = "%s..%s" % (str,os.path.sep)
145 str = "%s%s%s" % (str,part,os.path.sep)
146 return os.path.abspath(str)
150 for root, dirs, files in os.walk(base_path):
154 base,ext = os.path.splitext(file)
157 cov = os.path.join(root, file)
186 os.system("%s > /dev/null 2>&1 " % cmd)
215 base_dir = os.path.abspath(os.path.curdir)