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

1 2 3 4 5 6

  /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() {
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/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...]
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/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/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/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp 203 const std::string &Path = Clang->getFrontendOpts().Plugins[i];
205 if (llvm::sys::DynamicLibrary::LoadLibraryPermanently(Path.c_str(), &Error))
207 << Path << Error;
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathPath.cpp 209 Path::Path(Expression* filter, LocationPath* path)
211 , m_path(adoptPtrWillBeNoop(path))
218 Path::~Path()
222 void Path::trace(Visitor* visitor)
229 Value Path::evaluate() const
  /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...]
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
Path.java 43 public class Path
51 public Path(AddressImpl address) {
59 public 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/content/browser/fileapi/
local_file_stream_writer_unittest.cc 44 base::FilePath Path(const std::string& name) {
45 return temp_dir_.path().AppendASCII(name);
67 std::string GetFileContent(const base::FilePath& path) {
69 base::ReadFileToString(path, &content);
75 base::FilePath path = Path(name); local
76 base::WriteFile(path, data.c_str(), data.size());
77 return path;
84 LocalFileStreamWriter* CreateWriter(const base::FilePath& path,
86 return new LocalFileStreamWriter(file_task_runner(), path, offset
101 base::FilePath path = CreateFileWithContent("file_a", std::string()); local
112 base::FilePath path = CreateFileWithContent("file_a", "foobar"); local
122 base::FilePath path = CreateFileWithContent("file_a", "foobar"); local
132 base::FilePath path = Path("file_a"); local
142 base::FilePath path = Path("file_a"); local
150 base::FilePath path = CreateFileWithContent("file_a", std::string()); local
166 base::FilePath path = CreateFileWithContent("file_a", "foobar"); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Path.h 69 class PLATFORM_EXPORT Path {
72 Path();
73 ~Path();
75 Path(const Path&);
76 Path& operator=(const Path&);
77 bool operator==(const Path&) const;
89 // Helper for computing a sequence of positions and normals (normal angles) on a path.
94 // state-less method on Path
    [all...]
  /external/clang/examples/clang-interpreter/
main.cpp 26 #include "llvm/Support/Path.h"
71 std::string Path = GetExecutablePath(argv[0]);
78 Driver TheDriver(Path, llvm::sys::getProcessTriple(), Diags);
137 // Infer the builtin include path if unspecified.
  /external/clang/lib/Basic/
Version.cpp 48 // Trim path prefix off, assuming path came from standard cfe path.
64 // Trim path prefix off, assuming path came from standard llvm path.
93 std::string Path = getClangRepositoryPath();
95 if (!Path.empty() || !Revision.empty()) {
97 if (!Path.empty())
98 OS << Path;
    [all...]
  /external/clang/lib/Tooling/
FileMatchTrie.cpp 17 #include "llvm/Support/Path.h"
34 /// Each node has storage for up to one path and a map mapping a path segment to
42 /// An insert of a path
45 /// - If the node has a path 'p2' but no children, take the last path segment
51 /// An insert operation is linear in the number of a path's segments.
53 // We cannot put relative paths into the FileMatchTrie as then a path can be
54 // a postfix of another path, violating a core assumption of the trie.
55 if (llvm::sys::path::is_relative(NewPath)
    [all...]
  /external/llvm/include/llvm/Support/
Path.h 1 //===- llvm/Support/Path.h - Path Operating System Concept ------*- C++ -*-===//
10 // This file declares the llvm::sys::path namespace. It is designed after
12 // path class.
26 namespace path { namespace in namespace:llvm::sys
31 /// @brief Path iterator.
34 /// components in \a path. The forward traversal order is as follows:
51 StringRef Path; ///< The entire path.
52 StringRef Component; ///< The current component. Not necessarily in 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...]
  /external/lzma/CPP/7zip/UI/Common/
OpenArchive.h 21 UString Path;
  /system/extras/ext4_utils/
canned_fs_config.c 28 const char* path; member in struct:__anon81290
33 } Path;
35 static Path* canned_data = NULL;
40 return strcmp(((Path*)a)->path, ((Path*)b)->path);
54 canned_data = (Path*) realloc(canned_data, canned_alloc * sizeof(Path));
56 Path* p = canned_data + canned_used
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/
MSVSVersion.py 21 path, sdk_based, default_toolset=None):
28 self.path = path
58 def Path(self):
59 """Returns the path to Visual Studio installation."""
60 return self.path
63 """Returns the path to a given compiler tool. """
64 return os.path.normpath(os.path.join(self.path, "VC/bin", tool)
    [all...]
  /external/clang/lib/Rewrite/Frontend/
FrontendActions.cpp 23 #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;
79 llvm::sys::fs::createTemporaryFile(llvm::sys::path::filename(Filename),
80 llvm::sys::path::extension(Filename), fd
    [all...]

Completed in 830 milliseconds

1 2 3 4 5 6