OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsDirectory
(Results
1 - 25
of
62
) sorted by null
1
2
3
/external/clang/lib/Basic/
FileSystemStatCache.cpp
28
Data.
IsDirectory
= Status.
isDirectory
();
98
if (Data.
IsDirectory
!= isForDir) {
122
if (!Data.
IsDirectory
|| llvm::sys::path::is_absolute(Path))
/external/clang/include/clang/Basic/
FileSystemStatCache.h
36
bool
IsDirectory
;
41
: Size(0), ModTime(0),
IsDirectory
(false), IsNamedPipe(false),
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-filepath.h
167
bool
IsDirectory
() const;
/external/gtest/include/gtest/internal/
gtest-filepath.h
163
bool
IsDirectory
() const;
/external/libchrome/base/files/
file_enumerator.h
48
bool
IsDirectory
() const;
file_enumerator_posix.cc
24
bool FileEnumerator::FileInfo::
IsDirectory
() const {
/external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-filepath.h
167
bool
IsDirectory
() const;
/external/mesa3d/src/gtest/include/gtest/internal/
gtest-filepath.h
167
bool
IsDirectory
() const;
/external/protobuf/gtest/include/gtest/internal/
gtest-filepath.h
167
bool
IsDirectory
() const;
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-filepath.h
163
bool
IsDirectory
() const;
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-filepath.h
163
bool
IsDirectory
() const;
/build/kati/
find.cc
123
virtual bool
IsDirectory
() const = 0;
162
virtual bool
IsDirectory
() const override { return false; }
257
if (c->
IsDirectory
())
272
if (!c->
IsDirectory
())
295
virtual bool
IsDirectory
() const override { return true; }
342
virtual bool
IsDirectory
() const override {
343
return errno_ == 0 && to_ && to_->
IsDirectory
();
/external/clang/lib/Lex/
PTHLexer.cpp
636
bool
IsDirectory
;
639
bool
IsDirectory
)
641
IsDirectory
(
IsDirectory
) {}
666
bool
IsDirectory
= true;
668
IsDirectory
= false;
679
return data_type(Size, ModTime, UniqueID,
IsDirectory
);
717
Data.
IsDirectory
= D.
IsDirectory
;
/external/google-breakpad/src/testing/gtest/src/
gtest-filepath.cc
293
bool FilePath::
IsDirectory
() const {
302
if (!this->
IsDirectory
()) {
340
return
IsDirectory
()
/external/gtest/src/
gtest-filepath.cc
295
bool FilePath::
IsDirectory
() const {
304
if (!this->
IsDirectory
()) {
342
return
IsDirectory
()
/external/llvm/utils/unittest/googletest/src/
gtest-filepath.cc
291
bool FilePath::
IsDirectory
() const {
300
if (!this->
IsDirectory
()) {
338
return
IsDirectory
()
/external/mesa3d/src/gtest/src/
gtest-filepath.cc
293
bool FilePath::
IsDirectory
() const {
302
if (!this->
IsDirectory
()) {
340
return
IsDirectory
()
/external/protobuf/gtest/src/
gtest-filepath.cc
293
bool FilePath::
IsDirectory
() const {
302
if (!this->
IsDirectory
()) {
340
return
IsDirectory
()
/external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest-filepath.cc
295
bool FilePath::
IsDirectory
() const {
304
if (!this->
IsDirectory
()) {
342
return
IsDirectory
()
/ndk/sources/third_party/googletest/googletest/src/
gtest-filepath.cc
295
bool FilePath::
IsDirectory
() const {
304
if (!this->
IsDirectory
()) {
342
return
IsDirectory
()
/external/webrtc/webrtc/base/
fileutils.cc
102
bool DirectoryIterator::
IsDirectory
() const {
199
if (di->
IsDirectory
()) {
/external/google-breakpad/src/testing/gtest/test/
gtest-filepath_test.cc
652
TEST(FilePathTest,
IsDirectory
) {
653
EXPECT_FALSE(FilePath("cola").
IsDirectory
());
654
EXPECT_TRUE(FilePath("koala" GTEST_PATH_SEP_).
IsDirectory
());
656
EXPECT_TRUE(FilePath("koala/").
IsDirectory
());
/external/gtest/test/
gtest-filepath_test.cc
636
TEST(FilePathTest,
IsDirectory
) {
637
EXPECT_FALSE(FilePath("cola").
IsDirectory
());
638
EXPECT_TRUE(FilePath("koala" GTEST_PATH_SEP_).
IsDirectory
());
640
EXPECT_TRUE(FilePath("koala/").
IsDirectory
());
/external/protobuf/gtest/test/
gtest-filepath_test.cc
646
TEST(FilePathTest,
IsDirectory
) {
647
EXPECT_FALSE(FilePath("cola").
IsDirectory
());
648
EXPECT_TRUE(FilePath("koala" GTEST_PATH_SEP_).
IsDirectory
());
650
EXPECT_TRUE(FilePath("koala/").
IsDirectory
());
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest-filepath_test.cc
636
TEST(FilePathTest,
IsDirectory
) {
637
EXPECT_FALSE(FilePath("cola").
IsDirectory
());
638
EXPECT_TRUE(FilePath("koala" GTEST_PATH_SEP_).
IsDirectory
());
640
EXPECT_TRUE(FilePath("koala/").
IsDirectory
());
Completed in 1166 milliseconds
1
2
3