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

1 2 3

  /external/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp 139 const std::string &Path = Clang->getFrontendOpts().Plugins[i];
141 if (llvm::sys::DynamicLibrary::LoadLibraryPermanently(Path.c_str(), &Error))
143 << Path << Error;
  /external/webkit/Source/WebCore/platform/graphics/haiku/
PathHaiku.cpp 29 #include "Path.h"
40 Path::Path()
45 Path::~Path()
50 Path::Path(const Path& other)
55 Path& Path::operator=(const Path& other
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
PathWinCE.cpp 21 #include "Path.h"
32 Path::Path()
37 Path::Path(const Path& other)
42 Path::~Path()
47 Path& Path::operator=(const Path& other
    [all...]
  /external/webkit/Source/WebCore/xml/
XPathPath.cpp 181 Path::Path(Filter* filter, LocationPath* path)
183 , m_path(path)
190 Path::~Path()
196 Value Path::evaluate() const
XPathPath.h 75 class Path : public Expression {
77 Path(Filter*, LocationPath*);
78 virtual ~Path();
  /external/clang/examples/clang-interpreter/
main.cpp 30 #include "llvm/Support/Path.h"
40 llvm::sys::Path GetExecutablePath(const char *Argv0) {
44 return llvm::sys::Path::GetMainExecutable(Argv0, MainAddr);
73 llvm::sys::Path Path = GetExecutablePath(argv[0]);
79 Driver TheDriver(Path.str(), llvm::sys::getHostTriple(),
138 // Infer the builtin include path if unspecified.
  /external/clang/lib/Basic/
Version.cpp 44 // Trim path prefix off, assuming path came from standard cfe path.
64 std::string Path = getClangRepositoryPath();
66 if (!Path.empty())
67 OS << Path;
69 if (!Path.empty())
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
Path.java 43 public class Path
51 public Path(AddressImpl address) {
59 public Path()
  /external/webkit/Source/WebCore/platform/graphics/wx/
PathWx.cpp 27 #include "Path.h"
51 Path::Path()
62 wxGraphicsPath path = renderer->CreatePath(); local
63 m_path = new wxGraphicsPath(path);
68 Path::~Path()
73 Path::Path(const Path& path
134 wxGraphicsPath path = renderer->CreatePath(); local
    [all...]
  /external/llvm/include/llvm/Support/
PathV2.h 1 //===- llvm/Support/PathV2.h - Path Operating System Concept ----*- C++ -*-===//
10 // This file declares the llvm::sys::path namespace. It is designed after
12 // path class.
26 namespace path { namespace in namespace:llvm::sys
31 /// @brief Path iterator.
34 /// components in \a path. The forward traversal order is as follows:
50 StringRef Path; //< The entire path.
51 StringRef Component; //< The current component. Not necessarily in Path.
52 size_t Position; //< The iterators current position within Path
    [all...]
FileSystem.h 12 // path class.
108 /// @brief Make \a path an absolute path.
110 /// Makes \a path absolute using the current directory if it is not already. An
111 /// empty \a path will result in the current directory.
113 /// /absolute/path => /absolute/path
114 /// relative/../path => <current-directory>/relative/../path
116 /// @param path A path that is modified to be an absolute path
471 const std::string &path() const { return Path; } function in class:llvm::sys::fs::directory_entry
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/url/src/
URLSegments.h 48 Path,
85 // Path: 13 13
98 URLComponent path; member in class:WTF::URLSegments
  /external/clang/include/clang/Frontend/
HeaderSearchOptions.h 21 /// path starts at the -iquote group, then searches the Angled group, then
42 std::string Path;
47 /// IgnoreSysRoot - This is false if an absolute path should be treated
49 /// path.
52 Entry(StringRef path, frontend::IncludeDirGroup group,
54 : Path(path), Group(group), IsUserSupplied(isUserSupplied),
99 /// AddPath - Add the \arg Path path to the specified \arg Group list.
100 void AddPath(StringRef Path, frontend::IncludeDirGroup Group
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
Path.h 104 class Path {
107 Path();
108 ~Path();
110 Path(const Path&);
111 Path& operator=(const Path&);
124 // Gets the current point of the current path, which is conceptually the final point reached by the path so far.
125 // Note the Path can be empty (isEmpty() == true) and still have a current point
    [all...]
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/data/
MediaSetTest.java 31 Path.clearAll();
37 MockSet set00 = new MockSet(Path.fromString("/mock/00"), dataManager, 0, 2000);
38 MockSet set01 = new MockSet(Path.fromString("/mock/01"), dataManager, 1, 3000);
39 MockSet set10 = new MockSet(Path.fromString("/mock/10"), dataManager, 2, 4000);
40 MockSet set11 = new MockSet(Path.fromString("/mock/11"), dataManager, 3, 5000);
41 MockSet set12 = new MockSet(Path.fromString("/mock/12"), dataManager, 4, 6000);
43 MockSet set0 = new MockSet(Path.fromString("/mock/0"), dataManager, 7, 7000);
47 MockSet set1 = new MockSet(Path.fromString("/mock/1"), dataManager, 8, 8000);
  /external/webkit/Source/WebCore/platform/graphics/android/
PathAndroid.cpp 27 #include "Path.h"
44 Path::Path()
50 Path::Path(const Path& other)
55 Path::~Path()
60 Path& Path::operator=(const Path& other
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cairo/
PathCairo.cpp 27 #include "Path.h"
42 Path::Path()
47 Path::~Path()
52 Path::Path(const Path& other)
60 Path& Path::operator=(const Path& other
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
PathCG.cpp 28 #include "Path.h"
68 Path::Path()
73 Path::~Path()
78 Path::Path(const Path& other)
83 Path& Path::operator=(const Path& other
85 CGMutablePathRef path = CGPathCreateMutableCopy(other.m_path); local
93 CGMutablePathRef path = static_cast<CGMutablePathRef>(info); local
119 CGMutablePathRef path = CGPathCreateMutable(); local
303 CGMutablePathRef path = CGPathCreateMutable(); local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/skia/
PathSkia.cpp 31 #include "Path.h"
46 Path::Path()
51 Path::Path(const Path& other)
56 Path::~Path()
61 Path& Path::operator=(const Path& other
    [all...]
  /external/llvm/include/llvm/Analysis/
ProfileInfo.h 61 typedef std::map<const BType*, const BType*> Path;
154 Path &P, unsigned Mode);
  /external/llvm/tools/bugpoint/
ExecutionDriver.cpp 75 SafeInterpreterPath("safe-path",
76 cl::desc("Specify the path to the \"safe\" backend program"),
221 std::string Path = SafeInterpreterPath;
222 if (Path.empty())
223 Path = getToolName();
232 SafeInterpreter = AbstractInterpreter::createLLC(Path.c_str(), Message,
243 SafeInterpreter = AbstractInterpreter::createLLC(Path.c_str(), Message,
255 SafeInterpreter = AbstractInterpreter::createCBE(Path.c_str(), Message,
265 SafeInterpreter = AbstractInterpreter::createLLC(Path.c_str(), Message,
278 SafeInterpreter = AbstractInterpreter::createLLC(Path.c_str(), Message
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/openvg/
PathOpenVG.cpp 21 #include "Path.h"
105 Path::Path()
110 Path::~Path()
115 Path::Path(const Path& other)
120 Path& Path::operator=(const Path& other
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
PathQt.cpp 31 #include "Path.h"
47 Path::Path()
51 Path::~Path()
55 Path::Path(const Path& other)
60 Path& Path::operator=(const Path& other
    [all...]
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 27 #include "llvm/Support/Path.h"
58 // absolute path if we find the file here, and otherwise letting
60 llvm::SmallString<128> Path(File);
61 llvm::sys::fs::make_absolute(Path);
63 if (llvm::sys::fs::exists(Path.str(), exists) || !exists)
64 Path = File;
68 return Lexer::Stringify(Path.str());
701 const std::string &Path = InitOpts.Includes[i];
702 if (Path == InitOpts.ImplicitPTHInclude)
703 AddImplicitIncludePTH(Builder, PP, Path);
    [all...]
  /external/clang/tools/driver/
driver.cpp 35 #include "llvm/Support/Path.h"
45 llvm::sys::Path GetExecutablePath(const char *Argv0, bool CanonicalPrefixes) {
47 return llvm::sys::Path(Argv0);
52 return llvm::sys::Path::GetMainExecutable(Argv0, P);
292 std::string ProgName(llvm::sys::path::stem(ArgVector[0]));
372 llvm::sys::Path Path = GetExecutablePath(argv[0], CanonicalPrefixes);
376 DiagClient->setPrefix(llvm::sys::path::stem(Path.str()));
385 Driver TheDriver(Path.str(), llvm::sys::getHostTriple()
    [all...]

Completed in 814 milliseconds

1 2 3