Home
last modified time | relevance | path

Searched refs:Path (Results 1 – 25 of 173) sorted by relevance

1234567

/frameworks/compile/mclinker/lib/Support/
DPath.cpp32 const Path::StringType separator_str("/");
40 const Path::StringType separator_str("/");
49 Path::Path() in Path() function in Path
53 Path::Path(const Path::ValueType* s ) in Path() function in Path
57 Path::Path(const Path::StringType &s ) in Path() function in Path
61 Path::Path(const Path& pCopy) in Path() function in Path
65 Path::~Path() in ~Path()
69 bool Path::isFromRoot() const in isFromRoot()
76 bool Path::isFromPWD() const in isFromPWD()
83 Path& Path::assign(const Path::StringType &s) in assign()
[all …]
DRealPath.cpp17 : Path() { in RealPath()
21 : Path(s) { in RealPath()
26 : Path(s) { in RealPath()
30 RealPath::RealPath(const Path& pPath) in RealPath()
31 : Path(pPath) { in RealPath()
39 RealPath& RealPath::assign(const Path& pPath) in assign()
41 Path::m_PathName.assign(pPath.native()); in assign()
51 Path path_name; in initialize()
DDirectory.cpp27 const Path dot_path(".");
28 const Path dot_dot_path("..");
44 Directory::Directory(const Path& pPath, in Directory()
85 void Directory::assign(const Path& pPath, in assign()
170 Path* DirIterator::path() in path()
177 const Path* DirIterator::path() const in path()
243 const Path* x_path = path(); in operator ==()
244 const Path* y_path = y.path(); in operator ==()
/frameworks/compile/mclinker/include/mcld/Support/
DPath.h43 class Path
50 Path();
51 Path(const ValueType* s);
52 Path(const StringType &s);
53 Path(const Path& pCopy);
54 virtual ~Path();
58 Path& assign(InputIterator begin, InputIterator end);
59 Path& assign(const StringType &s);
60 Path& assign(const ValueType* s, unsigned int length);
64 Path& append(InputIterator begin, InputIterator end);
[all …]
DFileSystem.h73 class Path; variable
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::StringType& pPathName);
[all …]
DDirectory.h47 explicit Directory(const Path& pPath,
63 void assign(const Path& pPath,
73 const Path& path() const in path()
86 mcld::sys::fs::Path m_Path;
133 Path* generic_path();
135 Path* path();
136 const Path* path() const;
DRealPath.h22 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);
DToolOutputFile.h21 class Path; variable
33 ToolOutputFile(const sys::fs::Path& pPath,
56 explicit CleanupInstaller(const sys::fs::Path& pPath);
64 sys::fs::Path m_Path;
/frameworks/rs/
DrsPath.cpp24 Path::Path(Context *rsc) : ObjectBase(rsc) { in Path() function in Path
27 Path::Path(Context *rsc, RsPathPrimitive pp, bool isStatic, in Path() function in Path
41 Path::Path(Context *rsc, uint32_t vertexBuffersCount, uint32_t primitivesCount) in Path() function in Path
46 Path::~Path() { in ~Path()
51 void Path::rasterize(const BezierSegment_t *s, uint32_t num, Allocation *alloc) { in rasterize()
59 void Path::render(Context *rsc) { in render()
62 void Path::serialize(Context *rsc, OStream *stream) const { in serialize()
66 RsA3DClassID Path::getClassId() const { in getClassId()
75 return new Path(rsc, pp, isStatic, (Allocation *)vtx, (Allocation *)loops, quality); in rsi_PathCreate()
DrsPath.h27 class Path : public ObjectBase {
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/unittests/
DPathTest.cpp23 m_pTestee = new Path(); in PathTest()
52 m_pTestee = new Path(root); in TEST_F()
62 m_pTestee = new Path(root); in TEST_F()
72 m_pTestee = new Path(root); in TEST_F()
83 m_pTestee = new Path(root); in TEST_F()
92 Path* p2 = new Path("ccc///////"); in TEST_F()
97 m_pTestee = new Path(root); in TEST_F()
104 Path* p2=new Path("aaa//"); in TEST_F()
110 m_pTestee = new Path(root); in TEST_F()
123 m_pTestee = new Path("aa/"); in TEST_F()
[all …]
DLinkerTest.cpp90 Path search_dir(TOPDIR); in TEST_F()
106 Path crtbegin(search_dir); in TEST_F()
111 Path plasma(TOPDIR); in TEST_F()
122 Path crtend(search_dir); in TEST_F()
148 Path search_dir(TOPDIR); in TEST_F()
164 Path crtbegin(search_dir); in TEST_F()
169 Path plasma(TOPDIR); in TEST_F()
180 Path crtend(search_dir); in TEST_F()
245 Path search_dir(TOPDIR); in TEST_F()
261 Path crtbegin(search_dir); in TEST_F()
[all …]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DPathOpsActivity.java24 import android.graphics.Path;
40 private Path[] mPaths;
57 Path.Op[] ops = Path.Op.values(); in onSizeChanged()
58 mPaths = new Path[ops.length]; in onSizeChanged()
62 Path p1 = new Path(); in onSizeChanged()
63 p1.addRect(0.0f, 0.0f, mSize, mSize, Path.Direction.CW); in onSizeChanged()
65 Path p2 = new Path(); in onSizeChanged()
66 p2.addCircle(mSize, mSize, mSize / 2.0f, Path.Direction.CW); in onSizeChanged()
69 mPaths[i] = new Path(); in onSizeChanged()
81 for (Path path : mPaths) { in onDraw()
DPathsCacheActivity.java23 import android.graphics.Path;
33 private Path mPath;
37 private final ArrayList<Path> mPathList = new ArrayList<Path>();
49 private static Path makePath() { in makePath()
50 Path path = new Path(); in makePath()
55 private static void buildPath(Path path) { in buildPath()
62 private static Path makeLargePath() { in makeLargePath()
63 Path path = new Path(); in makeLargePath()
68 private static void buildLargePath(Path path) { in buildLargePath()
115 Path path = makePath(); in onDraw()
DTextOnPathActivity.java23 import android.graphics.Path;
30 private Path mPath;
31 private Path mStraightPath;
44 private static Path makePath() { in makePath()
45 Path path = new Path(); in makePath()
50 private static void buildPath(Path path) { in buildPath()
57 private static Path makeStraightPath() { in makeStraightPath()
58 Path path = new Path(); in makeStraightPath()
63 private static void buildStraightPath(Path path) { in buildStraightPath()
DSmallCircleActivity.java23 import android.graphics.Path;
49 private final Path mPath;
54 mPath = new Path(); in PathView()
55 mPath.addCircle(SIZE * 0.5f, SIZE * 0.5f, SIZE * 0.275f, Path.Direction.CW); in PathView()
56 mPath.addCircle(SIZE * 0.5f, SIZE * 0.5f, SIZE * 0.225f, Path.Direction.CCW); in PathView()
/frameworks/base/core/java/android/transition/
DPatternPathMotion.java23 import android.graphics.Path;
43 private Path mOriginalPatternPath;
45 private final Path mPatternPath = new Path();
64 Path pattern = PathParser.createPathFromPathData(pathData); in PatternPathMotion()
80 public PatternPathMotion(Path patternPath) { in PatternPathMotion()
92 public Path getPatternPath() { in getPatternPath()
104 public void setPatternPath(Path patternPath) { in setPatternPath()
132 public Path getPath(float startX, float startY, float endX, float endY) { in getPath()
141 Path path = new Path(); in getPath()
/frameworks/base/rs/java/android/renderscript/
DPath.java23 public class Path extends BaseObj { class
41 Path(long id, RenderScript rs, Primitive p, Allocation vtx, Allocation loop, float q) { in Path() method in Path
66 … public static Path createStaticPath(RenderScript rs, Primitive p, float quality, Allocation vtx) { in createStaticPath()
68 Path newPath = new Path(id, rs, p, null, null, quality); in createStaticPath()
72 …public static Path createStaticPath(RenderScript rs, Primitive p, float quality, Allocation vtx, A… in createStaticPath()
76 …public static Path createDynamicPath(RenderScript rs, Primitive p, float quality, Allocation vtx) { in createDynamicPath()
80 …public static Path createDynamicPath(RenderScript rs, Primitive p, float quality, Allocation vtx, … in createDynamicPath()
/frameworks/compile/mclinker/include/mcld/MC/
DSearchDirs.h44 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; } in setSysRoot()
56 const sys::fs::Path& sysroot() const { return m_SysRoot; } in sysroot()
69 bool insert(const sys::fs::Path& pDirectory);
73 sys::fs::Path m_SysRoot;
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/
DPathTest.java27 Path path = new Path(); in testResetPreservesFillType()
29 final Path.FillType defaultFillType = path.getFillType(); in testResetPreservesFillType()
30 final Path.FillType fillType = Path.FillType.INVERSE_EVEN_ODD; in testResetPreservesFillType()
/frameworks/base/graphics/java/android/graphics/drawable/shapes/
DRoundRectShape.java22 import android.graphics.Path;
38 private Path mPath; // this is what we actually draw
74 mPath = new Path(); in RoundRectShape()
112 mPath.addRoundRect(r, mOuterRadii, Path.Direction.CW); in onResize()
114 mPath.addRect(r, Path.Direction.CW); in onResize()
121 mPath.addRoundRect(mInnerRect, mInnerRadii, Path.Direction.CCW); in onResize()
123 mPath.addRect(mInnerRect, Path.Direction.CCW); in onResize()
136 shape.mPath = new Path(mPath); in clone()
DPathShape.java21 import android.graphics.Path;
30 private Path mPath;
48 public PathShape(Path path, float stdWidth, float stdHeight) { in PathShape()
71 shape.mPath = new Path(mPath); in clone()
/frameworks/rs/driver/
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/compile/mclinker/lib/Support/Windows/
DFileSystem.inc35 Path::StringType static_library_extension = ".a";
36 Path::StringType shared_library_extension = ".so";
37 Path::StringType executable_extension = ".exe";
38 Path::StringType relocatable_extension = ".o";
39 Path::StringType assembly_extension = ".s";
40 Path::StringType bitcode_extension = ".bc";
44 fs::Path file_filter(pDir.path());
72 int open(const Path& pPath, int pOFlag)
77 int open(const Path& pPath, int pOFlag, int pPerm)
144 void get_pwd(Path& pPWD)
/frameworks/base/core/java/android/view/animation/
DPathInterpolator.java22 import android.graphics.Path;
60 public PathInterpolator(Path path) { in PathInterpolator()
110 Path path = PathParser.createPathFromPathData(pathData); in parseInterpolatorFromTypeArray()
144 Path path = new Path(); in initQuad()
151 Path path = new Path(); in initCubic()
157 private void initPath(Path path) { in initPath()

1234567