Searched defs:FilePath (Results 1 - 19 of 19) 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/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/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(llvm::StringRef FilePath, unsigned Offset,
74 StringRef getFilePath() const { return FilePath; }
97 std::string FilePath; member in class:clang::tooling::Replacement
/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/llvm/lib/Support/
H A DFileOutputBuffer.cpp44 error_code FileOutputBuffer::create(StringRef FilePath, argument
50 error_code EC = sys::fs::status(FilePath, Stat);
70 EC = sys::fs::remove(FilePath, Existed);
77 EC = sys::fs::unique_file(Twine(FilePath) + ".tmp%%%%%%%",
122 Result.reset(new FileOutputBuffer(Start, Start+Size, FilePath, TempFilePath));
/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/Tooling/
H A DJSONCompilationDatabase.cpp135 JSONCompilationDatabase::loadFromFile(StringRef FilePath, argument
139 llvm::MemoryBuffer::getFile(FilePath, DatabaseBuffer);
164 JSONCompilationDatabase::getCompileCommands(StringRef FilePath) const {
166 llvm::sys::path::native(FilePath, NativeFilePath);
H A DRefactoring.cpp29 : FilePath(InvalidLocation), Offset(0), Length(0) {}
31 Replacement::Replacement(llvm::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.cpp151 void ToolInvocation::mapVirtualFile(StringRef FilePath, StringRef Content) { argument
153 llvm::sys::path::native(FilePath, PathStorage);
263 void ClangTool::mapVirtualFile(StringRef FilePath, StringRef Content) { argument
264 MappedFileContents.push_back(std::make_pair(FilePath, Content));
/external/llvm/lib/Archive/
H A DArchiveWriter.cpp69 Archive* Archive::CreateEmpty(const sys::Path& FilePath, LLVMContext& C) { argument
70 Archive* result = new Archive(FilePath, C);
/external/llvm/lib/DebugInfo/
H A DDWARFDebugLine.cpp531 SmallString<16> FilePath; local
537 sys::path::append(FilePath, IncludeDir);
539 sys::path::append(FilePath, FileName);
540 Result = FilePath.str();
/external/clang/lib/Lex/
H A DPPLexerChange.cpp212 StringRef FilePath = File->getDir()->getName(); local
213 StringRef Path = FilePath;
217 Result = FilePath.substr(Path.size());
/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/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 401 milliseconds