OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:toPath
(Results
1 - 8
of
8
) sorted by null
/frameworks/base/core/java/android/gesture/
OrientedBoundingBox.java
55
public Path
toPath
() {
Gesture.java
125
public Path
toPath
() {
126
return
toPath
(null);
129
public Path
toPath
(Path path) {
142
public Path
toPath
(int width, int height, int edge, int numSample) {
143
return
toPath
(null, width, height, edge, numSample);
146
public Path
toPath
(Path path, int width, int height, int edge, int numSample) {
153
path.addPath(strokes.get(i).
toPath
(width - 2 * edge, height - 2 * edge, numSample));
204
Path path = strokes.get(i).
toPath
(width - 2 * edge, height - 2 * edge, numSample);
234
final Path path =
toPath
();
GestureStroke.java
161
public Path
toPath
(float width, float height, int numSample) {
/cts/tests/tests/gesture/src/android/gesture/cts/
GestureTest.java
77
* Test method for {@link android.gesture.Gesture#
toPath
()}.
82
mLineHelper.assertLineBoundingBox(mGesture.
toPath
());
86
* Test method for {@link android.gesture.Gesture#
toPath
(android.graphics.Path)}.
91
mLineHelper.assertLineBoundingBox(mGesture.
toPath
(null));
93
Path generatedPath = mGesture.
toPath
(myPath);
/prebuilt/sdk/4/
android.jar
/prebuilt/sdk/5/
android.jar
/prebuilt/sdk/6/
android.jar
/prebuilt/sdk/8/
android.jar
Completed in 15 milliseconds