Home | History | Annotate | Download | only in utils

Lines Matching refs:path

9   return os.path.abspath(os.path.join(*path_parts))
13 path = _JoinPath(*path_parts)
14 if os.path.isdir(path) and path not in sys.path:
15 # Some call sites that use Telemetry assume that sys.path[0] is the
17 # after sys.path[0].
18 sys.path.insert(1, path)
20 _CATAPULT_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)),
21 os.path.pardir, os.path.pardir, os.path.pardir)