HomeSort by relevance Sort by last modified time
    Searched refs:Path (Results 26 - 50 of 897) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
PathOpsActivity.java 24 import android.graphics.Path;
40 private Path[] mPaths;
57 Path.Op[] ops = Path.Op.values();
58 mPaths = new Path[ops.length];
62 Path p1 = new Path();
63 p1.addRect(0.0f, 0.0f, mSize, mSize, Path.Direction.CW);
65 Path p2 = new Path();
    [all...]
  /external/chromium_org/ui/gfx/
path.h 15 class GFX_EXPORT Path : public SkPath {
17 // Used by Path(Point,size_t) constructor.
27 Path();
29 // Creates a path populated with the specified points.
30 Path(const Point* points, size_t count);
31 Path(const PointF* points, size_t count);
33 ~Path();
36 // Creates a NativeRegion from the path. The caller is responsible for freeing
56 DISALLOW_COPY_AND_ASSIGN(Path);
  /frameworks/compile/mclinker/include/mcld/MC/
ContextFactory.h 14 #include <mcld/Support/Path.h>
32 class ContextFactory : public UniqueGCFactoryBase<sys::fs::Path, LDContext, 0>
39 LDContext* produce(const sys::fs::Path& pPath);
SearchDirs.h 13 #include <mcld/Support/Path.h>
44 SearchDirs(const sys::fs::Path& pSysRoot);
48 // find - give a namespec, return a real path of the shared object.
49 sys::fs::Path*
52 const sys::fs::Path*
55 void setSysRoot(const sys::fs::Path& pSysRoot) { m_SysRoot = pSysRoot; }
56 const sys::fs::Path& sysroot() const { return m_SysRoot; }
69 bool insert(const sys::fs::Path& pDirectory);
73 sys::fs::Path m_SysRoot;
  /frameworks/rs/driver/
rsdPath.h 24 const android::renderscript::Path *m,
28 const android::renderscript::Path *m);
30 const android::renderscript::Path *m);
32 const android::renderscript::Path *m);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PathFillTypes.java 38 private Path mPath;
45 mPath = new Path();
46 mPath.addCircle(40, 40, 45, Path.Direction.CCW);
47 mPath.addCircle(80, 80, 45, Path.Direction.CCW);
50 private void showPath(Canvas canvas, int x, int y, Path.FillType ft,
70 showPath(canvas, 0, 0, Path.FillType.WINDING, paint);
71 showPath(canvas, 160, 0, Path.FillType.EVEN_ODD, paint);
72 showPath(canvas, 0, 160, Path.FillType.INVERSE_WINDING, paint);
73 showPath(canvas, 160, 160, Path.FillType.INVERSE_EVEN_ODD, paint);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
filesystem.h 14 #include "nacl_io/path.h"
65 // Test whether a file or directory at a given path can be accessed.
67 virtual Error Access(const Path& path, int a_mode) = 0;
69 // Open a node at |path| with the specified open flags. The resulting
72 virtual Error Open(const Path& path,
79 virtual Error OpenResource(const Path& path, ScopedNode* out_node);
83 virtual Error Unlink(const Path& path) = 0
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
Path.java 25 public class Path {
26 private static final String TAG = "Path";
27 private static Path sRoot = new Path(null, "ROOT");
29 private final Path mParent;
32 private IdentityCache<String, Path> mChildren;
34 private Path(Path parent, String segment) {
39 public Path getChild(String segment) {
40 synchronized (Path.class)
96 String path = toString(); local
    [all...]
TagClustering.java 31 private ArrayList<ArrayList<Path>> mClusters;
41 final TreeMap<String, ArrayList<Path>> map =
42 new TreeMap<String, ArrayList<Path>>();
43 final ArrayList<Path> untagged = new ArrayList<Path>();
48 Path path = item.getPath();
52 untagged.add(path);
57 ArrayList<Path> list = map.get(key);
59 list = new ArrayList<Path>();
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/stream/
stream_fs.h 16 // path, such as FDs returned by pipe, socket, and sockpair. It also provides
57 virtual Error Access(const Path& path, int a_mode);
58 virtual Error Open(const Path& path, int o_flags, ScopedNode* out_node);
59 virtual Error Unlink(const Path& path);
60 virtual Error Mkdir(const Path& path, int permissions);
61 virtual Error Rmdir(const Path& path)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGTextPath.h 32 Path layoutPath() const;
42 Path m_layoutPath;
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PathList.java 37 public class PathList extends SIPHeaderList<Path> {
42 super(Path.class, PathHeader.NAME);
  /frameworks/base/core/java/android/transition/
PathMotion.java 19 import android.graphics.Path;
23 * This base class can be extended to provide motion along a Path to Transitions.
27 * in a straight path between the start and end positions. Applications that desire to
47 * Provide a Path to interpolate between two points <code>(startX, startY)</code> and
54 * @return A Path along which the points should be interpolated. The returned Path
56 * {@link android.graphics.Path#moveTo(float, float)} and end at <code>(endX, endY)</code>.
58 public abstract Path getPath(float startX, float startY, float endX, float endY);
  /frameworks/base/rs/java/android/renderscript/
Path.java 23 public class Path extends BaseObj {
41 Path(long id, RenderScript rs, Primitive p, Allocation vtx, Allocation loop, float q) {
66 public static Path createStaticPath(RenderScript rs, Primitive p, float quality, Allocation vtx) {
68 Path newPath = new Path(id, rs, p, null, null, quality);
72 public static Path createStaticPath(RenderScript rs, Primitive p, float quality, Allocation vtx, Allocation loops) {
76 public static Path createDynamicPath(RenderScript rs, Primitive p, float quality, Allocation vtx) {
80 public static Path createDynamicPath(RenderScript rs, Primitive p, float quality, Allocation vtx, Allocation loops) {
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
filesystem_test.cc 51 EXPECT_EQ(ENOENT, fs.Access(Path("/foo"), R_OK | W_OK));
52 EXPECT_EQ(ENOENT, fs.Open(Path("/foo"), O_RDWR, &result_node));
57 EXPECT_EQ(0, fs.Open(Path("/foo"), O_RDWR | O_CREAT, &file));
64 EXPECT_EQ(0, fs.Access(Path("/foo"), R_OK | W_OK));
65 EXPECT_EQ(EACCES, fs.Access(Path("/foo"), X_OK));
68 EXPECT_EQ(0, fs.Access(Path("/"), R_OK | W_OK | X_OK));
70 EXPECT_EQ(EISDIR, fs.Open(Path("/"), O_RDWR, &root));
74 EXPECT_EQ(0, fs.Open(Path("/"), O_RDONLY, &root));
85 fs.Open(Path("/foo"), O_RDWR | O_CREAT | O_EXCL, &result_node));
90 EXPECT_EQ(EEXIST, fs.Mkdir(Path("/foo"), O_RDWR))
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
RealPath.h 11 #include "mcld/Support/Path.h"
22 class RealPath : public Path
25 typedef Path::ValueType ValueType;
26 typedef Path::StringType StringType;
32 explicit RealPath(const Path& pPath);
36 RealPath& assign(const Path& pPath);
  /frameworks/rs/
rsPath.h 27 class Path : public ObjectBase {
39 Path(Context *);
40 Path(Context *, uint32_t vertexBuffersCount, uint32_t primitivesCount);
41 Path(Context *, RsPathPrimitive pp, bool isStatic, Allocation *vtx, Allocation *loop, float q);
43 ~Path();
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/
rsPath.h 27 class Path : public ObjectBase {
39 Path(Context *);
40 Path(Context *, uint32_t vertexBuffersCount, uint32_t primitivesCount);
41 Path(Context *, RsPathPrimitive pp, bool isStatic, Allocation *vtx, Allocation *loop, float q);
43 ~Path();
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/
rsPath.h 27 class Path : public ObjectBase {
39 Path(Context *);
40 Path(Context *, uint32_t vertexBuffersCount, uint32_t primitivesCount);
41 Path(Context *, RsPathPrimitive pp, bool isStatic, Allocation *vtx, Allocation *loop, float q);
43 ~Path();
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/
rsPath.h 27 class Path : public ObjectBase {
39 Path(Context *);
40 Path(Context *, uint32_t vertexBuffersCount, uint32_t primitivesCount);
41 Path(Context *, RsPathPrimitive pp, bool isStatic, Allocation *vtx, Allocation *loop, float q);
43 ~Path();
  /frameworks/compile/mclinker/unittests/
PathTest.cpp 23 m_pTestee = new Path();
52 m_pTestee = new Path(root);
62 m_pTestee = new Path(root);
72 m_pTestee = new Path(root);
83 m_pTestee = new Path(root);
92 Path* p2 = new Path("ccc///////");
97 m_pTestee = new Path(root);
104 Path* p2=new Path("aaa//")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathUtilities.h 30 class Path;
35 // String/SVGPathByteStream -> Path
36 bool buildPathFromString(const String&, Path&);
37 bool buildPathFromByteStream(const SVGPathByteStream*, Path&);
  /system/extras/ext4_utils/
canned_fs_config.c 28 const char* path; member in struct:__anon81290
33 } Path;
35 static Path* canned_data = NULL;
40 return strcmp(((Path*)a)->path, ((Path*)b)->path);
54 canned_data = (Path*) realloc(canned_data, canned_alloc * sizeof(Path));
56 Path* p = canned_data + canned_used
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathMeasureTest.java 21 import android.graphics.Path;
23 import android.graphics.Path.Direction;
28 private Path mPath;
33 mPath = new Path();
42 Path path = new Path(); local
43 mPathMeasure = new PathMeasure(path, true);
46 mPathMeasure = new PathMeasure(path, false);
64 mPath.addRect(1f, 2f, 3f, 4f, Path.Direction.CW)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAreaElement.h 33 class Path;
44 Path computePath(RenderObject*) const;
60 Path getRegion(const LayoutSize&) const;
63 OwnPtr<Path> m_region;

Completed in 2007 milliseconds

12 3 4 5 6 7 8 91011>>