/external/autotest/tko/parsers/test/ |
execute_parser.py | 6 from os import path namespace 20 scenario_dirpath = path.normpath(args[0]) 23 if not path.exists(scenario_dirpath) or not path.isdir(scenario_dirpath):
|
/external/autotest/tko/parsers/test/templates/ |
base.py | 8 from os import path namespace
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/browser/ |
extension_to_load.py | 16 def __init__(self, path, browser_type, is_component=False): 17 if not os.path.isdir(path): 19 'Extension path not a directory %s' % path) 20 self._path = path 21 self._local_path = path 23 if is_component and not crx_id.HasPublicKey(path): 25 'Component extension %s must have a public key' % path) 30 # the extension path 49 def path(self): member in class:ExtensionToLoad [all...] |
/external/chromium-trace/catapult/telemetry/telemetry/internal/util/ |
path_unittest.py | 10 from telemetry.internal.util import path namespace 15 self.assertFalse(path.IsExecutable('nonexistent_file')) 16 self.assertTrue(path.IsExecutable(sys.executable)) 20 self.assertTrue(path.FindInstalledWindowsApplication(os.path.join(
|
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-edgedata/ |
script_multi_import.py | 4 import os.path namespace
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/test/codec/ber/ |
suite.py | 1 from sys import path, version_info namespace 2 from os.path import sep 3 path.insert(1, path[0]+sep+'ber')
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/test/codec/cer/ |
suite.py | 1 from sys import path, version_info namespace 2 from os.path import sep 3 path.insert(1, path[0]+sep+'cer')
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/test/codec/der/ |
suite.py | 1 from sys import path, version_info namespace 2 from os.path import sep 3 path.insert(1, path[0]+sep+'der')
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/test/codec/ |
suite.py | 1 from sys import path, version_info namespace 2 from os.path import sep 3 path.insert(1, path[0]+sep+'codec'+sep+'ber') 5 path.insert(1, path[0]+sep+'codec'+sep+'cer') 7 path.insert(1, path[0]+sep+'codec'+sep+'der')
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/test/ |
suite.py | 1 from sys import path, version_info namespace 2 from os.path import sep 3 path.insert(1, path[0]+sep+'type') 5 path.insert(1, path[0]+sep+'codec')
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
function-sections-are-bad.cc | 16 char path[4096]; local 17 snprintf(path, sizeof(path), "%s-so.so", argv[0]); 19 void *handle = dlopen(path, RTLD_LAZY);
|
init-order-dlopen.cc | 38 std::string path = std::string(argv[0]) + "-so.so"; local 39 void *handle = dlopen(path.c_str(), RTLD_NOW);
|
/external/compiler-rt/test/asan/TestCases/Posix/ |
asan-symbolize-sanity-test.cc | 25 string path = string(argv[0]) + "-so.so"; local 26 printf("opening %s ... \n", path.c_str()); 27 void *lib = dlopen(path.c_str(), RTLD_NOW);
|
shared-lib-test.cc | 23 string path = string(argv[0]) + "-so.so"; local 24 printf("opening %s ... \n", path.c_str()); 25 void *lib = dlopen(path.c_str(), RTLD_NOW);
|
start-deactivated.cc | 48 std::string path = std::string(argv[0]) + "-so.so"; local 49 void *dso = dlopen(path.c_str(), RTLD_NOW);
|
/external/compiler-rt/test/lsan/TestCases/ |
use_tls_dynamic.cc | 17 std::string path = std::string(argv[0]) + "-so.so"; local 19 void *handle = dlopen(path.c_str(), RTLD_LAZY);
|
/external/e2fsprogs/misc/ |
mklost+found.c | 34 char path [sizeof (LPF) + 1 + 256]; local 61 strcpy (path, LPF); 62 strcat (path, "/"); 63 strcat (path, name); 64 if ((d = creat (path, 0644)) == -1) { 77 strcpy (path, LPF); 78 strcat (path, "/"); 79 strcat (path, name); 80 if (unlink (path) == -1) {
|
/external/harfbuzz_ng/src/ |
gen-arabic-table.py | 4 import os.path namespace 184 names[items[0]] = os.path.commonprefix ([names[items[0]], fields[1]]).strip ()
|
/external/jsoncpp/devtools/ |
tarball.py | 1 import os.path namespace 9 tarball_path: output path of the .tar.gz file 12 from path in the tarball. 16 base_dir = os.path.normpath( os.path.abspath( base_dir ) ) 17 def archive_name( path ): 18 """Makes path relative to base_dir.""" 19 path = os.path.normpath( os.path.abspath( path ) [all...] |
/external/libchrome/base/files/ |
scoped_temp_dir_unittest.cc | 35 FilePath path = dir.Take(); local 36 EXPECT_EQ(path.value(), test_path.value()); 56 test_path = dir.path(); 66 // Create a path which will contain a unique temp path. 75 test_path = dir.path(); 102 base::File file(dir.path().Append(FILE_PATH_LITERAL("temp")), 107 EXPECT_FALSE(dir.path().empty()); // We should still have a valid path.
|
/external/libmicrohttpd/src/microspdy/ |
alstructures.h | 52 * HTTP path 54 char *path; member in struct:SPDY_Request
|
/external/libunwind/src/ptrace/ |
_UPT_find_proc_info.c | 42 char *path = NULL; local 66 if (tdep_get_elf_image (as, &ei, pid, ip, &segbase, &mapoff, &path, as_arg) < 0) 69 ret = tdep_find_unwind_table (edi, &ei, as, path, segbase, mapoff, ip); 70 free(path);
|
/external/llvm/bindings/python/llvm/tests/ |
base.py | 1 import os.path namespace 26 path = os.path.join(d, lib) 28 if os.path.exists(path): 29 return path 35 return os.path.join(os.path.dirname(os.path.abspath(__file__)), "test_file") 38 return os.path.join(os.path.dirname(os.path.abspath(__file__)), "test.bc" [all...] |
/external/mesa3d/scons/ |
dxsdk.py | 31 import os.path namespace 56 include_dir = os.path.join(dxsdk_root, 'Include') 57 lib_dir = os.path.join(dxsdk_root, 'Lib', target_cpu) 61 gcc = 'gcc' in os.path.basename(env['CC']).split('-')
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/ |
DeleCommandHandler.java | 40 String path = getRealPath(session, command.getRequiredParameter(0));
local 43 verifyFileSystemCondition(getFileSystem().isFile(path), path, "filesystem.isNotAFile");
local 46 verifyWritePermission(session, getFileSystem().getParent(path));
48 getFileSystem().delete(path);
49 sendReply(session, ReplyCodes.DELE_OK, "dele", list(path));
|