Home
last modified time | relevance | path

Searched full:filepath (Results 1 – 25 of 1378) sorted by relevance

12345678910>>...56

/external/googletest/googletest/test/
Dgoogletest-filepath-test.cc30 // Google Test filepath utilities
38 #include "gtest/internal/gtest-filepath.h"
63 FilePath filepath(path); in _rmdir() local
65 filepath.RemoveTrailingPathSeparator().c_str()); in _rmdir()
74 const FilePath original_dir = FilePath::GetCurrentDir();
78 const FilePath cwd = FilePath::GetCurrentDir();
98 EXPECT_TRUE(FilePath("").IsEmpty()); in TEST()
102 EXPECT_FALSE(FilePath("a").IsEmpty()); in TEST()
103 EXPECT_FALSE(FilePath(".").IsEmpty()); in TEST()
104 EXPECT_FALSE(FilePath("a/b").IsEmpty()); in TEST()
[all …]
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/test/
Dgoogletest-filepath-test.cc30 // Google Test filepath utilities
38 #include "gtest/internal/gtest-filepath.h"
63 FilePath filepath(path); in _rmdir() local
65 filepath.RemoveTrailingPathSeparator().c_str()); in _rmdir()
74 const FilePath original_dir = FilePath::GetCurrentDir();
78 const FilePath cwd = FilePath::GetCurrentDir();
98 EXPECT_TRUE(FilePath("").IsEmpty()); in TEST()
102 EXPECT_FALSE(FilePath("a").IsEmpty()); in TEST()
103 EXPECT_FALSE(FilePath(".").IsEmpty()); in TEST()
104 EXPECT_FALSE(FilePath("a/b").IsEmpty()); in TEST()
[all …]
/external/deqp/framework/delibs/decpp/
DdeFilePath.cpp45 const std::string FilePath::separator = "\\";
47 const std::string FilePath::separator = "/";
50 FilePath::FilePath (const std::vector<std::string>& components) in FilePath() function in de::FilePath
60 void FilePath::split (std::vector<std::string>& components) const in split()
89 FilePath FilePath::join (const std::vector<std::string>& components) in join()
91 return FilePath(components); in join()
94 FilePath& FilePath::normalize (void) in normalize()
134 FilePath FilePath::normalize (const FilePath& path) in normalize()
136 return FilePath(path).normalize(); in normalize()
139 std::string FilePath::getBaseName (void) const in getBaseName()
[all …]
DdeFilePath.hpp36 class FilePath class
50 FilePath (void);
51 FilePath (const std::string& path);
52 FilePath (const char* path);
53 FilePath (const std::vector<std::string>& components);
54 ~FilePath (void);
64 static FilePath join (const FilePath& a, const FilePath& b);
65 FilePath& join (const FilePath& b);
67 static FilePath normalize (const FilePath& path);
68 FilePath& normalize (void);
[all …]
/external/libabigail/tests/data/test-diff-filter/
Dtest-PR27569-v1.abi40 …<class-decl name="anon_vma" size-in-bits="704" is-struct="yes" visibility="default" filepath="incl…
42 …<var-decl name="root" type-id="a8f86cda" visibility="default" filepath="include/linux/rmap.h" line…
45 …<var-decl name="rwsem" type-id="f19fdb93" visibility="default" filepath="include/linux/rmap.h" lin…
48 …<var-decl name="refcount" type-id="49178f86" visibility="default" filepath="include/linux/rmap.h" …
51 …<var-decl name="degree" type-id="f0981eeb" visibility="default" filepath="include/linux/rmap.h" li…
54 …<var-decl name="parent" type-id="a8f86cda" visibility="default" filepath="include/linux/rmap.h" li…
57 …<var-decl name="rb_root" type-id="6fe1603d" visibility="default" filepath="include/linux/rmap.h" l…
60 …audit_context" size-in-bits="7360" is-struct="yes" visibility="default" filepath="kernel/audit.h" …
62 …<var-decl name="dummy" type-id="95e97e5e" visibility="default" filepath="kernel/audit.h" line="111…
65 …<var-decl name="in_syscall" type-id="95e97e5e" visibility="default" filepath="kernel/audit.h" line…
[all …]
Dtest-PR27569-v0.abi40 …<class-decl name="anon_vma" size-in-bits="704" is-struct="yes" visibility="default" filepath="incl…
42 …<var-decl name="root" type-id="a8f86cda" visibility="default" filepath="include/linux/rmap.h" line…
45 …<var-decl name="rwsem" type-id="f19fdb93" visibility="default" filepath="include/linux/rmap.h" lin…
48 …<var-decl name="refcount" type-id="49178f86" visibility="default" filepath="include/linux/rmap.h" …
51 …<var-decl name="degree" type-id="f0981eeb" visibility="default" filepath="include/linux/rmap.h" li…
54 …<var-decl name="parent" type-id="a8f86cda" visibility="default" filepath="include/linux/rmap.h" li…
57 …<var-decl name="rb_root" type-id="6fe1603d" visibility="default" filepath="include/linux/rmap.h" l…
60 …audit_context" size-in-bits="7360" is-struct="yes" visibility="default" filepath="kernel/audit.h" …
62 …<var-decl name="dummy" type-id="95e97e5e" visibility="default" filepath="kernel/audit.h" line="111…
65 …<var-decl name="in_syscall" type-id="95e97e5e" visibility="default" filepath="kernel/audit.h" line…
[all …]
/external/libaom/libaom/third_party/googletest/src/googletest/src/
Dgtest-filepath.cc30 #include "gtest/internal/gtest-filepath.h"
94 FilePath FilePath::GetCurrentDir() { in GetCurrentDir()
99 return FilePath(kCurrentDirectoryString); in GetCurrentDir()
102 return FilePath(_getcwd(cwd, sizeof(cwd)) == nullptr ? "" : cwd); in GetCurrentDir()
110 return FilePath(result == nullptr ? kCurrentDirectoryString : cwd); in GetCurrentDir()
112 return FilePath(result == nullptr ? "" : cwd); in GetCurrentDir()
116 // Returns a copy of the FilePath with the case-insensitive extension removed.
117 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
118 // FilePath("dir/file"). If a case-insensitive extension is not
119 // found, returns a copy of the original FilePath.
[all …]
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/src/
Dgtest-filepath.cc30 #include "gtest/internal/gtest-filepath.h"
94 FilePath FilePath::GetCurrentDir() { in GetCurrentDir()
99 return FilePath(kCurrentDirectoryString); in GetCurrentDir()
102 return FilePath(_getcwd(cwd, sizeof(cwd)) == nullptr ? "" : cwd); in GetCurrentDir()
110 return FilePath(result == nullptr ? kCurrentDirectoryString : cwd); in GetCurrentDir()
112 return FilePath(result == nullptr ? "" : cwd); in GetCurrentDir()
116 // Returns a copy of the FilePath with the case-insensitive extension removed.
117 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
118 // FilePath("dir/file"). If a case-insensitive extension is not
119 // found, returns a copy of the original FilePath.
[all …]
/external/mesa3d/src/gtest/src/
Dgtest-filepath.cc30 #include "gtest/internal/gtest-filepath.h"
94 FilePath FilePath::GetCurrentDir() { in GetCurrentDir()
99 return FilePath(kCurrentDirectoryString); in GetCurrentDir()
102 return FilePath(_getcwd(cwd, sizeof(cwd)) == nullptr ? "" : cwd); in GetCurrentDir()
110 return FilePath(result == nullptr ? kCurrentDirectoryString : cwd); in GetCurrentDir()
112 return FilePath(result == nullptr ? "" : cwd); in GetCurrentDir()
116 // Returns a copy of the FilePath with the case-insensitive extension removed.
117 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
118 // FilePath("dir/file"). If a case-insensitive extension is not
119 // found, returns a copy of the original FilePath.
[all …]
/external/googletest/googletest/src/
Dgtest-filepath.cc30 #include "gtest/internal/gtest-filepath.h"
94 FilePath FilePath::GetCurrentDir() { in GetCurrentDir()
100 return FilePath(kCurrentDirectoryString); in GetCurrentDir()
103 return FilePath(_getcwd(cwd, sizeof(cwd)) == nullptr ? "" : cwd); in GetCurrentDir()
111 return FilePath(result == nullptr ? kCurrentDirectoryString : cwd); in GetCurrentDir()
113 return FilePath(result == nullptr ? "" : cwd); in GetCurrentDir()
117 // Returns a copy of the FilePath with the case-insensitive extension removed.
118 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
119 // FilePath("dir/file"). If a case-insensitive extension is not
120 // found, returns a copy of the original FilePath.
[all …]
/external/rust/crates/libz-sys/src/zlib-ng/test/abi/
Dzlib-v1.2.11-x86_64-linux-gnu.abi94 …<typedef-decl name='uLong' type-id='type-id-1' filepath='./zconf.h' line='394' column='1' id='type…
96 …<typedef-decl name='__off64_t' type-id='type-id-3' filepath='/usr/include/x86_64-linux-gnu/bits/ty…
97 …<typedef-decl name='off64_t' type-id='type-id-4' filepath='/usr/include/x86_64-linux-gnu/sys/types…
98 …<function-decl name='adler32_combine64' mangled-name='adler32_combine64' filepath='src.d/adler32.c…
99 … <parameter type-id='type-id-2' name='adler1' filepath='src.d/adler32.c' line='181' column='1'/>
100 … <parameter type-id='type-id-2' name='adler2' filepath='src.d/adler32.c' line='182' column='1'/>
101 <parameter type-id='type-id-5' name='len2' filepath='src.d/adler32.c' line='183' column='1'/>
104 …<typedef-decl name='__off_t' type-id='type-id-3' filepath='/usr/include/x86_64-linux-gnu/bits/type…
105 …<typedef-decl name='off_t' type-id='type-id-6' filepath='/usr/include/x86_64-linux-gnu/sys/types.h…
106 …<function-decl name='adler32_combine' mangled-name='adler32_combine' filepath='src.d/adler32.c' li…
[all …]
/external/llvm-project/llvm/utils/unittest/googletest/src/
Dgtest-filepath.cc33 #include "gtest/internal/gtest-filepath.h"
99 FilePath FilePath::GetCurrentDir() { in GetCurrentDir()
103 return FilePath(kCurrentDirectoryString); in GetCurrentDir()
106 return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd); in GetCurrentDir()
114 return FilePath(result == NULL ? kCurrentDirectoryString : cwd); in GetCurrentDir()
116 return FilePath(result == NULL ? "" : cwd); in GetCurrentDir()
120 // Returns a copy of the FilePath with the case-insensitive extension removed.
121 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
122 // FilePath("dir/file"). If a case-insensitive extension is not
123 // found, returns a copy of the original FilePath.
[all …]
/external/libvpx/libvpx/third_party/googletest/src/src/
Dgtest-filepath.cc30 #include "gtest/internal/gtest-filepath.h"
97 FilePath FilePath::GetCurrentDir() { in GetCurrentDir()
101 return FilePath(kCurrentDirectoryString); in GetCurrentDir()
104 return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd); in GetCurrentDir()
112 return FilePath(result == NULL ? kCurrentDirectoryString : cwd); in GetCurrentDir()
114 return FilePath(result == NULL ? "" : cwd); in GetCurrentDir()
118 // Returns a copy of the FilePath with the case-insensitive extension removed.
119 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
120 // FilePath("dir/file"). If a case-insensitive extension is not
121 // found, returns a copy of the original FilePath.
[all …]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
Dgtest-filepath.h32 // Google Test filepath utilities
48 // FilePath - a class for file and directory pathname manipulation which
53 // A FilePath with a value ending in a path separator ("like/this/") represents
59 class GTEST_API_ FilePath {
61 FilePath() : pathname_("") { } in FilePath() function
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } in FilePath() function
64 explicit FilePath(const char* pathname) : pathname_(pathname) { in FilePath() function
68 explicit FilePath(const String& pathname) : pathname_(pathname) { in FilePath() function
72 FilePath& operator=(const FilePath& rhs) {
77 void Set(const FilePath& rhs) { in Set()
[all …]
/external/python/pyfakefs/pyfakefs/tests/
Dimport_as_example.py38 def check_if_exists1(filepath): argument
40 return my_os.path.exists(filepath)
43 def check_if_exists2(filepath): argument
45 return path.exists(filepath)
49 def check_if_exists3(filepath): argument
51 return Path(filepath).exists()
54 def check_if_exists4(filepath, file_exists=my_os.path.exists): argument
55 return file_exists(filepath)
58 def check_if_exists5(filepath): argument
60 return exists(filepath)
[all …]
/external/llvm/utils/unittest/googletest/src/
Dgtest-filepath.cc32 #include "gtest/internal/gtest-filepath.h"
98 FilePath FilePath::GetCurrentDir() { in GetCurrentDir()
102 return FilePath(kCurrentDirectoryString); in GetCurrentDir()
105 return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd); in GetCurrentDir()
108 return FilePath(getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd); in GetCurrentDir()
112 // Returns a copy of the FilePath with the case-insensitive extension removed.
113 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
114 // FilePath("dir/file"). If a case-insensitive extension is not
115 // found, returns a copy of the original FilePath.
116 FilePath FilePath::RemoveExtension(const char* extension) const { in RemoveExtension()
[all …]
/external/mesa3d/src/gtest/include/gtest/internal/
Dgtest-filepath.h30 // Google Test filepath utilities
51 // FilePath - a class for file and directory pathname manipulation which
56 // A FilePath with a value ending in a path separator ("like/this/") represents
62 class GTEST_API_ FilePath {
64 FilePath() : pathname_("") { } in FilePath() function
65 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } in FilePath() function
67 explicit FilePath(const std::string& pathname) : pathname_(pathname) { in FilePath() function
71 FilePath& operator=(const FilePath& rhs) {
76 void Set(const FilePath& rhs) { in Set()
84 static FilePath GetCurrentDir();
[all …]
/external/googletest/googletest/include/gtest/internal/
Dgtest-filepath.h30 // Google Test filepath utilities
51 // FilePath - a class for file and directory pathname manipulation which
56 // A FilePath with a value ending in a path separator ("like/this/") represents
62 class GTEST_API_ FilePath {
64 FilePath() : pathname_("") { } in FilePath() function
65 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } in FilePath() function
67 explicit FilePath(const std::string& pathname) : pathname_(pathname) { in FilePath() function
71 FilePath& operator=(const FilePath& rhs) {
76 void Set(const FilePath& rhs) { in Set()
84 static FilePath GetCurrentDir();
[all …]
/external/llvm-project/llvm/utils/unittest/googletest/include/gtest/internal/
Dgtest-filepath.h32 // Google Test filepath utilities
48 // FilePath - a class for file and directory pathname manipulation which
53 // A FilePath with a value ending in a path separator ("like/this/") represents
59 class GTEST_API_ FilePath {
61 FilePath() : pathname_("") { } in FilePath() function
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } in FilePath() function
64 explicit FilePath(const std::string& pathname) : pathname_(pathname) { in FilePath() function
68 FilePath& operator=(const FilePath& rhs) {
73 void Set(const FilePath& rhs) { in Set()
81 static FilePath GetCurrentDir();
[all …]
/external/libaom/libaom/third_party/googletest/src/googletest/include/gtest/internal/
Dgtest-filepath.h30 // Google Test filepath utilities
51 // FilePath - a class for file and directory pathname manipulation which
56 // A FilePath with a value ending in a path separator ("like/this/") represents
62 class GTEST_API_ FilePath {
64 FilePath() : pathname_("") {} in FilePath() function
65 FilePath(const FilePath &rhs) : pathname_(rhs.pathname_) {} in FilePath() function
67 explicit FilePath(const std::string &pathname) : pathname_(pathname) { in FilePath() function
71 FilePath &operator=(const FilePath &rhs) {
76 void Set(const FilePath &rhs) { pathname_ = rhs.pathname_; } in Set()
82 static FilePath GetCurrentDir();
[all …]
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
Dgtest-filepath.h30 // Google Test filepath utilities
51 // FilePath - a class for file and directory pathname manipulation which
56 // A FilePath with a value ending in a path separator ("like/this/") represents
62 class GTEST_API_ FilePath {
64 FilePath() : pathname_("") { } in FilePath() function
65 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } in FilePath() function
67 explicit FilePath(const std::string& pathname) : pathname_(pathname) { in FilePath() function
71 FilePath& operator=(const FilePath& rhs) {
76 void Set(const FilePath& rhs) { in Set()
84 static FilePath GetCurrentDir();
[all …]
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/include/gtest/internal/
Dgtest-filepath.h30 // Google Test filepath utilities
51 // FilePath - a class for file and directory pathname manipulation which
56 // A FilePath with a value ending in a path separator ("like/this/") represents
62 class GTEST_API_ FilePath {
64 FilePath() : pathname_("") { } in FilePath() function
65 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } in FilePath() function
67 explicit FilePath(const std::string& pathname) : pathname_(pathname) { in FilePath() function
71 FilePath& operator=(const FilePath& rhs) {
76 void Set(const FilePath& rhs) { in Set()
84 static FilePath GetCurrentDir();
[all …]
/external/libabigail/tests/data/test-diff-suppr/
Dtest45-abi-wl.xml478 …<class-decl name='page' size-in-bits='512' is-struct='yes' visibility='default' filepath='include/…
480 …mous_union__' size-in-bits='32' is-anonymous='yes' visibility='default' filepath='include/linux/mm…
482 …<var-decl name='_mapcount' type-id='type-id-38' visibility='default' filepath='include/linux/mm_ty…
485 …<var-decl name='page_type' type-id='type-id-291' visibility='default' filepath='include/linux/mm_t…
488 …<var-decl name='active' type-id='type-id-291' visibility='default' filepath='include/linux/mm_type…
491 …<var-decl name='units' type-id='type-id-202' visibility='default' filepath='include/linux/mm_types…
496 …<var-decl name='flags' type-id='type-id-293' visibility='default' filepath='include/linux/mm_types…
499 …<var-decl name='' type-id='type-id-321' visibility='default' filepath='include/linux/mm_types.h' l…
502 …<var-decl name='_refcount' type-id='type-id-38' visibility='default' filepath='include/linux/mm_ty…
505 …<var-decl name='mem_cgroup' type-id='type-id-322' visibility='default' filepath='include/linux/mm_…
[all …]
/external/libabigail/tests/data/test-read-dwarf/
Dtest15-pr18892.so.abi1528 …<function-decl name='dlvsym' filepath='/usr/include/dlfcn.h' line='74' column='1' visibility='defa…
1543 …reelist_struct' size-in-bits='128' is-struct='yes' visibility='default' filepath='../../.././libsa…
1545 …<var-decl name='next' type-id='type-id-7' visibility='default' filepath='../../.././libsanitizer/l…
1548 …<var-decl name='size' type-id='type-id-8' visibility='default' filepath='../../.././libsanitizer/l…
1551 …acktrace_state' size-in-bits='576' is-struct='yes' visibility='default' filepath='../../.././libsa…
1553 …<var-decl name='filename' type-id='type-id-2' visibility='default' filepath='../../.././libsanitiz…
1556 …<var-decl name='threaded' type-id='type-id-10' visibility='default' filepath='../../.././libsaniti…
1559 …<var-decl name='lock' type-id='type-id-1' visibility='default' filepath='../../.././libsanitizer/l…
1562 …<var-decl name='fileline_fn' type-id='type-id-11' visibility='default' filepath='../../.././libsan…
1565 …<var-decl name='fileline_data' type-id='type-id-1' visibility='default' filepath='../../.././libsa…
[all …]
/external/dokka/.idea/
Dmodules.xml5 …/.idea/modules/runners/android-gradle-plugin/android-gradle-plugin.iml" filepath="$PROJECT_DIR$/.i…
6 …a/modules/runners/android-gradle-plugin/android-gradle-plugin_main.iml" filepath="$PROJECT_DIR$/.i…
7 …a/modules/runners/android-gradle-plugin/android-gradle-plugin_test.iml" filepath="$PROJECT_DIR$/.i…
8 …<module fileurl="file://$PROJECT_DIR$/.idea/modules/runners/ant/ant.iml" filepath="$PROJECT_DIR$/.…
9 …<module fileurl="file://$PROJECT_DIR$/.idea/modules/runners/ant/ant_main.iml" filepath="$PROJECT_D…
10 …<module fileurl="file://$PROJECT_DIR$/.idea/modules/runners/ant/ant_test.iml" filepath="$PROJECT_D…
11 …<module fileurl="file://$PROJECT_DIR$/.idea/modules/buildSrc.iml" filepath="$PROJECT_DIR$/.idea/mo…
12 …<module fileurl="file://$PROJECT_DIR$/.idea/modules/buildSrc_main.iml" filepath="$PROJECT_DIR$/.id…
13 …<module fileurl="file://$PROJECT_DIR$/.idea/modules/buildSrc_test.iml" filepath="$PROJECT_DIR$/.id…
14 …<module fileurl="file://$PROJECT_DIR$/.idea/modules/runners/cli/cli.iml" filepath="$PROJECT_DIR$/.…
[all …]

12345678910>>...56