Searched defs:FilePath (Results 1 - 21 of 21) sorted by relevance

/external/deqp/framework/delibs/decpp/
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...]
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...]
/external/clang/include/clang/Tooling/
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/google-breakpad/src/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 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/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/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/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/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 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/Support/
H A DFileOutputBuffer.cpp38 FileOutputBuffer::create(StringRef FilePath, size_t Size, argument
43 std::error_code EC = sys::fs::status(FilePath, Stat);
62 EC = sys::fs::remove(FilePath);
74 EC = sys::fs::createUniqueFile(Twine(FilePath) + ".tmp%%%%%%%", FD,
99 new FileOutputBuffer(std::move(MappedFile), FilePath, TempFilePath));
H A DMemoryBuffer.cpp174 MemoryBuffer::getFileSlice(const Twine &FilePath, uint64_t MapSize, argument
176 return getFileAux(FilePath, -1, MapSize, Offset, false, false);
/external/clang/include/clang/Tooling/Core/
H A DReplacement.h75 /// FilePath with ReplacementText.
77 /// \param FilePath A source file accessible via a SourceManager.
80 Replacement(StringRef FilePath, unsigned Offset,
104 StringRef getFilePath() const { return FilePath; }
123 std::string FilePath; member in class:clang::tooling::Replacement
/external/clang/lib/Lex/
H A DPPLexerChange.cpp237 StringRef FilePath = File->getDir()->getName(); local
238 StringRef Path = FilePath;
242 Result = FilePath.substr(Path.size());
/external/clang/lib/Tooling/Core/
H A DReplacement.cpp32 : FilePath(InvalidLocation) {}
34 Replacement::Replacement(StringRef FilePath, unsigned Offset, unsigned Length, argument
36 : FilePath(FilePath), ReplacementRange(Offset, Length),
51 return FilePath != InvalidLocation;
56 const FileEntry *Entry = SM.getFileManager().getFile(FilePath);
82 stream << FilePath << ": " << ReplacementRange.getOffset() << ":+"
111 // Make FilePath absolute so replacements can be applied correctly when
113 llvm::SmallString<256> FilePath(Entry->getName());
114 std::error_code EC = llvm::sys::fs::make_absolute(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 DTooling.cpp197 void ToolInvocation::mapVirtualFile(StringRef FilePath, StringRef Content) { argument
199 llvm::sys::path::native(FilePath, PathStorage);
288 void ClangTool::mapVirtualFile(StringRef FilePath, StringRef Content) { argument
289 MappedFileContents.push_back(std::make_pair(FilePath, Content));
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp661 SmallString<16> FilePath; local
674 sys::path::append(FilePath, CompDir);
677 sys::path::append(FilePath, IncludeDir, FileName);
678 Result = FilePath.str();
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp862 StringRef FilePath, unsigned SectionID) {
863 StringRef FileName = sys::path::filename(FilePath);
871 StringRef FilePath, unsigned SectionID,
873 StringRef FileName = sys::path::filename(FilePath);
861 registerSection( StringRef FilePath, unsigned SectionID) argument
870 registerStubMap( StringRef FilePath, unsigned SectionID, const RuntimeDyldImpl::StubMap &RTDyldStubs) argument
/external/protobuf/gtest/fused-src/gtest/
H A Dgtest.h2969 // FilePath - a class for file and directory pathname manipulation which
2974 // A FilePath with a value ending in a path separator ("like/this/") represents
2980 class GTEST_API_ FilePath { class in namespace:testing::internal
2982 FilePath() : pathname_("") { } function in class:testing::internal::FilePath
2983 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } function in class:testing::internal::FilePath
2985 explicit FilePath(const char* pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
2989 explicit FilePath(const String& pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
2993 FilePath& operator=(const FilePath
[all...]
/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/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 ...

Completed in 849 milliseconds