Searched refs:pathname_ (Results 1 - 20 of 20) sorted by relevance

/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-filepath.h61 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) {
78 pathname_ = rhs.pathname_;
81 String ToString() const { return pathname_; }
82 const char* c_str() const { return pathname_.c_str(); }
204 String pathname_; member in class:testing::internal::FilePath
[all...]
/external/gtest/include/gtest/internal/
H A Dgtest-filepath.h61 FilePath() : pathname_("") { }
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
64 explicit FilePath(const std::string& pathname) : pathname_(pathname) {
74 pathname_ = rhs.pathname_;
77 const std::string& string() const { return pathname_; }
78 const char* c_str() const { return pathname_.c_str(); }
111 bool IsEmpty() const { return pathname_.empty(); }
200 std::string pathname_; member in class:testing::internal::FilePath
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-filepath.h61 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) {
78 pathname_ = rhs.pathname_;
81 String ToString() const { return pathname_; }
82 const char* c_str() const { return pathname_.c_str(); }
204 String pathname_; member in class:testing::internal::FilePath
[all...]
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-filepath.h61 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) {
78 pathname_ = rhs.pathname_;
81 String ToString() const { return pathname_; }
82 const char* c_str() const { return pathname_.c_str(); }
204 String pathname_; member in class:testing::internal::FilePath
[all...]
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-filepath.h61 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) {
78 pathname_ = rhs.pathname_;
81 String ToString() const { return pathname_; }
82 const char* c_str() const { return pathname_.c_str(); }
204 String pathname_; member in class:testing::internal::FilePath
[all...]
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
H A Dgtest-filepath.h61 FilePath() : pathname_("") { }
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
64 explicit FilePath(const std::string& pathname) : pathname_(pathname) {
74 pathname_ = rhs.pathname_;
77 const std::string& string() const { return pathname_; }
78 const char* c_str() const { return pathname_.c_str(); }
111 bool IsEmpty() const { return pathname_.empty(); }
200 std::string pathname_; member in class:testing::internal::FilePath
[all...]
/external/google-breakpad/src/testing/gtest/src/
H A Dgtest-filepath.cc120 if (pathname_.EndsWithCaseInsensitive(dot_extension.c_str())) {
121 return FilePath(String(pathname_.c_str(), pathname_.length() - 4));
204 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str());
210 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
251 return pathname_.length() == 3 && IsAbsolutePath();
253 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
259 const char* const name = pathname_.c_str();
261 return pathname_
[all...]
/external/gtest/src/
H A Dgtest-filepath.cc121 if (String::EndsWithCaseInsensitive(pathname_, dot_extension)) {
122 return FilePath(pathname_.substr(
123 0, pathname_.length() - dot_extension.length()));
206 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str());
212 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
253 return pathname_.length() == 3 && IsAbsolutePath();
255 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
261 const char* const name = pathname_.c_str();
263 return pathname_
[all...]
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-filepath.cc118 if (pathname_.EndsWithCaseInsensitive(dot_extension.c_str())) {
119 return FilePath(String(pathname_.c_str(), pathname_.length() - 4));
202 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str());
208 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
249 return pathname_.length() == 3 && IsAbsolutePath();
251 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
257 const char* const name = pathname_.c_str();
259 return pathname_
[all...]
/external/mesa3d/src/gtest/src/
H A Dgtest-filepath.cc120 if (pathname_.EndsWithCaseInsensitive(dot_extension.c_str())) {
121 return FilePath(String(pathname_.c_str(), pathname_.length() - 4));
204 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str());
210 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
251 return pathname_.length() == 3 && IsAbsolutePath();
253 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
259 const char* const name = pathname_.c_str();
261 return pathname_
[all...]
/external/protobuf/gtest/src/
H A Dgtest-filepath.cc120 if (pathname_.EndsWithCaseInsensitive(dot_extension.c_str())) {
121 return FilePath(String(pathname_.c_str(), pathname_.length() - 4));
204 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str());
210 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
251 return pathname_.length() == 3 && IsAbsolutePath();
253 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
259 const char* const name = pathname_.c_str();
261 return pathname_
[all...]
/external/vulkan-validation-layers/tests/gtest-1.7.0/src/
H A Dgtest-filepath.cc121 if (String::EndsWithCaseInsensitive(pathname_, dot_extension)) {
122 return FilePath(pathname_.substr(
123 0, pathname_.length() - dot_extension.length()));
206 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str());
212 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
253 return pathname_.length() == 3 && IsAbsolutePath();
255 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
261 const char* const name = pathname_.c_str();
263 return pathname_
[all...]
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc7953 if (String::EndsWithCaseInsensitive(pathname_, dot_extension)) {
7954 return FilePath(pathname_.substr(
7955 0, pathname_.length() - dot_extension.length()));
8038 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str());
8044 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
8085 return pathname_.length() == 3 && IsAbsolutePath();
8087 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
8093 const char* const name = pathname_.c_str();
8095 return pathname_
[all...]
/external/protobuf/gtest/fused-src/gtest/
H A Dgtest-all.cc7328 if (pathname_.EndsWithCaseInsensitive(dot_extension.c_str())) {
7329 return FilePath(String(pathname_.c_str(), pathname_.length() - 4));
7412 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str());
7418 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
7459 return pathname_.length() == 3 && IsAbsolutePath();
7461 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
7467 const char* const name = pathname_.c_str();
7469 return pathname_
[all...]
H A Dgtest.h2982 FilePath() : pathname_("") { }
2983 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
2985 explicit FilePath(const char* pathname) : pathname_(pathname) {
2989 explicit FilePath(const String& pathname) : pathname_(pathname) {
2999 pathname_ = rhs.pathname_;
3002 String ToString() const { return pathname_; }
3003 const char* c_str() const { return pathname_.c_str(); }
3125 String pathname_; member in class:testing::internal::FilePath
[all...]
/external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
H A Dgtest-all.cc7955 if (String::EndsWithCaseInsensitive(pathname_, dot_extension)) {
7956 return FilePath(pathname_.substr(
7957 0, pathname_.length() - dot_extension.length()));
8040 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str());
8046 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
8087 return pathname_.length() == 3 && IsAbsolutePath();
8089 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
8095 const char* const name = pathname_.c_str();
8097 return pathname_
[all...]
H A Dgtest.h3548 FilePath() : pathname_("") { }
3549 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
3551 explicit FilePath(const std::string& pathname) : pathname_(pathname) {
3561 pathname_ = rhs.pathname_;
3564 const std::string& string() const { return pathname_; }
3565 const char* c_str() const { return pathname_.c_str(); }
3598 bool IsEmpty() const { return pathname_.empty(); }
3687 std::string pathname_; member in class:testing::internal::FilePath
[all...]
/external/ImageMagick/Magick++/lib/Magick++/
H A DImage.h719 void clipPath(const std::string pathname_,const bool inside_);
/external/ImageMagick/Magick++/lib/
H A DImage.cpp2281 void Magick::Image::clipPath(const std::string pathname_,const bool inside_) argument
2285 ClipImagePath(image(),pathname_.c_str(),(MagickBooleanType) inside_,
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h3548 FilePath() : pathname_("") { }
3549 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
3551 explicit FilePath(const std::string& pathname) : pathname_(pathname) {
3561 pathname_ = rhs.pathname_;
3564 const std::string& string() const { return pathname_; }
3565 const char* c_str() const { return pathname_.c_str(); }
3598 bool IsEmpty() const { return pathname_.empty(); }
3687 std::string pathname_; member in class:testing::internal::FilePath
[all...]

Completed in 6798 milliseconds