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

/external/chromium_org/testing/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/chromium_org/third_party/mesa/src/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/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(); }
195 String pathname_; member in class:testing::internal::FilePath
[all...]
/external/chromium_org/testing/gtest/src/
H A Dgtest-filepath.cc126 if (String::EndsWithCaseInsensitive(pathname_, dot_extension)) {
127 return FilePath(pathname_.substr(
128 0, pathname_.length() - dot_extension.length()));
211 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str());
217 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
258 return pathname_.length() == 3 && IsAbsolutePath();
260 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
266 const char* const name = pathname_.c_str();
268 return pathname_
[all...]
/external/chromium_org/third_party/mesa/src/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/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.cc105 if (pathname_.EndsWithCaseInsensitive(dot_extension.c_str())) {
106 return FilePath(String(pathname_.c_str(), pathname_.length() - 4));
173 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str());
179 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
220 return pathname_.length() == 3 && IsAbsolutePath();
222 return pathname_ == kPathSeparatorString;
228 const char* const name = pathname_.c_str();
230 return pathname_.length() >= 3 &&
263 return pathname_
[all...]
/external/chromium_org/third_party/libvpx/source/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/libvpx/libvpx/third_party/googletest/src/src/
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...]
/external/chromium_org/third_party/libvpx/source/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...]
/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 400 milliseconds