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

1 2

  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-filepath.h 130 // RemoveFileName returns the directory path with the filename removed.
131 // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/".
132 // If the FilePath is "a_file" or "/a_file", RemoveFileName returns
136 FilePath RemoveFileName() const;
  /external/googletest/googletest/include/gtest/internal/
gtest-filepath.h 126 // RemoveFileName returns the directory path with the filename removed.
127 // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/".
128 // If the FilePath is "a_file" or "/a_file", RemoveFileName returns
132 FilePath RemoveFileName() const;
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-filepath.h 126 // RemoveFileName returns the directory path with the filename removed.
127 // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/".
128 // If the FilePath is "a_file" or "/a_file", RemoveFileName returns
132 FilePath RemoveFileName() const;
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-filepath.h 130 // RemoveFileName returns the directory path with the filename removed.
131 // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/".
132 // If the FilePath is "a_file" or "/a_file", RemoveFileName returns
136 FilePath RemoveFileName() const;
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-filepath.h 126 // RemoveFileName returns the directory path with the filename removed.
127 // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/".
128 // If the FilePath is "a_file" or "/a_file", RemoveFileName returns
132 FilePath RemoveFileName() const;
  /external/protobuf/gtest/include/gtest/internal/
gtest-filepath.h 130 // RemoveFileName returns the directory path with the filename removed.
131 // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/".
132 // If the FilePath is "a_file" or "/a_file", RemoveFileName returns
136 FilePath RemoveFileName() const;
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-filepath.h 130 // RemoveFileName returns the directory path with the filename removed.
131 // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/".
132 // If the FilePath is "a_file" or "/a_file", RemoveFileName returns
136 FilePath RemoveFileName() const;
  /external/v8/testing/gtest/include/gtest/internal/
gtest-filepath.h 126 // RemoveFileName returns the directory path with the filename removed.
127 // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/".
128 // If the FilePath is "a_file" or "/a_file", RemoveFileName returns
132 FilePath RemoveFileName() const;
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-filepath.h 126 // RemoveFileName returns the directory path with the filename removed.
127 // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/".
128 // If the FilePath is "a_file" or "/a_file", RemoveFileName returns
132 FilePath RemoveFileName() const;
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-filepath.h 126 // RemoveFileName returns the directory path with the filename removed.
127 // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/".
128 // If the FilePath is "a_file" or "/a_file", RemoveFileName returns
132 FilePath RemoveFileName() const;
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-filepath.h 126 // RemoveFileName returns the directory path with the filename removed.
127 // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/".
128 // If the FilePath is "a_file" or "/a_file", RemoveFileName returns
132 FilePath RemoveFileName() const;
  /external/google-breakpad/src/testing/gtest/test/
gtest-filepath_test.cc 189 // RemoveFileName "" -> "./"
194 FilePath("").RemoveFileName().c_str());
197 FilePath("").RemoveFileName().c_str());
201 // RemoveFileName "adir/" -> "adir/"
204 FilePath("adir" GTEST_PATH_SEP_).RemoveFileName().c_str());
207 // RemoveFileName "adir/afile" -> "adir/"
211 .RemoveFileName().c_str());
214 // RemoveFileName "adir/subdir/afile" -> "adir/subdir/"
218 .RemoveFileName().c_str());
221 // RemoveFileName "/afile" -> "/
    [all...]
  /external/googletest/googletest/test/
gtest-filepath_test.cc 185 // RemoveFileName "" -> "./"
189 EXPECT_EQ(GTEST_PATH_SEP_, FilePath("").RemoveFileName().string());
191 EXPECT_EQ("." GTEST_PATH_SEP_, FilePath("").RemoveFileName().string());
195 // RemoveFileName "adir/" -> "adir/"
198 FilePath("adir" GTEST_PATH_SEP_).RemoveFileName().string());
201 // RemoveFileName "adir/afile" -> "adir/"
204 FilePath("adir" GTEST_PATH_SEP_ "afile").RemoveFileName().string());
207 // RemoveFileName "adir/subdir/afile" -> "adir/subdir/"
211 .RemoveFileName().string());
214 // RemoveFileName "/afile" -> "/
    [all...]
  /external/protobuf/gtest/test/
gtest-filepath_test.cc 185 // RemoveFileName "" -> "./"
190 FilePath("").RemoveFileName().c_str());
193 FilePath("").RemoveFileName().c_str());
197 // RemoveFileName "adir/" -> "adir/"
200 FilePath("adir" GTEST_PATH_SEP_).RemoveFileName().c_str());
203 // RemoveFileName "adir/afile" -> "adir/"
207 .RemoveFileName().c_str());
210 // RemoveFileName "adir/subdir/afile" -> "adir/subdir/"
214 .RemoveFileName().c_str());
217 // RemoveFileName "/afile" -> "/
    [all...]
  /external/v8/testing/gtest/test/
