HomeSort by relevance Sort by last modified time
    Searched full:pathname_ (Results 1 - 16 of 16) sorted by null

  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-filepath.cc 63 if (pathname_.EndsWithCaseInsensitive(dot_extension.c_str())) {
64 return FilePath(String(pathname_.c_str(), pathname_.GetLength() - 4));
116 return _stat(pathname_.c_str(), &file_stat) == 0;
119 return stat(pathname_.c_str(), &file_stat) == 0;
136 result = stat(pathname_.c_str(), &file_stat) == 0 &&
165 return pathname_.EndsWith(kPathSeparatorString);
176 if (pathname_.GetLength() == 0 || this->DirectoryExists()) {
190 int result = _mkdir(pathname_.c_str());
192 int result = mkdir(pathname_.c_str(), 0777)
    [all...]
  /external/chromium/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 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/libvpx/libvpx/third_party/googletest/src/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/llvm/utils/unittest/googletest/
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/open-vcdiff/gtest/src/
gtest-filepath.cc 105 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_.EndsWith(kPathSeparatorString)
    [all...]
  /external/protobuf/gtest/src/
gtest-filepath.cc 105 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_.EndsWith(kPathSeparatorString)
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-filepath.h 61 FilePath() : pathname_("") { }
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
63 explicit FilePath(const char* pathname) : pathname_(pathname) { }
64 explicit FilePath(const String& pathname) : pathname_(pathname) { }
67 pathname_ = rhs.pathname_;
70 String ToString() const { return pathname_; }
71 const char* c_str() const { return pathname_.c_str(); }
147 String pathname_; member in class:testing::internal::FilePath
    [all...]
  /external/chromium/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 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/libvpx/libvpx/third_party/googletest/src/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/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/open-vcdiff/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(); }
195 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(); }
195 String pathname_; member in class:testing::internal::FilePath
    [all...]
  /external/ceres-solver/internal/ceres/
gmock_gtest_all.cc     [all...]
  /external/ceres-solver/internal/ceres/gtest/
gtest.h 3403 String pathname_; member in class:testing::internal::FilePath
    [all...]

Completed in 891 milliseconds