Searched defs:Exists (Results 1 - 25 of 26) sorted by path

12

/external/chromium_org/chrome/browser/drive/
H A Dfake_drive_service_unittest.cc70 bool Exists(const std::string& resource_id) { function in class:drive::__anon3610::FakeDriveServiceTest
436 ASSERT_TRUE(Exists("2_file_resource_id"));
446 ASSERT_FALSE(Exists("2_file_resource_id"));
471 ASSERT_TRUE(Exists("2_file_resource_id"));
480 ASSERT_FALSE(Exists("2_file_resource_id"));
830 ASSERT_TRUE(Exists("2_file_resource_id"));
840 EXPECT_FALSE(Exists("2_file_resource_id"));
848 EXPECT_FALSE(Exists("2_file_resource_id"));
880 EXPECT_TRUE(Exists("2_file_resource_id"));
889 EXPECT_FALSE(Exists("
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dcomponent_loader.cc254 bool ComponentLoader::Exists(const std::string& id) const { function in class:extensions::ComponentLoader
/external/chromium_org/chrome/browser/safe_browsing/
H A Dprefix_set.cc133 bool PrefixSet::Exists(const SBFullHash& hash) const { function in class:safe_browsing::PrefixSet
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dfile_system.py108 def Exists(self, path): member in class:FileSystem
/external/chromium_org/content/child/fileapi/
H A Dfile_system_dispatcher.cc253 void FileSystemDispatcher::Exists( function in class:content::FileSystemDispatcher
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Ddev_fs_for_testing.h23 bool Exists(const char* filename) { function in class:DevFsForTesting
H A Dfilesystem_test.cc31 bool Exists(const char* filename) { function in class:__anon8954::MemFsForTesting
226 ASSERT_TRUE(fs.Exists("/dir1/file"));
231 ASSERT_FALSE(fs.Exists("/dir1/file"));
232 ASSERT_TRUE(fs.Exists("/dir2/new_file"));
237 ASSERT_FALSE(fs.Exists("/dir2/new_file"));
238 ASSERT_TRUE(fs.Exists("/dir2/new_file2"));
243 ASSERT_FALSE(fs.Exists("/dir2/new_file2"));
244 ASSERT_TRUE(fs.Exists("/dir1/new_file2"));
257 ASSERT_FALSE(fs.Exists("/dir1"));
258 ASSERT_TRUE(fs.Exists("/dir
[all...]
H A Dhtml5_fs_test.cc52 bool Exists(const char* filename) { function in class:__anon8958::Html5FsForTesting
155 ASSERT_TRUE(fs->Exists("/foo"));
168 ASSERT_TRUE(fs->Exists("/bar"));
169 ASSERT_FALSE(fs->Exists("/foo/bar"));
180 ASSERT_FALSE(fs->Exists("/foo"));
198 ASSERT_TRUE(fs->Exists(kPath));
200 EXPECT_FALSE(fs->Exists(kPath));
210 ASSERT_TRUE(fs->Exists("/dir"));
211 ASSERT_TRUE(fs->Exists("/file"));
214 EXPECT_FALSE(fs->Exists("/fil
[all...]
H A Dmem_fs_node_test.cc39 bool Exists(const char* filename) { function in class:__anon8969::MemFsForTesting
/external/chromium_org/storage/browser/fileapi/
H A Dfile_system_usage_cache.cc149 bool FileSystemUsageCache::Exists(const base::FilePath& usage_file_path) { function in class:storage::FileSystemUsageCache
150 TRACE_EVENT0("FileSystem", "UsageCache::Exists");
/external/chromium_org/third_party/protobuf/src/google/protobuf/testing/
H A Dfile.cc61 bool File::Exists(const string& name) { function in class:google::protobuf::File
103 if (Exists(path)) return false;
/external/chromium_org/tools/telemetry/telemetry/util/
H A Dcloud_storage.py157 def Exists(bucket, remote_path): function
/external/chromium_org/v8/src/
H A Dglobal-handles.h331 DCHECK(Exists(singleton));
336 inline bool Exists(SingletonHandle singleton) { function in class:v8::internal::EternalHandles
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.metadata_2.0.0.v20100601.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/lldb/source/API/
H A DSBFileSpec.cpp68 SBFileSpec::Exists () const function in class:SBFileSpec
72 bool result = m_opaque_ap->Exists();
75 log->Printf ("SBFileSpec(%p)::Exists () => %s", m_opaque_ap.get(), (result ? "true" : "false"));
/external/lldb/source/Host/common/
H A DFileSpec.cpp541 FileSpec::Exists () const function in class:FileSpec
566 if (Exists())
573 if (tmp_file.Exists())
/external/llvm/lib/IR/
H A DConstantsContext.h538 /// entry and Exists=true. If not, the iterator points to the newly
539 /// inserted entry and returns Exists=false. Newly inserted entries have
543 bool &Exists) {
545 Exists = !IP.second;
541 InsertOrGetItem(std::pair<MapKey, ConstantClass *> &InsertVal, bool &Exists) argument
/external/llvm/lib/Support/
H A DLockFileManager.cpp207 bool Exists; local
208 if (!sys::fs::exists(LockFileName.str(), Exists) && !Exists) {
H A DPath.cpp217 bool Exists; local
218 std::error_code EC = sys::fs::exists(ResultPath.begin(), Exists);
221 if (Exists)
/external/llvm/unittests/Support/
H A DFileOutputBufferTest.cpp68 bool Exists = false; local
69 ASSERT_NO_ERROR(fs::exists(Twine(File2), Exists));
70 EXPECT_FALSE(Exists);
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 9645 milliseconds

12