HomeSort by relevance Sort by last modified time
    Searched refs:exists (Results 151 - 175 of 4755) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/testng/src/test/java/test/reports/
ReportTest.java 35 Assert.assertTrue(f.exists());
64 Assert.assertTrue(f.exists(), "Expected to find file:" + f);
65 Assert.assertTrue(f2.exists(), "Expected to find file:" + f2);
88 Assert.assertTrue(f1.exists());
89 Assert.assertTrue(f2.exists());
95 if (f.exists()) {
111 Assert.assertFalse(fileA.exists());
112 Assert.assertFalse(fileB.exists());
116 Assert.assertTrue(fileA.exists(), fileA + " wasn't created");
117 Assert.assertTrue(fileB.exists(), fileB + " wasn't created")
    [all...]
  /packages/services/Car/car_product/build/
car.mk 60 $(call inherit-product-if-exists, frameworks/base/data/fonts/fonts.mk)
61 $(call inherit-product-if-exists, external/google-fonts/dancing-script/fonts.mk)
62 $(call inherit-product-if-exists, external/google-fonts/carrois-gothic-sc/fonts.mk)
63 $(call inherit-product-if-exists, external/google-fonts/coming-soon/fonts.mk)
64 $(call inherit-product-if-exists, external/google-fonts/cutive-mono/fonts.mk)
65 $(call inherit-product-if-exists, external/noto-fonts/fonts.mk)
66 $(call inherit-product-if-exists, external/roboto-fonts/fonts.mk)
67 $(call inherit-product-if-exists, external/hyphenation-patterns/patterns.mk)
68 $(call inherit-product-if-exists, frameworks/base/data/keyboards/keyboards.mk)
69 $(call inherit-product-if-exists, frameworks/webview/chromium/chromium.mk
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
test_archive_util.py 66 self.assertTrue(os.path.exists(tarball))
77 self.assertTrue(os.path.exists(tarball))
116 self.assertTrue(os.path.exists(tarball))
130 self.assertTrue(os.path.exists(tarball2))
143 self.assertTrue(os.path.exists(tarball))
154 self.assertTrue(os.path.exists(tarball))
171 self.assertTrue(os.path.exists(tarball))
185 self.assertTrue(not os.path.exists(tarball))
227 self.assertTrue(os.path.exists(res))
230 self.assertTrue(os.path.exists(res))
    [all...]
  /external/autotest/client/site_tests/network_ShillInitScripts/
network_ShillInitScripts.py 114 # Just in case this hash actually exists, add these to the list of
212 """ Assert that |path| exists.
218 self.assure(os.path.exists(path), '%s exists' % path_friendly_name)
421 self.assure(not os.path.exists('/home/chronos/.disable_shill'),
458 self.assure(not os.path.exists(flimflam_profile),
459 'Flimflam profile no longer exists')
460 self.assure(os.path.exists(shill_profile),
461 'Shill profile exists')
467 """ Test that we ignore a flimflam profile if a new profile exists
    [all...]
  /development/testrunner/
create_test.py 90 Does nothing if tests/AndroidManifest.xml already exists.
100 # skip if file already exists
103 if os.path.exists(tests_manifest_path):
104 _PrintMessage("%s already exists, not overwritten" % tests_manifest_path)
114 if not os.path.exists(tests_path):
127 Does nothing if tests/Android.mk already exists.
137 # skip if file already exists
140 if os.path.exists(tests_mk_path):
141 _PrintMessage("%s already exists, not overwritten" % tests_mk_path)
164 if not os.path.exists(tests_path)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
MultipleWorkspace.py 75 if not os.path.exists(Path):
78 if os.path.exists(Path):
114 if not os.path.exists(absPath):
117 if os.path.exists(absPath):
138 if not os.path.exists(Path):
141 if os.path.exists(Path):
  /external/autotest/server/hosts/
base_label.py 15 def forever_exists_decorate(exists):
19 We'll check if the label already exists on the host and return True if so.
22 @param exists: The exists method on the label class.
26 Wrapper around the label exists method.
31 @returns True if the label already exists on the host, otherwise run
32 the exists method.
35 return (self._NAME in info.labels) or exists(self, host)
76 def exists(self, host): member in class:BaseLabel
87 raise NotImplementedError('exists not implemented'
138 def exists(self, host): member in class:StringLabel
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.remove_all/
remove_all.pass.cpp 108 TEST_CHECK(!exists(symlink_status(p)));
123 TEST_CHECK(!exists(symlink_status(link)));
124 TEST_CHECK(exists(dir));
125 TEST_CHECK(exists(file));
149 TEST_CHECK(!exists(symlink_status(p)));
151 TEST_CHECK(exists(out_of_dir_file));
  /external/robolectric-shadows/scripts/
install-dependencies.rb 56 unless File.exists?(archive)
71 unless File.exists?(repo_root_dir)
89 exists = File.exist?(jar_file)
90 puts "Already have #{jar_file}!" if exists
91 exists
98 unless File.exists?(path)
  /external/syslinux/gpxe/src/util/
licence.pl 116 unless exists $known_licences->{$licence};
132 next unless exists $licences->{$licence};
135 if ( exists $licences->{$can_subsume} ) {
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/fs.op.funcs/fs.op.remove_all/
remove_all.pass.cpp 96 TEST_CHECK(!exists(symlink_status(p)));
111 TEST_CHECK(!exists(symlink_status(link)));
112 TEST_CHECK(exists(dir));
113 TEST_CHECK(exists(file));
137 TEST_CHECK(!exists(symlink_status(p)));
139 TEST_CHECK(exists(out_of_dir_file));
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
FileUtils.java 121 * An exception is thrown if the file object exists but is a directory.
122 * An exception is thrown if the file exists but cannot be read.
132 if (file.exists()) {
134 throw new IOException("File '" + file + "' exists but is a directory");
155 * An exception is thrown if the file object exists but is a directory.
156 * An exception is thrown if the file exists but cannot be written to.
167 if (file.exists()) {
169 throw new IOException("File '" + file + "' exists but is a directory");
176 if (parent != null && parent.exists() == false) {
211 * a new file with size 0 or, if the file exists already, it is opened an
    [all...]
  /external/autotest/client/bin/
os_dep.py 14 if os.path.exists(file):
48 if os.path.exists(file):
62 if os.path.exists(file):
  /external/autotest/client/cros/
dhcpv6_test_server.py 55 if not os.path.exists(DHCPV6_SERVER_EXECUTABLE):
104 Cleanup temporary files. If PID file exists, also kill the
107 if os.path.exists(DHCPV6_SERVER_PID_FILE):
114 if os.path.exists(DHCPV6_SERVER_CONFIG_FILE):
radvd_server.py 60 if not os.path.exists(RADVD_EXECUTABLE):
112 Cleanup temporary files. If PID file exists, also kill the
115 if os.path.exists(RADVD_PID_FILE):
122 if os.path.exists(RADVD_CONFIG_FILE):
  /external/autotest/tko/parsers/test/
new_scenario.py 49 if not path.exists(results_dirpath) or not path.isdir(results_dirpath):
55 if not path.exists(scenarios_dirpath) or not path.isdir(scenarios_dirpath):
67 if path.exists(scenario_package_dirpath):
69 'Scenario package already exists at path: %s' %
  /external/llvm/unittests/Support/
ReplaceFileTest.cpp 87 EXPECT_FALSE(fs::exists(SourceFileName));
105 EXPECT_FALSE(fs::exists(TargetFileName));
106 ASSERT_TRUE(fs::exists(SourceFileName));
  /external/python/cpython2/Lib/test/
test_py_compile.py 35 self.assertTrue(os.path.exists(self.pyc_path))
41 self.assertTrue(os.path.exists(self.pyc_path))
46 self.assertTrue(os.path.exists(self.pyc_path))
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_py_compile.py 35 self.assertTrue(os.path.exists(self.pyc_path))
43 self.assertTrue(os.path.exists(self.pyc_path))
48 self.assertTrue(os.path.exists(self.pyc_path))
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_py_compile.py 35 self.assertTrue(os.path.exists(self.pyc_path))
43 self.assertTrue(os.path.exists(self.pyc_path))
48 self.assertTrue(os.path.exists(self.pyc_path))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_py_compile.py 35 self.assertTrue(os.path.exists(self.pyc_path))
43 self.assertTrue(os.path.exists(self.pyc_path))
48 self.assertTrue(os.path.exists(self.pyc_path))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_py_compile.py 35 self.assertTrue(os.path.exists(self.pyc_path))
43 self.assertTrue(os.path.exists(self.pyc_path))
48 self.assertTrue(os.path.exists(self.pyc_path))
  /device/google/marlin/self-extractors/root/
device-vendor-marlin.mk 17 $(call inherit-product-if-exists, vendor/google_devices/$(LOCAL_STEM))
18 $(call inherit-product-if-exists, vendor/qcom/$(LOCAL_STEM))
  /device/google/marlin/self-extractors_sailfish/root/
device-vendor-sailfish.mk 17 $(call inherit-product-if-exists, vendor/google_devices/$(LOCAL_STEM))
18 $(call inherit-product-if-exists, vendor/qcom/$(LOCAL_STEM))
  /device/google/muskie/self-extractors/root/proprietary/
device-vendor-walleye.mk 17 $(call inherit-product-if-exists, vendor/google_devices/$(LOCAL_STEM))
18 $(call inherit-product-if-exists, vendor/qcom/$(LOCAL_STEM))

Completed in 1049 milliseconds

1 2 3 4 5 67 8 91011>>