/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/ |
scm_mock.py | 71 def exists(self, path): member in class:MockSCM 104 if self._filesystem.exists(path):
|
scm.py | 104 def exists(self, path): member in class:SCM
|
/external/chromium_org/third_party/mesa/src/scons/ |
custom.py | 109 if os.path.exists(file): 113 if os.path.exists(file): 174 if subprocess.call(["pkg-config", "--exists", ' '.join(modules)]) != 0: 308 def exists(env): function
|
/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/mesa3d/scons/ |
custom.py | 109 if os.path.exists(file): 113 if os.path.exists(file): 174 if subprocess.call(["pkg-config", "--exists", ' '.join(modules)]) != 0: 308 def exists(env): function
|
/external/srec/portable/src/ |
PANSIFileSystemImpl.c | 104 ESR_BOOL exists; local 157 CHKLOG(rc, PHashTableContainsKey(impl->directoryMap, key, &exists)); 158 if (exists) 287 ESR_BOOL exists; local 313 CHKLOG(rc, PHashTableContainsKey(impl->directoryMap, key, &exists)); 314 if (exists) 333 CHKLOG(rc, PHashTableContainsKey(impl->directoryMap, L(""), &exists)); 334 if (exists) 342 CHKLOG(rc, PHashTableContainsKey(PFileSystemPathMap, L(""), &exists)); 343 if (exists) [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/sputnik/ |
testcfg.py | 30 from os.path import join, exists namespace 108 if exists(status_file):
|
/external/v8/test/test262/ |
testcfg.py | 31 from os.path import join, exists namespace 107 if not exists(directory_name) or not exists(archive_name): 108 if not exists(archive_name): 111 if not exists(directory_name): 121 if not exists(join(self.root, 'data')): 129 if exists(status_file):
|
/libcore/luni/src/test/java/libcore/dalvik/system/ |
PathClassLoaderTest.java | 51 assertTrue(result.exists());
|
/packages/apps/Email/tests/src/com/android/emailcommon/mail/ |
MockFolder.java | 52 public boolean exists() { method in class:MockFolder
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/ |
AdtTestData.java | 121 if (!path.exists()) { 130 assert path.exists();
|
/build/core/ |
product.mk | 134 # Do inherit-product only if $(1) exists 136 define inherit-product-if-exists 285 define add-to-product-copy-files-if-exists
|
/libcore/luni/src/test/java/libcore/java/io/ |
OldFileTest.java | 181 assertTrue(dir.exists()); 184 assertTrue(subDir.exists()); 200 assertFalse(dir.exists()); 201 assertFalse(subDir.exists()); 234 if (tempFile.exists() && !tempFile.delete())
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/personalization/ |
UserHistoryDictionaryTests.java | 161 assertTrue(dictFile.exists()); 207 assertTrue(file.exists()); 232 assertTrue(dictFile.exists());
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/ |
RenameResourceParticipantTest.java | 243 if (type == null || !type.exists()) { 248 assertTrue(type.exists()); 251 assertTrue(field.exists());
|
/cts/tests/tests/database/src/android/database/sqlite/cts/ |
SQLiteDatabaseTest.java | 105 assertFalse(dbFile.exists()); 142 assertFalse(dbFile.exists()); 143 assertFalse(journalFile.exists()); 144 assertFalse(shmFile.exists()); 145 assertFalse(walFile.exists()); 146 assertFalse(mjFile1.exists()); 147 assertFalse(mjFile2.exists()); 148 assertTrue(innocentFile.exists()); 304 if (databaseFile.exists()) { [all...] |
/cts/tests/tests/net/src/android/net/cts/ |
VpnServiceTest.java | 113 assertTrue(file.exists());
|
/cts/tests/tests/speech/src/android/speech/tts/cts/ |
TextToSpeechServiceTest.java | 57 assertFalse(sampleFile.exists()); 63 assertTrue("synthesizeToFile() didn't produce a file", sampleFile.exists());
|
TextToSpeechTest.java | 88 assertFalse(sampleFile.exists()); 95 assertTrue("synthesizeToFile() didn't produce a file", sampleFile.exists());
|
/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/chromium_org/win8/metro_driver/ |
secondary_tile.cc | 202 boolean exists; local 203 hr = tile_statics->Exists(MakeHString(tile_id), &exists); 204 CheckHR(hr, "ISecondaryTileStatics.Exists failed"); 205 return exists;
|
/external/guava/guava-tests/test/com/google/common/io/ |
FileBackedOutputStreamTest.java | 52 assertTrue(file.exists()); 62 return !file.exists(); 100 assertTrue(file.exists()); 110 assertFalse(file.exists());
|
/external/llvm/tools/llvm-size/ |
llvm-size.cpp | 237 // If file is not stdin, check that it exists. 239 bool exists; local 240 if (sys::fs::exists(file, exists) || !exists) {
|
/external/qemu/distrib/sdl-1.2.15/src/cdrom/freebsd/ |
SDL_syscdrom.c | 137 int i, j, exists; local 189 exists = 1; 190 for ( j=checklist[i][1]; exists; ++j ) { 197 /* Drive exists and is a CD-ROM */ 201 /* Drive exists, but isn't a CD-ROM */ 206 exists = 0;
|