OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:directoryexists
(Results
26 - 50
of
196
) sorted by null
1
2
3
4
5
6
7
8
/external/chromium_org/third_party/WebKit/Source/web/
AsyncFileSystemChromium.cpp
102
void AsyncFileSystemChromium::
directoryExists
(const KURL& path, PassOwnPtr<AsyncFileSystemCallbacks> callbacks)
104
m_webFileSystem->
directoryExists
(path, new WebKit::WebFileSystemCallbacksImpl(callbacks));
AsyncFileSystemChromium.h
62
virtual void
directoryExists
(const KURL& path, PassOwnPtr<AsyncFileSystemCallbacks>);
/art/runtime/
os_linux.cc
60
bool OS::
DirectoryExists
(const char* name) {
/external/chromium/base/
native_library_mac.mm
23
!file_util::
DirectoryExists
(library_path)) {
/external/chromium/chrome/browser/
platform_util_chromeos.cc
41
if (!file_util::
DirectoryExists
(dir))
platform_util_linux.cc
61
if (!file_util::
DirectoryExists
(dir))
/external/chromium_org/chrome/browser/media_galleries/fileapi/picasa/
picasa_finder.cc
39
if (!base::
DirectoryExists
(path))
/external/chromium_org/content/child/fileapi/
webfilesystem_impl.h
59
virtual void
directoryExists
(
/external/chromium_org/tools/perf/clear_system_cache/
clear_system_cache_main.cc
42
if (base::
DirectoryExists
(path)) {
/external/chromium_org/chrome/test/chromedriver/chrome/
zip.cc
60
bool is_directory = base::
DirectoryExists
(path);
130
DCHECK(base::
DirectoryExists
(src_dir));
178
DCHECK(base::
DirectoryExists
(src_dir));
/external/chromium_org/third_party/zlib/google/
zip.cc
60
bool is_directory = base::
DirectoryExists
(path);
130
DCHECK(base::
DirectoryExists
(src_dir));
178
DCHECK(base::
DirectoryExists
(src_dir));
/external/chromium_org/chrome/browser/sync_file_system/local/
syncable_file_operation_runner_unittest.cc
207
file_system_.operation_runner()->
DirectoryExists
(
251
file_system_.
DirectoryExists
(URL("dest-copy")));
253
file_system_.
DirectoryExists
(URL("dest-move")));
274
file_system_.
DirectoryExists
(URL("dest-copy2")));
284
file_system_.
DirectoryExists
(URL("dest-move")));
/external/chromium_org/chrome/common/extensions/
extension_file_util_unittest.cc
54
ASSERT_TRUE(base::
DirectoryExists
(version_1));
57
ASSERT_FALSE(base::
DirectoryExists
(src));
69
ASSERT_TRUE(base::
DirectoryExists
(version_2));
72
ASSERT_FALSE(base::
DirectoryExists
(src));
84
ASSERT_TRUE(base::
DirectoryExists
(version_3));
94
ASSERT_FALSE(base::
DirectoryExists
(version_1));
95
ASSERT_TRUE(base::
DirectoryExists
(version_2));
96
ASSERT_TRUE(base::
DirectoryExists
(version_3));
100
ASSERT_FALSE(base::
DirectoryExists
(version_2.DirName()));
101
ASSERT_FALSE(base::
DirectoryExists
(version_3.DirName()))
[
all
...]
/external/chromium/sdch/open-vcdiff/src/gtest/
gtest-filepath.cc
125
bool FilePath::
DirectoryExists
() const {
176
if (pathname_.GetLength() == 0 || this->
DirectoryExists
()) {
195
return this->
DirectoryExists
(); // An error is OK if the directory exists.
/external/chromium_org/webkit/browser/fileapi/
sandbox_file_system_backend_unittest.cc
114
ASSERT_TRUE(base::
DirectoryExists
(target));
221
EXPECT_TRUE(base::
DirectoryExists
(root_path));
319
EXPECT_TRUE(base::
DirectoryExists
(root_path));
async_file_test_helper.h
80
static bool
DirectoryExists
(FileSystemContext* context,
native_file_util.h
55
static bool
DirectoryExists
(const base::FilePath& path);
dump_file_system.cc
76
if (!base::
DirectoryExists
(origin_dir))
192
if (!base::
DirectoryExists
(file_system_dir)) {
/external/chromium/chrome/common/
auto_start_linux.cc
35
if (!file_util::
DirectoryExists
(autostart_directory) &&
/external/chromium/net/tools/testserver/
run_testserver.cc
66
if (!file_util::
DirectoryExists
(test_server.document_root())) {
/external/chromium_org/chrome/browser/ui/libgtk2ui/
select_file_dialog_impl.cc
93
return base::
DirectoryExists
(path);
select_file_dialog_impl.h
62
// Wrapper for base::
DirectoryExists
() that allow access on the UI
/external/chromium_org/content/browser/gpu/
webgl_conformance_test.cc
42
ASSERT_TRUE(base::
DirectoryExists
(webgl_conformance_path))
/external/chromium_org/ui/shell_dialogs/gtk/
select_file_dialog_impl.cc
89
return base::
DirectoryExists
(path);
select_file_dialog_impl.h
56
// Wrapper for base::
DirectoryExists
() that allow access on the UI
Completed in 700 milliseconds
1
2
3
4
5
6
7
8