HomeSort by relevance Sort by last modified time
    Searched defs:path (Results 201 - 225 of 5507) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/go/darwin-x86/misc/cgo/errors/
errors_test.go 13 "path/filepath"
20 func path(file string) string { func
28 contents, err := ioutil.ReadFile(path(file))
66 cmd := exec.Command("go", "build", "-gcflags=-L", "-o="+dst, path(file)) // TODO(gri) no need for -gcflags=-L if go tool is adjusted
93 cmd := exec.Command("go", "run", path("long_double_size.go"))
142 cmd := exec.Command("go", "build", path("issue14669.go"))
155 cmd := exec.Command("go", "run", path("malloc.go"))
  /prebuilts/go/linux-x86/misc/cgo/errors/
errors_test.go 13 "path/filepath"
20 func path(file string) string { func
28 contents, err := ioutil.ReadFile(path(file))
66 cmd := exec.Command("go", "build", "-gcflags=-L", "-o="+dst, path(file)) // TODO(gri) no need for -gcflags=-L if go tool is adjusted
93 cmd := exec.Command("go", "run", path("long_double_size.go"))
142 cmd := exec.Command("go", "build", path("issue14669.go"))
155 cmd := exec.Command("go", "run", path("malloc.go"))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
genfsconquery.py 40 path The criteria to match the path.
42 will be used on the path.
66 path = CriteriaDescriptor("path_regex") variable in class:GenfsconQuery
77 self.log.debug("Path: {0.path!r}, regex: {0.path_regex}".format(self))
88 if self.path and not match_regex(
89 genfs.path,
90 self.path,
  /system/core/debuggerd/libdebuggerd/
open_files_list.cpp 53 std::string path = fd_dir_name + "/" + std::string(de->d_name); local
55 if (android::base::Readlink(path, &target)) {
58 ALOGE("failed to readlink %s: %s", path.c_str(), strerror(errno));
  /test/vti/test_serving/gae/webapp/src/endpoint/
host_info.py 66 path='set', variable in class:HostInfoApi
job_queue.py 39 path='get', variable in class:JobQueueApi
120 path='heartbeat',
schedule_info.py 38 path="clear", variable in class:ScheduleInfoApi
54 path="set",
97 path="clear", variable in class:GreenScheduleInfoApi
113 path="set",
  /toolchain/binutils/binutils-2.27/gprof/
search_list.h 37 char path[1];
36 char path[1]; member in struct:search_list_elem
  /external/desugar/java/com/google/devtools/build/android/desugar/
DirectoryOutputFileProvider.java 21 import java.nio.file.Path;
26 private final Path root;
28 public DirectoryOutputFileProvider(Path root) {
34 Path path = root.resolve(filename); local
35 createParentFolder(path);
37 OutputStream os = Files.newOutputStream(path)) {
44 Path path = root.resolve(filename); local
45 createParentFolder(path);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/build/
NdkEnvSupplier.java 40 // For Windows, need to add a shell to the path
41 IBuildEnvironmentVariable path = new IBuildEnvironmentVariable() { local
44 return "PATH"; //$NON-NLS-1$
53 // Alternatively the user can add the bin to their path
77 if (path.getValue() != null)
78 mEnvVars.put(path.getName(), path); local
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
LineAndPointRenderer.java 73 protected void appendToPath(Path path, PointF thisPoint, PointF lastPoint) {
75 path.lineTo(thisPoint.x, thisPoint.y);
86 Path path = null; local
102 //appendToPath(path, thisPoint, lastPoint);
109 // record the first point of the new Path
111 path = new Path();
115 path.moveTo(firstPoint.x, firstPoint.y);
    [all...]
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/utils/
GestureUtils.java 23 import android.graphics.Path;
57 return new StrokeDescription(path(point), 0, ViewConfiguration.getTapTimeout(), true);
61 return lastStroke.continueStroke(path(lastPointOf(lastStroke)),
71 return new StrokeDescription(path(point), 0, ViewConfiguration.getTapTimeout());
75 return new StrokeDescription(path(point), 0,
84 return new StrokeDescription(path(from, to), 0, duration);
89 path(lastPointOf(from), to),
93 public static Path path(PointF first, PointF... rest) { method in class:GestureUtils
94 Path path = new Path() local
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
ComposePathEffectTest.java 26 import android.graphics.Path;
48 Path path = new Path(); local
49 path.moveTo(START_X, CENTER);
50 path.lineTo(END_X, CENTER);
66 canvas.drawPath(path, paint);
72 canvas.drawPath(path, paint);
DashPathEffectTest.java 27 import android.graphics.Path;
55 Path path = new Path(); local
56 path.moveTo(START_X, COORD_Y);
57 path.lineTo(END_X, COORD_Y);
66 canvas.drawPath(path, paint);
DiscretePathEffectTest.java 29 import android.graphics.Path;
59 Path path = new Path(); local
60 path.moveTo(START_X, COORD_Y);
61 path.lineTo(END_X, COORD_Y);
67 canvas.drawPath(path, paint);
75 canvas.drawPath(path, paint);
80 canvas.drawPath(path, paint);
EmbossMaskFilterTest.java 28 import android.graphics.Path;
57 Path path = new Path(); local
58 path.moveTo(START_X, CENTER_Y);
59 path.lineTo(END_X, CENTER_Y);
65 c.drawPath(path, paint);
  /frameworks/base/core/java/android/transition/
TranslationAnimationCreator.java 22 import android.graphics.Path;
70 Path path = new Path(); local
71 path.moveTo(startX, startY);
72 path.lineTo(endX, endY);
74 path);
  /frameworks/base/core/tests/coretests/src/android/provider/
DocumentsProviderTest.java 22 import android.provider.DocumentsContract.Path;
56 final Path expected = new Path(ROOT_ID, Arrays.asList(PARENT_DOCUMENT_ID, DOCUMENT_ID));
63 final Path actual = DocumentsContract.findDocumentPath(client, docUri);
71 final Path expected = new Path(null, Arrays.asList(PARENT_DOCUMENT_ID, DOCUMENT_ID));
76 final Path actual = DocumentsContract.findDocumentPath(mResolver, docUri);
83 mProvider.nextPath = new Path(null, Arrays.asList(PARENT_DOCUMENT_ID, DOCUMENT_ID));
93 mProvider.nextPath = new Path(ROOT_ID, Arrays.asList(PARENT_DOCUMENT_ID, DOCUMENT_ID));
97 Path path = DocumentsContract.findDocumentPath(mResolver, docUri) local
110 Path path = DocumentsContract.findDocumentPath(mResolver, docUri); local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
PathInterpolatorBuilder.java 17 import android.graphics.Path;
23 // This governs how accurate the approximation of the Path is.
30 public PathInterpolatorBuilder(Path path) {
31 initPath(path);
44 Path path = new Path(); local
45 path.moveTo(0, 0);
46 path.quadTo(controlX, controlY, 1f, 1f)
51 Path path = new Path(); local
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/solver/
ExecutionPath.java 72 // just add as a path
75 // drop path. this cannot happen
79 ExecutionPath path = createPath(null); local
80 ExecutionBranch edge = new ExecutionBranch(path, pred, expectedValue);
81 path.mKnownValues.put(pred, expectedValue);
95 return path;
100 ExecutionPath path = new ExecutionPath(expr, expr == null || local
103 path.mKnownValues.putAll(mKnownValues);
104 path.mScopeExpressions.addAll(mScopeExpressions);
105 return path;
112 final ExecutionPath path = createPath(expr); local
    [all...]
  /frameworks/layoutlib/bridge/src/com/android/internal/view/animation/
NativeInterpolatorFactoryHelper_Delegate.java 22 import android.graphics.Path;
100 Path path = new Path(); local
101 path.moveTo(x[0], y[0]);
103 path.lineTo(x[i], y[i]);
105 return sManager.addNewDelegate(new PathInterpolator(path));
  /frameworks/support/compat/src/main/java/androidx/core/view/animation/
PathInterpolatorApi14.java 19 import android.graphics.Path;
24 * A path interpolator implementation compatible with API 14+.
29 * Governs the accuracy of the approximation of the {@link Path}.
36 PathInterpolatorApi14(Path path) {
37 final PathMeasure pathMeasure = new PathMeasure(path, false /* forceClosed */);
98 private static Path createQuad(float controlX, float controlY) {
99 final Path path = new Path(); local
107 final Path path = new Path(); local
    [all...]
  /frameworks/support/leanback/api21/androidx/leanback/transition/
TranslationAnimationCreator.java 9 import android.graphics.Path;
64 Path path = new Path(); local
65 path.moveTo(startX, startY);
66 path.lineTo(endX, endY);
68 path);
  /packages/apps/Dialer/java/com/android/dialer/compat/
PathInterpolatorCompat.java 19 import android.graphics.Path;
37 /** Governs the accuracy of the approximation of the {@link Path}. */
43 public PathInterpolatorBase(Path path) {
44 final PathMeasure pathMeasure = new PathMeasure(path, false /* forceClosed */);
71 private static Path createQuad(float controlX, float controlY) {
72 final Path path = new Path(); local
73 path.moveTo(0.0f, 0.0f)
80 final Path path = new Path(); local
    [all...]
  /packages/apps/PhoneCommon/src/com/android/phone/common/compat/
PathInterpolatorCompat.java 19 import android.graphics.Path;
36 * Governs the accuracy of the approximation of the {@link Path}.
43 public PathInterpolatorBase(Path path) {
44 final PathMeasure pathMeasure = new PathMeasure(path, false /* forceClosed */);
105 private static Path createQuad(float controlX, float controlY) {
106 final Path path = new Path(); local
107 path.moveTo(0.0f, 0.0f)
114 final Path path = new Path(); local
    [all...]

Completed in 1208 milliseconds

1 2 3 4 5 6 7 891011>>