/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/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/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 | 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/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/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;
|
/ndk/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/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/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/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...] |
/ndk/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());
|
gtest.cc | [all...] |
/external/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/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 | 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/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/vulkan-validation-layers/tests/gtest-1.7.0/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());
|
/ndk/sources/third_party/googletest/googletest/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/fused-src/gtest/ |
gtest-all.cc | [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...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/src/ |
gtest-all.cc | [all...] |