HomeSort by relevance Sort by last modified time
    Searched refs:Path (Results 276 - 300 of 1075) sorted by null

<<11121314151617181920>>

  /prebuilts/go/darwin-x86/src/net/http/cgi/
host_test.go 18 "path/filepath"
101 Path: "testdata/test.cgi",
136 Path: "testdata/test.cgi",
173 Path: pwd + "/testdata/test.cgi",
187 Path: "testdata/test.cgi",
204 Path: "testdata/test.cgi",
220 Path: "testdata/test.cgi",
240 Path: "testdata/test.cgi",
262 Path: "testdata/test.cgi",
290 Path: "testdata/test.cgi"
    [all...]
  /prebuilts/go/linux-x86/src/net/http/cgi/
host_test.go 18 "path/filepath"
101 Path: "testdata/test.cgi",
136 Path: "testdata/test.cgi",
173 Path: pwd + "/testdata/test.cgi",
187 Path: "testdata/test.cgi",
204 Path: "testdata/test.cgi",
220 Path: "testdata/test.cgi",
240 Path: "testdata/test.cgi",
262 Path: "testdata/test.cgi",
290 Path: "testdata/test.cgi"
    [all...]
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/
TerminalView.java 25 import android.graphics.Path;
55 private Path ctrlCursor, altCursor, shiftCursor;
85 * Set up our cursor indicators on a 1x1 Path object which we can later transform to our
89 shiftCursor = new Path();
93 altCursor = new Path();
98 ctrlCursor = new Path();
  /frameworks/base/graphics/java/android/graphics/
