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

12345

/frameworks/compile/mclinker/lib/Support/
H A DPath.cpp1 //===- Path.cpp -----------------------------------------------------------===//
11 #include <mcld/Support/Path.h>
32 const Path::StringType separator_str("/");
40 const Path::StringType separator_str("/");
47 // Path
49 Path::Path() function in class:Path
53 Path::Path(const Path function in class:Path
57 Path::Path(const Path::StringType &s ) function in class:Path
61 Path::Path(const Path& pCopy) function in class:Path
[all...]
H A DRealPath.cpp17 : Path() {
21 : Path(s) {
26 : Path(s) {
30 RealPath::RealPath(const Path& pPath)
31 : Path(pPath) {
39 RealPath& RealPath::assign(const Path& pPath)
41 Path::m_PathName.assign(pPath.native());
51 Path path_name;
H A DToolOutputFile.cpp11 #include <mcld/Support/Path.h>
20 #include <llvm/Support/Path.h>
28 ToolOutputFile::CleanupInstaller::CleanupInstaller(const sys::fs::Path& pPath)
32 llvm::sys::RemoveFileOnSignal(llvm::sys::Path(m_Path.native()));
39 // llvm::sys::Path
41 llvm::sys::Path(m_Path.native()).eraseFromDisk();
46 llvm::sys::DontRemoveFileOnSignal(llvm::sys::Path(m_Path.native()));
52 ToolOutputFile::ToolOutputFile(const sys::fs::Path& pPath,
H A DFileSystem.cpp11 #include <mcld/Support/Path.h>
16 bool mcld::sys::fs::exists(const Path &pPath)
24 bool mcld::sys::fs::is_directory(const Path &pPath)
/frameworks/compile/mclinker/include/mcld/Support/
H A DPath.h1 //===- Path.h -------------------------------------------------------------===//
9 // This file declares the mcld::sys::fs::Path. It follows TR2/boost
42 /** \class Path
43 * \brief Path provides an abstraction for the path to a file or directory in
46 class Path class in namespace:mcld::sys::fs
53 Path();
54 Path(const ValueType* s);
55 Path(const StringType &s);
56 Path(const Path
[all...]
H A DFileSystem.h76 class Path;
80 bool exists(const Path &pPath);
81 bool is_directory(const Path &pPath);
85 extern Path::StringType static_library_extension;
86 extern Path::StringType shared_library_extension;
87 extern Path::StringType executable_extension;
88 extern Path::StringType relocatable_extension;
89 extern Path::StringType assembly_extension;
90 extern Path::StringType bitcode_extension;
92 size_t canonicalize(Path
[all...]
H A DToolOutputFile.h24 class Path;
39 ToolOutputFile(const sys::fs::Path& pPath,
62 explicit CleanupInstaller(const sys::fs::Path& pPath);
70 sys::fs::Path m_Path;
H A DRealPath.h14 #include "mcld/Support/Path.h"
25 class RealPath : public Path
28 typedef Path::ValueType ValueType;
29 typedef Path::StringType StringType;
35 explicit RealPath(const Path& pPath);
39 RealPath& assign(const Path& pPath);
H A DMemoryAreaFactory.h16 #include <mcld/Support/Path.h>
49 MemoryArea* produce(const sys::fs::Path& pPath,
53 MemoryArea* produce(const sys::fs::Path& pPath,
/frameworks/rs/
H A DrsPath.cpp24 Path::Path(Context *rsc) : ObjectBase(rsc) { function in class:Path
27 Path::Path(Context *rsc, RsPathPrimitive pp, bool isStatic, function in class:Path
41 Path::Path(Context *rsc, uint32_t vertexBuffersCount, uint32_t primitivesCount) function in class:Path
46 Path::~Path() {
51 void Path::rasterize(const BezierSegment_t *s, uint32_t num, Allocation *alloc) {
59 void Path
[all...]
H A DrsPath.h27 class Path : public ObjectBase { class in namespace:android::renderscript
39 Path(Context *);
40 Path(Context *, uint32_t vertexBuffersCount, uint32_t primitivesCount);
41 Path(Context *, RsPathPrimitive pp, bool isStatic, Allocation *vtx, Allocation *loop, float q);
43 ~Path();
/frameworks/compile/mclinker/include/mcld/
H A DBitcodeOption.h15 #include <mcld/Support/Path.h>
33 void setPath(const sys::fs::Path& pPath) { m_Path = pPath; }
35 const sys::fs::Path& getPath() const { return m_Path; }
42 sys::fs::Path m_Path;
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/
H A DPathTest.java27 Path path = new Path();
29 final Path.FillType defaultFillType = path.getFillType();
30 final Path.FillType fillType = Path.FillType.INVERSE_EVEN_ODD;
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DPathOpsActivity.java24 import android.graphics.Path;
40 private Path[] mPaths;
57 Path.Op[] ops = Path.Op.values();
58 mPaths = new Path[ops.length];
62 Path p1 = new Path();
63 p1.addRect(0.0f, 0.0f, mSize, mSize, Path.Direction.CW);
65 Path p2 = new Path();
[all...]
H A DPathsCacheActivity.java23 import android.graphics.Path;
33 private Path mPath;
37 private final ArrayList<Path> mPathList = new ArrayList<Path>();
49 private static Path makePath() {
50 Path path = new Path();
55 private static void buildPath(Path path) {
62 private static Path makeLargePath() {
63 Path pat
[all...]
H A DSmallCircleActivity.java23 import android.graphics.Path;
49 private final Path mPath;
54 mPath = new Path();
55 mPath.addCircle(SIZE * 0.5f, SIZE * 0.5f, SIZE * 0.275f, Path.Direction.CW);
56 mPath.addCircle(SIZE * 0.5f, SIZE * 0.5f, SIZE * 0.225f, Path.Direction.CCW);
/frameworks/compile/mclinker/include/mcld/MC/
H A DContextFactory.h17 #include <mcld/Support/Path.h>
35 class ContextFactory : public UniqueGCFactoryBase<sys::fs::Path, LDContext, 0>
42 LDContext* produce(const sys::fs::Path& pPath);
H A DSearchDirs.h16 #include <mcld/Support/Path.h>
47 SearchDirs(const sys::fs::Path& pSysRoot);
52 sys::fs::Path*
55 const sys::fs::Path*
58 void setSysRoot(const sys::fs::Path& pSysRoot) { m_SysRoot = pSysRoot; }
59 const sys::fs::Path& sysroot() const { return m_SysRoot; }
72 bool insert(const sys::fs::Path& pDirectory);
76 sys::fs::Path m_SysRoot;
/frameworks/rs/driver/
H A DrsdPath.h24 const android::renderscript::Path *m,
28 const android::renderscript::Path *m);
30 const android::renderscript::Path *m);
32 const android::renderscript::Path *m);
/frameworks/base/graphics/java/android/renderscript/
H A DPath.java26 public class Path extends BaseObj { class in inherits:BaseObj
44 Path(int id, RenderScript rs, Primitive p, Allocation vtx, Allocation loop, float q) { method in class:Path
69 public static Path createStaticPath(RenderScript rs, Primitive p, float quality, Allocation vtx) {
71 Path newPath = new Path(id, rs, p, null, null, quality);
75 public static Path createStaticPath(RenderScript rs, Primitive p, float quality, Allocation vtx, Allocation loops) {
79 public static Path createDynamicPath(RenderScript rs, Primitive p, float quality, Allocation vtx) {
83 public static Path createDynamicPath(RenderScript rs, Primitive p, float quality, Allocation vtx, Allocation loops) {
/frameworks/compile/mclinker/lib/Core/
H A DLinkerScript.cpp24 const mcld::sys::fs::Path& LinkerScript::sysroot() const
29 void LinkerScript::setSysroot(const mcld::sys::fs::Path &pSysroot)
/frameworks/compile/mclinker/unittests/
H A DPathTest.cpp23 m_pTestee = new Path();
52 m_pTestee = new Path(root);
62 m_pTestee = new Path(root);
72 m_pTestee = new Path(root);
83 m_pTestee = new Path(root);
92 Path* p2 = new Path("ccc///////");
97 m_pTestee = new Path(root);
104 Path* p2=new Path("aa
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/shapes/
H A DPathShape.java21 import android.graphics.Path;
24 * Creates geometric paths, utilizing the {@link android.graphics.Path} class.
30 private Path mPath;
40 * @param path a Path that defines the geometric paths for this shape
48 public PathShape(Path path, float stdWidth, float stdHeight) {
71 shape.mPath = new Path(mPath);
H A DRoundRectShape.java21 import android.graphics.Path;
37 private Path mPath; // this is what we actually draw
73 mPath = new Path();
89 mPath.addRoundRect(r, mOuterRadii, Path.Direction.CW);
91 mPath.addRect(r, Path.Direction.CW);
98 mPath.addRoundRect(mInnerRect, mInnerRadii, Path.Direction.CCW);
100 mPath.addRect(mInnerRect, Path.Direction.CCW);
113 shape.mPath = new Path(mPath);
/frameworks/compile/mclinker/lib/MC/
H A DContextFactory.cpp17 : UniqueGCFactoryBase<sys::fs::Path, LDContext, 0>(pNum)
25 LDContext* ContextFactory::produce(const sys::fs::Path& pPath)
29 result = UniqueGCFactoryBase<sys::fs::Path, LDContext, 0>::allocate();

Completed in 417 milliseconds

12345