Searched refs:Path (Results 1 - 25 of 366) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DPathHaiku.cpp29 #include "Path.h"
40 Path::Path() function in class:WebCore::Path
45 Path::~Path()
50 Path::Path(const Path& other) function in class:WebCore::Path
55 Path& Path
[all...]
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DPathWinCE.cpp21 #include "Path.h"
32 Path::Path() function in class:WebCore::Path
37 Path::Path(const Path& other) function in class:WebCore::Path
42 Path::~Path()
47 Path& Path
[all...]
/external/llvm/include/llvm/Support/
H A DProgram.h17 #include "llvm/Support/Path.h"
28 /// programs from the path and to execute them in various ways. The sys::Path
53 /// invoking program. If Path::executable() does not return true when this
59 ( const Path& path, ///< sys::Path object providing the path of the
68 const sys::Path** redirects = 0, ///< An optional array of pointers to
73 ///< When an empty Path is passed in, the corresponding file
95 ( const Path& path, ///< The path to the child process executable.
121 /// @returns A Path object initialized to the path of the program or a
122 /// Path objec
[all...]
H A DPathV1.h1 //===- llvm/Support/PathV1.h - Path Operating System Concept ----*- C++ -*-===//
10 // This file declares the llvm::sys::Path class.
68 /// extensions and several omissions (not relevant to LLVM). A Path object
73 /// such a Path to act on the file system could produce errors. There is one
74 /// invalid Path value which is permitted: the empty path. The class should
80 /// invalid path name (in which case the Path object is left unchanged) or
82 /// grouped into four basic categories: Path Accessors (provide information
84 /// information about the underlying file or directory), Path Mutators
91 class Path { class in namespace:llvm::sys
101 LLVM_ATTRIBUTE_DEPRECATED(static Path GetRootDirector
173 Path() : path() {} function in class:llvm::sys::Path
174 Path(const Path &that) : path(that.path) {} function in class:llvm::sys::Path
[all...]
H A DSignals.h18 #include "llvm/Support/Path.h"
30 bool RemoveFileOnSignal(const Path &Filename, std::string* ErrMsg = 0);
34 void DontRemoveFileOnSignal(const Path &Filename);
H A DSystemUtils.h22 namespace sys { class Path; }
39 sys::Path PrependMainExecutablePath(const std::string &ExeName,
/external/llvm/lib/Support/
H A DSystemUtils.cpp41 sys::Path llvm::PrependMainExecutablePath(const std::string &ExeName,
46 sys::Path Result = sys::Path::GetMainExecutable(Argv0, MainAddr);
51 Result.appendSuffix(sys::Path::GetEXESuffix());
H A DProgram.cpp26 Program::ExecuteAndWait(const Path& path,
29 const Path** redirects,
41 Program::ExecuteNoWait(const Path& path,
44 const Path** redirects,
H A DToolOutputFile.cpp22 sys::RemoveFileOnSignal(sys::Path(Filename));
28 sys::Path(Filename).eraseFromDisk();
33 sys::DontRemoveFileOnSignal(sys::Path(Filename));
H A DGraphWriter.cpp16 #include "llvm/Support/Path.h"
58 ExecGraphViewer(const sys::Path &ExecPath, std::vector<const char*> &args,
59 const sys::Path &Filename, bool wait, std::string &ErrMsg) {
75 void llvm::DisplayGraph(const sys::Path &Filename, bool wait,
80 sys::Path Graphviz(LLVM_PATH_GRAPHVIZ);
107 if (!ExecGraphViewer(sys::Path(LLVM_PATH_XDOT_PY), args, Filename, wait, ErrMsg))
112 sys::Path PSFilename = Filename;
115 sys::Path prog;
119 prog = sys::Path(LLVM_PATH_CIRCO);
122 prog = sys::Path(LLVM_PATH_TWOP
[all...]
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DPathWx.cpp27 #include "Path.h"
51 Path::Path() function in class:WebCore::Path
68 Path::~Path()
73 Path::Path(const Path& path) function in class:WebCore::Path
78 bool Path::contains(const FloatPoint& point, const WindRule rule) const
92 void Path
[all...]
/external/skia/src/svg/
H A DSkSVGPath.h16 DECLARE_SVG_INFO(Path);
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DPathList.java37 public class PathList extends SIPHeaderList<Path> {
42 super(Path.class, PathHeader.NAME);
/external/clang/lib/Basic/
H A DFileSystemStatCache.cpp15 #include "llvm/Support/Path.h"
42 bool FileSystemStatCache::get(const char *Path, struct stat &StatBuf, argument
49 R = Cache->getStat(Path, StatBuf, FileDescriptor);
52 R = ::stat(Path, &StatBuf) != 0 ? CacheMissing : CacheExists;
65 *FileDescriptor = ::open(Path, OpenFlags);
106 MemorizeStatCalls::getStat(const char *Path, struct stat &StatBuf, argument
108 LookupResult Result = statChained(Path, StatBuf, FileDescriptor);
118 if (!S_ISDIR(StatBuf.st_mode) || llvm::sys::path::is_absolute(Path))
119 StatCalls[Path] = StatBuf;
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DPathCG.cpp28 #include "Path.h"
68 Path::Path() function in class:WebCore::Path
73 Path::~Path()
78 Path::Path(const Path& other) function in class:WebCore::Path
83 Path& Path
[all...]
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DPathSkia.cpp31 #include "Path.h"
46 Path::Path() function in class:WebCore::Path
51 Path::Path(const Path& other) function in class:WebCore::Path
56 Path::~Path()
61 Path& Path
[all...]
/external/llvm/include/llvm-c/
H A DBitWriter.h38 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path);
/external/clang/include/clang/Basic/
H A DFileSystemStatCache.h52 static bool get(const char *Path, struct stat &StatBuf, int *FileDescriptor,
71 virtual LookupResult getStat(const char *Path, struct stat &StatBuf,
74 LookupResult statChained(const char *Path, struct stat &StatBuf, argument
77 return Next->getStat(Path, StatBuf, FileDescriptor);
81 return get(Path, StatBuf, FileDescriptor, 0) ? CacheMissing : CacheExists;
99 virtual LookupResult getStat(const char *Path, struct stat &StatBuf,
/external/webkit/Source/WebCore/platform/graphics/android/
H A DPathAndroid.cpp27 #include "Path.h"
43 Path::Path() function in class:WebCore::Path
49 Path::Path(const Path& other) function in class:WebCore::Path
54 Path::~Path()
59 Path& Path
[all...]
/external/llvm/lib/Linker/
H A DLinker.cpp17 #include "llvm/Support/Path.h"
67 Linker::addPath(const sys::Path& path) {
74 LibPaths.push_back(sys::Path(paths[i]));
79 sys::Path::GetBitcodeLibraryPaths(LibPaths);
80 LibPaths.insert(LibPaths.begin(),sys::Path("./"));
97 Linker::LoadObject(const sys::Path &FN) {
117 // a non-empty sys::Path if its found, an empty one otherwise.
118 static inline sys::Path IsLibrary(StringRef Name,
119 const sys::Path &Directory) {
121 sys::Path FullPat
[all...]
/external/llvm/include/llvm/
H A DLinker.h22 namespace sys { class Path; }
115 const std::vector<sys::Path>& getLibPaths() const { return LibPaths; }
137 void addPath(const sys::Path& path);
181 const std::vector<sys::Path> & Files ///< Files to link in
192 const sys::Path& File, ///< File to link in.
239 const sys::Path& Filename, ///< Filename of the archive to link
273 /// will be empty (i.e. sys::Path::isEmpty() will return true).
274 /// @returns A sys::Path to the found library
276 sys::Path FindLib(StringRef Filename);
284 std::auto_ptr<Module> LoadObject(const sys::Path
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/Misc/
H A DStats.cs41 using Path = System.IO.Path;
119 Directory.CreateDirectory( Path.GetDirectoryName( absoluteFilename ) );
126 return personalFolder + Path.DirectorySeparatorChar +
127 ANTLRWORKS_DIR + Path.DirectorySeparatorChar +
/external/webkit/Source/WebCore/platform/graphics/openvg/
H A DPathOpenVG.cpp21 #include "Path.h"
105 Path::Path() function in class:WebCore::Path
110 Path::~Path()
115 Path::Path(const Path& other) function in class:WebCore::Path
120 Path& Path
[all...]
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DLoopBlinnPathProcessor.h49 class Path;
53 // The LoopBlinnPathProcessor turns a Path (assumed to contain one or
72 void process(const Path&, LoopBlinnPathCache&);
81 void buildContours(const Path&);
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGTextPath.cpp44 Path RenderSVGTextPath::layoutPath() const
50 return Path();
54 Path pathData;

Completed in 2878 milliseconds

1234567891011>>