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

1 2 3 45 6 7 8 91011>>

  /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);
DataManager.java 49 // path. And it's used to identify a specific media set even if the process is
75 // This is the path for the media set seen by the user at top level.
157 // MediaObject object = peekMediaObject(path);
162 public MediaObject peekMediaObject(Path path) {
163 return path.getObject();
166 public MediaObject getMediaObject(Path path) {
168 MediaObject obj = path.getObject();
171 MediaSource source = mSourceMap.get(path.getPrefix())
225 Path path = list.get(i); local
271 Path path = source.findPathByUri(uri, type); local
358 Path path = findPathByUri(uri, null); local
    [all...]
  /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();
  /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;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderDetailsMarker.cpp 39 static Path createPath(const FloatPoint* path)
41 Path result;
42 result.moveTo(FloatPoint(path[0].x(), path[0].y()));
44 result.addLineTo(FloatPoint(path[i].x(), path[i].y()));
48 static Path createDownArrowPath()
54 static Path createUpArrowPath()
60 static Path createLeftArrowPath(
    [all...]
  /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...]
  /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...]
  /development/samples/browseable/Interpolator/src/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...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/passthroughfs/
passthrough_fs.cc 135 Error PassthroughFs::Access(const Path& path, int a_mode) {
140 Error PassthroughFs::Open(const Path& path, int mode, ScopedNode* out_node) {
143 int error = _real_open(path.Join().c_str(), mode, 0666, &real_fd);
151 Error PassthroughFs::OpenResource(const Path& path, ScopedNode* out_node) {
154 int error = _real_open_resource(path.Join().c_str(), &real_fd);
162 Error PassthroughFs::Unlink(const Path& path) {
    [all...]
  /external/chromium_org/chrome/browser/ui/views/
dropdown_bar_host.cc 15 #include "ui/gfx/path.h"
22 using gfx::Path;
230 const Path::Point polygon[] = {
245 Path path(polygon, arraysize(polygon));
246 gfx::ScopedSkRegion region(path.CreateNativeRegion());
260 Path animation_path;
266 region.Set(Path::IntersectRegions(animation_region.Get(), region.Get()));
271 Path::Point left_curve[] = {
274 Path::Point right_curve[] =
    [all...]
  /external/chromium_org/content/browser/fileapi/
native_file_util_unittest.cc 29 base::FilePath Path() {
30 return data_dir_.path();
33 base::FilePath Path(const char* file_name) {
34 return data_dir_.path().AppendASCII(file_name);
37 bool FileExists(const base::FilePath& path) {
38 return base::PathExists(path) &&
39 !base::DirectoryExists(path);
42 int64 GetSize(const base::FilePath& path) {
44 base::GetFileInfo(path, &info);
55 base::FilePath file_name = Path("test_file")
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/
PathShapeTest.java 23 import android.graphics.Path;
37 new PathShape(new Path(), 1f, 5f);
39 new PathShape(new Path(), -1f, -1f);
48 Path path = new Path(); local
49 path.moveTo(50, 0);
50 path.lineTo(0, 50);
51 path.lineTo(50, 100);
52 path.lineTo(100, 50)
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Outline.java 34 public Path mPath;
123 mPath = new Path();
192 if (mPath == null) mPath = new Path();
194 mPath.addOval(left, top, right, bottom, Path.Direction.CW);
207 * {@link android.graphics.Path#isConvex() convex path}.
209 public void setConvexPath(@NonNull Path convexPath) {
216 throw new IllegalArgumentException("path must be convex");
218 if (mPath == null) mPath = new Path();

Completed in 752 milliseconds

1 2 3 45 6 7 8 91011>>