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

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
HitRegion.h 10 #include "platform/graphics/Path.h"
28 Path path; member in struct:blink::HitRegionOptionsInternal
41 void removePixels(const Path&);
47 const Path& path() const { return m_path; } function in class:blink::FINAL
58 Path m_path;
Path2D.h 49 static PassRefPtrWillBeRawPtr<Path2D> create(Path2D* path) { return adoptRefWillBeNoop(new Path2D(path)); }
51 static PassRefPtrWillBeRawPtr<Path2D> create(const Path& path) { return adoptRefWillBeNoop(new Path2D(path)); }
53 const Path& path() const { return m_path; } function in class:blink::FINAL
55 void addPath(Path2D* path)
57 addPath(path, 0);
60 void addPath(Path2D* path, SVGMatrixTearOff* transform
    [all...]
  /external/chromium_org/ui/views/bubble/
bubble_window_targeter.cc 8 #include "ui/gfx/path.h"
24 gfx::Path* mask) const {
bubble_window_targeter.h 26 gfx::Path* mask) const OVERRIDE;
  /external/chromium_org/ui/views/
round_rect_painter.h 14 class Path;
  /external/jsoncpp/include/json/
forwards.h 28 class Path;
  /frameworks/base/core/java/android/gesture/
OrientedBoundingBox.java 20 import android.graphics.Path;
55 public Path toPath() {
56 Path path = new Path(); local
64 path.moveTo(point[0], point[1]);
69 path.lineTo(point[0], point[1]);
74 path.lineTo(point[0], point[1]);
79 path.lineTo(point[0], point[1]);
81 path.close()
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ClipRegion3Activity.java 22 import android.graphics.Path;
51 private final Path mClipPath = new Path();
63 mClipPath.addCircle(0.0f, 0.0f, getWidth() / 4.0f, Path.Direction.CW);
TextPathActivity.java 23 import android.graphics.Path;
61 Path path = new Path(); local
64 drawTextAsPath(canvas, "Hello", path);
67 drawTextAsPath(canvas, "OpenGL", path);
70 private void drawTextAsPath(Canvas canvas, String text, Path path) {
72 mHugePaint.getTextPath(text, 0, count, 0, 0, path);
73 path.close()
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
CameraShortcutImage.java 26 public CameraShortcutImage(Path path, GalleryApp application) {
27 super(path, application, R.drawable.placeholder_camera);
Clustering.java 24 public abstract ArrayList<Path> getCluster(int index);
EmptyAlbumImage.java 26 public EmptyAlbumImage(Path path, GalleryApp application) {
27 super(path, application, R.drawable.placeholder_empty);
UnlockImage.java 26 public UnlockImage(Path path, GalleryApp application) {
27 super(path, application, R.drawable.placeholder_locked);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/project/
ProjectHelperTest.java 21 import org.eclipse.core.runtime.Path;
48 // create a project with a path to an android .zip
51 Mocks.createClasspathEntry(new Path("Project/src"), //$NON-NLS-1$
53 Mocks.createClasspathEntry(new Path(OLD_CONTAINER_ID),
56 new Path("Project/bin"));
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PathEffects.java 35 private Path mPath;
100 private static Path makeFollowPath() {
101 Path p = new Path();
109 private static Path makePathDash() {
110 Path p = new Path();
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/fusefs/
fuse_fs.h 24 virtual Error OpenWithMode(const Path& path, int open_flags, mode_t mode,
26 virtual Error Unlink(const Path& path);
27 virtual Error Mkdir(const Path& path, int perm);
28 virtual Error Rmdir(const Path& path);
29 virtual Error Remove(const Path& path);
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/stream/
stream_fs.cc 87 Error StreamFs::OpenWithMode(const Path& path, int o_flags, mode_t mode,
92 Error StreamFs::Unlink(const Path& path) {
96 Error StreamFs::Mkdir(const Path& path, int permissions) {
100 Error StreamFs::Rmdir(const Path& path) {
104 Error StreamFs::Remove(const Path& path) {
    [all...]
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
http_fs_test.cc 85 ASSERT_EQ(EIO, fs_.Open(Path("/file"), O_RDONLY, &node));
99 ASSERT_EQ(0, fs_.Open(Path("/file"), O_RDONLY, &node));
129 ASSERT_EQ(0, fs_.Open(Path("/file"), O_RDONLY, &node));
153 ASSERT_EQ(0, fs_.Open(Path("/file"), O_WRONLY, &node));
168 ASSERT_EQ(0, fs_.Open(Path("/file"), O_RDONLY, &node));
185 ASSERT_EQ(0, fs_.Open(Path("/file"), O_RDWR, &node));
212 ASSERT_EQ(0, fs_.Open(Path("/file"), O_RDONLY, &node));
242 ASSERT_EQ(0, fs_.Open(Path("/file"), O_RDONLY, &node));
268 ASSERT_EQ(0, fs.Open(Path("/"), O_RDONLY, &node));
283 EXPECT_EQ(EEXIST, fs.Mkdir(Path("/"), 0))
    [all...]
  /frameworks/compile/mclinker/include/mcld/MC/
CommandAction.h 13 #include <mcld/Support/Path.h>
30 explicit InputFileAction(unsigned int pPosition, const sys::fs::Path &pPath);
32 const sys::fs::Path& path() const { return m_Path; } function in class:mcld::InputFileAction
37 sys::fs::Path m_Path;
61 BitcodeAction(unsigned int pPosition, const sys::fs::Path &pPath);
63 const sys::fs::Path& path() const { return m_Path; } function in class:mcld::BitcodeAction
68 sys::fs::Path m_Path;
  /cts/tests/tests/gesture/src/android/gesture/cts/
GestureStrokeTest.java 22 import android.graphics.Path;
44 // null path currently returned
53 Path emptyPath = emptyStroke.getPath();
63 Path linePath = lineStroke.getPath();
69 * for a single line, where the given toPath bounds exceeds the expected path.
74 // bound the path by the endpoint
75 Path linePath = lineStroke.toPath(LineGestureStrokeHelper.LINE_END_POINT,
86 * truncates the expected path.
91 // bound the path by the midpoint
92 Path linePath = lineStroke.toPath(LineGestureStrokeHelper.LINE_MIDWAY_POINT
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/Misc/
Stats.cs 41 using Path = System.IO.Path;
119 Directory.CreateDirectory( Path.GetDirectoryName( absoluteFilename ) );
126 return personalFolder + Path.DirectorySeparatorChar +
127 ANTLRWORKS_DIR + Path.DirectorySeparatorChar +
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
SelectionManager.java 23 import com.android.gallery3d.data.Path;
37 private Set<Path> mClickedSet;
49 public void onSelectionChange(Path path, boolean selected);
54 mClickedSet = new HashSet<Path>();
107 public boolean isItemSelected(Path itemId) {
130 public void toggle(Path path) {
131 if (mClickedSet.contains(path)) {
132 mClickedSet.remove(path);
    [all...]
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
PathClippingTests.java 6 import android.graphics.Path;
38 // draw circle with hole in it, by path operations + path clipping
49 Path path = new Path();
50 path.addCircle(30, 30, 50, Path.Direction.CW);
51 path.addCircle(30, 30, 30, Path.Direction.CCW)
    [all...]
  /developers/build/prebuilts/gradle/Interpolator/Application/src/main/java/com/example/android/interpolator/
InterpolatorFragment.java 20 import android.graphics.Path;
37 * This sample demonstrates the use of animation interpolators and path animations for
40 * view (scale X and Y) along a path.
66 * Path for in (shrinking) animation, from 100% scale to 20%.
68 private Path mPathIn;
70 * Path for out (growing) animation, from 20% to 100%.
72 private Path mPathOut;
102 // selected: the Interpolator, duration and animation path
111 // Animation path is based on whether animating in or out
112 Path path = mIsOut ? mPathIn : mPathOut
    [all...]
  /developers/samples/android/ui/Interpolator/Application/src/main/java/com/example/android/interpolator/
InterpolatorFragment.java 20 import android.graphics.Path;
37 * This sample demonstrates the use of animation interpolators and path animations for
40 * view (scale X and Y) along a path.
66 * Path for in (shrinking) animation, from 100% scale to 20%.
68 private Path mPathIn;
70 * Path for out (growing) animation, from 20% to 100%.
72 private Path mPathOut;
102 // selected: the Interpolator, duration and animation path
111 // Animation path is based on whether animating in or out
112 Path path = mIsOut ? mPathIn : mPathOut
    [all...]

Completed in 1743 milliseconds

1 2 3 45 6 7 8 91011>>