/external/google-breakpad/src/testing/gtest/include/gtest/internal/ |
gtest-filepath.h | 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) { 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/ |
gtest-filepath.h | 61 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/ |
gtest-filepath.h | 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) { 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/ |
gtest-filepath.h | 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) { 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/ |
gtest-filepath.h | 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) { 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/ |
gtest-filepath.h | 61 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...] |
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/ |
gtest-filepath.h | 61 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/ |
gtest-filepath.cc | 120 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_.length() >= 3 & [all...] |
/external/gtest/src/ |
gtest-filepath.cc | 121 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_.length() >= 3 & [all...] |
/external/llvm/utils/unittest/googletest/src/ |
gtest-filepath.cc | 118 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_.length() >= 3 & [all...] |
/external/mesa3d/src/gtest/src/ |
gtest-filepath.cc | 120 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_.length() >= 3 & [all...] |
/external/protobuf/gtest/src/ |
gtest-filepath.cc | 120 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_.length() >= 3 & [all...] |
/external/vulkan-validation-layers/tests/gtest-1.7.0/src/ |
gtest-filepath.cc | 121 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_.length() >= 3 & [all...] |
/ndk/sources/third_party/googletest/googletest/src/ |
gtest-filepath.cc | 121 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_.length() >= 3 & [all...] |
/external/protobuf/gtest/fused-src/gtest/ |
gtest-all.cc | [all...] |
gtest.h | 3125 String pathname_; member in class:testing::internal::FilePath [all...] |
/external/libvpx/libvpx/third_party/googletest/src/src/ |
gtest-all.cc | [all...] |
/external/opencv3/modules/ts/src/ |
ts_gtest.cpp | [all...] |
/external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/ |
gtest-all.cc | [all...] |
gtest.h | 3687 std::string pathname_; member in class:testing::internal::FilePath [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/src/ |
gtest-all.cc | [all...] |
/external/ImageMagick/Magick++/lib/Magick++/ |
Image.h | 719 void clipPath(const std::string pathname_,const bool inside_); [all...] |
/external/ImageMagick/Magick++/lib/ |
Image.cpp | [all...] |
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/ |
gtest.h | 3687 std::string pathname_; member in class:testing::internal::FilePath [all...] |
/external/opencv3/modules/ts/include/opencv2/ts/ |
ts_gtest.h | 3738 std::string pathname_; member in class:testing::internal::FilePath [all...] |