Home | History | Annotate | Download | only in constants

Lines Matching full:path

11     os.path.abspath(os.path.join(os.path.dirname(__file__),
14 BUILD_COMMON_PATH = os.path.join(
18 ANDROID_PLATFORM_DEVELOPMENT_SCRIPTS_PATH = os.path.join(
21 DEVIL_PATH = os.path.join(
23 PYMOCK_PATH = os.path.join(
27 def SysPath(path, position=None):
29 sys.path.append(path)
31 sys.path.insert(position, path)
35 if sys.path[-1] == path:
36 sys.path.pop()
38 sys.path.remove(path)