Home | History | Annotate | Download | only in CodeCoverage

Lines Matching full:path

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)
80 # Remove files outside WebKit, make path absolute
82 deps = map(lambda x: os.path.abspath(os.path.join(dir, x)), deps)
100 ### is absolute path
101 ##..#^# is relative path... well a gcov bug as well
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))
130 def sanitize_path(path):
133 according to gcov '^' is a relative path, we will now build one from this one. Somehow it depends
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)
154 base,ext = os.path.splitext(file)
157 cov = os.path.join(root, file)
215 base_dir = os.path.abspath(os.path.curdir)