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

1 2 3 4 56 7 8 91011>>

  /external/webkit/Source/WebCore/platform/sql/
SQLiteFileSystem.h 75 // Makes sure the given directory exists, by creating all missing directories
81 // If 'checkPathOnly' is false, then this method only checks if the given file exists.
84 // itself exists.
88 // new DB file exists. This method covers both cases.
91 // checkPathOnly - If true, we only make sure that the given directory exists.
92 // If false, we only check if the file exists.
  /external/webkit/Source/WebKit/chromium/public/
WebFileSystem.h 82 // If |exclusive| is true, it fails if the |path| already exists.
83 // If |exclusive| is false, it succeeds if the |path| already exists or
92 // If |exclusive| is true, it fails if the |path| already exists.
93 // If |exclusive| is false, it succeeds if the |path| already exists or it has successfully created a new directory at |path|.
100 // Checks if a file exists at a given |path|.
105 // Checks if a directory exists at a given |path|.
  /external/webkit/Source/WebCore/rendering/
RenderTableCell.cpp 353 if (!border2.exists()) {
354 if (!border1.exists())
358 if (!border1.exists())
414 if (!result.exists())
419 if (!result.exists())
424 if (!result.exists())
434 if (!result.exists())
438 if (!result.exists())
449 if (!result.exists())
455 if (!result.exists())
    [all...]
  /frameworks/base/core/java/android/os/
Bundle.java 755 * no mapping of the desired type exists for the given key.
789 * no mapping of the desired type exists for the given key.
810 * no mapping of the desired type exists for the given key.
822 * no mapping of the desired type exists for the given key.
843 * no mapping of the desired type exists for the given key.
855 * no mapping of the desired type exists for the given key.
876 * no mapping of the desired type exists for the given key.
888 * no mapping of the desired type exists for the given key.
909 * no mapping of the desired type exists for the given key.
921 * no mapping of the desired type exists for the given key
    [all...]
  /development/ide/emacs/
android-compile.el 49 (defun android-makefile-exists-p (directory)
50 "Return t if an Android makefile exists in DIRECTORY."
52 (or (file-exists-p (concat directory "Android.mk"))
53 (file-exists-p (concat directory "Makefile"))))
70 (not (android-makefile-exists-p default-directory)))
75 (when (not (android-makefile-exists-p default-directory))
150 (unless (file-exists-p (concat topdir "buildspec.mk"))
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-filepath.cc 124 // that exists.
145 // already exists. The number will be incremented until a pathname is found
163 // This does NOT check that a directory (or file) actually exists.
168 // Create directories so that path exists. Returns true if successful or if
184 // Create the directory so that path exists. Returns true if successful or
185 // if the directory already exists; returns false if unable to create the
195 return this->DirectoryExists(); // An error is OK if the directory exists.
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-filepath.h 85 // already exists. The number will be incremented until a pathname is found
121 // Creates directories so that path exists. Returns true if successful or if
127 // Create the directory so that path exists. Returns true if successful or
128 // if the directory already exists; returns false if unable to create the
134 // either a file, directory, or whatever, and that something exists.
138 // that exists.
143 // This does NOT check that a directory (or file) actually exists.
  /libcore/luni/src/test/java/libcore/java/io/
FileTest.java 59 // exists can see it, the code for coping with long paths (shared by all methods) works.
62 assertTrue(createDeepStructure(base).exists());
70 assertFalse(source.exists());
71 assertTrue(target.exists());
74 assertTrue(source.exists());
95 assertFalse(f.exists());
149 if (new File("/sdcard").exists()) {
  /system/core/include/arch/linux-sh/
AndroidConfig.h 308 * Define if <sys/socket.h> exists.
313 * Define if the strlcpy() function exists on the system.
318 * Define if the open_memstream() function exists on the system.
323 * Define if the BSD funopen() function exists on the system.
328 * Define if prctl() exists
333 * Define if writev() exists
355 * Define if pread() exists
  /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...]
  /external/chromium/chrome/browser/safe_browsing/
prefix_set_unittest.cc 55 EXPECT_TRUE(prefix_set->Exists(prefixes[i]));
59 EXPECT_FALSE(prefix_set->Exists(left_sibling));
63 EXPECT_FALSE(prefix_set->Exists(right_sibling));
163 EXPECT_FALSE(prefix_set.Exists(shared_prefixes_[i]));
171 EXPECT_FALSE(prefix_set.Exists(-1));
172 EXPECT_TRUE(prefix_set.Exists(prefixes[0]));
173 EXPECT_FALSE(prefix_set.Exists(1));
236 // Use artificial inputs to test various edge cases in Exists().
293 EXPECT_FALSE(prefix_set.Exists(kVeryNegative - 100));
294 EXPECT_FALSE(prefix_set.Exists(kVeryPositive + 100))
    [all...]
bloom_filter_unittest.cc 51 // Check no false negatives by ensuring that every time we inserted exists.
53 EXPECT_TRUE(filter_copy->Exists(*i));
65 if (filter_copy->Exists(value))
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
TrustedCertificateStore.java 159 if (!file.exists() || isTombstone(file)) {
206 return getCertificateFile(deletedDir, x).exists();
281 if (user.exists()) {
288 if (system.exists()) {
295 * Returns a File for where the certificate is found if it exists
298 * File.exists()} on the result.
381 // could not find a match, no file exists, bail
428 * silently ignores the certificate if it already exists in the
436 if (system.exists()) {
438 if (deleted.exists()) {
    [all...]
  /external/chromium/net/url_request/
url_request_file_job.cc 53 bool exists = file_util::GetFileInfo(file_path, &file_info); local
57 this, &AsyncResolver::ReturnResults, exists, file_info));
73 void ReturnResults(bool exists, const base::PlatformFileInfo& file_info) {
75 owner_->DidResolve(exists, file_info);
167 bool exists; local
171 exists = file_util::GetFileInfo(file_path_, &file_info);
178 &URLRequestFileJob::DidResolve, exists, file_info));
309 bool exists, const base::PlatformFileInfo& file_info) {
329 if (!exists) {
  /external/qemu/
qdict.c 124 * Insert the pair 'key:value' into 'qdict', if 'key' already exists
166 * qdict_haskey(): Check if 'key' exists
168 * Return 1 if 'key' exists in the dict, 0 otherwise
202 * This function assumes that 'key' exists and it stores a
225 * This function assumes that 'key' exists and it stores a
239 * This function assumes that 'key' exists and it stores a
253 * This function assumes that 'key' exists and it stores a
266 * This function assumes that 'key' exists and it stores a
280 * This function assumes that 'key' exists and it stores a
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
ResourceManagerBuilder.java 153 boolean genFolderPresent = false; // whether the gen folder actually exists
155 genFolderPresent = resource != null && resource.exists();
162 // folder exists already! This is an error. If the folder had been created
164 message = String.format("%1$s already exists but is not a source folder. Convert to a source folder or rename it.",
167 // resource exists but is not a folder.
219 if (androidOutput.exists() == false || javaOutput == null ||
224 if (androidOutput.exists() == false) {
228 if (newJavaOutput.exists() == false) {
240 if (binResFolder.exists() == false) {
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/build/
CtsBuildHelper.java 103 if (!apkFile.exists()) {
137 * made to ensure the plan actually exists
150 if (!getCtsDir().exists()) {
154 if (!getTestCasesDir().exists()) {
159 if (!getTestPlansDir().exists()) {
  /external/doclava/src/com/google/doclava/
Hierarchy.java 90 private static boolean exists(ClassInfo cl) { method in class:Hierarchy
109 if (exists(cl)) {
110 hdf.setValue("exists", "1");
120 if (exists(cl)) {
121 hdf.setValue("interfaces." + i + ".exists", "1");
  /external/llvm/tools/llvm-ranlib/
llvm-ranlib.cpp 72 // Make sure it exists, we don't create empty archives
73 bool Exists;
74 if (llvm::sys::fs::exists(ArchivePath.str(), Exists) || !Exists)
  /external/oprofile/
opimport_pull 10 print " -r : reuse the directory if it already exists"
45 if (os.path.exists(output_dir) and (replace_dir == 1)):
51 if os.path.exists(output_dir):
52 print "Directory already exists:", output_dir
112 if not os.path.exists(dir):
  /external/webkit/Source/WebCore/platform/qt/
FileSystemQt.cpp 48 return QFile::exists(path);
66 return info.exists();
73 return info.exists();
152 if (handle && handle->exists() && handle->isReadable())
195 if (handle && handle->exists() && handle->isWritable())
  /libcore/luni/src/main/java/java/io/
FileOutputStream.java 29 * An output stream that writes bytes to a file. If the output file exists, it
68 * truncated if it exists, and created if it doesn't exist.
78 * If {@code append} is true and the file already exists, it will be appended to; otherwise
112 * truncated if it exists, and created if it doesn't exist.
122 * If {@code append} is true and the file already exists, it will be appended to; otherwise
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
ApplicationAttributesPart.java 160 // The UiElementNode for the application XML node always exists, even
165 boolean exists = (ui_node.getXmlNode() != null);
166 if (table != null && table.getEnabled() != exists) {
167 table.setEnabled(exists);
169 c.setEnabled(exists);
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaProvider.java 450 if (!file.exists()) {
520 if (origFile.exists() && origFile.length() > 0) {
649 db.execSQL("DROP TABLE IF EXISTS images");
650 db.execSQL("DROP TRIGGER IF EXISTS images_cleanup");
651 db.execSQL("DROP TABLE IF EXISTS thumbnails");
652 db.execSQL("DROP TRIGGER IF EXISTS thumbnails_cleanup");
653 db.execSQL("DROP TABLE IF EXISTS audio_meta");
654 db.execSQL("DROP TABLE IF EXISTS artists");
655 db.execSQL("DROP TABLE IF EXISTS albums");
656 db.execSQL("DROP TABLE IF EXISTS album_art")
    [all...]
  /cts/tests/appsecurity-tests/test-apps/AppWithData/src/com/android/cts/appwithdata/
CreatePrivateDataTest.java 60 assertTrue(getContext().getFileStreamPath(PRIVATE_FILE_NAME).exists());
101 assertFalse(getContext().getFileStreamPath(PRIVATE_FILE_NAME).exists());
147 db.execSQL("DROP TABLE IF EXISTS " + DB_TABLE_NAME);

Completed in 1379 milliseconds

1 2 3 4 56 7 8 91011>>