Searched refs:Path (Results 1 - 25 of 492) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGPathData.h26 class Path;
28 void updatePathFromGraphicsElement(SVGElement*, Path&);
H A DRenderSVGTextPath.h32 Path layoutPath() const;
40 Path m_layoutPath;
H A DRenderSVGTextPath.cpp36 Path RenderSVGTextPath::layoutPath() const
41 return Path();
45 Path pathData;
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dmount_mock.h16 typedef nacl_io::Path Path; typedef in class:MountMock
26 MOCK_METHOD2(Access, Error(const Path&, int));
27 MOCK_METHOD3(Open, Error(const Path&, int, ScopedMountNode*));
28 MOCK_METHOD2(OpenResource, Error(const Path&, ScopedMountNode*));
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
[all...]
H A Dmount_test.cc51 EXPECT_EQ(ENOENT, mnt.Access(Path("/foo"), R_OK | W_OK));
52 EXPECT_EQ(ENOENT, mnt.Open(Path("/foo"), O_RDWR, &result_node));
57 EXPECT_EQ(0, mnt.Open(Path("/foo"), O_RDWR | O_CREAT, &file));
64 EXPECT_EQ(0, mnt.Access(Path("/foo"), R_OK | W_OK));
65 EXPECT_EQ(EACCES, mnt.Access(Path("/foo"), X_OK));
68 EXPECT_EQ(0, mnt.Access(Path("/"), R_OK | W_OK | X_OK));
70 EXPECT_EQ(EISDIR, mnt.Open(Path("/"), O_RDWR, &root));
74 EXPECT_EQ(0, mnt.Open(Path("/"), O_RDONLY, &root));
85 mnt.Open(Path("/foo"), O_RDWR | O_CREAT | O_EXCL, &result_node));
90 EXPECT_EQ(EEXIST, mnt.Mkdir(Path("/fo
[all...]
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dpath.h17 class Path { class in namespace:nacl_io
19 Path();
20 Path(const Path& path);
22 // This constructor splits path by '/' as a starting point for this Path.
25 explicit Path(const std::string& path);
26 ~Path();
41 Path& Append(const std::string& path);
42 Path& Prepend(const std::string& path);
43 Path
[all...]
H A Dmount_passthrough.h21 virtual Error Access(const Path& path, int a_mode);
22 virtual Error Open(const Path& path, int mode, ScopedMountNode* out_node);
23 virtual Error OpenResource(const Path& path, ScopedMountNode* out_node);
24 virtual Error Unlink(const Path& path);
25 virtual Error Mkdir(const Path& path, int perm);
26 virtual Error Rmdir(const Path& path);
27 virtual Error Remove(const Path& path);
28 virtual Error Rename(const Path& path, const Path& newpath);
H A Dpath.cc15 Path::Path() {} function in class:nacl_io::Path
17 Path::Path(const Path& path) { function in class:nacl_io::Path
21 Path::Path(const std::string& path) { function in class:nacl_io::Path
25 Path::~Path() {}
27 bool Path
[all...]
H A Dmount_dev.h17 virtual Error Access(const Path& path, int a_mode);
18 virtual Error Open(const Path& path,
21 virtual Error Unlink(const Path& path);
22 virtual Error Mkdir(const Path& path, int permissions);
23 virtual Error Rmdir(const Path& path);
24 virtual Error Remove(const Path& path);
25 virtual Error Rename(const Path& path, const Path& newpath);
H A Dmount_http.h22 virtual Error Access(const Path& path, int a_mode);
23 virtual Error Open(const Path& path, int mode, ScopedMountNode* out_node);
24 virtual Error Unlink(const Path& path);
25 virtual Error Mkdir(const Path& path, int permissions);
26 virtual Error Rmdir(const Path& path);
27 virtual Error Remove(const Path& path);
28 virtual Error Rename(const Path& path, const Path& newpath);
39 Error FindOrCreateDir(const Path& path, ScopedMountNode* out_node);
48 std::string MakeUrl(const Path
[all...]
H A Dmount_mem.h29 virtual Error FindNode(const Path& path, int type, ScopedMountNode* out_node);
32 virtual Error Access(const Path& path, int a_mode);
33 virtual Error Open(const Path& path, int mode, ScopedMountNode* out_node);
34 virtual Error Unlink(const Path& path);
35 virtual Error Mkdir(const Path& path, int perm);
36 virtual Error Rmdir(const Path& path);
37 virtual Error Remove(const Path& path);
38 virtual Error Rename(const Path& path, const Path& newpath);
45 Error RemoveInternal(const Path
[all...]
H A Dmount_html5fs.h21 virtual Error Access(const Path& path, int a_mode);
22 virtual Error Open(const Path& path, int mode, ScopedMountNode* 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);
26 virtual Error Remove(const Path& path);
27 virtual Error Rename(const Path& path, const Path& newpath);
H A Dmount_stream.h58 virtual Error Access(const Path& path, int a_mode);
59 virtual Error Open(const Path& path,
62 virtual Error Unlink(const Path& path);
63 virtual Error Mkdir(const Path& path, int permissions);
64 virtual Error Rmdir(const Path& path);
65 virtual Error Remove(const Path& path);
66 virtual Error Rename(const Path& path, const Path& newpath);
H A Dmount.h66 virtual Error Access(const Path& path, int a_mode) = 0;
71 virtual Error Open(const Path& path,
78 virtual Error OpenResource(const Path& path, ScopedMountNode* out_node);
82 virtual Error Unlink(const Path& path) = 0;
83 virtual Error Mkdir(const Path& path, int permissions) = 0;
84 virtual Error Rmdir(const Path& path) = 0;
85 virtual Error Remove(const Path& path) = 0;
86 virtual Error Rename(const Path& path, const Path& newpath) = 0;
/external/llvm/unittests/Transforms/DebugIR/
H A DDebugIR.cpp22 #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) { argument
60 sys::fs::remove(Path, existed);
84 SmallVector<char, 8> Path; local
85 sys::path::append(Path, Dir, Filename);
86 Path.resize(Dir.size() + Filename.size() + 2);
87 Path[Dir.size() + Filename.size() + 1] = '\0';
88 return string(Path.data());
101 string Path(getPat
119 string Path; local
132 string Path; local
150 string Path; local
168 string Path; local
188 string Path; local
212 string Path; local
230 string Path; local
248 string Path; local
274 string Path; local
[all...]
/external/chromium_org/chrome/browser/ui/tabs/
H A Dtab_resources.h9 class Path;
23 gfx::Path* path);
/external/chromium_org/ui/gfx/
H A Dpath.cc11 Path::Path() function in class:gfx::Path
15 Path::Path(const Point* points, size_t count) { function in class:gfx::Path
22 Path::Path(const PointF* points, size_t count) { function in class:gfx::Path
29 Path::~Path() {
H A Dpath.h15 class GFX_EXPORT Path : public SkPath { class in namespace:gfx
17 // Used by Path(Point,size_t) constructor.
27 Path();
30 Path(const Point* points, size_t count);
31 Path(const PointF* points, size_t count);
33 ~Path();
56 DISALLOW_COPY_AND_ASSIGN(Path);
H A Dpath_aura.cc12 SkRegion* Path::CreateNativeRegion() const {
26 NativeRegion Path::IntersectRegions(NativeRegion r1, NativeRegion r2) {
33 NativeRegion Path::CombineRegions(NativeRegion r1, NativeRegion r2) {
40 NativeRegion Path::SubtractRegion(NativeRegion r1, NativeRegion r2) {
/external/chromium_org/ui/views/window/
H A Dwindow_shape.h12 class Path;
20 gfx::Path* window_mask);
/external/chromium_org/third_party/skia/src/svg/
H A DSkSVGPath.h16 DECLARE_SVG_INFO(Path);
/external/skia/src/svg/
H A DSkSVGPath.h16 DECLARE_SVG_INFO(Path);
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DPathList.java37 public class PathList extends SIPHeaderList<Path> {
42 super(Path.class, PathHeader.NAME);
/external/llvm/include/llvm-c/
H A DBitWriter.h38 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderDetailsMarker.h43 Path getCanonicalPath() const;
44 Path getPath(const LayoutPoint& origin) const;

Completed in 390 milliseconds

1234567891011>>