/external/chromium-trace/catapult/devil/devil/android/ |
D | device_utils_devicetest.py | 96 self.device.RemovePath(_DEVICE_DIR, recursive=True, force=True) 111 self.device.RemovePath(_DEVICE_DIR, recursive=True, force=True) 128 self.device.RemovePath(_DEVICE_DIR, recursive=True, force=True) 156 self.device.RemovePath(_DEVICE_DIR, recursive=True, force=True) 211 self.device.RemovePath(_DEVICE_DIR, recursive=True, force=True)
|
D | flag_changer_devicetest.py | 43 self.device.RemovePath( 77 self.device.RemovePath(self.cmdline_path, force=True)
|
D | flag_changer.py | 82 self._device.RemovePath(alternate_cmdline_path, as_root=True) 222 self._device.RemovePath(self._cmdline_path, force=True, as_root=True)
|
D | flag_changer_test.py | 27 def RemovePath(self, path, **_kwargs): member in _FakeDevice
|
D | device_utils_test.py | 1954 self.device.RemovePath('some file') 1961 self.device.RemovePath('some file', force=True) 1968 self.device.RemovePath('/remove/this/dir', recursive=True) 1975 self.device.RemovePath('some file', as_root=True) 1983 self.device.RemovePath(['eeny', 'meeny', 'miny', 'moe'])
|
D | device_utils.py | 1498 self.RemovePath(all_stale_files, force=True, recursive=True) 1834 def RemovePath(self, device_path, force=False, recursive=False, member in DeviceUtils
|
/external/autotest/server/cros/ap_configurators/ |
D | fetch_prebuilt_pyauto.py | 162 pyauto_utils.RemovePath(chrome_unzip_dir) 186 pyauto_utils.RemovePath(dest) 189 pyauto_utils.RemovePath(chrome_unzip_dir)
|
D | pyauto_utils.py | 89 def RemovePath(path): function
|
/external/libchrome/base/ |
D | values.h | 285 bool RemovePath(std::initializer_list<StringPiece> path); 286 bool RemovePath(span<const StringPiece> path); 536 bool RemovePath(StringPiece path, std::unique_ptr<Value>* out_value); 538 using Value::RemovePath; // DictionaryValue::RemovePath shadows otherwise.
|
D | values.cc | 401 bool Value::RemovePath(std::initializer_list<StringPiece> path) { in RemovePath() function in base::Value 403 return RemovePath(make_span(path.begin(), path.size())); in RemovePath() 406 bool Value::RemovePath(span<const StringPiece> path) { in RemovePath() function in base::Value 417 bool removed = found->second->RemovePath(path.subspan(1)); in RemovePath() 1087 bool DictionaryValue::RemovePath(StringPiece path, in RemovePath() function in base::DictionaryValue 1099 result = subdict->RemovePath(path.substr(delimiter_position + 1), in RemovePath()
|
D | values_unittest.cc | 666 TEST(ValuesTest, RemovePath) { in TEST() argument 671 EXPECT_FALSE(root.RemovePath({"one", "two", "four"})); in TEST() 674 EXPECT_TRUE(root.RemovePath({"one", "two", "three"})); in TEST() 677 EXPECT_FALSE(root.RemovePath({"one", "two", "three"})); in TEST() 685 EXPECT_TRUE(root.RemovePath(std::vector<StringPiece>{"one", "two", "three"})); in TEST() 1038 EXPECT_TRUE(dict.RemovePath("a.long.way.down", &removed_item)); in TEST() 1046 EXPECT_FALSE(dict.RemovePath("a.long.way.down", &removed_item)); in TEST() 1051 EXPECT_TRUE(dict.RemovePath("a.long.key.path", &removed_item)); in TEST()
|
/external/v8/tools/testrunner/local/ |
D | android.py | 65 self.device.RemovePath(DEVICE_DIR, force=True, recursive=True)
|
/external/chromium-trace/catapult/devil/devil/android/tools/ |
D | video_recorder.py | 110 self._device.RemovePath(self._device_file, force=True)
|
D | system_app.py | 45 device.RemovePath(system_package_paths, force=True, recursive=True)
|
D | provision_devices.py | 406 device.RemovePath(system_app_paths, force=True, recursive=True)
|
/external/chromium-trace/catapult/devil/devil/android/sdk/ |
D | shared_prefs.py | 318 self._device.RemovePath(remove_path, as_root=True)
|
/external/chromium-trace/catapult/devil/docs/ |
D | device_utils.md | 581 ### DeviceUtils.RemovePath
|