/external/deqp/framework/delibs/decpp/ |
D | deSharedPtr.cpp | 44 Object (bool& exists) in Object() argument 45 : m_exists(exists) in Object() 62 DerivedObject (bool& exists) in DerivedObject() argument 63 : Object(exists) in DerivedObject() 71 SharedPtrTestThread (const SharedPtr<Object>& ptr, const bool& exists) in SharedPtrTestThread() argument 73 , m_exists (exists) in SharedPtrTestThread() 107 WeakPtrTestThread (const SharedPtr<Object>& ptr, const bool& exists) in WeakPtrTestThread() argument 109 , m_exists (exists) in WeakPtrTestThread() 140 SharedPtr<Object> makeObject (bool& exists) in makeObject() argument 142 return SharedPtr<Object>(new Object(exists)); in makeObject() [all …]
|
D | deUniquePtr.cpp | 37 Object (bool& exists) in Object() argument 38 : m_exists(exists) in Object() 66 MovePtr<Object> createObject (bool& exists) in createObject() argument 68 UniquePtr<Object> objectPtr(new Object(exists)); in createObject() 78 bool exists = false; in UniquePtr_selfTest() local 80 UniquePtr<Object> ptr(new Object(exists)); in UniquePtr_selfTest() 81 DE_TEST_ASSERT(exists); in UniquePtr_selfTest() 84 DE_TEST_ASSERT(!exists); in UniquePtr_selfTest() 89 bool exists = false; in UniquePtr_selfTest() local 92 UniquePtr<Object> ptr(new Object(exists)); in UniquePtr_selfTest() [all …]
|
/external/python/cpython2/Modules/_ctypes/libffi/testsuite/lib/ |
D | target-libpath.exp | 58 if { [info exists GCC_EXEC_PREFIX] && ![info exists env(GCC_EXEC_PREFIX)] } { 73 if [info exists env(LD_LIBRARY_PATH)] { 77 if [info exists env(LD_RUN_PATH)] { 81 if [info exists env(SHLIB_PATH)] { 85 if [info exists env(LD_LIBRARYN32_PATH)] { 89 if [info exists env(LD_LIBRARY64_PATH)] { 93 if [info exists env(LD_LIBRARY_PATH_32)] { 97 if [info exists env(LD_LIBRARY_PATH_64)] { 101 if [info exists env(DYLD_LIBRARY_PATH)] { 105 if [info exists env(PATH)] { [all …]
|
/external/autotest/client/common_lib/ |
D | autotemp_unittest.py | 12 self.assertTrue(os.path.exists(temp.name)) 19 self.assertTrue(os.path.exists(name)) 21 self.assertFalse(os.path.exists(name)) 27 self.assertTrue(os.path.exists(name)) 29 self.assertFalse(os.path.exists(name)) 36 self.assertTrue(os.path.exists(temp_dir.name)) 43 self.assertTrue(os.path.exists(name)) 45 self.assertFalse(os.path.exists(name)) 51 self.assertTrue(os.path.exists(name)) 53 self.assertFalse(os.path.exists(name))
|
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.exists/ |
D | exists.pass.cpp | 35 ASSERT_NOEXCEPT(exists(s)); in TEST_CASE() 36 ASSERT_NOEXCEPT(exists(p, ec)); in TEST_CASE() 37 ASSERT_NOT_NOEXCEPT(exists(p)); in TEST_CASE() 60 TEST_CHECK(exists(s) == TC.expect); in TEST_CASE() 67 TEST_CHECK(exists(p) == false); in TEST_CASE() 70 TEST_CHECK(exists(p, ec) == false); in TEST_CASE() 82 TEST_CHECK(exists(file, ec) == false); in TEST_CASE() 85 TEST_CHECK_THROW(filesystem_error, exists(file)); in TEST_CASE() 93 TEST_CHECK(exists(file, ec) == false); in TEST_CASE()
|
/external/mockftpserver/tags/2.x_Before_IDEA/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | AbstractFakeFileSystemTest.groovy | 41 assertFalse("exists before", fileSystem.exists(NEW_FILE)) 43 assertTrue("/ exists after", fileSystem.exists(NEW_DIR)) 45 assertTrue("exists after", fileSystem.exists(NEW_FILE)) 47 // Try adding entry that already exists 57 assert !fileSystem.exists(NEW_DIR), "Before createDirectory" 58 assert !fileSystem.exists(NEW_SUBDIR), "Before createDirectory" 61 assert fileSystem.exists(NEW_DIR), "After createDirectory" 62 assert fileSystem.exists(NEW_SUBDIR), "$NEW_SUBDIR: After createDirectory" 68 assert !fileSystem.exists(NEW_DIR), "Before createDirectory" 69 assert !fileSystem.exists(NEW_FILE_IN_SUBDIR), "Before createDirectory" [all …]
|
D | AbstractFileSystemTest.groovy | 63 * Test the exists() method 66 assert !fileSystem.exists(NEW_FILE) 67 assert !fileSystem.exists(NEW_DIR) 68 assert !fileSystem.exists(ILLEGAL_FILE) 69 assert fileSystem.exists(EXISTING_FILE) 70 assert fileSystem.exists(EXISTING_DIR) 72 shouldFailWithMessageContaining("path") { fileSystem.exists(null) } 105 assert !fileSystem.exists(NEW_DIR), "Before createDirectory" 107 assert fileSystem.exists(NEW_DIR), "After createDirectory" 122 assert !fileSystem.exists(NEW_FILE), "Before createFile" [all …]
|
/external/autotest/tko/ |
D | utils_unittest.py | 56 os.path.exists.expect_call( 63 os.path.exists.expect_call( 65 os.path.exists.expect_call( 72 os.path.exists.expect_call( 74 os.path.exists.expect_call( 76 os.path.exists.expect_call( 83 os.path.exists.expect_call( 85 os.path.exists.expect_call( 87 os.path.exists.expect_call("/.autoserv_execute").and_return(True) 93 os.path.exists.expect_call( [all …]
|
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | AbstractFileSystemTestCase.groovy | 53 assert !fileSystem.exists(NEW_FILE) 54 assert !fileSystem.exists(NEW_DIR) 55 assert !fileSystem.exists(ILLEGAL_FILE) 56 assert fileSystem.exists(EXISTING_FILE) 57 assert fileSystem.exists(EXISTING_DIR) 59 shouldFailWithMessageContaining("path") { fileSystem.exists(null) } 83 assert !fileSystem.exists(NEW_DIR), "Before createDirectory" 85 assert fileSystem.exists(NEW_DIR), "After createDirectory" 102 assert !fileSystem.exists(NEW_FILE), "Before createFile" 104 assert fileSystem.exists(NEW_FILE), "After createFile" [all …]
|
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | AbstractFileSystemTestCase.groovy | 53 assert !fileSystem.exists(NEW_FILE) 54 assert !fileSystem.exists(NEW_DIR) 55 assert !fileSystem.exists(ILLEGAL_FILE) 56 assert fileSystem.exists(EXISTING_FILE) 57 assert fileSystem.exists(EXISTING_DIR) 59 shouldFailWithMessageContaining("path") { fileSystem.exists(null) } 83 assert !fileSystem.exists(NEW_DIR), "Before createDirectory" 85 assert fileSystem.exists(NEW_DIR), "After createDirectory" 102 assert !fileSystem.exists(NEW_FILE), "Before createFile" 104 assert fileSystem.exists(NEW_FILE), "After createFile" [all …]
|
/external/mockftpserver/tags/2.2/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | AbstractFileSystemTestCase.groovy | 53 assert !fileSystem.exists(NEW_FILE) 54 assert !fileSystem.exists(NEW_DIR) 55 assert !fileSystem.exists(ILLEGAL_FILE) 56 assert fileSystem.exists(EXISTING_FILE) 57 assert fileSystem.exists(EXISTING_DIR) 59 shouldFailWithMessageContaining("path") { fileSystem.exists(null) } 83 assert !fileSystem.exists(NEW_DIR), "Before createDirectory" 85 assert fileSystem.exists(NEW_DIR), "After createDirectory" 102 assert !fileSystem.exists(NEW_FILE), "Before createFile" 104 assert fileSystem.exists(NEW_FILE), "After createFile" [all …]
|
/external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | AbstractFileSystemTestCase.groovy | 53 assert !fileSystem.exists(NEW_FILE) 54 assert !fileSystem.exists(NEW_DIR) 55 assert !fileSystem.exists(ILLEGAL_FILE) 56 assert fileSystem.exists(EXISTING_FILE) 57 assert fileSystem.exists(EXISTING_DIR) 59 shouldFailWithMessageContaining("path") { fileSystem.exists(null) } 83 assert !fileSystem.exists(NEW_DIR), "Before createDirectory" 85 assert fileSystem.exists(NEW_DIR), "After createDirectory" 102 assert !fileSystem.exists(NEW_FILE), "Before createFile" 104 assert fileSystem.exists(NEW_FILE), "After createFile" [all …]
|
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | AbstractFileSystemTestCase.groovy | 53 assert !fileSystem.exists(NEW_FILE) 54 assert !fileSystem.exists(NEW_DIR) 55 assert !fileSystem.exists(ILLEGAL_FILE) 56 assert fileSystem.exists(EXISTING_FILE) 57 assert fileSystem.exists(EXISTING_DIR) 59 shouldFailWithMessageContaining("path") { fileSystem.exists(null) } 83 assert !fileSystem.exists(NEW_DIR), "Before createDirectory" 85 assert fileSystem.exists(NEW_DIR), "After createDirectory" 102 assert !fileSystem.exists(NEW_FILE), "Before createFile" 104 assert fileSystem.exists(NEW_FILE), "After createFile" [all …]
|
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | AbstractFileSystemTest.groovy | 53 assert !fileSystem.exists(NEW_FILE) 54 assert !fileSystem.exists(NEW_DIR) 55 assert !fileSystem.exists(ILLEGAL_FILE) 56 assert fileSystem.exists(EXISTING_FILE) 57 assert fileSystem.exists(EXISTING_DIR) 59 shouldFailWithMessageContaining("path") { fileSystem.exists(null) } 83 assert !fileSystem.exists(NEW_DIR), "Before createDirectory" 85 assert fileSystem.exists(NEW_DIR), "After createDirectory" 98 assert !fileSystem.exists(NEW_FILE), "Before createFile" 100 assert fileSystem.exists(NEW_FILE), "After createFile" [all …]
|
/external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | AbstractFileSystemTest.groovy | 53 assert !fileSystem.exists(NEW_FILE) 54 assert !fileSystem.exists(NEW_DIR) 55 assert !fileSystem.exists(ILLEGAL_FILE) 56 assert fileSystem.exists(EXISTING_FILE) 57 assert fileSystem.exists(EXISTING_DIR) 59 shouldFailWithMessageContaining("path") { fileSystem.exists(null) } 83 assert !fileSystem.exists(NEW_DIR), "Before createDirectory" 85 assert fileSystem.exists(NEW_DIR), "After createDirectory" 98 assert !fileSystem.exists(NEW_FILE), "Before createFile" 100 assert fileSystem.exists(NEW_FILE), "After createFile" [all …]
|
/external/mockftpserver/tags/2.0-rc1/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | AbstractFileSystemTest.groovy | 53 assert !fileSystem.exists(NEW_FILE) 54 assert !fileSystem.exists(NEW_DIR) 55 assert !fileSystem.exists(ILLEGAL_FILE) 56 assert fileSystem.exists(EXISTING_FILE) 57 assert fileSystem.exists(EXISTING_DIR) 59 shouldFailWithMessageContaining("path") { fileSystem.exists(null) } 83 assert !fileSystem.exists(NEW_DIR), "Before createDirectory" 85 assert fileSystem.exists(NEW_DIR), "After createDirectory" 98 assert !fileSystem.exists(NEW_FILE), "Before createFile" 100 assert fileSystem.exists(NEW_FILE), "After createFile" [all …]
|
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | AbstractFileSystemTest.groovy | 53 assert !fileSystem.exists(NEW_FILE) 54 assert !fileSystem.exists(NEW_DIR) 55 assert !fileSystem.exists(ILLEGAL_FILE) 56 assert fileSystem.exists(EXISTING_FILE) 57 assert fileSystem.exists(EXISTING_DIR) 59 shouldFailWithMessageContaining("path") { fileSystem.exists(null) } 83 assert !fileSystem.exists(NEW_DIR), "Before createDirectory" 85 assert fileSystem.exists(NEW_DIR), "After createDirectory" 98 assert !fileSystem.exists(NEW_FILE), "Before createFile" 100 assert fileSystem.exists(NEW_FILE), "After createFile" [all …]
|
/external/mockftpserver/tags/2.0.1/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | AbstractFileSystemTest.groovy | 53 assert !fileSystem.exists(NEW_FILE) 54 assert !fileSystem.exists(NEW_DIR) 55 assert !fileSystem.exists(ILLEGAL_FILE) 56 assert fileSystem.exists(EXISTING_FILE) 57 assert fileSystem.exists(EXISTING_DIR) 59 shouldFailWithMessageContaining("path") { fileSystem.exists(null) } 83 assert !fileSystem.exists(NEW_DIR), "Before createDirectory" 85 assert fileSystem.exists(NEW_DIR), "After createDirectory" 98 assert !fileSystem.exists(NEW_FILE), "Before createFile" 100 assert fileSystem.exists(NEW_FILE), "After createFile" [all …]
|
/external/mockftpserver/tags/2.0/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | AbstractFileSystemTest.groovy | 53 assert !fileSystem.exists(NEW_FILE) 54 assert !fileSystem.exists(NEW_DIR) 55 assert !fileSystem.exists(ILLEGAL_FILE) 56 assert fileSystem.exists(EXISTING_FILE) 57 assert fileSystem.exists(EXISTING_DIR) 59 shouldFailWithMessageContaining("path") { fileSystem.exists(null) } 83 assert !fileSystem.exists(NEW_DIR), "Before createDirectory" 85 assert fileSystem.exists(NEW_DIR), "After createDirectory" 98 assert !fileSystem.exists(NEW_FILE), "Before createFile" 100 assert fileSystem.exists(NEW_FILE), "After createFile" [all …]
|
/external/mockftpserver/tags/2.0.2/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | AbstractFileSystemTest.groovy | 53 assert !fileSystem.exists(NEW_FILE) 54 assert !fileSystem.exists(NEW_DIR) 55 assert !fileSystem.exists(ILLEGAL_FILE) 56 assert fileSystem.exists(EXISTING_FILE) 57 assert fileSystem.exists(EXISTING_DIR) 59 shouldFailWithMessageContaining("path") { fileSystem.exists(null) } 83 assert !fileSystem.exists(NEW_DIR), "Before createDirectory" 85 assert fileSystem.exists(NEW_DIR), "After createDirectory" 98 assert !fileSystem.exists(NEW_FILE), "Before createFile" 100 assert fileSystem.exists(NEW_FILE), "After createFile" [all …]
|
/external/autotest/client/site_tests/network_ShillInitScripts/ |
D | network_ShillInitScripts.py | 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), 460 self.assure(os.path.exists(shill_profile), 480 self.assure(os.path.exists(flimflam_profile), 495 self.assure(not os.path.exists(self.flimflam_user_profile), 497 self.assure(not os.path.exists(self.old_shill_user_profile), 499 self.assure(not os.path.exists(self.new_shill_user_profile), 532 self.assure(not os.path.exists(self.flimflam_user_profile), 534 self.assure(not os.path.exists(self.old_shill_user_profile), [all …]
|
/external/ply/ply/test/ |
D | testyacc.py | 37 return os.path.exists(make_pymodule_path(filename)) 406 self.assertTrue(os.path.exists('pkg_test1/parsing/parsetab.py')) 407 self.assertTrue(os.path.exists('pkg_test1/parsing/lextab.py')) 408 self.assertTrue(os.path.exists('pkg_test1/parsing/parser.out')) 414 self.assertTrue(os.path.exists('pkg_test2/parsing/calcparsetab.py')) 415 self.assertTrue(os.path.exists('pkg_test2/parsing/calclextab.py')) 416 self.assertTrue(os.path.exists('pkg_test2/parsing/parser.out')) 422 self.assertTrue(os.path.exists('pkg_test3/generated/parsetab.py')) 423 self.assertTrue(os.path.exists('pkg_test3/generated/lextab.py')) 424 self.assertTrue(os.path.exists('pkg_test3/generated/parser.out')) [all …]
|
/external/testng/src/test/java/test/reports/ |
D | ReportTest.java | 35 Assert.assertTrue(f.exists()); in verifyIndex() 64 Assert.assertTrue(f.exists(), "Expected to find file:" + f); in directoryShouldBeSuiteName() 65 Assert.assertTrue(f2.exists(), "Expected to find file:" + f2); in directoryShouldBeSuiteName() 88 Assert.assertTrue(f1.exists()); in oneDirectoryPerSuite() 89 Assert.assertTrue(f2.exists()); in oneDirectoryPerSuite() 95 if (f.exists()) { in getHtmlReportFile() 111 Assert.assertFalse(fileA.exists()); in shouldHonorSuiteName() 112 Assert.assertFalse(fileB.exists()); in shouldHonorSuiteName() 116 Assert.assertTrue(fileA.exists(), fileA + " wasn't created"); in shouldHonorSuiteName() 117 Assert.assertTrue(fileB.exists(), fileB + " wasn't created"); in shouldHonorSuiteName()
|
/external/toolchain-utils/ |
D | weekly_report.py | 41 if os.path.exists(filename): 84 if os.path.exists(filename): 165 if os.path.exists(data_path): 171 if os.path.exists(tar_file_path): 172 if not os.path.exists(image_path): 184 if os.path.exists(v_file_path): 185 if not os.path.exists(image_path): 212 if os.path.exists(chroot) and os.path.exists(exp_file): 241 if (os.path.exists(filename) and 242 os.path.exists(os.path.expanduser(MAIL_PROGRAM))):
|
/external/chromium-trace/catapult/third_party/pyserial/serial/tools/ |
D | list_ports_linux.py | 106 if os.path.exists(sys_dev_path): 111 if os.path.exists(sys_dev_path): 116 if os.path.exists(sys_dev_path): 118 if os.path.exists(product_name_file): 126 if os.path.exists('/sys/class/tty/%s/device' % (base,)): 129 if os.path.exists(sys_id_path): 133 if os.path.exists(sys_dev_path): 139 if os.path.exists(sys_dev_path):
|