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

1 2 3 45 6 7 8 910

  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
RoundRects.java 38 private Path mPath;
47 mPath = new Path();
ShapeDrawable1.java 89 Path path = new Path(); local
90 path.moveTo(50, 0);
91 path.lineTo(0, 50);
92 path.lineTo(50, 100);
93 path.lineTo(100, 50);
94 path.close();
105 mDrawables[5] = new ShapeDrawable(new PathShape(path, 100, 100));
TextAlign.java 41 private Path mPath;
49 private static final String TEXTONPATH = "Along a path";
51 private static void makePath(Path p) {
82 mPath = new Path();
139 // now draw the text on path
  /external/webkit/WebCore/svg/
SVGClipPathElement.cpp 129 Path pathData = styled->toClipPath();
135 Path pathData;
SVGEllipseElement.cpp 116 Path SVGEllipseElement::toPathData() const
118 return Path::createEllipse(FloatPoint(cx().value(this), cy().value(this)),
SVGGlyphElement.cpp 102 static inline Path parsePathData(const AtomicString& value)
104 Path result;
SVGLineElement.cpp 112 Path SVGLineElement::toPathData() const
114 return Path::createLine(FloatPoint(x1().value(this), y1().value(this)),
SVGGlyphElement.h 29 #include "Path.h"
100 Path pathData;
SVGUseElement.h 64 virtual Path toClipPath() const;
SVGPathSegList.cpp 30 #include "Path.h"
58 // FIXME: Eventually this will likely move to a "path applier"-like model, until then PathTraversalState is less useful as we could just use locals
90 ASSERT(false); // FIXME: This only works with normalized/processed path data.
101 return 0; // The SVG spec is unclear as to what to return when the distance is not on the path
104 Path SVGPathSegList::toPathData()
107 Path pathData;
113 return Path();
139 ASSERT(false); // FIXME: This only works with normalized/processed path data.
  /external/webkit/WebCore/svg/graphics/
SVGResourceClipper.cpp 75 FloatRect clipPathRect = clipData.path.boundingRect();
101 Path clipPath = clipData.path;
119 void SVGResourceClipper::addClipData(const Path& path, WindRule rule, bool bboxUnits)
121 m_clipData.addPath(path, rule, bboxUnits);
155 ts << " [path=" << d.path.debugString() << "]";
  /development/samples/ApiDemos/src/com/example/android/apis/os/
Sensors.java 31 import android.graphics.Path;
59 private Path mPath = new Path();
110 final Path path = mPath; local
144 canvas.drawPath(path, paint);
163 canvas.drawPath(path, paint);
  /external/webkit/WebKit/scripts/
generate-webkitversion.pl 41 use File::Path;
  /external/webkit/WebCore/platform/graphics/haiku/
GraphicsContextHaiku.cpp 37 #include "Path.h"
193 void GraphicsContext::addPath(const Path& path)
207 void GraphicsContext::drawFocusRing(const Vector<Path>& paths, int width, int offset, const Color& color)
368 void GraphicsContext::clip(const Path& path)
373 m_data->m_view->ConstrainClippingRegion(path.platformPath());
376 void GraphicsContext::canvasClip(const Path& path)
378 clip(path);
    [all...]
  /external/webkit/WebCore/platform/graphics/
GraphicsContext.h 35 #include "Path.h"
58 // wxGraphicsContext allows us to support Path, etc.
130 class Path;
215 // may return NULL, since we lazily allocate the path. This is the path
306 void drawFocusRing(const Vector<Path>&, int width, int offset, const Color&);
323 void addPath(const Path&);
325 void clip(const Path&);
330 void canvasClip(const Path&);
331 void clipOut(const Path&)
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
LayoutTest.java 22 import android.graphics.Path;
107 args = {android.graphics.Canvas.class, android.graphics.Path.class,
126 layout.draw(new Canvas(bitmap), new Path(), new Paint(), 2);
518 args = {int.class, android.graphics.Path.class, java.lang.CharSequence.class}
526 layout.getCursorPath(0, new Path(), "test");
535 args = {int.class, int.class, android.graphics.Path.class}
542 Path path = new Path(); local
544 layout.getSelectionPath(0, 0, path);
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
NameMap.java 197 putNameMap(Path.NAME, Path.class.getName());
  /external/jdiff/src/jdiff/
JDiffAntTask.java 18 import org.apache.tools.ant.types.Path;
35 System.getProperty("path.separator") +
115 jd.setDocletPath(new Path(project, jdiffClassPath));
152 jd.setDocletPath(new Path(project, jdiffClassPath));
253 jd.setSourcepath(new Path(project, dirSet.getDir(project).toString()));
  /external/webkit/WebCore/platform/graphics/openvg/
GraphicsContextOpenVG.cpp 199 void GraphicsContext::addPath(const Path& path)
402 void GraphicsContext::clip(const Path& path)
408 UNUSED_PARAM(path);
411 void GraphicsContext::canvasClip(const Path& path)
413 clip(path);
416 void GraphicsContext::clipOut(const Path& path)
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
GradientDrawable.java 30 import android.graphics.Path;
122 private final Path mPath = new Path();
128 private Path mRingPath;
317 Path.Direction.CW);
353 Path path = buildRing(st); field in class:GradientDrawable
354 canvas.drawPath(path, mFillPaint);
356 canvas.drawPath(path, mStrokePaint);
371 private Path buildRing(GradientState st)
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
HighlightView.java 24 import android.graphics.Path;
82 Path path = new Path(); local
92 path.addCircle(mDrawRect.left + (width / 2),
95 Path.Direction.CW);
98 path.addRect(new RectF(mDrawRect), Path.Direction.CW);
101 canvas.clipPath(path, Region.Op.DIFFERENCE);
106 canvas.drawPath(path, mOutlinePaint)
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
HighlightView.java 22 import android.graphics.Path;
79 Path path = new Path(); local
89 path.addCircle(mDrawRect.left + (width / 2), mDrawRect.top + (height / 2), width / 2, Path.Direction.CW);
92 path.addRect(new RectF(mDrawRect), Path.Direction.CW);
95 canvas.clipPath(path, Region.Op.DIFFERENCE);
99 canvas.drawPath(path, mOutlinePaint)
    [all...]
  /frameworks/base/core/java/android/gesture/
GestureOverlayView.java 23 import android.graphics.Path;
88 private final Path mPath = new Path();
288 final Path path = mCurrentGesture.toPath(); local
290 path.computeBounds(bounds, true);
292 // TODO: The path should also be scaled to fit inside this view
294 mPath.addPath(path, -bounds.left + (getWidth() - bounds.width()) / 2.0f,
302 public Path getGesturePath() {
306 public Path getGesturePath(Path path)
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
RegionTest.java 19 import android.graphics.Path;
1541 Path path = new Path(); local
1555 Path path = new Path(); local
1586 Path path = new Path(); local
    [all...]
  /external/chromium/net/base/
cookie_monster.h 169 // Delete any cookies that are equivalent to |ecc| (same path, key, etc).
250 // Construct from a cookie string like "BLAH=1; path=/; domain=.google.com"
262 const std::string& Path() const { return pairs_[path_index_].second; }
273 // "BLAH=hah; path=/; domain=.google.com"
305 const std::string& path,
314 path_(path),
327 const std::string& Path() const { return path_; }
341 // This says that the domain and path should string match identically.
345 return name_ == ecc.Name() && path_ == ecc.Path();

Completed in 929 milliseconds

1 2 3 45 6 7 8 910