Searched refs:Path (Results 1 - 25 of 385) 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
49 /// invoking program. If Path::executable() does not return true when this
55 ( const Path& path, ///< sys::Path object providing the path of the
64 const sys::Path** redirects = 0, ///< An optional array of pointers to
69 ///< When an empty Path is passed in, the corresponding file
91 ( const Path& path, ///< The path to the child process executable.
107 /// @returns A Path object initialized to the path of the program or a
108 /// 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"
31 bool RemoveFileOnSignal(const Path &Filename, std::string* ErrMsg = 0);
35 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.cpp17 #include "llvm/Support/Path.h"
69 ExecGraphViewer(const sys::Path &ExecPath, std::vector<const char*> &args,
70 const sys::Path &Filename, bool wait, std::string &ErrMsg) {
86 void llvm::DisplayGraph(const sys::Path &Filename, bool wait,
91 sys::Path Graphviz(LLVM_PATH_GRAPHVIZ);
118 if (!ExecGraphViewer(sys::Path(LLVM_PATH_XDOT_PY), args, Filename, wait, ErrMsg))
123 sys::Path PSFilename = Filename;
126 sys::Path prog;
130 prog = sys::Path(LLVM_PATH_CIRCO);
133 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/clang/lib/Basic/
H A DFileSystemStatCache.cpp15 #include "llvm/Support/Path.h"
42 bool FileSystemStatCache::get(const char *Path, struct stat &StatBuf, argument
50 R = Cache->getStat(Path, StatBuf, isFile, FileDescriptor);
54 R = ::stat(Path, &StatBuf) != 0 ? CacheMissing : CacheExists;
67 *FileDescriptor = ::open(Path, OpenFlags);
108 MemorizeStatCalls::getStat(const char *Path, struct stat &StatBuf, argument
110 LookupResult Result = statChained(Path, StatBuf, isFile, FileDescriptor);
120 if (!S_ISDIR(StatBuf.st_mode) || llvm::sys::path::is_absolute(Path))
121 StatCalls[Path] = StatBuf;
/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/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,
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, isFile, FileDescriptor);
81 return get(Path, StatBuf,
100 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/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DPathTest.java3 import android.graphics.Path;
22 Path path = Robolectric.newInstanceOf(Path.class);
30 Path path = Robolectric.newInstanceOf(Path.class);
42 Path path = Robolectric.newInstanceOf(Path.class);
/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;
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DPathQt.cpp31 #include "Path.h"
47 Path::Path() function in class:WebCore::Path
51 Path::~Path()
55 Path::Path(const Path& other) function in class:WebCore::Path
60 Path& Path
[all...]

Completed in 705 milliseconds

1234567891011>>