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

/external/chromium/sdch/open-vcdiff/src/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
63 explicit FilePath(const char* pathname) : pathname_(pathname) { } function in class:testing::internal::FilePath
64 explicit FilePath(const String& pathname) : pathname_(pathname) { } function in class:testing::internal::FilePath
66 void Set(const FilePath& rhs) {
77 static FilePath MakeFileNam
[all...]
/external/chromium/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 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/libvpx/libvpx/third_party/googletest/src/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/open-vcdiff/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/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/clang/include/clang/Tooling/
H A DRefactoring.h45 /// FilePath with ReplacementText.
47 /// \param FilePath A source file accessible via a SourceManager.
50 Replacement(StringRef FilePath, unsigned Offset,
74 StringRef getFilePath() const { return FilePath; }
98 std::string FilePath; member in class:clang::tooling::Replacement
/external/llvm/lib/Support/
H A DFileOutputBuffer.cpp35 error_code FileOutputBuffer::create(StringRef FilePath, argument
41 error_code EC = sys::fs::status(FilePath, Stat);
61 EC = sys::fs::remove(FilePath, Existed);
68 EC = sys::fs::unique_file(Twine(FilePath) + ".tmp%%%%%%%",
98 Result.reset(new FileOutputBuffer(MappedFile.get(), FilePath, TempFilePath));
/external/chromium/base/
H A Dfile_path.h5 // FilePath is a container for pathnames stored in a platform's native string
25 // FilePath objects are intended to be used anywhere paths are. An
26 // application may pass FilePath objects around internally, masking the
29 // OpenFile(const FilePath &) function may be made available, allowing all
38 // Several methods are available to perform common operations on a FilePath
41 // to an existing FilePath object (Append). These methods are highly
47 // instances of FilePath objects, and are therefore safe to use on const
50 // To aid in initialization of FilePath objects from string literals, a
55 // Because a FilePath object should not be instantiated at the global scope,
56 // instead, use a FilePath
127 class BASE_API FilePath { class
[all...]
H A Dfile_path.cc33 const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("\\/");
35 const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("/");
38 const FilePath::CharType FilePath::kCurrentDirectory[] = FILE_PATH_LITERAL(".");
39 const FilePath::CharType FilePath::kParentDirectory[] = FILE_PATH_LITERAL("..");
41 const FilePath::CharType FilePath
164 FilePath::FilePath() { function in class:FilePath
167 FilePath::FilePath(const FilePath& that) : path_(that.path_) { function in class:FilePath
170 FilePath::FilePath(const StringType& path) : path_(path) { function in class:FilePath
[all...]
/external/chromium/base/files/
H A Dfile_path_watcher_browsertest.cc101 virtual void OnFilePathChanged(const FilePath&) { argument
105 virtual void OnFilePathError(const FilePath& path) {
118 SetupWatchTask(const FilePath& target,
135 const FilePath target_;
164 FilePath test_file() {
169 bool WriteFile(const FilePath& file, const std::string& content) {
175 bool SetupWatch(const FilePath& target,
229 FilePath source_file(temp_dir_.path().AppendASCII("source"));
262 virtual void OnFilePathChanged(const FilePath& path) {
311 FilePath di
[all...]
/external/clang/lib/Lex/
H A DPPLexerChange.cpp216 StringRef FilePath = File->getDir()->getName(); local
217 StringRef Path = FilePath;
221 Result = FilePath.substr(Path.size());
/external/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp145 JSONCompilationDatabase::loadFromFile(StringRef FilePath, argument
149 llvm::MemoryBuffer::getFile(FilePath, DatabaseBuffer);
174 JSONCompilationDatabase::getCompileCommands(StringRef FilePath) const {
176 llvm::sys::path::native(FilePath, NativeFilePath);
H A DRefactoring.cpp29 : FilePath(InvalidLocation), Offset(0), Length(0) {}
31 Replacement::Replacement(StringRef FilePath, unsigned Offset, argument
33 : FilePath(FilePath), Offset(Offset),
47 return FilePath != InvalidLocation;
52 const FileEntry *Entry = SM.getFileManager().getFile(FilePath);
77 stream << FilePath << ": " << Offset << ":+" << Length
84 if (R1.FilePath != R2.FilePath) return R1.FilePath < R
[all...]
H A DTooling.cpp152 void ToolInvocation::mapVirtualFile(StringRef FilePath, StringRef Content) { argument
154 llvm::sys::path::native(FilePath, PathStorage);
262 void ClangTool::mapVirtualFile(StringRef FilePath, StringRef Content) { argument
263 MappedFileContents.push_back(std::make_pair(FilePath, Content));
/external/llvm/lib/Archive/
H A DArchiveWriter.cpp70 Archive* Archive::CreateEmpty(const sys::Path& FilePath, LLVMContext& C) { argument
71 Archive* result = new Archive(FilePath, C);
/external/llvm/lib/DebugInfo/
H A DDWARFDebugLine.cpp617 SmallString<16> FilePath; local
623 sys::path::append(FilePath, IncludeDir);
625 sys::path::append(FilePath, FileName);
626 Result = FilePath.str();
/external/chromium/chrome/browser/profiles/
H A Dprofile_impl.cc143 void GetCacheParameters(ContextType type, FilePath* cache_path,
168 FilePath GetCachePath(const FilePath& base) {
172 FilePath GetMediaCachePath(const FilePath& base) {
179 explicit ProfileSizeTask(const FilePath& path) : path_(path) {}
184 FilePath path_;
232 Profile* Profile::CreateProfile(const FilePath& path) {
244 Profile* Profile::CreateProfileAsync(const FilePath&path, argument
262 ProfileImpl::ProfileImpl(const FilePath
[all...]
/external/ceres-solver/internal/ceres/gtest/
H A Dgtest.h3247 // FilePath - a class for file and directory pathname manipulation which
3252 // A FilePath with a value ending in a path separator ("like/this/") represents
3258 class GTEST_API_ FilePath { class in namespace:testing::internal
3260 FilePath() : pathname_("") { } function in class:testing::internal::FilePath
3261 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } function in class:testing::internal::FilePath
3263 explicit FilePath(const char* pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
3267 explicit FilePath(const String& pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
3271 FilePath& operator=(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 2756 milliseconds