Searched refs:Path (Results 26 - 50 of 481) sorted by relevance

1234567891011>>

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dfilesystem.h68 virtual Error OpenWithMode(const Path& path,
76 Error Open(const Path& path,
83 virtual Error OpenResource(const Path& path, ScopedNode* out_node);
87 virtual Error Unlink(const Path& path) = 0;
88 virtual Error Mkdir(const Path& path, int permissions) = 0;
89 virtual Error Rmdir(const Path& path) = 0;
90 virtual Error Remove(const Path& path) = 0;
91 virtual Error Rename(const Path& path, const Path& newpath) = 0;
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathUtilities.h30 class Path;
35 // String/SVGPathByteStream -> Path
36 bool buildPathFromString(const String&, Path&);
37 bool buildPathFromByteStream(const SVGPathByteStream*, Path&);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLAreaElement.h33 class Path;
45 Path computePath(RenderObject*) const;
61 Path getRegion(const LayoutSize&) const;
64 OwnPtr<Path> m_region;
/external/chromium_org/ui/gfx/
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/llvm/include/llvm-c/
H A DBitWriter.h38 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path);
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGTextPath.h32 Path layoutPath() const;
42 Path m_layoutPath;
H A DRenderSVGTextPath.cpp51 Path RenderSVGTextPath::layoutPath() const
56 return Path();
60 Path pathData;
/external/chromium_org/tools/gyp/test/mac/sdkroot/
H A Dtest_shorthand.sh10 if expected=$(xcodebuild -version -sdk macosx$sdk Path 2>/dev/null) ; then
/external/chromium_org/ui/views/
H A Dmasked_targeter_delegate.h13 class Path;
31 virtual bool GetHitTestMask(gfx::Path* mask) const = 0;
/external/chromium_org/chrome/browser/browsing_data/
H A Dcanonical_cookie_hash.h44 if (less_than(cookie1.Path(), cookie2.Path()))
46 if (less_than(cookie2.Path(), cookie1.Path()))
74 cookie1.Path() == cookie2.Path();
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dfilesystem_test.cc33 if (Open(Path(filename), O_RDONLY, &node))
61 EXPECT_EQ(ENOENT, fs.Open(Path("/foo"), O_RDWR, &result_node));
66 EXPECT_EQ(0, fs.Open(Path("/foo"), O_RDWR | O_CREAT, &file));
77 EXPECT_EQ(0, fs.Open(Path("/"), O_RDONLY, &root));
81 EXPECT_EQ(EISDIR, fs.Open(Path("/"), O_RDWR, &root));
85 EXPECT_EQ(0, fs.Open(Path("/"), O_RDONLY, &root));
96 fs.Open(Path("/foo"), O_RDWR | O_CREAT | O_EXCL, &result_node));
101 EXPECT_EQ(EEXIST, fs.Mkdir(Path("/foo"), O_RDWR));
120 EXPECT_EQ(0, fs.Open(Path("/foo"), O_RDWR | O_CREAT, &result_node));
133 EXPECT_EQ(0, fs.Unlink(Path("/fo
[all...]
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DDetailsMarkerPainter.cpp12 #include "platform/graphics/Path.h"
40 static Path createPath(const FloatPoint* path)
42 Path result;
49 static Path createDownArrowPath()
55 static Path createUpArrowPath()
61 static Path createLeftArrowPath()
67 static Path createRightArrowPath()
73 Path DetailsMarkerPainter::getCanonicalPath() const
82 return Path();
85 Path DetailsMarkerPainte
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DPath.cpp31 #include "platform/graphics/Path.h"
44 Path::Path() function in class:blink::Path
49 Path::Path(const Path& other) function in class:blink::Path
54 Path::~Path()
58 Path& Path
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DPathTest.java3 import android.graphics.Path;
22 Path path = Robolectric.newInstanceOf(Path.class);
30 Path path = Robolectric.newInstanceOf(Path.class);
42 Path path = Robolectric.newInstanceOf(Path.class);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/Misc/
H A DStats.cs41 using Path = System.IO.Path;
119 Directory.CreateDirectory( Path.GetDirectoryName( absoluteFilename ) );
126 return personalFolder + Path.DirectorySeparatorChar +
127 ANTLRWORKS_DIR + Path.DirectorySeparatorChar +
/external/chromium_org/ui/wm/core/
H A Dmasked_window_targeter.h12 class Path;
25 virtual bool GetHitTestMask(aura::Window* window, gfx::Path* mask) const = 0;
/external/clang/lib/Basic/
H A DFileSystemStatCache.cpp16 #include "llvm/Support/Path.h"
54 bool FileSystemStatCache::get(const char *Path, FileData &Data, bool isFile, argument
62 R = Cache->getStat(Path, Data, isFile, F, FS);
66 llvm::ErrorOr<vfs::Status> Status = FS.status(Path);
82 std::error_code EC = FS.openFileForRead(Path, OwnedFile);
122 MemorizeStatCalls::getStat(const char *Path, FileData &Data, bool isFile, argument
124 LookupResult Result = statChained(Path, Data, isFile, F, FS);
134 if (!Data.IsDirectory || llvm::sys::path::is_absolute(Path))
135 StatCalls[Path] = Data;
/external/clang/unittests/Tooling/
H A DRewriterTestContext.h25 #include "llvm/Support/Path.h"
62 SmallString<1024> Path; local
64 std::error_code EC = llvm::sys::fs::createTemporaryFile(Name, "", FD, Path);
71 const FileEntry *File = Files.getFile(Path);
74 StringRef Found = TemporaryFiles.GetOrCreateValue(Name, Path.str()).second;
75 assert(Found == Path);
96 std::string Path = TemporaryFiles.lookup(Name); local
97 assert(!Path.empty());
104 Files.getBufferForFile(Path, nullptr));
/external/llvm/bindings/ocaml/bitwriter/
H A Dbitwriter_ocaml.c27 CAMLprim value llvm_write_bitcode_file(value M, value Path) { argument
28 int res = LLVMWriteBitcodeToFile((LLVMModuleRef) M, String_val(Path));
/external/llvm/lib/Bitcode/Writer/
H A DBitWriter.cpp20 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path) { argument
22 raw_fd_ostream OS(Path, ErrorInfo, sys::fs::F_None);
/external/clang/lib/Tooling/
H A DFileMatchTrie.cpp17 #include "llvm/Support/Path.h"
57 if (Path.empty()) {
59 Path = NewPath;
63 // This is a leaf, ignore duplicate entry if 'Path' equals 'NewPath'.
64 if (NewPath == Path)
66 // Make this a node and create a child-leaf with 'Path'.
68 StringRef(Path).drop_back(ConsumedLength)));
69 Children[Element].Path = Path;
102 if (Comparator.equivalent(StringRef(Path), FileNam
154 std::string Path; member in class:clang::tooling::FileMatchTrieNode
[all...]
/external/chromium_org/chrome/browser/ui/views/apps/
H A Dshaped_app_window_targeter.cc19 gfx::Path* mask) const {
H A Dshaped_app_window_targeter.h21 gfx::Path* mask) const OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DPath2D.h51 static PassRefPtrWillBeRawPtr<Path2D> create(const Path& path) { return adoptRefWillBeNoop(new Path2D(path)); }
53 const Path& path() const { return m_path; }
62 Path src = path->path();
72 Path2D(const Path& path)
/external/chromium_org/ui/views/bubble/
H A Dbubble_window_targeter.cc24 gfx::Path* mask) const {

Completed in 4273 milliseconds

1234567891011>>