OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:directoryexists
(Results
51 - 75
of
196
) sorted by null
1
2
3
4
5
6
7
8
/external/chromium_org/webkit/browser/fileapi/
obfuscated_file_util_unittest.cc
41
return base::PathExists(path) && !base::
DirectoryExists
(path);
266
bool
DirectoryExists
(const FileSystemURL& url) {
267
return AsyncFileTestHelper::
DirectoryExists
(file_system_context(), url);
363
EXPECT_TRUE(
DirectoryExists
(
570
EXPECT_FALSE(
DirectoryExists
(dest_url));
806
EXPECT_FALSE(
DirectoryExists
(url));
[
all
...]
transient_file_util_unittest.cc
89
ASSERT_FALSE(base::
DirectoryExists
(temp_path));
/external/chromium/base/
file_util_proxy.cc
27
if (!file_util::
DirectoryExists
(dest_file_path.DirName()))
40
bool src_is_directory = file_util::
DirectoryExists
(src_file_path);
41
bool dest_is_directory = file_util::
DirectoryExists
(dest_file_path);
140
if (!file_util::
DirectoryExists
(file_path_.DirName())) {
268
if (!file_util::
DirectoryExists
(file_path_.DirName())) {
409
if (path_exists && !file_util::
DirectoryExists
(file_path_)) {
434
if (!file_util::
DirectoryExists
(file_path_)) {
/external/chromium/net/test/
python_utils.cc
50
while (!file_util::
DirectoryExists
(dir.Append(to_try))) {
/external/chromium/webkit/glue/
webfileutilities_impl.cc
97
return file_util::
DirectoryExists
(file_path);
/external/chromium_org/base/
native_library_mac.mm
48
if (library_path.Extension() == "dylib" || !
DirectoryExists
(library_path)) {
file_util_win.cc
179
DCHECK(
DirectoryExists
(from_path));
214
bool
DirectoryExists
(const FilePath& path) {
228
using base::
DirectoryExists
;
391
if (error_code == ERROR_ALREADY_EXISTS &&
DirectoryExists
(full_path)) {
394
// with the same path. If
DirectoryExists
() returns true, we lost the
714
if (
DirectoryExists
(from_path)) {
/external/chromium_org/chrome/browser/
platform_util_linux.cc
60
if (!base::
DirectoryExists
(dir))
/external/chromium_org/chrome/browser/sync_file_system/local/
syncable_file_system_operation.h
49
virtual void
DirectoryExists
(const fileapi::FileSystemURL& url,
/external/chromium_org/chrome/common/
auto_start_linux.cc
35
if (!base::
DirectoryExists
(autostart_directory) &&
/external/chromium_org/chrome/installer/util/
self_cleaning_temp_dir.cc
33
LOG_IF(WARNING, !base::
DirectoryExists
(parent_dir))
/external/chromium_org/cloud_print/virtual_driver/win/install/
setup.cc
394
DCHECK(base::
DirectoryExists
(install_path));
480
if (!base::
DirectoryExists
(install_path))
495
if (base::
DirectoryExists
(old_install_path))
512
!base::
DirectoryExists
(exe_path)) {
/external/chromium_org/net/test/
python_utils.cc
51
while (!base::
DirectoryExists
(dir.Append(to_try))) {
/external/chromium_org/net/tools/testserver/
run_testserver.cc
114
if (!base::
DirectoryExists
(test_server->document_root())) {
/external/chromium_org/third_party/WebKit/Source/web/
WorkerAsyncFileSystemChromium.h
72
virtual void
directoryExists
(const KURL& path, PassOwnPtr<AsyncFileSystemCallbacks>);
/external/chromium_org/tools/android/md5sum/
md5sum.cc
56
if (base::
DirectoryExists
(file_path)) {
/external/chromium/chrome/common/
zip.cc
239
bool is_directory = file_util::
DirectoryExists
(path);
267
DCHECK(file_util::
DirectoryExists
(src_dir));
/external/chromium_org/chrome/browser/storage_monitor/
media_storage_util.cc
106
if (!base::
DirectoryExists
(mount_point.Append(dcim_dir))) {
110
if (!base::
DirectoryExists
(dcim_path_lower))
/external/chromium_org/chrome_frame/
simple_resource_loader.cc
151
if (!base::
DirectoryExists
(*locales_path)) {
228
DCHECK(found_pack || base::
DirectoryExists
(locales_path))
/external/chromium/testing/gtest/src/
gtest-filepath.cc
216
bool FilePath::
DirectoryExists
() const {
306
if (pathname_.length() == 0 || this->
DirectoryExists
()) {
331
return this->
DirectoryExists
(); // An error is OK if the directory exists.
/external/chromium_org/testing/gtest/src/
gtest-filepath.cc
217
bool FilePath::
DirectoryExists
() const {
307
if (pathname_.length() == 0 || this->
DirectoryExists
()) {
332
return this->
DirectoryExists
(); // An error is OK if the directory exists.
/external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-filepath.cc
216
bool FilePath::
DirectoryExists
() const {
306
if (pathname_.length() == 0 || this->
DirectoryExists
()) {
331
return this->
DirectoryExists
(); // An error is OK if the directory exists.
/external/gtest/src/
gtest-filepath.cc
216
bool FilePath::
DirectoryExists
() const {
306
if (pathname_.length() == 0 || this->
DirectoryExists
()) {
331
return this->
DirectoryExists
(); // An error is OK if the directory exists.
/external/llvm/utils/unittest/googletest/
gtest-filepath.cc
214
bool FilePath::
DirectoryExists
() const {
304
if (pathname_.length() == 0 || this->
DirectoryExists
()) {
329
return this->
DirectoryExists
(); // An error is OK if the directory exists.
/external/mesa3d/src/gtest/src/
gtest-filepath.cc
216
bool FilePath::
DirectoryExists
() const {
306
if (pathname_.length() == 0 || this->
DirectoryExists
()) {
331
return this->
DirectoryExists
(); // An error is OK if the directory exists.
Completed in 1288 milliseconds
1
2
3
4
5
6
7
8