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

1 2

  /external/chromium_org/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 std::string& pathname) : pathname_(pathname) {
68 FilePath& operator=(const FilePath& rhs)
    [all...]
  /external/chromium_org/third_party/mesa/src/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/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 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...]
  /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
84 FilePath& FilePath::normalize (void)
135 FilePath FilePath::normalize (const FilePath& path
    [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);
Refactoring.h 76 /// 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;
  /external/chromium_org/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 34 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::kParentDirectory
    [all...]
  /external/clang/lib/Lex/
PPLexerChange.cpp 218 StringRef FilePath = File->getDir()->getName();
219 StringRef Path = FilePath;
223 Result = FilePath.substr(Path.size());
  /external/llvm/lib/DebugInfo/
DWARFDebugLine.cpp 659 SmallString<16> FilePath;
665 sys::path::append(FilePath, IncludeDir);
667 sys::path::append(FilePath, FileName);
668 Result = FilePath.str();
  /frameworks/compile/slang/
slang_rs_reflect_utils.cpp 358 std::string FilePath = JoinPath(outDirectory, outFileName);
361 open(FilePath.c_str());
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/
gtest.h     [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest.h     [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/include/gtest/
gtest.h     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi_3.6.1.R36x_v20100806.jar 
org.eclipse.osgi_3.6.2.R36x_v20101103.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.osgi_3.6.2.R36x_v20110210.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.osgi/3.9.1.v20130814-1242/
org.eclipse.osgi-3.9.1.v20130814-1242.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.osgi_3.9.1.v20140110-1610.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/org.eclipse.osgi/3.9.0.v20130529-1710/
org.eclipse.osgi-3.9.0.v20130529-1710.jar 

Completed in 1694 milliseconds

1 2