Lines Matching full:join
19 if not scriptPath.endswith(os.path.join('utils', 'test')):
24 base = os.path.abspath(os.path.join(scriptPath, os.pardir, os.pardir))
27 sys.path.append(os.path.join(base,'test'))
37 dbgPath = os.path.join(base, *(xcode3_build_dir + dbg + python_resource_dir))
38 dbgPath2 = os.path.join(base, *(xcode4_build_dir + dbg + python_resource_dir))
39 relPath = os.path.join(base, *(xcode3_build_dir + rel + python_resource_dir))
40 relPath2 = os.path.join(base, *(xcode4_build_dir + rel + python_resource_dir))
41 baiPath = os.path.join(base, *(xcode3_build_dir + bai + python_resource_dir))
42 baiPath2 = os.path.join(base, *(xcode4_build_dir + bai + python_resource_dir))
45 if os.path.isfile(os.path.join(dbgPath, 'lldb.py')):
47 elif os.path.isfile(os.path.join(dbgPath2, 'lldb.py')):
49 elif os.path.isfile(os.path.join(relPath, 'lldb.py')):
51 elif os.path.isfile(os.path.join(relPath2, 'lldb.py')):
53 elif os.path.isfile(os.path.join(baiPath, 'lldb.py')):
55 elif os.path.isfile(os.path.join(baiPath2, 'lldb.py')):
174 sys.path.append(os.path.join(scriptPath, os.pardir, os.pardir, 'test', 'pexpect-2.4'))