Searched defs:Path (Results 1 - 25 of 120) sorted by relevance

12345

/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);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dpath.h17 class Path { class in namespace:nacl_io
19 Path() {} function in class:nacl_io::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);
40 Path& Append(const std::string& path);
41 Path& Prepend(const std::string& path);
42 Path& Set(const std::string& path);
45 Path Paren
[all...]
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dmock_fs.h16 typedef nacl_io::Path Path; typedef in class:MockFs
26 MOCK_METHOD2(Access, Error(const Path&, int));
27 MOCK_METHOD3(Open, Error(const Path&, int, ScopedNode*));
28 MOCK_METHOD4(OpenWithMode, Error(const Path&, int, mode_t, ScopedNode*));
29 MOCK_METHOD2(OpenResource, Error(const Path&, ScopedNode*));
30 MOCK_METHOD1(Unlink, Error(const Path&));
31 MOCK_METHOD2(Mkdir, Error(const Path&, int));
32 MOCK_METHOD1(Rmdir, Error(const Path&));
33 MOCK_METHOD1(Remove, Error(const Path
[all...]
/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/clang/lib/FrontendTool/
H A DExecuteCompilerInvocation.cpp203 const std::string &Path = Clang->getFrontendOpts().Plugins[i]; local
205 if (llvm::sys::DynamicLibrary::LoadLibraryPermanently(Path.c_str(), &Error))
207 << Path << Error;
/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/llvm/lib/Object/
H A DBinary.cpp18 #include "llvm/Support/Path.h"
77 ErrorOr<Binary *> object::createBinary(StringRef Path) { argument
79 MemoryBuffer::getFileOrSTDIN(Path);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
H A DPath.java29 public class Path { class
31 private Path() { method in class:Path
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DPath.java43 public class Path class in inherits:gov.nist.javax.sip.header.AddressParametersHeader,PathHeader,SIPHeaderNamesIms,ExtensionHeader
51 public Path(AddressImpl address) { method in class:Path
59 public Path() method in class:Path
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathPath.cpp207 Path::Path(Expression* filter, LocationPath* path) function in class:blink::XPath::Path
216 Path::~Path()
220 void Path::trace(Visitor* visitor)
227 Value Path::evaluate(EvaluationContext& context) const
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DPath.h68 class PLATFORM_EXPORT Path { class in namespace:blink
71 Path();
72 ~Path();
74 Path(const Path&);
75 Path& operator=(const Path&);
76 bool operator==(const Path&) const;
93 // state-less method on Path.
97 explicit PositionCalculator(const Path
[all...]
/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;
H A DVersion.cpp93 std::string Path = getClangRepositoryPath(); local
95 if (!Path.empty() || !Revision.empty()) {
97 if (!Path.empty())
98 OS << Path; local
100 if (!Path.empty())
/external/clang/lib/Frontend/
H A DModuleDependencyCollector.cpp19 #include "llvm/Support/Path.h"
61 static void removePathTraversal(SmallVectorImpl<char> &Path) { argument
64 StringRef P(Path.data(), Path.size());
72 assert(ComponentStack.size() && "Path traverses out of parent");
83 // Put the result in Path.
84 Path.swap(Buffer);
/external/clang/unittests/Basic/
H A DFileManagerTest.cpp30 void InjectFileOrDirectory(const char *Path, ino_t INode, bool IsFile) { argument
32 Data.Name = Path;
39 StatCalls[Path] = Data;
44 void InjectFile(const char *Path, ino_t INode) { argument
45 InjectFileOrDirectory(Path, INode, /*IsFile=*/true);
49 void InjectDirectory(const char *Path, ino_t INode) { argument
50 InjectFileOrDirectory(Path, INode, /*IsFile=*/false);
54 LookupResult getStat(const char *Path, FileData &Data, bool isFile,
57 if (StatCalls.count(Path) != 0) {
58 Data = StatCalls[Path];
[all...]
/external/llvm/include/llvm/Support/
H A DPath.h1 //===- llvm/Support/Path.h - Path Operating System Concept ------*- C++ -*-===//
31 /// @brief Path iterator.
51 StringRef Path; ///< The entire path. member in class:llvm::sys::path::const_iterator
52 StringRef Component; ///< The current component. Not necessarily in Path.
53 size_t Position; ///< The iterators current position within Path.
55 // An end iterator has Position = Path.size() + 1.
/external/llvm/lib/Support/
H A DFileOutputBuffer.cpp24 StringRef Path, StringRef TmpPath)
26 , FinalPath(Path)
23 FileOutputBuffer(mapped_file_region * R, StringRef Path, StringRef TmpPath) argument
/external/llvm/unittests/Transforms/DebugIR/
H A DDebugIR.cpp24 #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
61 std::error_code EC = sys::fs::remove(Path, false);
85 SmallVector<char, 8> Path; local
86 sys::path::append(Path, Dir, Filename);
87 Path.resize(Dir.size() + Filename.size() + 2);
88 Path[Dir.size() + Filename.size() + 1] = '\0';
89 return string(Path.data());
102 string Path(getPat
120 string Path; local
133 string Path; local
151 string Path; local
169 string Path; local
189 string Path; local
213 string Path; local
231 string Path; local
249 string Path; local
275 string Path; local
[all...]
/external/chromium_org/content/browser/fileapi/
H A Dlocal_file_stream_writer_unittest.cc44 base::FilePath Path(const std::string& name) { function in class:content::LocalFileStreamWriterTest
75 base::FilePath path = Path(name);
132 base::FilePath path = Path("file_a");
142 base::FilePath path = Path("file_a");
/external/chromium_org/tools/gyp/pylib/gyp/
H A DMSVSVersion.py58 def Path(self): member in class:VisualStudioVersion
/external/clang/examples/clang-interpreter/
H A Dmain.cpp26 #include "llvm/Support/Path.h"
71 std::string Path = GetExecutablePath(argv[0]); local
78 Driver TheDriver(Path, llvm::sys::getProcessTriple(), Diags);
/external/clang/lib/Rewrite/Frontend/
H A DFrontendActions.cpp23 #include "llvm/Support/Path.h"
68 SmallString<128> Path(Filename);
69 llvm::sys::path::replace_extension(Path,
70 NewSuffix + llvm::sys::path::extension(Path));
71 return Path.str();
78 SmallString<128> Path; variable
81 Path); variable
82 return Path.str();
/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/fonttools/Lib/fontTools/pens/
H A DreportLabPen.py4 from reportlab.graphics.shapes import Path namespace
9 """A pen for drawing onto a reportlab.graphics.shapes.Path object."""
14 path = Path()
56 pen = ReportLabPen(gs, Path(fillColor=colors.red, strokeWidth=5))

Completed in 1530 milliseconds

12345