HomeSort by relevance Sort by last modified time
    Searched defs:exists (Results 126 - 150 of 263) sorted by null

1 2 3 4 56 7 8 91011

  /cts/tests/tests/content/src/android/content/cts/
SharedPreferencesTest.java 72 assertFalse(mPrefsFile.exists());
77 assertFalse(mPrefsFile.exists());
79 assertTrue(mPrefsFile.exists());
114 assertFalse(mPrefsFile.exists());
116 assertTrue(mPrefsFile.exists());
212 assertFalse(mPrefsFile.exists());
214 assertTrue(mPrefsFile.exists());
225 assertTrue(mPrefsFile.exists());
  /cts/tests/tests/os/src/android/os/cts/
FileAccessPermissionTest.java 136 assertTrue(sdcardDir.exists());
FileObserverTest.java 54 if (mTestFile != null && mTestFile.exists()) {
58 if (mMoveDestFile != null && mMoveDestFile.exists()) {
62 if (mTestDir != null && mTestDir.exists()) {
128 assertTrue(mTestFile.exists());
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_FilesTest.java 249 assertTrue(sdfile.exists());
  /external/chromium_org/chrome/browser/chromeos/login/managed/
locally_managed_user_creation_screen.cc 35 // Key for (boolean) value that indicates that user already exists on device.
36 const char kUserExists[] = "exists";
221 bool exists; local
226 user_info->GetBoolean(kUserExists, &exists);
229 if (exists) {
265 bool exists; local
270 user_info->GetBoolean(kUserExists, &exists);
273 if (exists) {
  /external/chromium_org/content/browser/dom_storage/
session_storage_database.cc 79 bool exists; local
80 if (GetMapForArea(namespace_id, origin.spec(), options, &exists, &map_id) &&
81 exists)
104 bool exists; local
106 &exists, &map_id))
108 if (exists) {
325 // The directory exists but a valid leveldb database might not exist inside it
434 bool exists; local
435 if (!GetMapForArea(namespace_id, origin, leveldb::ReadOptions(), &exists,
438 if (!exists)
    [all...]
session_storage_database_unittest.cc 227 // Check that the corresponding "namespace-<namespaceid>-" key exists. It
368 bool exists; local
371 leveldb::ReadOptions(), &exists, &map_id));
372 EXPECT_TRUE(exists);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
filesystem_mock.py 108 if not self.exists(source):
114 if not self.exists(self.dirname(destination)):
123 def exists(self, path): member in class:MockFileSystem
218 if self.exists(f) and f.startswith(top):
229 if self.exists(path):
259 if self._filesystem.exists(self._directory_path):
  /external/chromium_org/third_party/libXNVCtrl/
NVCtrl.c 346 Bool exists; local
367 exists = rep.flags;
368 if (exists && value) *value = rep.value;
371 return exists;
397 Bool exists; local
418 exists = rep.flags;
419 if (exists && value) *value = rep.value_64;
422 return exists;
437 Bool exists; local
464 exists = rep.flags
564 Bool exists; local
606 Bool exists; local
652 Bool exists; local
695 Bool exists; local
753 Bool exists; local
981 Bool exists; local
    [all...]
  /external/clang/lib/Lex/
HeaderSearch.cpp 222 /// if it exists or returning null if not.
320 // Determine whether this directory exists.
393 if (llvm::sys::fs::exists(SystemFrameworkMarker.str())) {
444 // Determine whether this directory exists.
508 // If 'Filename' is absolute, check to see if it exists and no searching.
807 bool exists; local
808 if (llvm::sys::fs::exists(Path.str(), exists) || !exists)
810 else if (exists)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerFunctionalTest.java 146 * Tests trying to download to SD card when the file with same name already exists.
236 assertFalse(downloadedFile.exists());
  /frameworks/compile/libbcc/gdb_plugin/
android-commands.py 201 if not os.path.exists(lib_path) and self.verbose:
292 # Returns true if filename exists on Android fs, false otherwise
293 def exists(self, filename): member in class:ADB
481 if not self.adb.exists(self.gdbserver_path):
629 if os.path.exists(script_name):
636 if os.path.exists(path_in_root):
713 or not self.adb.exists(data_directory):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
Standard_Suite.py 116 def exists(self, _object, _attributes={}, **_arguments): member in class:Standard_Suite_Events
117 """exists: Verify if an object exists.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Terminal/
Standard_Suite.py 116 def exists(self, _object, _attributes={}, **_arguments): member in class:Standard_Suite_Events
117 """exists: Verify if an object exists.
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/resources/platform/
AttributeInfoTest.java 302 assertTrue(attrsPath.getPath(), attrsPath.exists());
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
FileTest.java 312 // canRead only returns if the file exists so cannot be fully tested.
327 // canWrite only returns if the file exists so cannot be fully tested.
376 // If the directory exists, add one to the directory number
378 if (dir.exists()) {
417 // Test for creating a file that already exists.
418 assertFalse("File Already Exists, createNewFile Should Return False.",
439 // not IOE when the file exists (in this case it exists and is
569 // If the directory exists, add one to the directory number
572 if (dir.exists()) {
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
DownloadManagerTest.java 140 if (uriLocation.exists()) {
145 if (extFileLocation.exists()) {
152 if (publicLocation.exists()) {
197 if (noExtLocation.exists()) {
203 if (wrongExtLocation.exists()) {
369 assertTrue(location.exists());
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
URLClassLoaderTest.java 381 if (!dir.exists()) {
513 assertTrue(mainJar.exists());
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_wm_surface_state.c 77 bool exists; member in struct:surface_format_info
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
test_multiplex.c 400 int exists = 0; local
413 SQLITE_ACCESS_EXISTS, &exists);
414 if( rc2==SQLITE_OK && exists){
415 /* if it exists, delete it */
663 /* if not opened already, check to see if the chunk exists */
668 int exists = 0; local
682 SQLITE_ACCESS_EXISTS, &exists);
683 if( rc2==SQLITE_OK && exists){
684 /* if it exists, open it */
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_wm_surface_state.c 77 bool exists; member in struct:surface_format_info
    [all...]
  /external/srec/shared/src/
SessionTypeImpl.c 274 const LCHAR* name, ESR_BOOL* exists)
278 return HashMapContainsKey(data->value, name, exists);
308 ESR_BOOL exists; local
311 CHKLOG(rc, HashMapContainsKey(data->value, name, &exists));
312 if ( exists )
453 ESR_BOOL exists; local
456 CHK(rc, self->contains(self, name, &exists));
457 if (exists)
467 ESR_BOOL exists; local
470 CHK(rc, self->contains(self, name, &exists));
481 ESR_BOOL exists; local
495 ESR_BOOL exists; local
509 ESR_BOOL exists; local
523 ESR_BOOL exists; local
1078 ESR_BOOL exists; local
    [all...]
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
UiObject.java 897 public boolean exists() { method in class:UiObject
    [all...]
  /libcore/luni/src/main/java/java/io/
File.java 360 * @return {@code true} if this file exists, {@code false} otherwise.
362 public boolean exists() { method in class:File
862 * directory exists on return, either use {@code (f.mkdir() || f.isDirectory())}
890 * directory exists on return, either use {@code (f.mkdirs() || f.isDirectory())
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldFileHandlerTest.java 425 assertFalse(file.exists());
432 assertFalse(file.exists());
440 assertFalse(file.exists());

Completed in 356 milliseconds

1 2 3 4 56 7 8 91011