Searched refs:Path (Results 51 - 75 of 145) sorted by relevance

123456

/frameworks/base/core/java/android/text/style/
H A DBulletSpan.java21 import android.graphics.Path;
22 import android.graphics.Path.Direction;
35 private static Path sBulletPath = null;
97 sBulletPath = new Path();
/frameworks/compile/mclinker/include/mcld/MC/
H A DInputBuilder.h57 const sys::fs::Path& pPath,
62 const sys::fs::Path& pPath,
106 const sys::fs::Path& pPath,
121 const sys::fs::Path& pPath,
H A DMCLDDirectory.h37 void setSysroot(const sys::fs::Path& pPath);
H A DInputFactory.h27 * \see llvm::sys::Path
41 const sys::fs::Path& pPath,
/frameworks/base/core/java/android/gesture/
H A DGesture.java22 import android.graphics.Path;
125 public Path toPath() {
129 public Path toPath(Path path) {
130 if (path == null) path = new Path();
142 public Path toPath(int width, int height, int edge, int numSample) {
146 public Path toPath(Path path, int width, int height, int edge, int numSample) {
147 if (path == null) path = new Path();
204 Path pat
[all...]
H A DGestureStroke.java21 import android.graphics.Path;
42 private Path mCachedPath;
113 public Path getPath() {
125 Path path = null;
134 path = new Path();
153 * Converts the stroke to a Path of a given number of points.
161 public Path toPath(float width, float height, int numSample) {
175 Path path = null;
183 path = new Path();
/frameworks/base/core/java/android/view/animation/
H A DPathInterpolator.java22 import android.graphics.Path;
30 * An interpolator that can traverse a Path that extends from <code>Point</code>
31 * <code>(0, 0)</code> to <code>(1, 1)</code>. The x coordinate along the <code>Path</code>
33 * This means that the Path must conform to a function <code>y = f(x)</code>.
35 * <p>The <code>Path</code> must not have gaps in the x direction and must not
39 * Path path = new Path();
47 // This governs how accurate the approximation of the Path is.
55 * Create an interpolator for an arbitrary <code>Path</code>. The <code>Path</cod
[all...]
/frameworks/compile/mclinker/lib/MC/
H A DInput.cpp43 const sys::fs::Path& pPath,
58 const sys::fs::Path& pPath,
H A DInputFactory.cpp35 const sys::fs::Path& pPath,
/frameworks/compile/mclinker/tools/mcld/include/mcld/
H A DPositionalOptions.h13 #include <mcld/Support/Path.h>
51 llvm::cl::list<mcld::sys::fs::Path>& m_InputObjectFiles;
/frameworks/compile/mclinker/unittests/
H A DFragmentRefTest.cpp16 #include <mcld/Support/Path.h>
47 Path path(TOPDIR);
H A DLinkerTest.cpp19 #include <mcld/Support/Path.h>
90 Path search_dir(TOPDIR);
106 Path crtbegin(search_dir);
111 Path plasma(TOPDIR);
122 Path crtend(search_dir);
148 Path search_dir(TOPDIR);
164 Path crtbegin(search_dir);
169 Path plasma(TOPDIR);
180 Path crtend(search_dir);
245 Path search_di
[all...]
H A DUniqueGCFactoryBaseTest.cpp12 #include <mcld/Support/Path.h>
74 sys::fs::Path path1(TOPDIR), path2(TOPDIR);
/frameworks/rs/driver/
H A DrsdPath.cpp65 static void cleanup(const Context *rsc, const Path *m) {
72 bool rsdPathInitStatic(const Context *rsc, const Path *m,
83 bool rsdPathInitDynamic(const Context *rsc, const Path *m) {
88 void rsdPathDraw(const Context *rsc, const Path *m) {
98 void rsdPathDestroy(const Context *rsc, const Path *m) {
/frameworks/base/graphics/java/android/graphics/
H A DPath.java20 * The Path class encapsulates compound (multiple contour) geometric paths
26 public class Path { class
45 public Path() { method in class:Path
54 public Path(Path src) { method in class:Path
94 public void set(Path src) {
104 * @see #op(Path, android.graphics.Path.Op)
105 * @see #op(Path, Path, androi
[all...]
H A DRegion.java112 public boolean setPath(Path path, Region clip) {
153 * Return the boundary of the region as a new Path. If the region is empty,
156 public Path getBoundaryPath() {
157 Path path = new Path();
166 public boolean getBoundaryPath(Path path) {
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DClearActivity.java25 import android.graphics.Path;
43 private final Path mPath;
58 mPath = new Path();
H A DScaledPathsActivity.java23 import android.graphics.Path;
39 private final Path mPath;
51 mPath = new Path();
H A DViewLayersActivity5.java24 import android.graphics.Path;
52 private final Path mClipPath = new Path();
77 Math.min(getWidth(), getHeight()) / 3.0f, Path.Direction.CW);
/frameworks/base/core/java/android/transition/
H A DArcMotion.java22 import android.graphics.Path;
88 * @param angleInDegrees The minimum angle of the arc on a circle describing the Path
120 * @param angleInDegrees The minimum angle of the arc on a circle describing the Path
137 * @return The minimum angle of the arc on a circle describing the Path
151 * @param angleInDegrees The maximum angle of the arc on a circle describing the Path
166 * @return The maximum angle of the arc on a circle describing the Path
182 public Path getPath(float startX, float startY, float endX, float endY) {
199 Path path = new Path();
/frameworks/compile/mclinker/include/mcld/
H A DLinkerScript.h69 const sys::fs::Path& sysroot() const;
71 void setSysroot(const sys::fs::Path &pPath);
/frameworks/compile/mclinker/lib/Support/
H A DAndroid.mk13 Path.cpp \
H A DMemoryAreaFactory.cpp26 MemoryArea* MemoryAreaFactory::produce(const sys::fs::Path& pPath,
40 MemoryArea* MemoryAreaFactory::produce(const sys::fs::Path& pPath,
H A DCommandLine.cpp61 // parser<mcld::sys::fs::Path>
63 bool parser<mcld::sys::fs::Path>::parse(llvm::cl::Option &O,
66 mcld::sys::fs::Path &Val)
72 void parser<mcld::sys::fs::Path>::printOptionDiff(const llvm::cl::Option &O,
73 const mcld::sys::fs::Path &V,
74 parser<mcld::sys::fs::Path>::OptVal Default,
89 void parser<mcld::sys::fs::Path>::anchor()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DBatteryMeterView.java27 import android.graphics.Path;
66 private final Path mBoltPath = new Path();
72 private final Path mShapePath = new Path();
73 private final Path mClipPath = new Path();
74 private final Path mTextPath = new Path();
392 mShapePath.op(mBoltPath, Path
[all...]

Completed in 809 milliseconds

123456