HomeSort by relevance Sort by last modified time
    Searched defs:FilePath (Results 1 - 25 of 35) sorted by null

1 2

  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-filepath.h 32 // Google Test filepath utilities
48 // 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 {
61 FilePath() : pathname_("") { }
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
64 explicit FilePath(const char* pathname) : pathname_(pathname) {
68 explicit FilePath(const String& pathname) : pathname_(pathname) {
72 FilePath& operator=(const FilePath& rhs)
    [all...]
  /external/gtest/include/gtest/internal/
gtest-filepath.h 32 // Google Test filepath utilities
48 // 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 {
61 FilePath() : pathname_("") { }
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
64 explicit FilePath(const std::string& pathname) : pathname_(pathname) {
68 FilePath& operator=(const FilePath& rhs)
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-filepath.h 32 // Google Test filepath utilities
48 // 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 {
61 FilePath() : pathname_("") { }
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
64 explicit FilePath(const char* pathname) : pathname_(pathname) {
68 explicit FilePath(const String& pathname) : pathname_(pathname) {
72 FilePath& operator=(const FilePath& rhs)
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-filepath.h 32 // Google Test filepath utilities
48 // 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 {
61 FilePath() : pathname_("") { }
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
64 explicit FilePath(const char* pathname) : pathname_(pathname) {
68 explicit FilePath(const String& pathname) : pathname_(pathname) {
72 FilePath& operator=(const FilePath& rhs)
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-filepath.h 32 // Google Test filepath utilities
48 // 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 {
61 FilePath() : pathname_("") { }
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
64 explicit FilePath(const char* pathname) : pathname_(pathname) {
68 explicit FilePath(const String& pathname) : pathname_(pathname) {
72 FilePath& operator=(const FilePath& rhs)
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-filepath.h 32 // Google Test filepath utilities
48 // 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 {
61 FilePath() : pathname_("") { }
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
64 explicit FilePath(const std::string& pathname) : pathname_(pathname) {
68 FilePath& operator=(const FilePath& rhs)
    [all...]
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-filepath.h 32 // Google Test filepath utilities
48 // 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 {
61 FilePath() : pathname_("") { }
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
64 explicit FilePath(const std::string& pathname) : pathname_(pathname) {
68 FilePath& operator=(const FilePath& rhs)
    [all...]
  /external/deqp/framework/delibs/decpp/
deFilePath.hpp 36 class FilePath
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& join (const FilePath& b)
    [all...]
deFilePath.cpp 45 const std::string FilePath::separator = "\\";
47 const std::string FilePath::separator = "/";
50 FilePath::FilePath (const std::vector<std::string>& components)
60 void FilePath::split (std::vector<std::string>& components) const
89 FilePath FilePath::join (const std::vector<std::string>& components)
91 return FilePath(components);
94 FilePath& FilePath::normalize (void
    [all...]
  /external/clang/include/clang/Tooling/
ReplacementsYaml.h 36 : 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;
56 Io.mapRequired("FilePath", Keys->FilePath);
  /external/clang/include/clang/Tooling/Core/
Replacement.h 76 /// FilePath with ReplacementText.
78 /// \param FilePath A source file accessible via a SourceManager.
81 Replacement(StringRef FilePath, unsigned Offset, unsigned Length,
107 StringRef getFilePath() const { return FilePath; }
128 std::string FilePath;
  /external/llvm/lib/Fuzzer/
FuzzerIO.cpp 83 auto FilePath = DirPlusFile(Path, X);
84 if (Epoch && GetEpoch(FilePath) < E) continue;
85 V->push_back(FileToVector(FilePath));
  /external/libchrome/base/files/
file_path.h 5 // 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::CharType[] and initialize it wit
    [all...]
file_path.cc 32 using StringType = FilePath::StringType;
33 using StringPieceType = FilePath::StringPieceType;
40 const FilePath::CharType kStringTerminator = FILE_PATH_LITERAL('\0');
42 // If this FilePath contains a drive letter specification, returns the
85 FilePath::IsSeparator(path[letter + 1]);
89 FilePath::IsSeparator(path[0]) && FilePath::IsSeparator(path[1]);
92 return path.length() > 0 && FilePath::IsSeparator(path[0]);
99 if (!FilePath::IsSeparator(*it))
111 if (path == FilePath::kCurrentDirectory || path == FilePath::kParentDirectory
    [all...]
  /external/clang/lib/Lex/
PPLexerChange.cpp 238 StringRef FilePath = File->getDir()->getName();
239 StringRef Path = FilePath;
243 Result = FilePath.substr(Path.size());
  /external/clang/lib/Tooling/Core/
Replacement.cpp 32 : FilePath(InvalidLocation) {}
34 Replacement::Replacement(StringRef FilePath, unsigned Offset, unsigned Length,
36 : FilePath(FilePath), ReplacementRange(Offset, Length),
52 return FilePath != InvalidLocation;
57 const FileEntry *Entry = SM.getFileManager().getFile(FilePath);
83 Stream << FilePath << ": " << ReplacementRange.getOffset() << ":+"
116 this->FilePath = Entry ? Entry->getName() : InvalidLocation;
308 : MergeSecond(MergeSecond), Delta(D), FilePath(R.getFilePath()),
357 Replacement asReplacement() const { return {FilePath, Offset, Length, Text};
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugLine.cpp 651 SmallString<16> FilePath;
664 sys::path::append(FilePath, CompDir);
667 sys::path::append(FilePath, IncludeDir, FileName);
668 Result = FilePath.str();
  /frameworks/compile/slang/
slang_rs_reflect_utils.cpp 360 std::string FilePath = JoinPath(outDirectory, outFileName);
363 open(FilePath.c_str());
  /external/lzma/CPP/7zip/UI/FileManager/
BrowseDialog.cpp 133 UString FilePath; // input/ result path
258 int rootSize = GetRootPrefixSize(FilePath);
260 if (NName::IsDrivePath(FilePath))
262 else if (IsSuperPath(FilePath))
264 if (NName::IsDrivePath(&FilePath[kSuperPathPrefixSize]))
267 _topDirPrefix.SetFrom(FilePath, rootSize);
271 if (!GetParentPath(FilePath, DirPrefix, name))
288 name = FilePath;
793 FilePath = fs2us(destPath);
795 NormalizeDirPathPrefix(FilePath);
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
NullabilityChecker.cpp 646 StringRef FilePath = SM.getFilename(SM.getSpellingLoc(Decl->getLocStart()));
647 if (llvm::sys::path::filename(FilePath).startswith("CG")) {
    [all...]
  /external/lzma/CPP/7zip/UI/Console/
List.cpp 326 UString FilePath;
527 g_StdOut.PrintUString(FilePath, TempAString);
933 options.filePath = archiveName;
1103 HRESULT res = arc.GetItemPath2(i, fp.FilePath);
1129 if (!wildcardCensor.CheckPath(isAltStream, fp.FilePath, !fp.IsFolder))
  /external/clang/lib/Driver/
ToolChains.cpp     [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest.h     [all...]
  /external/opencv3/modules/ts/include/opencv2/ts/
ts_gtest.h     [all...]
  /external/protobuf/gtest/fused-src/gtest/
gtest.h     [all...]

Completed in 1837 milliseconds

1 2