gtest-filepath_test.cc 185 // RemoveFileName "" -> "./"
189 EXPECT_EQ(GTEST_PATH_SEP_, FilePath("").RemoveFileName().string());
191 EXPECT_EQ("." GTEST_PATH_SEP_, FilePath("").RemoveFileName().string());
195 // RemoveFileName "adir/" -> "adir/"
198 FilePath("adir" GTEST_PATH_SEP_).RemoveFileName().string());
201 // RemoveFileName "adir/afile" -> "adir/"
204 FilePath("adir" GTEST_PATH_SEP_ "afile").RemoveFileName().string());
207 // RemoveFileName "adir/subdir/afile" -> "adir/subdir/"
211 .RemoveFileName().string());
214 // RemoveFileName "/afile" -> "/
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest-filepath_test.cc 185 // RemoveFileName "" -> "./"
189 EXPECT_EQ(GTEST_PATH_SEP_, FilePath("").RemoveFileName().string());
191 EXPECT_EQ("." GTEST_PATH_SEP_, FilePath("").RemoveFileName().string());
195 // RemoveFileName "adir/" -> "adir/"
198 FilePath("adir" GTEST_PATH_SEP_).RemoveFileName().string());
201 // RemoveFileName "adir/afile" -> "adir/"
204 FilePath("adir" GTEST_PATH_SEP_ "afile").RemoveFileName().string());
207 // RemoveFileName "adir/subdir/afile" -> "adir/subdir/"
211 .RemoveFileName().string());
214 // RemoveFileName "/afile" -> "/
    [all...]
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/test/
gtest-filepath_test.cc 185 // RemoveFileName "" -> "./"
189 EXPECT_EQ(GTEST_PATH_SEP_, FilePath("").RemoveFileName().string());
191 EXPECT_EQ("." GTEST_PATH_SEP_, FilePath("").RemoveFileName().string());
195 // RemoveFileName "adir/" -> "adir/"
198 FilePath("adir" GTEST_PATH_SEP_).RemoveFileName().string());
201 // RemoveFileName "adir/afile" -> "adir/"
204 FilePath("adir" GTEST_PATH_SEP_ "afile").RemoveFileName().string());
207 // RemoveFileName "adir/subdir/afile" -> "adir/subdir/"
211 .RemoveFileName().string());
214 // RemoveFileName "/afile" -> "/
    [all...]
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/test/
gtest-filepath_test.cc 185 // RemoveFileName "" -> "./"
189 EXPECT_EQ(GTEST_PATH_SEP_, FilePath("").RemoveFileName().string());
191 EXPECT_EQ("." GTEST_PATH_SEP_, FilePath("").RemoveFileName().string());
195 // RemoveFileName "adir/" -> "adir/"
198 FilePath("adir" GTEST_PATH_SEP_).RemoveFileName().string());
201 // RemoveFileName "adir/afile" -> "adir/"
204 FilePath("adir" GTEST_PATH_SEP_ "afile").RemoveFileName().string());
207 // RemoveFileName "adir/subdir/afile" -> "adir/subdir/"
211 .RemoveFileName().string());
214 // RemoveFileName "/afile" -> "/
    [all...]
  /external/google-breakpad/src/testing/gtest/src/
gtest-filepath.cc 153 // RemoveFileName returns the directory path with the filename removed.
154 // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/".
155 // If the FilePath is "a_file" or "/a_file", RemoveFileName returns
159 FilePath FilePath::RemoveFileName() const {
310 const FilePath parent(this->RemoveTrailingPathSeparator().RemoveFileName());
  /external/googletest/googletest/src/
gtest-filepath.cc 160 // RemoveFileName returns the directory path with the filename removed.
161 // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/".
162 // If the FilePath is "a_file" or "/a_file", RemoveFileName returns
166 FilePath FilePath::RemoveFileName() const {
317 const FilePath parent(this->RemoveTrailingPathSeparator().RemoveFileName());
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-filepath.cc 160 // RemoveFileName returns the directory path with the filename removed.
161 // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/".
162 // If the FilePath is "a_file" or "/a_file", RemoveFileName returns
166 FilePath FilePath::RemoveFileName() const {
317 const FilePath parent(this->RemoveTrailingPathSeparator().RemoveFileName());
  /external/llvm/utils/unittest/googletest/src/
gtest-filepath.cc 151 // RemoveFileName returns the directory path with the filename removed.
152 // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/".
153 // If the FilePath is "a_file" or "/a_file", RemoveFileName returns
157 FilePath FilePath::RemoveFileName() const {
308 const FilePath parent(this->RemoveTrailingPathSeparator().RemoveFileName());
  /external/mesa3d/src/gtest/src/
gtest-filepath.cc 155 // RemoveFileName returns the directory path with the filename removed.
156 // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/".
157 // If the FilePath is "a_file" or "/a_file", RemoveFileName returns
161 FilePath FilePath::RemoveFileName() const {
312 const FilePath parent(this->RemoveTrailingPathSeparator().RemoveFileName());
  /external/protobuf/gtest/src/
gtest-filepath.cc 153 // RemoveFileName returns the directory path with the filename removed.
154 // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/".
155 // If the FilePath is "a_file" or "/a_file", RemoveFileName returns
159 FilePath FilePath::RemoveFileName() const {
310 const FilePath parent(this->RemoveTrailingPathSeparator().RemoveFileName());
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/
gtest-filepath.cc 153 // RemoveFileName returns the directory path with the filename removed.
154 // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/".
155 // If the FilePath is "a_file" or "/a_file", RemoveFileName returns
159 FilePath FilePath::RemoveFileName() const {
310 const FilePath parent(this->RemoveTrailingPathSeparator().RemoveFileName());

Completed in 2760 milliseconds

1 2