HomeSort by relevance Sort by last modified time
    Searched refs:exists (Results 226 - 250 of 1845) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/build/
landmines.py 61 if not os.path.exists(out_dir):
64 if not os.path.exists(landmines_path):
79 elif os.path.exists(triggered):
  /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...]
  /external/chromium_org/third_party/sqlite/src/test/
fts3_common.tcl 61 if {[info exists D($zTerm,$docid)]} {
96 if {![info exists C($iDoc,$iCol,$pos)]} {
116 if {[info exists errors]} { return [join $errors "\n"] }
  /external/chromium_org/tools/export_tarball/
export_v8_tarball.py 100 if not os.path.exists(v8_directory):
113 if not os.path.exists(output_fullname):
123 if not os.path.exists(output_fullname):
  /external/chromium_org/tools/perf/measurements/
blink_perf.py 13 assert os.path.exists(path)
42 if os.path.exists(skipped_file):
68 if not os.path.exists(page_set_arg):
  /external/chromium_org/v8/test/benchmarks/
testcfg.py 138 if os.path.exists(revision_file):
145 if os.path.exists(target_dir):
148 if os.path.exists(archive_file):
  /external/chromium_org/v8/test/test262/
testcfg.py 97 if not os.path.exists(archive_name):
100 if os.path.exists(directory_name):
102 if not os.path.exists(directory_name):
  /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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
BuildMachineManager.java 75 if (new File(markerContainer+"/"+markerName+".marker").exists()){
76 System.out.println("Marker already exists: "+markerName+".marker");
105 if (lock.exists())
128 if (container.exists() && container.isDirectory()) {
  /external/jmonkeyengine/engine/src/tools/jme3tools/savegame/
SaveGame.java 42 if (!daveFolder.exists() && !daveFolder.mkdirs()) {
47 if (!saveFile.exists()) {
94 if(!file.exists()){
  /external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
ResourceLoaderAdaptor.java 104 return file.exists() ? file : null;
114 return file.exists() ? file : null;
145 if (file.exists()) {
  /external/llvm/lib/Support/
LockFileManager.cpp 25 /// \brief Attempt to read the lock file with the given name, if it exists.
32 // Check whether the lock file exists. If not, clearly there's nothing
34 bool Exists = false;
35 if (sys::fs::exists(LockFileName, Exists) || !Exists)
77 // If the lock file already exists, don't bother to try to create our own
195 bool Exists = false;
201 if (!sys::fs::exists(LockFileName.str(), Exists) && !Exists)
    [all...]
  /external/llvm/utils/lit/lit/
Util.py 28 if not path or os.path.exists(path):
78 if os.path.exists(p):
85 if not os.path.exists(os.path.join(dir, tool)):
  /external/smack/src/org/jivesoftware/smackx/search/
SimpleUserSearch.java 124 boolean exists = false;
129 exists = true;
134 if (!exists) {
  /external/srec/shared/src/
IntArrayListImpl.c 130 ESR_ReturnCode IntArrayList_Contains(IntArrayList* self, const int element, ESR_BOOL* exists)
141 *exists = ESR_TRUE;
145 *exists = ESR_FALSE;
  /external/v8/src/
v8utils.h 195 bool* exists,
198 bool* exists,
242 bool exists() const { return file_ != NULL; } function in class:v8::internal::MemoryMappedExternalResource
  /external/v8/test/cctest/
test-log.cc 128 bool exists = false; local
130 i::ReadFile(initialize_logger.StopLoggingGetTempFile(), &exists, true));
131 CHECK(exists);
388 bool exists = false; local
390 i::ReadFile(initialize_logger.StopLoggingGetTempFile(), &exists, true));
391 CHECK(exists);
431 bool exists = false; local
433 i::ReadFile(initialize_logger.StopLoggingGetTempFile(), &exists, true));
434 CHECK(exists);
504 bool exists = false local
    [all...]
  /external/v8/test/message/
testcfg.py 30 from os.path import join, dirname, exists, basename, isdir namespace
120 if not exists(output_path):
132 if exists(status_file):
  /external/v8/test/mozilla/
testcfg.py 31 from os.path import join, exists namespace
113 if exists(script):
132 if exists(status_file):
  /frameworks/base/tests/HugeBackup/src/com/android/hugebackup/
HugeBackupActivity.java 104 boolean exists = mDataFile.exists();
107 if (exists) {
108 Log.v(TAG, "datafile exists");
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/debug/
DataExporter.java 105 if (!directory.exists()) {
115 return getOutputDirectory(context).exists();
123 if (!file.exists()) return;
  /packages/services/Telephony/src/com/android/phone/
CallTime.java 199 if (file.exists() == false) {
207 if (file.exists() == true) {
212 if (file.exists() == true) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/templates/
SetFolders.java 65 if (!project.exists())
87 if (!folder.exists())
94 if (!folder.exists())
SimpleFile.java 81 if (!project.exists())
92 if (destFile.exists())
119 if (container.exists())
  /external/chromium_org/ppapi/native_client/tools/browser_tester/browsertester/
browserlauncher.py 121 if path is None or not os.path.exists(path):
124 if not os.path.exists(binary):
172 if os.path.exists(bare_file):
176 if not os.path.exists(parent_dir):
181 if not os.path.exists(browser_path):
219 if not os.path.exists(path):

Completed in 2888 milliseconds

1 2 3 4 5 6 7 8 91011>>