/frameworks/compile/mclinker/lib/Support/ |
D | Path.cpp | 34 const Path::StringType separator_str("/"); 41 const Path::StringType separator_str("/"); 49 Path::Path() : m_PathName() { in Path() function in mcld::sys::fs::Path 52 Path::Path(const Path::ValueType* s) : m_PathName(s) { in Path() function in mcld::sys::fs::Path 55 Path::Path(const Path::StringType& s) : m_PathName(s) { in Path() function in mcld::sys::fs::Path 58 Path::Path(const Path& pCopy) : m_PathName(pCopy.m_PathName) { in Path() function in mcld::sys::fs::Path 61 Path::~Path() { in ~Path() 64 bool Path::isFromRoot() const { in isFromRoot() 70 bool Path::isFromPWD() const { in isFromPWD() 76 Path& Path::assign(const Path::StringType& s) { in assign() [all …]
|
D | RealPath.cpp | 18 RealPath::RealPath() : Path() { in RealPath() 21 RealPath::RealPath(const RealPath::ValueType* s) : Path(s) { in RealPath() 25 RealPath::RealPath(const RealPath::StringType& s) : Path(s) { in RealPath() 29 RealPath::RealPath(const Path& pPath) : Path(pPath) { in RealPath() 36 RealPath& RealPath::assign(const Path& pPath) { in assign() 37 Path::m_PathName.assign(pPath.native()); in assign() 45 Path path_name; in initialize()
|
D | Directory.cpp | 26 const Path dot_path("."); 27 const Path dot_dot_path(".."); 43 Directory::Directory(const Path& pPath, FileStatus st, FileStatus symlink_st) in Directory() 57 : Directory(sys::fs::Path(pPath), st, symlink_st) { in Directory() 83 void Directory::assign(const Path& pPath, in assign() 156 Path* DirIterator::path() { in path() 162 const Path* DirIterator::path() const { in path() 223 const Path* x_path = path(); in operator ==() 224 const Path* y_path = y.path(); in operator ==()
|
/frameworks/compile/mclinker/include/mcld/Support/ |
D | Path.h | 44 class Path { 50 Path(); 51 explicit Path(const ValueType* s); 52 explicit Path(const StringType& s); 53 Path(const Path& pCopy); 54 virtual ~Path(); 58 Path& assign(InputIterator begin, InputIterator end); 59 Path& assign(const StringType& s); 60 Path& assign(const ValueType* s, unsigned int length); 64 Path& append(InputIterator begin, InputIterator end); [all …]
|
D | FileSystem.h | 69 class Path; variable 73 bool exists(const Path& pPath); 74 bool is_directory(const Path& pPath); 78 extern Path::StringType static_library_extension; 79 extern Path::StringType shared_library_extension; 80 extern Path::StringType executable_extension; 81 extern Path::StringType relocatable_extension; 82 extern Path::StringType assembly_extension; 83 extern Path::StringType bitcode_extension; 85 size_t canonicalize(Path::StringType& pPathName); [all …]
|
D | Directory.h | 48 explicit Directory(const Path& pPath, 68 void assign(const Path& pPath, 78 const Path& path() const { return m_Path; } in path() 90 mcld::sys::fs::Path m_Path; 137 Path* generic_path(); 139 Path* path(); 140 const Path* path() const;
|
D | RealPath.h | 23 class RealPath : public Path { 25 typedef Path::ValueType ValueType; 26 typedef Path::StringType StringType; 32 explicit RealPath(const Path& pPath); 36 RealPath& assign(const Path& pPath);
|
/frameworks/compile/mclinker/unittests/ |
D | PathTest.cpp | 21 m_pTestee = new Path(); in PathTest() 47 m_pTestee = new Path(root); in TEST_F() 57 m_pTestee = new Path(root); in TEST_F() 67 m_pTestee = new Path(root); in TEST_F() 78 m_pTestee = new Path(root); in TEST_F() 87 Path* p2 = new Path("ccc///////"); in TEST_F() 92 m_pTestee = new Path(root); in TEST_F() 99 Path* p2 = new Path("aaa//"); in TEST_F() 105 m_pTestee = new Path(root); in TEST_F() 117 m_pTestee = new Path("aa/"); in TEST_F() [all …]
|
D | LinkerTest.cpp | 83 Path search_dir(TOPDIR); in TEST_F() 99 Path crtbegin(search_dir); in TEST_F() 104 Path plasma(TOPDIR); in TEST_F() 115 Path crtend(search_dir); in TEST_F() 141 Path search_dir(TOPDIR); in TEST_F() 158 Path crtbegin(search_dir); in TEST_F() 163 Path plasma(TOPDIR); in TEST_F() 174 Path crtend(search_dir); in TEST_F() 239 Path search_dir(TOPDIR); in TEST_F() 256 Path crtbegin(search_dir); in TEST_F() [all …]
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
D | PathOpsActivity.java | 24 import android.graphics.Path; 40 private Path[] mPaths; 57 Path.Op[] ops = Path.Op.values(); in onSizeChanged() 58 mPaths = new Path[ops.length]; in onSizeChanged() 62 Path p1 = new Path(); in onSizeChanged() 63 p1.addRect(0.0f, 0.0f, mSize, mSize, Path.Direction.CW); in onSizeChanged() 65 Path p2 = new Path(); in onSizeChanged() 66 p2.addCircle(mSize, mSize, mSize / 2.0f, Path.Direction.CW); in onSizeChanged() 69 mPaths[i] = new Path(); in onSizeChanged() 81 for (Path path : mPaths) { in onDraw()
|
D | PathsCacheActivity.java | 23 import android.graphics.Path; 33 private Path mPath; 37 private final ArrayList<Path> mPathList = new ArrayList<Path>(); 49 private static Path makePath() { in makePath() 50 Path path = new Path(); in makePath() 55 private static void buildPath(Path path) { in buildPath() 62 private static Path makeLargePath() { in makeLargePath() 63 Path path = new Path(); in makeLargePath() 68 private static void buildLargePath(Path path) { in buildLargePath() 115 Path path = makePath(); in onDraw()
|
D | TextOnPathActivity.java | 23 import android.graphics.Path; 30 private Path mPath; 31 private Path mStraightPath; 44 private static Path makePath() { in makePath() 45 Path path = new Path(); in makePath() 50 private static void buildPath(Path path) { in buildPath() 57 private static Path makeStraightPath() { in makeStraightPath() 58 Path path = new Path(); in makeStraightPath() 63 private static void buildStraightPath(Path path) { in buildStraightPath()
|
D | SmallCircleActivity.java | 23 import android.graphics.Path; 49 private final Path mPath; 54 mPath = new Path(); in PathView() 55 mPath.addCircle(SIZE * 0.5f, SIZE * 0.5f, SIZE * 0.275f, Path.Direction.CW); in PathView() 56 mPath.addCircle(SIZE * 0.5f, SIZE * 0.5f, SIZE * 0.225f, Path.Direction.CCW); in PathView()
|
/frameworks/base/core/tests/coretests/src/android/graphics/ |
D | PathOffsetTest.java | 21 import android.graphics.Path.Direction; 44 Path actualPath = new Path(); in testPathOffset() 50 Path expectedPath = new Path(); in testPathOffset() 60 Path initialPath = new Path(); in testPathOffsetWithDestination() 62 Path actualPath = new Path(); in testPathOffsetWithDestination() 68 Path expectedPath = new Path(); in testPathOffsetWithDestination() 75 private static void assertPaths(Path actual, Path expected) { in assertPaths() 81 private static Bitmap drawAndGetBitmap(Path path) { in drawAndGetBitmap()
|
/frameworks/base/core/java/android/transition/ |
D | PatternPathMotion.java | 23 import android.graphics.Path; 41 private Path mOriginalPatternPath; 43 private final Path mPatternPath = new Path(); 62 Path pattern = PathParser.createPathFromPathData(pathData); in PatternPathMotion() 78 public PatternPathMotion(Path patternPath) { in PatternPathMotion() 90 public Path getPatternPath() { in getPatternPath() 102 public void setPatternPath(Path patternPath) { in setPatternPath() 130 public Path getPath(float startX, float startY, float endX, float endY) { in getPath() 139 Path path = new Path(); in getPath()
|
/frameworks/compile/mclinker/include/mcld/MC/ |
D | SearchDirs.h | 44 explicit SearchDirs(const sys::fs::Path& pSysRoot); 49 sys::fs::Path* find(const std::string& pNamespec, 52 const sys::fs::Path* find(const std::string& pNamespec, 55 void setSysRoot(const sys::fs::Path& pSysRoot) { m_SysRoot = pSysRoot; } in setSysRoot() 56 const sys::fs::Path& sysroot() const { return m_SysRoot; } in sysroot() 69 bool insert(const sys::fs::Path& pDirectory); 73 sys::fs::Path m_SysRoot;
|
/frameworks/support/v4/donut/android/support/v4/view/animation/ |
D | PathInterpolatorDonut.java | 19 import android.graphics.Path; 36 public PathInterpolatorDonut(Path path) { in PathInterpolatorDonut() 98 private static Path createQuad(float controlX, float controlY) { in createQuad() 99 final Path path = new Path(); in createQuad() 105 private static Path createCubic(float controlX1, float controlY1, in createCubic() 107 final Path path = new Path(); in createCubic()
|
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/ |
D | PathTest.java | 27 Path path = new Path(); in testResetPreservesFillType() 29 final Path.FillType defaultFillType = path.getFillType(); in testResetPreservesFillType() 30 final Path.FillType fillType = Path.FillType.INVERSE_EVEN_ODD; in testResetPreservesFillType()
|
/frameworks/base/graphics/java/android/graphics/drawable/shapes/ |
D | RoundRectShape.java | 22 import android.graphics.Path; 38 private Path mPath; // this is what we actually draw 74 mPath = new Path(); in RoundRectShape() 112 mPath.addRoundRect(r, mOuterRadii, Path.Direction.CW); in onResize() 114 mPath.addRect(r, Path.Direction.CW); in onResize() 121 mPath.addRoundRect(mInnerRect, mInnerRadii, Path.Direction.CCW); in onResize() 123 mPath.addRect(mInnerRect, Path.Direction.CCW); in onResize() 136 shape.mPath = new Path(mPath); in clone()
|
/frameworks/compile/mclinker/lib/Support/Windows/ |
D | FileSystem.inc | 37 Path::StringType static_library_extension = ".a"; 38 Path::StringType shared_library_extension = ".so"; 39 Path::StringType executable_extension = ".exe"; 40 Path::StringType relocatable_extension = ".o"; 41 Path::StringType assembly_extension = ".s"; 42 Path::StringType bitcode_extension = ".bc"; 45 fs::Path file_filter(pDir.path()); 72 int open(const Path& pPath, int pOFlag) { 76 int open(const Path& pPath, int pOFlag, int pPerm) { 137 void get_pwd(Path& pPWD) {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
D | PathInterpolatorBuilder.java | 17 import android.graphics.Path; 30 public PathInterpolatorBuilder(Path path) { in PathInterpolatorBuilder() 44 Path path = new Path(); in initQuad() 51 Path path = new Path(); in initCubic() 57 private void initPath(Path path) { in initPath()
|
/frameworks/base/core/java/android/view/animation/ |
D | PathInterpolator.java | 22 import android.graphics.Path; 60 public PathInterpolator(Path path) { in PathInterpolator() 110 Path path = PathParser.createPathFromPathData(pathData); in parseInterpolatorFromTypeArray() 144 Path path = new Path(); in initQuad() 151 Path path = new Path(); in initCubic() 157 private void initPath(Path path) { in initPath()
|
/frameworks/base/core/java/android/gesture/ |
D | Gesture.java | 22 import android.graphics.Path; 125 public Path toPath() { in toPath() 129 public Path toPath(Path path) { in toPath() 130 if (path == null) path = new Path(); in toPath() 142 public Path toPath(int width, int height, int edge, int numSample) { in toPath() 146 public Path toPath(Path path, int width, int height, int edge, int numSample) { in toPath() 147 if (path == null) path = new Path(); in toPath() 204 Path path = strokes.get(i).toPath(width - 2 * edge, height - 2 * edge, numSample); in toBitmap() 234 final Path path = toPath(); in toBitmap()
|
/frameworks/base/core/java/android/util/ |
D | PathParser.java | 17 import android.graphics.Path; 29 public static Path createPathFromPathData(String pathString) { in createPathFromPathData() 33 Path path = new Path(); in createPathFromPathData() 44 public static void createPathFromPathData(Path outPath, PathData data) { in createPathFromPathData()
|
/frameworks/compile/mclinker/lib/MC/ |
D | ContextFactory.cpp | 18 : UniqueGCFactoryBase<sys::fs::Path, LDContext, 0>(pNum) { in ContextFactory() 24 LDContext* ContextFactory::produce(const sys::fs::Path& pPath) { in produce() 27 result = UniqueGCFactoryBase<sys::fs::Path, LDContext, 0>::allocate(); in produce() 35 return produce(sys::fs::Path(pPath)); in produce()
|