Region.java 107 * Set the region to the area described by the path and clip.
109 * that is identical to the pixels that would be drawn by the path
112 public boolean setPath(Path path, Region clip) {
113 return nativeSetPath(mNativeRegion, path.readOnlyNI(), clip.mNativeRegion);
153 * Return the boundary of the region as a new Path. If the region is empty,
154 * the path will also be empty.
156 public Path getBoundaryPath() {
157 Path path = new Path() local
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
RectShadowPainter.java 27 import android.graphics.Path;
28 import android.graphics.Path.FillType;
69 Path path = new Path(); local
70 path.setFillType(FillType.EVEN_ODD);
98 drawCorner(canvas, cornerPaint, path, inset.right, inset.bottom, outerArcRadius, 0);
99 drawCorner(canvas, cornerPaint, path, inset.left, inset.bottom, outerArcRadius, 1);
100 drawCorner(canvas, cornerPaint, path, inset.left, inset.top, outerArcRadius, 2);
101 drawCorner(canvas, cornerPaint, path, inset.right, inset.top, outerArcRadius, 3)
    [all...]
  /frameworks/rs/java/tests/HealingBrush/src/rs/example/android/com/healingbrush/
Region.java 24 import android.graphics.Path;
64 final Path path = new Path(); local
68 path.moveTo(mPointsXY[i] - bounds.left + mCutOffsetX,
71 path.lineTo(mPointsXY[i] - bounds.left + mCutOffsetX,
75 path.close();
90 canvas.drawPath(path, paint1);
91 canvas.drawPath(path, paint2);
114 final Path path = new Path(); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalVideo.java 37 static final Path ITEM_PATH = Path.fromString("/local/video/item");
75 public LocalVideo(Path path, GalleryApp application, Cursor cursor) {
76 super(path, nextVersionNumber());
81 public LocalVideo(Path path, GalleryApp context, int id) {
82 super(path, nextVersionNumber());
88 throw new RuntimeException("cannot get cursor for: " + path);
94 throw new RuntimeException("cannot find data for: " + path);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/colorpicker/
ColorCompareView.java 26 import android.graphics.Path;
53 private Path mRegion;
54 private Path mOrigRegion;
124 mOrigRegion = new Path();
130 mRegion = new Path();
  /packages/apps/Gallery2/src/com/android/gallery3d/onetimeinitializer/
GalleryWidgetMigrator.java 31 import com.android.gallery3d.data.Path;
43 * bucket ID (i.e., directory hash) change in JB and JB MR1 (The external storage path has changed
62 // Migration is only needed when external storage path has changed
86 // path combined with external storage path. Otherwise, iterate through old external
87 // storage paths to find the relative path that matches the old bucket id, and then update
88 // bucket id and relative path
91 Path path = Path.fromString(entry.albumPath) local
137 String path = file.getAbsolutePath(); local
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
LinearColorBar.java 10 import android.graphics.Path;
48 final Path mColorPath = new Path();
49 final Path mEdgePath = new Path();
  /packages/apps/Settings/src/com/android/settings/widget/
DotsPageIndicator.java 30 import android.graphics.Path;
93 private final Path combinedUnselectedPath;
94 private final Path unselectedDotPath;
95 private final Path unselectedDotLeftPath;
96 private final Path unselectedDotRightPath;
158 combinedUnselectedPath = new Path();
159 unselectedDotPath = new Path();
160 unselectedDotLeftPath = new Path();
161 unselectedDotRightPath = new Path();
352 // todo Path.op should be supported in KitKat but causes the app to hang for Nexus 5
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
readrequest_test.go 51 Path: "/",
86 Path: "/",
103 // Tests that we don't parse a path that looks like a
106 "GET //user@host/is/actually/a/path/ HTTP/1.1\r\n" +
112 Path: "//user@host/is/actually/a/path/",
121 RequestURI: "//user@host/is/actually/a/path/",
162 Path: "/",
194 Path: "/",
266 Path: "/_goRPC_"
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
readrequest_test.go 51 Path: "/",
86 Path: "/",
103 // Tests that we don't parse a path that looks like a
106 "GET //user@host/is/actually/a/path/ HTTP/1.1\r\n" +
112 Path: "//user@host/is/actually/a/path/",
121 RequestURI: "//user@host/is/actually/a/path/",
162 Path: "/",
194 Path: "/",
266 Path: "/_goRPC_"
    [all...]
  /system/extras/simpleperf/
sample_tree_test.cpp 38 ASSERT_EQ(expected.dso_name, sample.map->dso->Path());
63 if (sample1.map->dso->Path() != sample2.map->dso->Path()) {
64 return sample1.map->dso->Path() > sample2.map->dso->Path() ? 1 : -1;
  /dalvik/dx/src/com/android/multidex/
MainDexListBuilder.java 105 Path path = null; local
113 path = new Path(pathString);
115 ClassReferenceListBuilder mainListBuilder = new ClassReferenceListBuilder(path);
121 keepAnnotated(path);
129 if (path != null) {
130 for (ClassPathElement element : path.elements) {
161 private void keepAnnotated(Path path) throws FileNotFoundException
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
TextAlign.java 37 private Path mPath;
45 private static final String TEXTONPATH = "Along a path";
47 private static void makePath(Path p) {
78 mPath = new Path();
135 // now draw the text on path
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 479 llvm::SmallVector<char, 8> Path; // actually of DifferenceEngine::DiffChange
510 Cur[I].Path.push_back(DC_left);
517 Next[0].Path.push_back(DC_right);
524 Next[Index].Path.push_back(DC_match);
529 Next[Index].Path.push_back(DC_left);
533 Next[Index].Path.push_back(DC_right);
544 SmallVectorImpl<char> &Path = Cur[NL].Path;
550 while (Path.back() == DC_match)
551 Path.pop_back()
    [all...]
  /external/llvm/unittests/Support/
SpecialCaseListTest.cpp 37 SmallString<64> Path;
38 sys::fs::createTemporaryFile("SpecialCaseListTest", "temp", FD, Path);
42 return Path.str();
  /frameworks/base/core/java/android/animation/
PathKeyframes.java 18 import android.graphics.Path;
24 * PathKeyframes relies on approximating the Path as a series of line segments.
49 public PathKeyframes(Path path) {
50 this(path, 0.5f);
53 public PathKeyframes(Path path, float error) {
54 if (path == null || path.isEmpty()) {
55 throw new IllegalArgumentException("The path must not be null or empty")
    [all...]
  /frameworks/base/core/java/android/transition/
TranslationAnimationCreator.java 24 import android.graphics.Path;
70 Path path = new Path(); local
71 path.moveTo(startX, startY);
72 path.lineTo(endX, endY);
74 path);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawable/
CircleFramedDrawable.java 26 import android.graphics.Path;
72 final Path fillPath = new Path();
  /frameworks/compile/mclinker/lib/Script/
GroupCmd.cpp 17 #include "mcld/Support/Path.h"
95 sys::fs::Path path; local
101 path = script.sysroot();
102 path.append(token->name());
105 path.assign(token->name());
106 if (!sys::fs::exists(path)) {
107 // 3. Search through the library search path
108 sys::fs::Path* p =
111 path = *p
123 const sys::fs::Path* path = NULL; local
    [all...]
  /frameworks/support/v17/leanback/api21/android/support/v17/leanback/transition/
TranslationAnimationCreator.java 9 import android.graphics.Path;
58 Path path = new Path(); local
59 path.moveTo(startX, startY);
60 path.lineTo(endX, endY);
62 path);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/
FramedTextButton.java 23 import android.graphics.Path;
36 private static Path gPath = new Path();
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
MenuExecutor.java 39 import com.android.gallery3d.data.Path;
214 private Path getSingleSelectedPath() {
215 ArrayList<Path> ids = mSelectionManager.getSelected(true);
222 Path path = getSingleSelectedPath(); local
223 String mimeType = getMimeType(manager.getMediaType(path));
224 return new Intent(action).setDataAndType(manager.getContentUri(path), mimeType);
335 ArrayList<Path> ids = mSelectionManager.getSelected(false);
350 public void startSingleItemAction(int action, Path targetPath) {
351 ArrayList<Path> ids = new ArrayList<Path>(1)
    [all...]

Completed in 3475 milliseconds

<<11121314151617181920>>