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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/html5fs/
html5_fs.h 21 virtual Error OpenWithMode(const Path& path, int open_flags, mode_t mode,
23 virtual Error Unlink(const Path& path);
24 virtual Error Mkdir(const Path& path, int permissions);
25 virtual Error Rmdir(const Path& path);
26 virtual Error Remove(const Path& path);
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
dev_fs.h 17 virtual Error OpenWithMode(const Path& path, int open_flags, mode_t mode,
19 virtual Error Unlink(const Path& path);
20 virtual Error Mkdir(const Path& path, int permissions);
21 virtual Error Rmdir(const Path& path);
22 virtual Error Remove(const Path& path);
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/httpfs/
http_fs.h 21 virtual Error OpenWithMode(const Path& path, int open_flags, mode_t mode,
23 virtual Error Unlink(const Path& path);
24 virtual Error Mkdir(const Path& path, int permissions);
25 virtual Error Rmdir(const Path& path);
26 virtual Error Remove(const Path& path);
    [all...]
  /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;
  /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 // Open a node at |path| with the specified open and modeflags. The resulting
68 virtual Error OpenWithMode(const Path& path,
73 // Open a node at |path| with the specified open flags. The resulting
76 Error Open(const Path& path,
83 virtual Error OpenResource(const Path& path, ScopedNode* out_node);
87 virtual Error Unlink(const Path& path) = 0
    [all...]
  /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);
  /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/chrome/browser/browsing_data/
canonical_cookie_hash.cc 15 7 * base::SuperFastHash(cookie.Path().c_str(), cookie.Path().size());
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/passthroughfs/
passthrough_fs.cc 25 Error PassthroughFs::OpenWithMode(const Path& path, int open_flags,
29 int error = _real_open(path.Join().c_str(), open_flags, mode, &real_fd);
37 Error PassthroughFs::OpenResource(const Path& path, ScopedNode* out_node) {
40 int error = _real_open_resource(path.Join().c_str(), &real_fd);
48 Error PassthroughFs::Unlink(const Path& path) {
53 Error PassthroughFs::Mkdir(const Path& path, int perm)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGTextPath.h 32 Path layoutPath() const;
42 Path m_layoutPath;
  /external/chromium_org/ui/views/
masked_targeter_delegate.h 13 class Path;
31 virtual bool GetHitTestMask(gfx::Path* mask) const = 0;
  /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) {
  /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();
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Path.h 68 class PLATFORM_EXPORT Path {
71 Path();
72 ~Path();
74 Path(const Path&);
75 Path& operator=(const Path&);
76 bool operator==(const Path&) const;
88 // Helper for computing a sequence of positions and normals (normal angles) on a path.
93 // state-less method on Path
    [all...]

Completed in 2727 milliseconds

12 3 4 5 6 7 8 91011>>