HomeSort by relevance Sort by last modified time
    Searched refs:_directory_path (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
filesystem.py 149 self._directory_path = tempfile.mkdtemp(**self._kwargs)
152 return self._directory_path
155 return self._directory_path
161 if os.path.exists(self._directory_path):
162 os.rmdir(self._directory_path)
filesystem_mock.py 242 self._directory_path = fs._mktemp(**kwargs)
243 fs.maybe_make_directory(self._directory_path)
246 return self._directory_path
249 return self._directory_path
255 if self._filesystem.exists(self._directory_path):
256 self._filesystem.rmtree(self._directory_path)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/
credentials_unittest.py 45 self._directory_path = None
48 self._directory_path = tempfile.mkdtemp(**self._kwargs)
49 return self._directory_path
52 os.rmdir(self._directory_path)

Completed in 95 milliseconds