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

123456

/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 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
39 /** \class Path
40 * \brief Path provides an abstraction for the path to a file or directory in
43 class Path class in namespace:mcld::sys::fs
50 Path();
51 Path(const ValueType* s);
52 Path(const StringType &s);
53 Path(const Path
[all...]
H A DFileSystem.h73 class Path;
77 bool exists(const Path &pPath);
78 bool is_directory(const Path &pPath);
82 extern Path::StringType static_library_extension;
83 extern Path::StringType shared_library_extension;
84 extern Path::StringType executable_extension;
85 extern Path::StringType relocatable_extension;
86 extern Path::StringType assembly_extension;
87 extern Path::StringType bitcode_extension;
89 size_t canonicalize(Path
[all...]
H A DRealPath.h11 #include "mcld/Support/Path.h"
22 class RealPath : public Path
25 typedef Path::ValueType ValueType;
26 typedef Path::StringType StringType;
32 explicit RealPath(const Path& pPath);
36 RealPath& assign(const Path& pPath);
H A DToolOutputFile.h21 class Path;
33 ToolOutputFile(const sys::fs::Path& pPath,
56 explicit CleanupInstaller(const sys::fs::Path& pPath);
64 sys::fs::Path m_Path;
H A DMemoryAreaFactory.h13 #include <mcld/Support/Path.h>
46 MemoryArea* produce(const sys::fs::Path& pPath,
50 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.h12 #include <mcld/Support/Path.h>
30 void setPath(const sys::fs::Path& pPath) { m_Path = pPath; }
32 const sys::fs::Path& getPath() const { return m_Path; }
39 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.h14 #include <mcld/Support/Path.h>
32 class ContextFactory : public UniqueGCFactoryBase<sys::fs::Path, LDContext, 0>
39 LDContext* produce(const sys::fs::Path& pPath);
H A DSearchDirs.h13 #include <mcld/Support/Path.h>
44 SearchDirs(const sys::fs::Path& pSysRoot);
49 sys::fs::Path*
52 const sys::fs::Path*
55 void setSysRoot(const sys::fs::Path& pSysRoot) { m_SysRoot = pSysRoot; }
56 const sys::fs::Path& sysroot() const { return m_SysRoot; }
69 bool insert(const sys::fs::Path& pDirectory);
73 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/core/java/android/transition/
H A DPathMotion.java19 import android.graphics.Path;
23 * This base class can be extended to provide motion along a Path to Transitions.
47 * Provide a Path to interpolate between two points <code>(startX, startY)</code> and
54 * @return A Path along which the points should be interpolated. The returned Path
56 * {@link android.graphics.Path#moveTo(float, float)} and end at <code>(endX, endY)</code>.
58 public abstract Path getPath(float startX, float startY, float endX, float endY);
H A DPatternPathMotion.java23 import android.graphics.Path;
30 * A PathMotion that takes a Path pattern and applies it to the separation between two points.
31 * The starting point of the Path will be moved to the origin and the end point will be scaled
43 private Path mOriginalPatternPath;
45 private final Path mPatternPath = new Path();
64 Path pattern = PathParser.createPathFromPathData(pathData);
73 * Creates a PatternPathMotion with the Path defining a pattern of motion between two
78 * @param patternPath A Path to be used as a pattern for two-dimensional motion.
80 public PatternPathMotion(Path patternPat
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DPath.java23 public class Path extends BaseObj { class in inherits:BaseObj
41 Path(long id, RenderScript rs, Primitive p, Allocation vtx, Allocation loop, float q) { method in class:Path
66 public static Path createStaticPath(RenderScript rs, Primitive p, float quality, Allocation vtx) {
68 Path newPath = new Path(id, rs, p, null, null, quality);
72 public static Path createStaticPath(RenderScript rs, Primitive p, float quality, Allocation vtx, Allocation loops) {
76 public static Path createDynamicPath(RenderScript rs, Primitive p, float quality, Allocation vtx) {
80 public static Path createDynamicPath(RenderScript rs, Primitive p, float quality, Allocation vtx, Allocation loops) {
/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.java22 import android.graphics.Path;
38 private Path mPath; // this is what we actually draw
74 mPath = new Path();
112 mPath.addRoundRect(r, mOuterRadii, Path.Direction.CW);
114 mPath.addRect(r, Path.Direction.CW);
121 mPath.addRoundRect(mInnerRect, mInnerRadii, Path.Direction.CCW);
123 mPath.addRect(mInnerRect, Path.Direction.CCW);
136 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 1955 milliseconds

123456