HomeSort by relevance Sort by last modified time
    Searched refs:Path (Results 1 - 25 of 229) sorted by null

1 2 3 4 5 6 7 8 910

  /external/webkit/WebCore/platform/graphics/haiku/
PathHaiku.cpp 29 #include "Path.h"
40 Path::Path()
45 Path::~Path()
50 Path::Path(const Path& other)
55 Path& Path::operator=(const Path& other
    [all...]
  /external/webkit/WebCore/platform/graphics/wince/
PathWince.cpp 21 #include "Path.h"
32 Path::Path()
37 Path::Path(const Path& other)
42 Path::~Path()
47 Path& Path::operator=(const Path& other
    [all...]
  /external/skia/src/svg/
SkSVGPath.h 24 DECLARE_SVG_INFO(Path);
  /external/webkit/WebCore/platform/graphics/wx/
PathWx.cpp 27 #include "Path.h"
50 Path::Path()
61 wxGraphicsPath path = renderer->CreatePath(); local
62 m_path = new wxGraphicsPath(path);
67 Path::~Path()
72 Path::Path(const Path& path
127 wxGraphicsPath path = renderer->CreatePath(); local
    [all...]
  /external/webkit/WebCore/svg/
SVGPolygonElement.h 34 virtual Path toPathData() const;
SVGPolylineElement.h 34 virtual Path toPathData() const;
SVGStyledTransformableElement.h 25 #include "Path.h"
56 virtual Path toPathData() const { return Path(); }
57 virtual Path toClipPath() const;
SVGPathSegList.h 31 class Path;
40 Path toPathData();
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PathFillTypes.java 40 private Path mPath;
47 mPath = new Path();
48 mPath.addCircle(40, 40, 45, Path.Direction.CCW);
49 mPath.addCircle(80, 80, 45, Path.Direction.CCW);
52 private void showPath(Canvas canvas, int x, int y, Path.FillType ft,
72 showPath(canvas, 0, 0, Path.FillType.WINDING, paint);
73 showPath(canvas, 160, 0, Path.FillType.EVEN_ODD, paint);
74 showPath(canvas, 0, 160, Path.FillType.INVERSE_WINDING, paint);
75 showPath(canvas, 160, 160, Path.FillType.INVERSE_EVEN_ODD, paint);
  /sdk/anttasks/src/com/android/ant/
ApkBuilderTask.java 27 import org.apache.tools.ant.types.Path;
49 private Path mDexPath;
51 private final ArrayList<Path> mZipList = new ArrayList<Path>();
52 private final ArrayList<Path> mFileList = new ArrayList<Path>();
53 private final ArrayList<Path> mSourceList = new ArrayList<Path>();
54 private final ArrayList<Path> mJarfolderList = new ArrayList<Path>();
145 Path path = new Path(getProject()); local
169 Path path = new Path(getProject()); local
178 Path path = new Path(getProject()); local
187 Path path = new Path(getProject()); local
196 Path path = new Path(getProject()); local
205 Path path = new Path(getProject()); local
    [all...]
AidlExecTask.java 24 import org.apache.tools.ant.types.Path;
36 * 'executable' ({@link Path} with a single path) for the location of the aidl executable<br>
37 * 'framework' ({@link Path} with a single path) for the "preprocessed" file containing all the
39 * 'genFolder' ({@link Path} with a single path) for the location of the gen folder.
41 * It also expects one or more inner elements called "source" which are identical to {@link Path}
49 private final ArrayList<Path> mPaths = new ArrayList<Path>();
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathTest.java 21 import android.graphics.Path;
29 @TestTargetClass(Path.class)
43 method = "Path",
48 method = "Path",
49 args = {android.graphics.Path.class}
53 // new the Path instance
54 new Path();
56 // another the Path instance with different params
57 new Path(new Path());
75 Path path = new Path(); local
98 Path path = new Path(); local
115 Path path = new Path(); local
133 Path path = new Path(); local
161 Path path = new Path(); local
187 Path path = new Path(); local
207 Path path = new Path(); local
242 Path path = new Path(); local
258 Path path = new Path(); local
278 Path path = new Path(); local
298 Path path = new Path(); local
318 Path path = new Path(); local
339 Path path = new Path(); local
355 Path path = new Path(); local
382 Path path = new Path(); local
417 Path path = new Path(); local
435 Path path = new Path(); local
449 Path path = new Path(); local
473 Path path = new Path(); local
489 Path path = new Path(); local
506 Path path = new Path(); local
535 Path path = new Path(); local
557 Path path = new Path(); local
579 Path path = new Path(); local
603 Path path = new Path(); local
625 Path path = new Path(); local
651 Path path = new Path(); local
664 Path path = new Path(); local
699 Path path = new Path(); local
729 Path path = new Path(); local
753 Path path = new Path(); local
773 Path path = new Path(); local
794 Path path = new Path(); local
    [all...]
PathMeasureTest.java 20 import android.graphics.Path;
33 private Path mPath;
38 mPath = new Path();
52 args = {android.graphics.Path.class, boolean.class}
59 Path path = new Path(); local
60 mPathMeasure = new PathMeasure(path, true);
63 mPathMeasure = new PathMeasure(path, false);
86 mPath.addRect(1f, 2f, 3f, 4f, Path.Direction.CW)
    [all...]
PathDashPathEffectTest.java 27 import android.graphics.Path;
31 import android.graphics.Path.Direction;
46 args = {android.graphics.Path.class, float.class, float.class,
58 canvas.drawPath(path(), p); method
83 private static Path path() { method in class:PathDashPathEffectTest
84 Path p = new Path();
90 private static Path shape() {
91 Path p = new Path()
    [all...]
Path_DirectionTest.java 19 import android.graphics.Path;
20 import android.graphics.Path.Direction;
26 @TestTargetClass(Path.Direction.class)
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PathList.java 37 public class PathList extends SIPHeaderList<Path> {
42 super(Path.class, PathHeader.NAME);
  /external/webkit/WebCore/platform/graphics/
Path.h 98 class Path : public FastAllocBase {
100 Path();
101 ~Path();
103 Path(const Path&);
104 Path& operator=(const Path&);
106 void swap(Path& other) { std::swap(m_path, other.m_path); }
119 // Gets the current point of the current path, which is conceptually the final point reached by the path so far
    [all...]
  /external/webkit/WebCore/platform/graphics/skia/
PathSkia.cpp 31 #include "Path.h"
46 Path::Path()
51 Path::Path(const Path& other)
56 Path::~Path()
61 Path& Path::operator=(const Path& other
    [all...]
  /external/webkit/WebCore/html/
HTMLAreaElement.h 34 class Path;
45 Path getPath(RenderObject*) const;
69 Path getRegion(const IntSize&) const;
71 OwnPtr<Path> m_region;
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
PathShape.java 21 import android.graphics.Path;
24 * Creates geometric paths, utilizing the {@link android.graphics.Path} class.
25 * The path can be drawn to a Canvas with its own draw() method,
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) {
49 mPath = path;
71 shape.mPath = new Path(mPath)
    [all...]
RoundRectShape.java 21 import android.graphics.Path;
37 private Path mPath; // this is what we actually draw
75 mPath = new Path();
91 mPath.addRoundRect(r, mOuterRadii, Path.Direction.CW);
93 mPath.addRect(r, Path.Direction.CW);
101 Path.Direction.CCW);
103 mPath.addRect(mInnerRect, Path.Direction.CCW);
116 shape.mPath = new Path(mPath);
  /external/webkit/WebCore/rendering/
RenderSVGTextPath.h 36 Path layoutPath() const;
49 Path m_layoutPath;
RenderSVGTextPath.cpp 46 Path RenderSVGTextPath::layoutPath() const
52 return Path();
56 Path pathData = pathElement->toPathData();
57 // Spec: The transform attribute on the referenced 'path' element represents a
  /external/webkit/WebCore/platform/graphics/cg/
PathCG.cpp 28 #include "Path.h"
68 Path::Path()
73 Path::~Path()
78 Path::Path(const Path& other)
83 Path& Path::operator=(const Path& other
85 CGMutablePathRef path = CGPathCreateMutableCopy(other.m_path); local
93 CGMutablePathRef path = static_cast<CGMutablePathRef>(info); local
119 CGMutablePathRef path = CGPathCreateMutable(); local
351 CGMutablePathRef path = CGPathCreateMutable(); local
    [all...]
  /external/webkit/WebCore/platform/graphics/android/
PathAndroid.cpp 27 #include "Path.h"
42 Path::Path()
48 Path::Path(const Path& other)
53 Path::~Path()
58 Path& Path::operator=(const Path& other
337 const SkPath* path = context->getCurrPath(); local
    [all...]

Completed in 2920 milliseconds

1 2 3 4 5 6 7 8 910