Searched refs:directory_path (Results 1 - 12 of 12) sorted by relevance
/external/v8/src/ |
H A D | startup-data-util.h | 21 void InitializeExternalStartupData(const char* directory_path);
|
H A D | startup-data-util.cc | 85 void InitializeExternalStartupData(const char* directory_path) { argument 89 LoadFromFiles(RelativePath(&natives, directory_path, "natives_blob.bin"), 90 RelativePath(&snapshot, directory_path, "snapshot_blob.bin"));
|
H A D | api.cc | 5608 void v8::V8::InitializeExternalStartupData(const char* directory_path) { argument 5609 i::InitializeExternalStartupData(directory_path);
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/ |
H A D | keypair.py | 61 def save(self, directory_path): 66 :type directory_path: string 67 :param directory_path: The fully qualified path to the directory 80 directory_path = os.path.expanduser(directory_path) 81 file_path = os.path.join(directory_path, '%s.pem' % self.name)
|
/external/libchrome/base/files/ |
H A D | dir_reader_linux.h | 33 explicit DirReaderLinux(const char* directory_path) argument 34 : fd_(open(directory_path, O_RDONLY | O_DIRECTORY)),
|
/external/chromium-trace/catapult/telemetry/telemetry/core/ |
H A D | memory_cache_http_server.py | 164 def AddDirectoryToResourceMap(self, directory_path): 165 """Loads all files in directory_path into the in-memory resource map.""" 166 for root, dirs, files in os.walk(directory_path):
|
/external/llvm/utils/llvm-build/llvmbuild/ |
H A D | main.py | 257 directory_path = os.path.join(output_path, subpath[1:]) 260 if not os.path.exists(directory_path): 261 os.makedirs(directory_path) 279 file_path = os.path.join(directory_path, 'LLVMBuild.txt')
|
/external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/ |
H A D | fake_filesystem.py | 869 def CreateDirectory(self, directory_path, perm_bits=PERM_DEF, inode=None): 870 """Creates directory_path, and all the parent directories. 875 directory_path: directory to create 885 directory_path = self.NormalizePath(directory_path) 886 if self.Exists(directory_path): 889 directory_path) 890 path_components = self.GetPathComponents(directory_path)
|
H A D | fake_filesystem_test.py | 2122 directory_path = 'foo/bar' 2123 self.filesystem.CreateDirectory(directory_path) 2124 self.assertRaises(IOError, self.file.__call__, directory_path)
|
/external/chromium-trace/catapult/third_party/pyfakefs/pyfakefs/ |
H A D | fake_filesystem.py | 887 def CreateDirectory(self, directory_path, perm_bits=PERM_DEF, inode=None): 888 """Creates directory_path, and all the parent directories. 893 directory_path: directory to create 903 directory_path = self.NormalizePath(directory_path) 904 if self.Exists(directory_path): 907 directory_path) 908 path_components = self.GetPathComponents(directory_path)
|
/external/v8/test/cctest/interpreter/ |
H A D | generate-bytecode-expectations.cc | 173 const char* directory_path) { 174 DIR* directory = opendir(directory_path); 172 CollectGoldenFiles(std::vector<std::string>* golden_file_list, const char* directory_path) argument
|
/external/v8/include/ |
H A D | v8.h | 6747 static void InitializeExternalStartupData(const char* directory_path);
|
Completed in 779 milliseconds