HomeSort by relevance Sort by last modified time
    Searched refs:toPath (Results 1 - 25 of 30) sorted by null

1 2

  /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);
GestureStrokeTest.java 68 * Test {@link android.gesture.GestureStroke#toPath(float, float, int)} returns expected results
69 * for a single line, where the given toPath bounds exceeds the expected path.
75 Path linePath = lineStroke.toPath(LineGestureStrokeHelper.LINE_END_POINT,
83 * Test for {@link android.gesture.GestureStroke#toPath(float, float, int)}
85 * Verifies method returns expected results for a single line, where the given toPath bounds
92 Path linePath = lineStroke.toPath(LineGestureStrokeHelper.LINE_MIDWAY_POINT,
  /frameworks/base/core/java/android/gesture/
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();
OrientedBoundingBox.java 55 public Path toPath() {
GestureStroke.java 161 public Path toPath(float width, float height, int numSample) {
GestureOverlayView.java 288 final Path path = mCurrentGesture.toPath();
  /external/webkit/Source/WebKit/mac/Misc/
WebNSFileManagerExtras.h 41 - (BOOL)moveItemAtPath:(NSString *)srcPath toPath:(NSString *)dstPath error:(NSError **)error;
WebNSFileManagerExtras.m 225 - (BOOL)moveItemAtPath:(NSString *)srcPath toPath:(NSString *)dstPath error:(NSError **)error
227 // The implementation of moveItemAtPath:toPath:error: interacts with the NSFileManager's delegate.
231 return [self movePath:srcPath toPath:dstPath handler:nil];
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateHandler.java 551 String toPath = attributes.getValue(ATTR_TO);
552 if (toPath == null || toPath.isEmpty()) {
553 toPath = attributes.getValue(ATTR_FROM);
554 toPath = AdtUtils.stripSuffix(toPath, DOT_FTL);
556 IPath to = getTargetPath(toPath);
564 String toPath = attributes.getValue(ATTR_TO);
565 if (toPath == null || toPath.isEmpty())
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
Data.java 194 * @param toPath destination path for the deep copy.
197 void copy(String toPath, Data from);
UnmodifiableData.java 45 public void copy(String toPath, Data from) {
DelegatedData.java 233 public void copy(String toPath, Data from) {
235 getDelegate().copy(toPath, from);
NestedMapData.java 417 public void copy(String toPath, Data from) {
418 if (toPath == null) {
425 Data to = createChild(toPath);
DefaultDataContext.java 356 public void copy(String toPath, Data from) {
  /external/doclava/src/com/google/doclava/
ClearPage.java 160 public static void copyFile(File from, String toPath) {
161 File to = new File(outputDir + "/" + toPath);
  /sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/editors/
TraceviewEditor.java 158 IPath oldPath = URIUtil.toPath(fileStoreEditorInput.getURI());
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jsch.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.filesystem_1.3.1.R36x_v20100727-0745.jar 
org.eclipse.equinox.frameworkadmin.equinox_1.0.200.v20100505.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 

Completed in 325 milliseconds

1 2