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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGPathData.h 26 class Path;
28 void updatePathFromGraphicsElement(SVGElement*, Path&);
  /frameworks/compile/mclinker/lib/Support/
Path.cpp 1 //===- Path.cpp -----------------------------------------------------------===//
11 #include <mcld/Support/Path.h>
32 const Path::StringType separator_str("/");
40 const Path::StringType separator_str("/");
47 // Path
49 Path::Path()
53 Path::Path(const Path::ValueType* s
    [all...]
RealPath.cpp 17 : Path() {
21 : Path(s) {
26 : Path(s) {
30 RealPath::RealPath(const Path& pPath)
31 : Path(pPath) {
39 RealPath& RealPath::assign(const Path& pPath)
41 Path::m_PathName.assign(pPath.native());
51 Path path_name;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/passthroughfs/
passthrough_fs.h 22 virtual Error Access(const Path& path, int a_mode);
23 virtual Error Open(const Path& path, int mode, ScopedNode* out_node);
24 virtual Error OpenResource(const Path& path, ScopedNode* out_node);
25 virtual Error Unlink(const Path& path);
26 virtual Error Mkdir(const Path& path, int perm)
    [all...]
  /external/chromium_org/chrome/browser/ui/tabs/
tab_resources.h 9 class Path;
16 // Return a |path| containing the region that matches the bitmap display of
19 // above the top edge of the tab in the path.
23 gfx::Path* path);
  /external/chromium_org/ui/views/window/
window_shape.h 12 class Path;
20 gfx::Path* window_mask);
  /ndk/sources/host-tools/make-3.81/w32/include/
pathstuff.h 1 /* Definitions for Windows path manipulation.
21 extern char * convert_Path_to_windows32(char *Path, char to_delim);
22 extern char * convert_vpath_to_windows32(char *Path, char to_delim);
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
mock_fs.h 16 typedef nacl_io::Path Path;
26 MOCK_METHOD2(Access, Error(const Path&, int));
27 MOCK_METHOD3(Open, Error(const Path&, int, ScopedNode*));
28 MOCK_METHOD2(OpenResource, Error(const Path&, ScopedNode*));
29 MOCK_METHOD1(Unlink, Error(const Path&));
30 MOCK_METHOD2(Mkdir, Error(const Path&, int));
31 MOCK_METHOD1(Rmdir, Error(const Path&));
32 MOCK_METHOD1(Remove, Error(const Path&));
33 MOCK_METHOD2(Rename, Error(const Path&, const Path&))
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/memfs/
mem_fs.h 29 virtual Error FindNode(const Path& path, int type, ScopedNode* out_node);
32 virtual Error Access(const Path& path, int a_mode);
33 virtual Error Open(const Path& path, int mode, ScopedNode* out_node);
34 virtual Error Unlink(const Path& path);
35 virtual Error Mkdir(const Path& path, int perm)
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathTest.java 21 import android.graphics.Path;
35 // new the Path instance
36 new Path();
38 // another the Path instance with different params
39 new Path(new Path());
44 // new the Path instance
45 Path path = new Path(); local
55 Path path = new Path(); local
63 Path path = new Path(); local
69 Path path = new Path(); local
85 Path path = new Path(); local
99 Path path = new Path(); local
107 Path path = new Path(); local
121 Path path = new Path(); local
129 Path path = new Path(); local
137 Path path = new Path(); local
145 Path path = new Path(); local
153 Path path = new Path(); local
162 Path path = new Path(); local
173 Path path = new Path(); local
188 Path path = new Path(); local
206 Path path = new Path(); local
212 Path path = new Path(); local
221 Path path = new Path(); local
233 Path path = new Path(); local
244 Path path = new Path(); local
254 Path path = new Path(); local
264 Path path = new Path(); local
274 Path path = new Path(); local
284 Path path = new Path(); local
295 Path path = new Path(); local
304 Path path = new Path(); local
318 Path path = new Path(); local
326 Path path = new Path(); local
340 Path path = new Path(); local
348 Path path = new Path(); local
360 Path path = new Path(); local
368 Path path = new Path(); local
377 Path path = new Path(); local
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
Path.h 1 //===- Path.h -------------------------------------------------------------===//
9 // This file declares the mcld::sys::fs::Path. It follows TR2/boost
11 // path class.
39 /** \class Path
40 * \brief Path provides an abstraction for the path to a file or directory in
43 class Path
50 Path();
51 Path(const ValueType* s);
52 Path(const StringType &s)
    [all...]
FileSystem.h 11 // path class.
73 class Path;
77 bool exists(const Path &pPath);
78 bool is_directory(const Path &pPath);
82 extern Path::StringType static_library_extension;
83 extern Path::StringType shared_library_extension;
84 extern Path::StringType executable_extension;
85 extern Path::StringType relocatable_extension;
86 extern Path::StringType assembly_extension;
87 extern Path::StringType bitcode_extension
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
path.h 17 class Path {
19 Path() {}
20 Path(const Path& path);
22 // This constructor splits path by '/' as a starting point for this Path.
23 // If the path begins with the character '/', the path is considered
25 explicit Path(const std::string& path)
    [all...]
path.cc 5 #include "nacl_io/path.h"
15 Path::Path(const Path& path) {
16 paths_ = path.paths_;
19 Path::Path(const std::string& path) {
20 Set(path);
    [all...]
  /external/llvm/unittests/Transforms/DebugIR/
DebugIR.cpp 24 #include "llvm/Support/Path.h"
56 /// Attempts to remove file at Path and returns true if it existed, or false if
58 bool removeIfExists(StringRef Path) {
61 std::error_code EC = sys::fs::remove(Path, false);
83 /// Returns a concatenated path string consisting of Dir and Filename
85 SmallVector<char, 8> Path;
86 sys::path::append(Path, Dir, Filename);
87 Path.resize(Dir.size() + Filename.size() + 2);
88 Path[Dir.size() + Filename.size() + 1] = '\0'
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
DataSourceType.java 27 private static final Path PICASA_ROOT = Path.fromString("/picasa");
28 private static final Path LOCAL_ROOT = Path.fromString("/local");
35 Path path = set.getPath(); local
36 if (MediaSetUtils.isCameraSource(path)) return TYPE_CAMERA;
38 Path prefix = path.getPrefixPath();
  /frameworks/rs/
rsPath.cpp 24 Path::Path(Context *rsc) : ObjectBase(rsc) {
27 Path::Path(Context *rsc, RsPathPrimitive pp, bool isStatic,
36 rsc->mHal.funcs.path.initStatic(rsc, this, vtx, loops);
41 Path::Path(Context *rsc, uint32_t vertexBuffersCount, uint32_t primitivesCount)
46 Path::~Path() {
51 void Path::rasterize(const BezierSegment_t *s, uint32_t num, Allocation *alloc)
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
dev_fs.h 17 virtual Error Access(const Path& path, int a_mode);
18 virtual Error Open(const Path& path, int open_flags, ScopedNode* out_node);
19 virtual Error Unlink(const Path& path);
20 virtual Error Mkdir(const Path& path, int permissions);
21 virtual Error Rmdir(const Path& path);
    [all...]
  /external/chromium_org/ui/gfx/
path.cc 5 #include "ui/gfx/path.h"
11 Path::Path()
15 Path::Path(const Point* points, size_t count) {
22 Path::Path(const PointF* points, size_t count) {
29 Path::~Path() {
  /external/chromium_org/third_party/skia/src/svg/
SkSVGPath.h 16 DECLARE_SVG_INFO(Path);
  /external/skia/src/svg/
SkSVGPath.h 16 DECLARE_SVG_INFO(Path);
  /frameworks/compile/mclinker/include/mcld/
BitcodeOption.h 12 #include <mcld/Support/Path.h>
30 void setPath(const sys::fs::Path& pPath) { m_Path = pPath; }
32 const sys::fs::Path& getPath() const { return m_Path; }
39 sys::fs::Path m_Path;
  /frameworks/base/graphics/tests/graphicstests/src/android/graphics/
PathTest.java 27 Path path = new Path(); local
29 final Path.FillType defaultFillType = path.getFillType();
30 final Path.FillType fillType = Path.FillType.INVERSE_EVEN_ODD;
33 path.setFillType(fillType);
34 path.reset();
35 assertEquals(path.getFillType(), fillType)
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/html5fs/
html5_fs.h 21 virtual Error Access(const Path& path, int a_mode);
22 virtual Error Open(const Path& path, int mode, ScopedNode* out_node);
23 virtual Error Unlink(const Path& path);
24 virtual Error Mkdir(const Path& path, int permissions);
25 virtual Error Rmdir(const Path& path);
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/httpfs/
http_fs.h 21 virtual Error Access(const Path& path, int a_mode);
22 virtual Error Open(const Path& path, int mode, ScopedNode* out_node);
23 virtual Error Unlink(const Path& path);
24 virtual Error Mkdir(const Path& path, int permissions);
25 virtual Error Rmdir(const Path& path);
    [all...]

Completed in 441 milliseconds

1 2 3 4 5 6 7 8 91011>>