Searched refs:Path (Results 101 - 125 of 145) sorted by relevance

123456

/frameworks/rs/
H A Drs_hal.h38 class Path;
284 bool (*initStatic)(const Context *rsc, const Path *m, const Allocation *vtx, const Allocation *loops);
285 bool (*initDynamic)(const Context *rsc, const Path *m);
286 void (*draw)(const Context *rsc, const Path *m);
287 void (*destroy)(const Context *rsc, const Path *m);
/frameworks/base/core/java/android/gesture/
H A DGestureOverlayView.java23 import android.graphics.Path;
88 private final Path mPath = new Path();
293 final Path path = mCurrentGesture.toPath();
307 public Path getGesturePath() {
311 public Path getGesturePath(Path path) {
/frameworks/compile/mclinker/lib/MC/
H A DMCLDDirectory.cpp93 void MCLDDirectory::setSysroot(const sys::fs::Path& pSysroot)
/frameworks/compile/mclinker/lib/Support/Windows/
H A DFileSystem.inc35 Path::StringType static_library_extension = ".a";
36 Path::StringType shared_library_extension = ".so";
37 Path::StringType executable_extension = ".exe";
38 Path::StringType relocatable_extension = ".o";
39 Path::StringType assembly_extension = ".s";
40 Path::StringType bitcode_extension = ".bc";
44 fs::Path file_filter(pDir.path());
72 int open(const Path& pPath, int pOFlag)
77 int open(const Path& pPath, int pOFlag, int pPerm)
144 void get_pwd(Path
[all...]
/frameworks/compile/mclinker/tools/mcld/lib/
H A DTripleOptions.cpp12 #include <mcld/Support/Path.h>
55 std::string ProgName(mcld::sys::fs::Path(pProgName).stem().native());
H A DOutputFormatOptions.cpp15 llvm::cl::opt<mcld::sys::fs::Path,
17 llvm::cl::parser<mcld::sys::fs::Path> > ArgOutputFilename("o",
H A DPositionalOptions.cpp22 llvm::cl::list<mcld::sys::fs::Path> ArgInputObjectFiles(llvm::cl::Positional,
229 llvm::cl::list<mcld::sys::fs::Path>::iterator input, inBegin, inEnd;
/frameworks/compile/mclinker/unittests/
H A DELFReaderTest.cpp17 #include <mcld/Support/Path.h>
63 Path path(TOPDIR);
H A DFactoriesTest.cpp187 sys::fs::Path(string(path_name)),
204 sys::fs::Path(string(path_name)),
/frameworks/base/graphics/java/android/graphics/drawable/
H A DVectorDrawable.java28 import android.graphics.Path;
785 * Group Path Group
787 * Path Path Path
792 private final Path mPath;
793 private final Path mRenderPath;
816 mPath = new Path();
817 mRenderPath = new Path();
841 mPath = new Path(cop
[all...]
H A DGradientDrawable.java30 import android.graphics.Path;
142 private final Path mPath = new Path();
148 private Path mRingPath;
625 Path path = buildRing(st);
648 mPath.addRoundRect(mRect, st.mRadiusArray, Path.Direction.CW);
653 private Path buildRing(GradientState st) {
677 mRingPath = new Path();
682 final Path ringPath = mRingPath;
686 ringPath.setFillType(Path
[all...]
/frameworks/base/core/java/android/text/
H A DLayout.java22 import android.graphics.Path;
197 public void draw(Canvas canvas, Path highlight, Paint highlightPaint,
365 public void drawBackground(Canvas canvas, Path highlight, Paint highlightPaint,
1299 * Fills in the specified Path with a representation of a cursor
1304 public void getCursorPath(int point, Path dest,
1380 int top, int bottom, Path dest) {
1406 dest.addRect(left, top, right, bottom, Path.Direction.CW);
1413 * Fills in the specified Path with a representation of a highlight
1418 public void getSelectionPath(int start, int end, Path dest) {
1446 0, getLineBottom(startline), Path
[all...]
H A DBoringLayout.java21 import android.graphics.Path;
391 public void draw(Canvas c, Path highlight, Paint highlightpaint,
/frameworks/compile/mclinker/include/mcld/LD/
H A DArchive.h236 const sys::fs::Path& pPath,
/frameworks/compile/mclinker/lib/Support/
H A DFileHandle.cpp78 bool FileHandle::open(const sys::fs::Path& pPath,
/frameworks/support/v4/java/android/support/v4/widget/
H A DMaterialProgressDrawable.java31 import android.graphics.Path;
419 private Path mArrow;
482 mArrow = new android.graphics.Path();
483 mArrow.setFillType(android.graphics.Path.FillType.EVEN_ODD);
/frameworks/base/core/java/android/view/
H A DGLES20Canvas.java27 import android.graphics.Path;
280 public boolean clipPath(Path path) {
285 public boolean clipPath(Path path, Region.Op op) {
362 public boolean quickReject(Path path, EdgeType type) {
795 public void drawPath(Path path, Paint paint) {
925 public void drawTextOnPath(char[] text, int index, int count, Path path, float hOffset,
940 public void drawTextOnPath(String text, Path path, float hOffset, float vOffset, Paint paint) {
/frameworks/base/core/java/android/animation/
H A DPropertyValuesHolder.java19 import android.graphics.Path;
214 * @param path The Path along which the values should be animated.
218 public static PropertyValuesHolder ofMultiInt(String propertyName, Path path) {
332 * @param path The Path along which the values should be animated.
336 public static PropertyValuesHolder ofMultiFloat(String propertyName, Path path) {
407 * a Path along which the values should be animated. This variant supports a
418 * @param path The Path along which the values should be animated.
422 TypeConverter<PointF, ?> converter, Path path) {
480 * a Path along which the values should be animated. This variant supports a
491 * @param path The Path alon
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java24 import android.graphics.Path.Direction;
25 import android.graphics.Path.FillType;
39 * Delegate implementing the native methods of android.graphics.Path
41 * Through the layoutlib_create tool, the original native methods of Path have been replaced
46 * it and the original Path class.
147 "Path.isConvex is not supported.", null, null);
168 pathDelegate.mFillType = Path.sFillTypeArray[ft];
396 "Different corner sizes are not supported in Path.addRoundRect.",
478 Bridge.getLog().error(LayoutLog.TAG_UNSUPPORTED, "Path.op() not supported", null);
489 Bridge.getLog().error(LayoutLog.TAG_UNSUPPORTED, "Path
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java36 * Path, text, Bitmap), and a paint (to describe the colors and styles for the
809 public boolean clipPath(@NonNull Path path, @NonNull Region.Op op) {
819 public boolean clipPath(@NonNull Path path) {
926 public boolean quickReject(@NonNull Path path, @NonNull EdgeType type) {
1273 public void drawPath(@NonNull Path path, @NonNull Paint paint) {
1864 public void drawTextOnPath(@NonNull char[] text, int index, int count, @NonNull Path path,
1887 public void drawTextOnPath(@NonNull String text, @NonNull Path path, float hOffset,
H A DPaint.java900 public boolean getFillPath(Path src, Path dst) {
2147 float x, float y, Path path) {
2169 float x, float y, Path path) {
/frameworks/compile/mclinker/lib/CodeGen/
H A DMCLinker.cpp67 static cl::list<mcld::sys::fs::Path>
299 cl::list<mcld::sys::fs::Path>::iterator input, inBegin, inEnd;
/frameworks/compile/mclinker/lib/LD/
H A DGNUArchiveReader.cpp22 #include <mcld/Support/Path.h>
227 sys::fs::Path input_path(pArchiveFile.path().parent_path());
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternView.java27 import android.graphics.Path;
116 private final Path mCurrentPath = new Path();
932 final Path currentPath = mCurrentPath;
/frameworks/base/libs/hwui/
H A DPathCache.h120 struct Path { struct in union:android::uirenderer::PathDescription::Shape

Completed in 595 milliseconds

123456