HomeSort by relevance Sort by last modified time
    Searched refs:Path (Results 301 - 325 of 531) sorted by null

<<11121314151617181920>>

  /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...]
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 47 #include "Path.h"
153 OwnPtr<cairo_path_t> path(cairo_copy_path(cairoContext));
177 cairo_append_path(shadowContext, path.get());
538 void GraphicsContext::fillPath(const Path& path)
544 setPathOnCairoContext(cr, path.platformPath()->context());
548 void GraphicsContext::strokePath(const Path& path)
554 setPathOnCairoContext(cr, path.platformPath()->context());
596 void GraphicsContext::clipPath(const Path& path, WindRule clipRule
685 Path path; local
1135 Path path; local
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PaintTest.java 31 import android.graphics.Path;
797 args = {android.graphics.Path.class, android.graphics.Path.class}
801 Path path1 = new Path();
802 Path path2 = new Path();
    [all...]
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/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 36 #include "Path.h"
308 Path path;
309 path.addEllipse(rect);
310 drawPath(path);
402 static void addConvexPolygonToPath(Path& path, size_t numberOfPoints, const FloatPoint* points)
406 path.moveTo(points[0]);
408 path.addLineTo(points[i]);
409 path.closeSubpath()
425 Path path; local
446 Path path; local
776 Path path; local
795 Path path; local
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGPathElement.cpp 67 Path path; local
68 toPathData(path);
69 return path.length();
76 Path path; local
77 toPathData(path);
78 return path.pointAtLength(length, ok);
193 document()->accessSVGExtensions()->reportError("A negative value for path attribute <pathLength> is not allowed");
301 // FIXME: https://bugs.webkit.org/show_bug.cgi?id=15412 - Implement normalized path segment lists
    [all...]
SVGStyledTransformableElement.cpp 129 // By default, any subclass is expected to do path-based drawing
140 void SVGStyledTransformableElement::toClipPath(Path& path) const
142 toPathData(path);
144 path.transform(animatedLocalTransform());
  /external/chromium/chrome/browser/ui/gtk/tabs/
tab_gtk.h 16 class Path;
  /external/chromium/chrome/browser/ui/views/autocomplete/
autocomplete_popup_contents_view.h 122 // Fill a path for the contents' roundrect. |bounding_rect| is the rect that
123 // bounds the path.
124 void MakeContentsPath(gfx::Path* path, const gfx::Rect& bounding_rect);
  /external/chromium/chrome/browser/ui/views/bubble/
bubble.h 36 class Path;
  /external/chromium/chrome/browser/ui/views/frame/
opaque_browser_frame_view.h 79 virtual void GetWindowMask(const gfx::Size& size, gfx::Path* window_mask)
  /external/icu4c/tools/genpname/
gensvpa.pl 24 use File::Path;
  /external/llvm/include/llvm/Support/
PathV2.h 1 //===- llvm/Support/PathV2.h - Path Operating System Concept ----*- C++ -*-===//
10 // This file declares the llvm::sys::path namespace. It is designed after
12 // path class.
26 namespace path { namespace in namespace:llvm::sys
31 /// @brief Path iterator.
34 /// components in \a path. The forward traversal order is as follows:
50 StringRef Path; //< The entire path.
51 StringRef Component; //< The current component. Not necessarily in Path.
52 size_t Position; //< The iterators current position within Path
    [all...]
  /external/llvm/lib/Archive/
ArchiveWriter.cpp 69 Archive* Archive::CreateEmpty(const sys::Path& FilePath, LLVMContext& C) {
158 Archive::addFileBefore(const sys::Path& filePath, iterator where,
170 mbr->path = filePath;
171 const sys::FileStatus *FSInfo = mbr->path.getFileStatus(false, ErrMsg);
186 if (sys::fs::identify_magic(mbr->path.str(), type))
364 sys::Path TmpArchive = archPath;
414 sys::Path FinalFilePath = archPath;
482 // to final destination path.
  /external/llvm/tools/llvm-link/
llvm-link.cpp 27 #include "llvm/Support/Path.h"
53 // searches the link path for the specified file to try to find it...
58 sys::Path Filename;
  /external/webkit/Source/WebCore/rendering/svg/
SVGMarkerLayoutInfo.cpp 68 FloatRect SVGMarkerLayoutInfo::calculateBoundaries(RenderSVGResourceMarker* startMarker, RenderSVGResourceMarker* midMarker, RenderSVGResourceMarker* endMarker, float strokeWidth, const Path& path)
75 path.apply(this, processStartAndMidMarkers);
  /external/webkit/Tools/Scripts/
run-javascriptcore-tests 66 --root= Path to pre-built root containing jsc
119 my $path = testapiPath($productDir);
120 # Use an "indirect object" so that system() won't get confused if the path
122 my $testapiResult = system { $path } $path;
sunspider-compare-results 51 --root Path to root tools build
100 my $path = "/System/Library/Frameworks/JavaScriptCore.framework/Resources/jsc";
101 if (-f $path) {
102 return $path;
109 my $path = pathToSystemJSC();
110 return $path if defined $path;
update-webkit 37 use File::Path;
  /frameworks/base/core/java/android/view/
GLES20RecordingCanvas.java 23 import android.graphics.Path;
189 public void drawPath(Path path, Paint paint) {
190 super.drawPath(path, paint);
273 public void drawTextOnPath(char[] text, int index, int count, Path path, float hOffset,
275 super.drawTextOnPath(text, index, count, path, hOffset, vOffset, paint);
280 public void drawTextOnPath(String text, Path path, float hOffset, float vOffset, Paint paint) {
281 super.drawTextOnPath(text, path, hOffset, vOffset, paint)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
TimeClustering.java 107 s.path = item.getPath();
160 public ArrayList<Path> getCluster(int index) {
162 ArrayList<Path> result = new ArrayList<Path>(items.size());
164 result.add(items.get(i).path);
340 Path path; field in class:SmallItem
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
RenderScriptProcessor.java 43 import org.eclipse.core.runtime.Path;
63 * Single line llvm-rs-cc error: {@code <path>:<line>:<col>: <error>}
80 // We know we are in the gen folder, so make a path to the dependency file
145 new Path(SdkConstants.FD_RES).append(AndroidConstants.FD_RES_RAW));
187 // make a path to the source file relative to the source folder.
203 // get the path of the source file.
323 // get the file path. This may, or may not be the main file being compiled.
334 // remove starting separator since we want the path to be relative
340 IFile f = project.getFile(new Path(filePath));
417 // make a path to the source file relative to the source folder
    [all...]
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/
TreeViewOverview.java 36 import org.eclipse.swt.graphics.Path;
218 Path connectionPath = new Path(Display.getDefault());
242 private void paintRecursive(GC gc, DrawableViewNode node, Path connectionPath) {
  /external/clang/lib/Sema/
SemaAccess.cpp 587 /// The path down to the current base class.
598 /// Check classes in the current path for friendship, starting at
615 /// along the current path such that a notional public member of
616 /// the final class in the path would have access in that class.
618 // If we ever reach the naming class, check the current path for
677 /// along some path not passing through NamingClass. Allowing that
799 /// Finds the best path from the naming class to the declaring class,
825 /// Along a single inheritance path we can restate both of these
833 /// Let B_1 .. B_n be the inheritance path in question (i.e. where
836 /// closest accessible base in the path
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
FingerPaint.java 65 private Path mPath;
71 mPath = new Path();
111 // commit the path to our offscreen

Completed in 1103 milliseconds

<<11121314151617181920>>