/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() {} 17 Path::Path(const Path& path) { 18 paths_ = path.paths_; 21 Path::Path(const std::string& path) [all...] |
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
mount_mock.h | 16 typedef nacl_io::Path Path; 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&, const Path&)) [all...] |
/external/clang/lib/FrontendTool/ |
ExecuteCompilerInvocation.cpp | 200 const std::string &Path = Clang->getFrontendOpts().Plugins[i]; 202 if (llvm::sys::DynamicLibrary::LoadLibraryPermanently(Path.c_str(), &Error)) 204 << Path << Error;
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XPathPath.cpp | 188 Path::Path(Expression* filter, LocationPath* path) 190 , m_path(path) 197 Path::~Path() 203 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/chromium_org/third_party/WebKit/Source/platform/graphics/ |
Path.h | 68 class PLATFORM_EXPORT Path { 71 Path(); 72 ~Path(); 74 Path(const Path&); 75 Path& operator=(const Path&); 76 bool operator==(const Path&) const; 90 // Gets the current point of the current path, which is conceptually the final point reached by the path so far [all...] |
/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/nist-sip/java/gov/nist/javax/sip/header/ims/ |
Path.java | 43 public class Path 51 public Path(AddressImpl address) { 59 public Path()
|
/external/chromium_org/webkit/browser/fileapi/ |
local_file_stream_writer_unittest.cc | 41 base::FilePath Path(const std::string& name) { 42 return temp_dir_.path().AppendASCII(name); 64 std::string GetFileContent(const base::FilePath& path) { 66 base::ReadFileToString(path, &content); 72 base::FilePath path = Path(name); local 73 file_util::WriteFile(path, data.c_str(), data.size()); 74 return path; 81 LocalFileStreamWriter* CreateWriter(const base::FilePath& path, 83 return new LocalFileStreamWriter(file_task_runner(), path, offset) 97 base::FilePath path = CreateFileWithContent("file_a", std::string()); local 108 base::FilePath path = CreateFileWithContent("file_a", "foobar"); local 118 base::FilePath path = CreateFileWithContent("file_a", "foobar"); local 128 base::FilePath path = Path("file_a"); local 138 base::FilePath path = Path("file_a"); local 146 base::FilePath path = CreateFileWithContent("file_a", std::string()); local 162 base::FilePath path = CreateFileWithContent("file_a", "foobar"); local [all...] |
/external/clang/examples/clang-interpreter/ |
main.cpp | 27 #include "llvm/Support/Path.h" 71 std::string Path = GetExecutablePath(argv[0]); 78 Driver TheDriver(Path, llvm::sys::getProcessTriple(), "a.out", Diags); 136 // Infer the builtin include path if unspecified.
|
/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 | 22 #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) { 60 sys::fs::remove(Path, existed); 82 /// Returns a concatenated path string consisting of Dir and Filename 84 SmallVector<char, 8> Path; 85 sys::path::append(Path, Dir, Filename); 86 Path.resize(Dir.size() + Filename.size() + 2); 87 Path[Dir.size() + Filename.size() + 1] = '\0' [all...] |
/external/lzma/CPP/7zip/UI/Common/ |
OpenArchive.h | 21 UString Path;
|
/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 | 24 #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...] |
/external/clang/unittests/Tooling/ |
RewriterTestContext.h | 25 #include "llvm/Support/Path.h" 63 SmallString<1024> Path; 66 llvm::sys::fs::createTemporaryFile(Name, "", FD, Path); 73 const FileEntry *File = Files.getFile(Path); 76 StringRef Found = TemporaryFiles.GetOrCreateValue(Name, Path.str()).second; 77 assert(Found == Path); 98 std::string Path = TemporaryFiles.lookup(Name); 99 assert(!Path.empty()); 105 return Files.getBufferForFile(Path, NULL)->getBuffer();
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/ |
Path.java | 29 public class Path { 31 private Path() { 40 private static String createPath(Box box, String path) { 42 return path; 46 path = String.format("/%s[%d]", box.getType(), index) + path; 48 return createPath(box.getParent(), path); 52 public static Box getPath(Box box, String path) { 53 List<Box> all = getPaths(box, path); 58 public static List<Box> getPaths(Box box, String path) { [all...] |
/frameworks/base/graphics/java/android/renderscript/ |
Path.java | 26 public class Path extends BaseObj { 44 Path(int id, RenderScript rs, Primitive p, Allocation vtx, Allocation loop, float q) { 69 public static Path createStaticPath(RenderScript rs, Primitive p, float quality, Allocation vtx) { 71 Path newPath = new Path(id, rs, p, null, null, quality); 75 public static Path createStaticPath(RenderScript rs, Primitive p, float quality, Allocation vtx, Allocation loops) { 79 public static Path createDynamicPath(RenderScript rs, Primitive p, float quality, Allocation vtx) { 83 public static Path createDynamicPath(RenderScript rs, Primitive p, float quality, Allocation vtx, Allocation loops) {
|
/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. 42 /** \class Path 43 * \brief Path provides an abstraction for the path to a file or directory in 46 class Path 53 Path(); 54 Path(const ValueType* s); 55 Path(const StringType &s) [all...] |