Searched defs:Path (Results 1 - 9 of 9) sorted by last modified time

/frameworks/compile/mclinker/include/mcld/Support/
H A DPath.h1 //===- Path.h -------------------------------------------------------------===//
9 // This file declares the mcld::sys::fs::Path. It follows TR2/boost
40 /** \class Path
41 * \brief Path provides an abstraction for the path to a file or directory in
44 class Path { class in namespace:mcld::sys::fs
50 Path();
51 explicit Path(const ValueType* s);
52 explicit Path(const StringType& s);
53 Path(const Path
[all...]
/frameworks/compile/mclinker/lib/Support/
H A DPath.cpp1 //===- Path.cpp -----------------------------------------------------------===//
9 #include "mcld/Support/Path.h"
34 const Path::StringType separator_str("/");
41 const Path::StringType separator_str("/");
47 // Path
49 Path::Path() : m_PathName() { function in class:mcld::sys::fs::Path
52 Path::Path(const Path function in class:mcld::sys::fs::Path
55 Path::Path(const Path::StringType& s) : m_PathName(s) { function in class:mcld::sys::fs::Path
58 Path::Path(const Path& pCopy) : m_PathName(pCopy.m_PathName) { function in class:mcld::sys::fs::Path
[all...]
/frameworks/compile/slang/
H A Dslang.cpp71 #include "llvm/Support/Path.h"
285 clang::ModuleIdPath Path,
283 loadModule( clang::SourceLocation ImportLoc, clang::ModuleIdPath Path, clang::Module::NameVisibilityKind Visibility, bool IsInclusionDirective) argument
/frameworks/base/libs/hwui/
H A DPathCache.h125 Path
138 struct Path { struct in union:android::uirenderer::PathDescription::Shape
H A DSkiaCanvas.cpp211 : mType(Type::Path), mOp(op), mMatrix(m), mPath(&path) {}
222 case Type::Path:
232 Path, member in class:android::SkiaCanvas::Clip::Type
H A DVectorDrawable.cpp36 void Path::dump() {
37 ALOGD("Path: %s has %zu points", mName.c_str(), mProperties.getData().points.size());
41 Path::Path(const char* pathStr, size_t strLength) { function in class:android::uirenderer::VectorDrawable::Path
48 Path::Path(const Path& path) : Node(path) { function in class:android::uirenderer::VectorDrawable::Path
52 const SkPath& Path::getUpdatedPath(bool useStagingData, SkPath* tempStagingPath) {
67 void Path::syncProperties() {
76 FullPath::FullPath(const FullPath& path) : Path(pat
[all...]
H A DVectorDrawable.h64 * Group Path Group
66 * Path Path Path
128 class ANDROID_API Path : public Node { class in namespace:android::uirenderer::VectorDrawable
166 Path(const Path& path);
167 Path(const char* path, size_t strLength);
168 Path() {} function in class:android::uirenderer::VectorDrawable::Path
204 class ANDROID_API FullPath: public Path {
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DPath.java28 * The Path class encapsulates compound (multiple contour) geometric paths
34 public class Path { class
53 public Path() { method in class:Path
62 public Path(Path src) { method in class:Path
102 public void set(@NonNull Path src) {
124 * @see #op(Path, android.graphics.Path.Op)
125 * @see #op(Path, Path, androi
[all...]
/frameworks/base/core/java/android/provider/
H A DDocumentsContract.java1383 * The {@link Path#getPath()} of the return value contains the document ID
1387 * The {@link Path#getRootId()} of the return value returns {@code null}.
1393 public static Path findDocumentPath(ContentResolver resolver, Uri treeUri)
1413 * the tree. The {@link Path#getPath()} of the return value contains document ID
1427 public static Path findDocumentPath(ContentProviderClient client, Uri uri)
1580 public static final class Path implements Parcelable { class in class:DocumentsContract
1586 * Creates a Path.
1592 public Path(@Nullable String rootId, List<String> path) { method in class:DocumentsContract.Path
1622 if (o == null || !(o instanceof Path)) {
1625 Path pat
[all...]

Completed in 6212 milliseconds