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

1 2 34 5 6 7 8 91011

  /external/qemu/distrib/sdl-1.2.15/src/cdrom/openbsd/
SDL_syscdrom.c 146 int i, j, exists; local
198 exists = 1;
199 for ( j=checklist[i][1]; exists; ++j ) {
206 /* Drive exists and is a CD-ROM */
210 /* Drive exists, but isn't a CD-ROM */
215 exists = 0;
  /external/srec/shared/src/
HashMapImpl.c 84 ESR_BOOL exists; local
86 CHKLOG(rc, PHashTableContainsKey(impl->table, key, &exists));
87 if (!exists)
177 ESR_ReturnCode HashMap_ContainsKey(HashMap* self, const LCHAR* key, ESR_BOOL* exists)
182 CHKLOG(rc, PHashTableContainsKey(impl->table, key, exists));
  /external/srec/srec/AcousticModels/src/
AcousticModelsImpl.c 220 ESR_BOOL exists = ESR_FALSE; local
222 CHKLOG(rc, ESR_SessionExists(&exists));
223 if (exists)
488 /* Key already exists, remove old value if necessary */
  /external/srec/srec/Nametag/src/
NametagsImpl.c 281 ESR_BOOL exists; local
285 CHKLOG(rc, nametags->containsKey(nametags, id, &exists));
286 if (exists)
  /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/mjsunit/
testcfg.py 30 from os.path import join, dirname, exists namespace
152 if exists(status_file):
  /external/v8/test/preparser/
testcfg.py 30 from os.path import join, dirname, exists, isfile namespace
84 if exists(expects_file):
156 if exists(status_file):
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseErrorHandlerTest.java 43 if (mDatabaseFile.exists()) {
61 assertTrue(mDatabaseFile.exists());
71 assertTrue(mDatabaseFile.exists());
84 if (mDatabaseFile.exists()) {
91 assertFalse(mDatabaseFile.exists());
  /frameworks/base/core/tests/coretests/src/android/os/
FileObserverTest.java 66 if (mTestFile != null && mTestFile.exists()) {
74 assertTrue(mTestFile.exists());
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
Ver3DictDecoderTests.java 120 assertTrue(testFile.exists());
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/
Standard_Suite.py 141 def exists(self, _object, _attributes={}, **_arguments): member in class:Standard_Suite_Events
142 """exists: Verify if an object exists
145 Returns: true if it exists, false if not
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/io/
IFolderWrapper.java 57 public boolean exists() { method in class:IFolderWrapper
58 return mContainer.exists();
  /packages/apps/Email/tests/src/com/android/email/mail/store/
Pop3StoreUnitTests.java 273 // exists() true if name is INBOX
274 assertTrue(mFolder.exists());
275 assertTrue(folderMixedCaseInbox.exists());
276 assertFalse(folderNotInbox.exists());
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
MediaScannerConnectionTest.java 55 assertTrue(mMediaFile.exists());
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Video_MediaTest.java 202 assertTrue(videofile.exists());
204 assertFalse(videofile.exists());
208 assertTrue(videofile.exists());
212 assertTrue(videofile.exists());
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
ArchiveTest.java 40 if (file.exists())
42 assertFalse(file.exists());
74 assertTrue(file.exists());
80 assertFalse(new File(path).exists());
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
git.py 100 return self._filesystem.exists(self.absolute_path(self._filesystem.join('.git', 'rebase-apply')))
129 def exists(self, path): member in class:Git
226 if self._filesystem.exists(order_file):
263 # Use references so that we can avoid collisions, e.g. we don't want to operate on refs/heads/trunk if it exists.
svn.py 152 def exists(self, path): member in class:SVN
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
filesystem.py 76 def exists(self, path): member in class:FileSystem
77 return os.path.exists(path)
164 if os.path.exists(self._directory_path):
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_build_util.h 136 inline bool exists(ValueMap&, unsigned int i, unsigned int c);
286 BuildUtil::DataArray::exists(ValueMap &m, unsigned int i, unsigned int c) function in class:nv50_ir::BuildUtil::DataArray
  /external/chromium_org/tools/telemetry/telemetry/unittest/
system_stub.py 149 def exists(self, path): member in class:OsModuleStub.OsPathModuleStub
  /external/chromium_org/v8/test/cctest/
test-log.cc 353 bool exists = false; local
355 i::ReadFile(initialize_logger.StopLoggingGetTempFile(), &exists, true));
356 CHECK(exists);
395 bool exists = false; local
397 i::ReadFile(initialize_logger.StopLoggingGetTempFile(), &exists, true));
398 CHECK(exists);
453 bool exists = false; local
455 i::ReadFile(initialize_logger.StopLoggingGetTempFile(), &exists, true));
456 CHECK(exists);
  /external/chromium_org/v8/tools/
presubmit.py 40 from os.path import abspath, join, dirname, basename, exists namespace
291 if os.path.exists(path+'/.git'):
  /external/clang/tools/arcmt-test/
arcmt-test.cpp 275 bool exists = false; local
276 sys::fs::exists(It->second, exists);
277 if (!exists) {
281 sys::fs::exists(inputResultFname, exists);
282 if (!exists) {
  /external/clang/tools/driver/
driver.cpp 339 // when the DiagnosticsEngine actually exists.
369 bool exists; local
370 if (!llvm::sys::fs::exists(InstalledPath.str(), exists) && exists)

Completed in 961 milliseconds

1 2 34 5 6 7 8 91011