HomeSort by relevance Sort by last modified time
    Searched refs:FilePath (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /external/deqp/framework/delibs/decpp/
deFilePath.hpp 36 class FilePath
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)
    [all...]
deFilePath.cpp 45 const std::string FilePath::separator = "\\";
47 const std::string FilePath::separator = "/";
50 FilePath::FilePath (const std::vector<std::string>& components)
60 void FilePath::split (std::vector<std::string>& components) const
84 FilePath& FilePath::normalize (void)
135 FilePath FilePath::normalize (const FilePath& path
    [all...]
deDirectoryIterator.cpp 37 DirectoryIterator::DirectoryIterator (const FilePath& path)
38 : m_path(FilePath::normalize(path))
41 DE_CHECK_RUNTIME_ERR(m_path.getType() == FilePath::TYPE_DIRECTORY);
60 FilePath DirectoryIterator::getItem (void) const
63 return FilePath::join(m_path, m_fileInfo.name);
80 DirectoryIterator::DirectoryIterator (const FilePath& path)
81 : m_path (FilePath::normalize(path))
86 DE_CHECK_RUNTIME_ERR(m_path.getType() == FilePath::TYPE_DIRECTORY);
105 FilePath DirectoryIterator::getItem (void) const
108 return FilePath::join(m_path, m_curEntry->d_name)
    [all...]
deDirectoryIterator.hpp 55 DirectoryIterator (const FilePath& path);
58 FilePath getItem (void) const;
66 FilePath m_path;
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-filepath.h 32 // 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_("") { }
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
64 explicit FilePath(const char* pathname) : pathname_(pathname) {
68 explicit FilePath(const String& pathname) : pathname_(pathname) {
72 FilePath& operator=(const FilePath& rhs)
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-filepath.h 32 // 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_("") { }
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
64 explicit FilePath(const char* pathname) : pathname_(pathname) {
68 explicit FilePath(const String& pathname) : pathname_(pathname) {
72 FilePath& operator=(const FilePath& rhs)
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-filepath.h 32 // 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_("") { }
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
64 explicit FilePath(const char* pathname) : pathname_(pathname) {
68 explicit FilePath(const String& pathname) : pathname_(pathname) {
72 FilePath& operator=(const FilePath& rhs)
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-filepath.h 32 // 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_("") { }
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
64 explicit FilePath(const char* pathname) : pathname_(pathname) {
68 explicit FilePath(const String& pathname) : pathname_(pathname) {
72 FilePath& operator=(const FilePath& rhs)
    [all...]
  /external/gtest/include/gtest/internal/
gtest-filepath.h 32 // 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_("") { }
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
64 explicit FilePath(const std::string& pathname) : pathname_(pathname) {
68 FilePath& operator=(const FilePath& rhs)
    [all...]
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-filepath.h 32 // 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_("") { }
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
64 explicit FilePath(const std::string& pathname) : pathname_(pathname) {
68 FilePath& operator=(const FilePath& rhs)
    [all...]
  /external/google-breakpad/src/testing/gtest/test/
gtest-filepath_test.cc 32 // Google Test filepath utilities
41 #include "gtest/internal/gtest-filepath.h"
76 FilePath filepath(path);
78 filepath.RemoveTrailingPathSeparator().c_str());
87 const FilePath original_dir = FilePath::GetCurrentDir();
91 const FilePath cwd = FilePath::GetCurrentDir();
111 EXPECT_TRUE(FilePath("").IsEmpty())
    [all...]
gtest-options_test.cc 63 FilePath GetAbsolutePathOf(const FilePath& relative_path) {
64 return FilePath::ConcatPaths(FilePath::GetCurrentDir(), relative_path);
81 EXPECT_STREQ(GetAbsolutePathOf(FilePath("test_detail.xml")).c_str(),
87 EXPECT_STREQ(GetAbsolutePathOf(FilePath("filename.abc")).c_str(),
95 FilePath(std::string("path") + GTEST_PATH_SEP_ +
129 original_working_dir_ = FilePath::GetCurrentDir();
133 FilePath::GetCurrentDir().c_str());
140 FilePath original_working_dir_
    [all...]
  /external/protobuf/gtest/test/
gtest-filepath_test.cc 32 // Google Test filepath utilities
41 #include <gtest/internal/gtest-filepath.h>
76 FilePath filepath(path);
78 filepath.RemoveTrailingPathSeparator().c_str());
87 const FilePath original_dir = FilePath::GetCurrentDir();
91 const FilePath cwd = FilePath::GetCurrentDir();
107 EXPECT_TRUE(FilePath("").IsEmpty())
    [all...]
gtest-options_test.cc 63 FilePath GetAbsolutePathOf(const FilePath& relative_path) {
64 return FilePath::ConcatPaths(FilePath::GetCurrentDir(), relative_path);
81 EXPECT_STREQ(GetAbsolutePathOf(FilePath("test_detail.xml")).c_str(),
87 EXPECT_STREQ(GetAbsolutePathOf(FilePath("filename.abc")).c_str(),
95 FilePath(std::string("path") + GTEST_PATH_SEP_ +
129 original_working_dir_ = FilePath::GetCurrentDir();
133 FilePath::GetCurrentDir().c_str());
140 FilePath original_working_dir_
    [all...]
  /external/gtest/test/
gtest-filepath_test.cc 32 // Google Test filepath utilities
41 #include "gtest/internal/gtest-filepath.h"
76 FilePath filepath(path);
78 filepath.RemoveTrailingPathSeparator().c_str());
87 const FilePath original_dir = FilePath::GetCurrentDir();
91 const FilePath cwd = FilePath::GetCurrentDir();
111 EXPECT_TRUE(FilePath("").IsEmpty())
    [all...]
gtest-options_test.cc 63 FilePath GetAbsolutePathOf(const FilePath& relative_path) {
64 return FilePath::ConcatPaths(FilePath::GetCurrentDir(), relative_path);
81 EXPECT_EQ(GetAbsolutePathOf(FilePath("test_detail.xml")).string(),
87 EXPECT_EQ(GetAbsolutePathOf(FilePath("filename.abc")).string(),
95 FilePath(std::string("path") + GTEST_PATH_SEP_ +
130 original_working_dir_ = FilePath::GetCurrentDir();
134 FilePath::GetCurrentDir().string());
141 FilePath original_working_dir_
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest-filepath_test.cc 32 // Google Test filepath utilities
41 #include "gtest/internal/gtest-filepath.h"
76 FilePath filepath(path);
78 filepath.RemoveTrailingPathSeparator().c_str());
87 const FilePath original_dir = FilePath::GetCurrentDir();
91 const FilePath cwd = FilePath::GetCurrentDir();
111 EXPECT_TRUE(FilePath("").IsEmpty())
    [all...]
gtest-options_test.cc 63 FilePath GetAbsolutePathOf(const FilePath& relative_path) {
64 return FilePath::ConcatPaths(FilePath::GetCurrentDir(), relative_path);
81 EXPECT_EQ(GetAbsolutePathOf(FilePath("test_detail.xml")).string(),
87 EXPECT_EQ(GetAbsolutePathOf(FilePath("filename.abc")).string(),
95 FilePath(std::string("path") + GTEST_PATH_SEP_ +
130 original_working_dir_ = FilePath::GetCurrentDir();
134 FilePath::GetCurrentDir().string());
141 FilePath original_working_dir_
    [all...]
  /external/google-breakpad/src/testing/gtest/src/
gtest-filepath.cc 32 #include "gtest/internal/gtest-filepath.h"
100 FilePath FilePath::GetCurrentDir() {
104 return FilePath(kCurrentDirectoryString);
107 return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
110 return FilePath(getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
114 // Returns a copy of the FilePath with the case-insensitive extension removed.
115 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
116 // FilePath("dir/file"). If a case-insensitive extension is not
117 // found, returns a copy of the original FilePath
    [all...]
  /external/gtest/src/
gtest-filepath.cc 33 #include "gtest/internal/gtest-filepath.h"
101 FilePath FilePath::GetCurrentDir() {
105 return FilePath(kCurrentDirectoryString);
108 return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
111 return FilePath(getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
115 // Returns a copy of the FilePath with the case-insensitive extension removed.
116 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
117 // FilePath("dir/file"). If a case-insensitive extension is not
118 // found, returns a copy of the original FilePath
    [all...]
  /external/llvm/utils/unittest/googletest/src/
gtest-filepath.cc 32 #include "gtest/internal/gtest-filepath.h"
98 FilePath FilePath::GetCurrentDir() {
102 return FilePath(kCurrentDirectoryString);
105 return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
108 return FilePath(getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
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
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-filepath.cc 32 #include "gtest/internal/gtest-filepath.h"
100 FilePath FilePath::GetCurrentDir() {
104 return FilePath(kCurrentDirectoryString);
107 return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
110 return FilePath(getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
114 // Returns a copy of the FilePath with the case-insensitive extension removed.
115 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
116 // FilePath("dir/file"). If a case-insensitive extension is not
117 // found, returns a copy of the original FilePath
    [all...]
  /external/protobuf/gtest/src/
gtest-filepath.cc 32 #include <gtest/internal/gtest-filepath.h>
100 FilePath FilePath::GetCurrentDir() {
104 return FilePath(kCurrentDirectoryString);
107 return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
110 return FilePath(getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
114 // Returns a copy of the FilePath with the case-insensitive extension removed.
115 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
116 // FilePath("dir/file"). If a case-insensitive extension is not
117 // found, returns a copy of the original FilePath
    [all...]
  /ndk/sources/third_party/googletest/googletest/src/
gtest-filepath.cc 33 #include "gtest/internal/gtest-filepath.h"
101 FilePath FilePath::GetCurrentDir() {
105 return FilePath(kCurrentDirectoryString);
108 return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
111 return FilePath(getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
115 // Returns a copy of the FilePath with the case-insensitive extension removed.
116 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
117 // FilePath("dir/file"). If a case-insensitive extension is not
118 // found, returns a copy of the original FilePath
    [all...]
  /external/clang/include/clang/Tooling/
ReplacementsYaml.h 36 : FilePath(""), Offset(0), Length(0), ReplacementText("") {}
39 : FilePath(R.getFilePath()), Offset(R.getOffset()),
43 return clang::tooling::Replacement(FilePath, Offset, Length,
47 std::string FilePath;
56 Io.mapRequired("FilePath", Keys->FilePath);

Completed in 350 milliseconds

1 2 3 4