Searched refs:Path (Results 26 - 50 of 145) sorted by relevance

123456

/frameworks/compile/mclinker/include/mcld/Support/
H A DDirectory.h14 #include <mcld/Support/Path.h>
27 * \brief A Directory object stores a Path object, a FileStatus object for
47 explicit Directory(const Path& pPath,
63 void assign(const Path& pPath,
73 const Path& path() const
86 mcld::sys::fs::Path m_Path;
133 Path* generic_path();
135 Path* path();
136 const Path* path() const;
H A DPathCache.h15 #include <mcld/Support/Path.h>
23 mcld::sys::fs::Path,
H A DCommandLine.h61 // parser<mcld::sys::fs::Path>
64 class parser<mcld::sys::fs::Path> : public basic_parser<mcld::sys::fs::Path>
70 mcld::sys::fs::Path &Val);
74 const mcld::sys::fs::Path &V,
H A DFileHandle.h11 #include <mcld/Support/Path.h>
76 bool open(const sys::fs::Path& pPath,
100 const sys::fs::Path& path() const
131 sys::fs::Path m_Path;
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DTextOnPathActivity.java23 import android.graphics.Path;
30 private Path mPath;
31 private Path mStraightPath;
44 private static Path makePath() {
45 Path path = new Path();
50 private static void buildPath(Path path) {
57 private static Path makeStraightPath() {
58 Path path = new Path();
[all...]
H A DClipRegion3Activity.java22 import android.graphics.Path;
51 private final Path mClipPath = new Path();
63 mClipPath.addCircle(0.0f, 0.0f, getWidth() / 4.0f, Path.Direction.CW);
H A DTextPathActivity.java23 import android.graphics.Path;
61 Path path = new Path();
70 private void drawTextAsPath(Canvas canvas, String text, Path path) {
H A DClipRegionActivity.java24 import android.graphics.Path;
59 private final Path mClipPath = new Path();
83 getWidth() / 4.0f, Path.Direction.CW);
H A DPathOffsetActivity.java24 import android.graphics.Path;
39 private Path mPath;
49 mPath = new Path();
H A DPathDestructionActivity.java23 import android.graphics.Path;
58 private Path getRandomPath() {
64 Path path = new Path();
82 Path path;
H A DScaledTextActivity.java24 import android.graphics.Path;
51 private final Path mPath;
80 private static Path makePath() {
81 Path path = new Path();
86 private static void buildPath(Path path) {
/frameworks/base/core/java/android/gesture/
H A DOrientedBoundingBox.java20 import android.graphics.Path;
55 public Path toPath() {
56 Path path = new Path();
/frameworks/compile/mclinker/unittests/
H A DPathTest.h12 #include "mcld/Support/Path.h"
19 * \brief a testcase for mcld::Path and its non-member funtions.
21 * \see Path
39 mcld::sys::fs::Path* m_pTestee;
H A DFileHandleTest.cpp10 #include <mcld/Support/Path.h>
46 mcld::sys::fs::Path path(TOPDIR);
63 mcld::sys::fs::Path path(TOPDIR);
87 mcld::sys::fs::Path path(TOPDIR);
H A DMCRegionFragmentTest.cpp14 #include <mcld/Support/Path.h>
46 Path path(TOPDIR);
61 Path path(TOPDIR);
/frameworks/compile/mclinker/include/mcld/MC/
H A DInput.h16 #include <mcld/Support/Path.h>
52 const sys::fs::Path& pPath,
57 const sys::fs::Path& pPath,
70 const sys::fs::Path& path() const
73 void setPath(const sys::fs::Path& pPath)
132 sys::fs::Path m_Path;
H A DCommandAction.h13 #include <mcld/Support/Path.h>
30 explicit InputFileAction(unsigned int pPosition, const sys::fs::Path &pPath);
32 const sys::fs::Path& path() const { return m_Path; }
37 sys::fs::Path m_Path;
61 BitcodeAction(unsigned int pPosition, const sys::fs::Path &pPath);
63 const sys::fs::Path& path() const { return m_Path; }
68 sys::fs::Path m_Path;
/frameworks/compile/mclinker/lib/Core/
H A DLinkerScript.cpp24 const mcld::sys::fs::Path& LinkerScript::sysroot() const
29 void LinkerScript::setSysroot(const mcld::sys::fs::Path &pSysroot)
/frameworks/compile/mclinker/lib/Support/
H A DDirectory.cpp27 const Path dot_path(".");
28 const Path dot_dot_path("..");
44 Directory::Directory(const Path& pPath,
85 void Directory::assign(const Path& pPath,
170 Path* DirIterator::path()
177 const Path* DirIterator::path() const
243 const Path* x_path = path();
244 const Path* y_path = y.path();
H A DToolOutputFile.cpp11 #include <mcld/Support/Path.h>
20 #include <llvm/Support/Path.h>
28 ToolOutputFile::CleanupInstaller::CleanupInstaller(const sys::fs::Path& pPath)
39 // llvm::sys::Path
54 ToolOutputFile::ToolOutputFile(const sys::fs::Path& pPath,
/frameworks/base/graphics/java/android/graphics/
H A DPathDashPathEffect.java42 public PathDashPathEffect(Path shape, float advance, float phase,
H A DPathMeasure.java20 private Path mPath;
50 public PathMeasure(Path path, boolean forceClosed) {
60 public void setPath(Path path, boolean forceClosed) {
123 public boolean getSegment(float startD, float stopD, Path dst, boolean startWithMoveTo) {
H A DOutline.java34 public Path mPath;
123 mPath = new Path();
192 if (mPath == null) mPath = new Path();
194 mPath.addOval(left, top, right, bottom, Path.Direction.CW);
207 * {@link android.graphics.Path#isConvex() convex path}.
209 public void setConvexPath(@NonNull Path convexPath) {
218 if (mPath == null) mPath = new Path();
/frameworks/compile/mclinker/tools/mcld/include/mcld/
H A DSearchPathOptions.h12 #include <mcld/Support/Path.h>
29 llvm::cl::opt<mcld::sys::fs::Path,
31 llvm::cl::parser<mcld::sys::fs::Path> >& m_SysRoot;
H A DOutputFormatOptions.h15 #include <mcld/Support/Path.h>
33 llvm::cl::opt<mcld::sys::fs::Path,
35 llvm::cl::parser<mcld::sys::fs::Path> >& m_OutputFilename;

Completed in 420 milliseconds

123456