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

123456789

/frameworks/compile/mclinker/lib/Support/
H A DPath.cpp1 //===- Path.cpp -----------------------------------------------------------===//
9 #include "mcld/Support/Path.h"
34 const Path::StringType separator_str("/");
41 const Path::StringType separator_str("/");
47 // Path
49 Path::Path() : m_PathName() { function in class:mcld::sys::fs::Path
52 Path::Path(const Path function in class:mcld::sys::fs::Path
55 Path::Path(const Path::StringType& s) : m_PathName(s) { function in class:mcld::sys::fs::Path
58 Path::Path(const Path& pCopy) : m_PathName(pCopy.m_PathName) { function in class:mcld::sys::fs::Path
[all...]
H A DRealPath.cpp18 RealPath::RealPath() : Path() {
21 RealPath::RealPath(const RealPath::ValueType* s) : Path(s) {
25 RealPath::RealPath(const RealPath::StringType& s) : Path(s) {
29 RealPath::RealPath(const Path& pPath) : Path(pPath) {
36 RealPath& RealPath::assign(const Path& pPath) {
37 Path::m_PathName.assign(pPath.native());
45 Path path_name;
/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
40 /** \class Path
41 * \brief Path provides an abstraction for the path to a file or directory in
44 class Path { class in namespace:mcld::sys::fs
50 Path();
51 explicit Path(const ValueType* s);
52 explicit Path(const StringType& s);
53 Path(const Path
[all...]
H A DFileSystem.h69 class Path;
73 bool exists(const Path& pPath);
74 bool is_directory(const Path& pPath);
78 extern Path::StringType static_library_extension;
79 extern Path::StringType shared_library_extension;
80 extern Path::StringType executable_extension;
81 extern Path::StringType relocatable_extension;
82 extern Path::StringType assembly_extension;
83 extern Path::StringType bitcode_extension;
85 size_t canonicalize(Path
[all...]
H A DRealPath.h11 #include "mcld/Support/Path.h"
23 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);
/frameworks/base/apct-tests/perftests/core/src/android/graphics/perftests/
H A DPathPerfTest.java19 import android.graphics.Path;
36 Path path = new Path();
45 Path path = new Path();
47 path.addRect(0, 0, 100, 100, Path.Direction.CW);
55 Path path = new Path();
64 Path path = new Path();
[all...]
/frameworks/base/core/tests/coretests/src/android/graphics/
H A DPathTest.java28 Path path = new Path();
30 final Path.FillType defaultFillType = path.getFillType();
31 final Path.FillType fillType = Path.FillType.INVERSE_EVEN_ODD;
H A DPathOffsetTest.java21 import android.graphics.Path.Direction;
44 Path actualPath = new Path();
50 Path expectedPath = new Path();
60 Path initialPath = new Path();
62 Path actualPath = new Path();
68 Path expectedPat
[all...]
/frameworks/support/transition/tests/src/android/support/transition/
H A DPatternPathMotionTest.java21 import android.graphics.Path;
35 Path pattern = new Path();
42 Path expected = new Path();
52 Path pattern = new Path();
59 Path expected = new Path();
68 Path patter
[all...]
/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...]
/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.java21 import android.graphics.Path;
29 * A PathMotion that takes a Path pattern and applies it to the separation between two points.
30 * The starting point of the Path will be moved to the origin and the end point will be scaled
41 private Path mOriginalPatternPath;
43 private final Path mPatternPath = new Path();
62 Path pattern = PathParser.createPathFromPathData(pathData);
71 * Creates a PatternPathMotion with the Path defining a pattern of motion between two
76 * @param patternPath A Path to be used as a pattern for two-dimensional motion.
78 public PatternPathMotion(Path patternPat
[all...]
/frameworks/compile/mclinker/include/mcld/MC/
H A DContextFactory.h14 #include "mcld/Support/Path.h"
31 class ContextFactory : public UniqueGCFactoryBase<sys::fs::Path, LDContext, 0> {
37 LDContext* produce(const sys::fs::Path& pPath);
H A DSearchDirs.h13 #include "mcld/Support/Path.h"
44 explicit SearchDirs(const sys::fs::Path& pSysRoot);
49 sys::fs::Path* find(const std::string& pNamespec,
52 const sys::fs::Path* find(const std::string& pNamespec,
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/support/transition/base/android/support/transition/
H A DObjectAnimatorUtilsImpl.java20 import android.graphics.Path;
26 <T> ObjectAnimator ofPointF(T target, Property<T, PointF> property, Path path);
H A DPropertyValuesHolderUtilsImpl.java20 import android.graphics.Path;
26 PropertyValuesHolder ofPointF(Property<?, PointF> property, Path path);
/frameworks/support/transition/src/android/support/transition/
H A DPathMotion.java20 import android.graphics.Path;
24 * This base class can be extended to provide motion along a Path to Transitions.
50 * Provide a Path to interpolate between two points <code>(startX, startY)</code> and
57 * @return A Path along which the points should be interpolated. The returned Path
59 * {@link android.graphics.Path#moveTo(float, float)} and end at <code>(endX, endY)</code>.
61 public abstract Path getPath(float startX, float startY, float endX, float endY);
H A DPatternPathMotion.java22 import android.graphics.Path;
31 * A PathMotion that takes a Path pattern and applies it to the separation between two points.
32 * 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();
65 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/compile/mclinker/unittests/
H A DPathTest.cpp21 m_pTestee = new Path();
47 m_pTestee = new Path(root);
57 m_pTestee = new Path(root);
67 m_pTestee = new Path(root);
78 m_pTestee = new Path(root);
87 Path* p2 = new Path("ccc///////");
92 m_pTestee = new Path(root);
99 Path* p2 = new Path("aa
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/shapes/
H A DPathShape.java22 import android.graphics.Path;
25 * Creates geometric paths, utilizing the {@link android.graphics.Path} class.
35 private Path mPath;
43 * @param path a Path that defines the geometric paths for this shape
51 public PathShape(@NonNull Path path, float stdWidth, float stdHeight) {
74 shape.mPath = new Path(mPath);
/frameworks/compile/mclinker/lib/MC/
H A DContextFactory.cpp18 : UniqueGCFactoryBase<sys::fs::Path, LDContext, 0>(pNum) {
24 LDContext* ContextFactory::produce(const sys::fs::Path& pPath) {
27 result = UniqueGCFactoryBase<sys::fs::Path, LDContext, 0>::allocate();
35 return produce(sys::fs::Path(pPath));
/frameworks/support/compat/ics/android/support/v4/view/animation/
H A DPathInterpolatorApi14.java19 import android.graphics.Path;
29 * Governs the accuracy of the approximation of the {@link Path}.
36 PathInterpolatorApi14(Path path) {
98 private static Path createQuad(float controlX, float controlY) {
99 final Path path = new Path();
105 private static Path createCubic(float controlX1, float controlY1,
107 final Path path = new Path();
/frameworks/support/transition/api14/android/support/transition/
H A DPropertyValuesHolderUtilsApi14.java20 import android.graphics.Path;
29 public PropertyValuesHolder ofPointF(Property<?, PointF> property, Path path) {
/frameworks/support/transition/api21/android/support/transition/
H A DObjectAnimatorUtilsApi21.java20 import android.graphics.Path;
29 public <T> ObjectAnimator ofPointF(T target, Property<T, PointF> property, Path path) {
H A DPropertyValuesHolderUtilsApi21.java20 import android.graphics.Path;
29 public PropertyValuesHolder ofPointF(Property<?, PointF> property, Path path) {

Completed in 9825 milliseconds

123456789