Searched defs:FilePath (Results 1 - 22 of 22) sorted by last modified time

/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-filepath.h48 // FilePath - a class for file and directory pathname manipulation which
53 // A FilePath with a value ending in a path separator ("like/this/") represents
59 class FilePath { class in namespace:testing::internal
61 FilePath() : pathname_("") { } function in class:testing::internal::FilePath
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } function in class:testing::internal::FilePath
64 explicit FilePath(const char* pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
68 explicit FilePath(const String& pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
72 FilePath& operator=(const FilePath
[all...]
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-filepath.h48 // FilePath - a class for file and directory pathname manipulation which
53 // A FilePath with a value ending in a path separator ("like/this/") represents
59 class GTEST_API_ FilePath { class in namespace:testing::internal
61 FilePath() : pathname_("") { } function in class:testing::internal::FilePath
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } function in class:testing::internal::FilePath
64 explicit FilePath(const char* pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
68 explicit FilePath(const String& pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
72 FilePath& operator=(const FilePath
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-filepath.h48 // FilePath - a class for file and directory pathname manipulation which
53 // A FilePath with a value ending in a path separator ("like/this/") represents
59 class GTEST_API_ FilePath { class in namespace:testing::internal
61 FilePath() : pathname_("") { } function in class:testing::internal::FilePath
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } function in class:testing::internal::FilePath
64 explicit FilePath(const char* pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
68 explicit FilePath(const String& pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
72 FilePath& operator=(const FilePath
[all...]
/external/llvm/lib/DebugInfo/
H A DDWARFDebugLine.cpp659 SmallString<16> FilePath; local
665 sys::path::append(FilePath, IncludeDir);
667 sys::path::append(FilePath, FileName);
668 Result = FilePath.str();
/external/llvm/lib/Support/
H A DFileOutputBuffer.cpp35 FileOutputBuffer::create(StringRef FilePath, size_t Size, argument
40 std::error_code EC = sys::fs::status(FilePath, Stat);
59 EC = sys::fs::remove(FilePath);
71 EC = sys::fs::createUniqueFile(Twine(FilePath) + ".tmp%%%%%%%", FD,
81 Result.reset(new FileOutputBuffer(MappedFile.get(), FilePath, TempFilePath));
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h3535 // FilePath - a class for file and directory pathname manipulation which
3540 // A FilePath with a value ending in a path separator ("like/this/") represents
3546 class GTEST_API_ FilePath { class in namespace:testing::internal
3548 FilePath() : pathname_("") { } function in class:testing::internal::FilePath
3549 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } function in class:testing::internal::FilePath
3551 explicit FilePath(const std::string& pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
3555 FilePath& operator=(const FilePath& rhs) {
3560 void Set(const FilePath
[all...]
/external/gtest/include/gtest/internal/
H A Dgtest-filepath.h48 // FilePath - a class for file and directory pathname manipulation which
53 // A FilePath with a value ending in a path separator ("like/this/") represents
59 class GTEST_API_ FilePath { class in namespace:testing::internal
61 FilePath() : pathname_("") { } function in class:testing::internal::FilePath
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } function in class:testing::internal::FilePath
64 explicit FilePath(const std::string& pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
68 FilePath& operator=(const FilePath& rhs) {
73 void Set(const FilePath
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/deqp/framework/delibs/decpp/
H A DdeFilePath.cpp45 const std::string FilePath::separator = "\\";
47 const std::string FilePath::separator = "/";
50 FilePath::FilePath (const std::vector<std::string>& components) function in class:de::FilePath
60 void FilePath::split (std::vector<std::string>& components) const
84 FilePath& FilePath::normalize (void)
135 FilePath FilePath::normalize (const FilePath
[all...]
H A DdeFilePath.hpp36 class FilePath class in namespace:de
50 FilePath (void);
51 FilePath (const std::string& path);
52 FilePath (const char* path);
53 FilePath (const std::vector<std::string>& components);
54 ~FilePath (void);
64 static FilePath join (const FilePath& a, const FilePath& b);
65 FilePath
88 inline FilePath::FilePath (void) function in class:de::FilePath
92 inline FilePath::FilePath (const std::string& path) function in class:de::FilePath
97 inline FilePath::FilePath (const char* path) function in class:de::FilePath
[all...]
/external/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp145 JSONCompilationDatabase::loadFromFile(StringRef FilePath, argument
148 llvm::MemoryBuffer::getFile(FilePath);
173 JSONCompilationDatabase::getCompileCommands(StringRef FilePath) const {
175 llvm::sys::path::native(FilePath, NativeFilePath);
H A DRefactoring.cpp31 : FilePath(InvalidLocation) {}
33 Replacement::Replacement(StringRef FilePath, unsigned Offset, unsigned Length, argument
35 : FilePath(FilePath), ReplacementRange(Offset, Length),
50 return FilePath != InvalidLocation;
55 const FileEntry *Entry = SM.getFileManager().getFile(FilePath);
81 stream << FilePath << ": " << ReplacementRange.getOffset() << ":+"
110 // Make FilePath absolute so replacements can be applied correctly when
112 llvm::SmallString<256> FilePath(Entry->getName());
113 std::error_code EC = llvm::sys::fs::make_absolute(FilePath);
[all...]
H A DTooling.cpp193 void ToolInvocation::mapVirtualFile(StringRef FilePath, StringRef Content) { argument
195 llvm::sys::path::native(FilePath, PathStorage);
302 void ClangTool::mapVirtualFile(StringRef FilePath, StringRef Content) { argument
303 MappedFileContents.push_back(std::make_pair(FilePath, Content));
/external/clang/include/clang/Tooling/
H A DRefactoring.h76 /// FilePath with ReplacementText.
78 /// \param FilePath A source file accessible via a SourceManager.
81 Replacement(StringRef FilePath, unsigned Offset,
105 StringRef getFilePath() const { return FilePath; }
124 std::string FilePath; member in class:clang::tooling::Replacement
H A DReplacementsYaml.h36 : FilePath(""), Offset(0), Length(0), ReplacementText("") {}
39 : FilePath(R.getFilePath()), Offset(R.getOffset()),
43 return clang::tooling::Replacement(FilePath, Offset, Length,
47 std::string FilePath; member in struct:llvm::yaml::MappingTraits::NormalizedReplacement
56 Io.mapRequired("FilePath", Keys->FilePath);
/external/clang/lib/Lex/
H A DPPLexerChange.cpp218 StringRef FilePath = File->getDir()->getName(); local
219 StringRef Path = FilePath;
223 Result = FilePath.substr(Path.size());
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h3535 // FilePath - a class for file and directory pathname manipulation which
3540 // A FilePath with a value ending in a path separator ("like/this/") represents
3546 class GTEST_API_ FilePath { class in namespace:testing::internal
3548 FilePath() : pathname_("") { } function in class:testing::internal::FilePath
3549 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } function in class:testing::internal::FilePath
3551 explicit FilePath(const std::string& pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
3555 FilePath& operator=(const FilePath& rhs) {
3560 void Set(const FilePath
[all...]
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
H A Dgtest-filepath.h48 // FilePath - a class for file and directory pathname manipulation which
53 // A FilePath with a value ending in a path separator ("like/this/") represents
59 class GTEST_API_ FilePath { class in namespace:testing::internal
61 FilePath() : pathname_("") { } function in class:testing::internal::FilePath
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } function in class:testing::internal::FilePath
64 explicit FilePath(const char* pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
68 explicit FilePath(const String& pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
72 FilePath& operator=(const FilePath
[all...]
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-filepath.h48 // FilePath - a class for file and directory pathname manipulation which
53 // A FilePath with a value ending in a path separator ("like/this/") represents
59 class GTEST_API_ FilePath { class in namespace:testing::internal
61 FilePath() : pathname_("") { } function in class:testing::internal::FilePath
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } function in class:testing::internal::FilePath
64 explicit FilePath(const std::string& pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
68 FilePath& operator=(const FilePath& rhs) {
73 void Set(const FilePath
[all...]
/external/chromium_org/base/files/
H A Dfile_path.cc34 typedef FilePath::StringType StringType;
41 const FilePath::CharType kStringTerminator = FILE_PATH_LITERAL('\0');
43 // If this FilePath contains a drive letter specification, returns the
87 FilePath::IsSeparator(path[letter + 1]);
91 FilePath::IsSeparator(path[0]) && FilePath::IsSeparator(path[1]);
94 return path.length() > 0 && FilePath::IsSeparator(path[0]);
101 if (!FilePath::IsSeparator(*it))
113 if (path == FilePath::kCurrentDirectory || path == FilePath
174 FilePath::FilePath() { function in class:base::FilePath
177 FilePath::FilePath(const FilePath& that) : path_(that.path_) { function in class:base::FilePath
180 FilePath::FilePath(const StringType& path) : path_(path) { function in class:base::FilePath
[all...]
H A Dfile_path.h5 // FilePath is a container for pathnames stored in a platform's native string
26 // FilePath objects are intended to be used anywhere paths are. An
27 // application may pass FilePath objects around internally, masking the
30 // OpenFile(const FilePath &) function may be made available, allowing all
39 // Several methods are available to perform common operations on a FilePath
42 // to an existing FilePath object (Append). These methods are highly
48 // instances of FilePath objects, and are therefore safe to use on const
51 // To aid in initialization of FilePath objects from string literals, a
58 // Because a FilePath object should not be instantiated at the global scope,
59 // instead, use a FilePath
132 class BASE_EXPORT FilePath { class in namespace:base
[all...]

Completed in 335 milliseconds