/frameworks/compile/mclinker/lib/Support/ |
Path.cpp | 1 //===- 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() { 52 Path::Path(const Path::ValueType* s) : m_PathName(s) [all...] |
RealPath.cpp | 18 RealPath::RealPath() : Path() { 21 RealPath::RealPath(const RealPath::ValueType* s) : Path(s) { 25 RealPath::RealPath(const RealPath::StringType& s) : Path(s) { 29 RealPath::RealPath(const Path& pPath) : Path(pPath) { 36 RealPath& RealPath::assign(const Path& pPath) { 37 Path::m_PathName.assign(pPath.native()); 45 Path path_name;
|
/ndk/sources/host-tools/make-3.81/w32/include/ |
pathstuff.h | 1 /* Definitions for Windows path manipulation. 21 extern char * convert_Path_to_windows32(char *Path, char to_delim); 22 extern char * convert_vpath_to_windows32(char *Path, char to_delim);
|
/packages/services/Car/car-support-lib/src/android/support/car/ui/ |
PathClippingView.java | 18 import android.graphics.Path; 21 * Interface for a view that can apply a clip given to it in the form of a {@link android.graphics.Path}. 25 * Notify listener of a new clip path. 26 * @param clipPath Clipping path. If {@code null}, clip should no longer be performed. 28 void setClipPath(Path clipPath);
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
PathTest.java | 26 import android.graphics.Path; 40 // new the Path instance 41 new Path(); 43 // another the Path instance with different params 44 new Path(new Path()); 49 // new the Path instance 50 Path path = new Path(); local 60 Path path = new Path(); local 68 Path path = new Path(); local 74 Path path = new Path(); local 83 Path path = new Path(); local 94 Path path = new Path(); local 109 Path path = new Path(); local 123 Path path = new Path(); local 131 Path path = new Path(); local 145 Path path = new Path(); local 153 Path path = new Path(); local 161 Path path = new Path(); local 169 Path path = new Path(); local 177 Path path = new Path(); local 186 Path path = new Path(); local 197 Path path = new Path(); local 212 Path path = new Path(); local 230 Path path = new Path(); local 236 Path path = new Path(); local 245 Path path = new Path(); local 257 Path path = new Path(); local 268 Path path = new Path(); local 278 Path path = new Path(); local 288 Path path = new Path(); local 298 Path path = new Path(); local 308 Path path = new Path(); local 319 Path path = new Path(); local 328 Path path = new Path(); local 342 Path path = new Path(); local 350 Path path = new Path(); local 364 Path path = new Path(); local 372 Path path = new Path(); local 384 Path path = new Path(); local 392 Path path = new Path(); local 401 Path path = new Path(); local 409 Path path = new Path(); local [all...] |
/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. 40 /** \class Path 41 * \brief Path provides an abstraction for the path to a file or directory in 44 class Path { 50 Path(); 51 explicit Path(const ValueType* s); 52 explicit Path(const StringType& s) [all...] |
FileSystem.h | 11 // path class. 69 class Path; 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 [all...] |
/cts/tests/tests/transition/src/android/transition/cts/ |
PatternPathMotionTest.java | 18 import android.graphics.Path; 24 Path pattern = new Path(); 31 Path expected = new Path(); 39 Path pattern = new Path(); 45 Path expected = new Path();
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
DataSourceType.java | 27 private static final Path PICASA_ROOT = Path.fromString("/picasa"); 28 private static final Path LOCAL_ROOT = Path.fromString("/local"); 35 Path path = set.getPath(); local 36 if (MediaSetUtils.isCameraSource(path)) return TYPE_CAMERA; 38 Path prefix = path.getPrefixPath();
|
Path.java | 25 public class Path { 26 private static final String TAG = "Path"; 27 private static Path sRoot = new Path(null, "ROOT"); 29 private final Path mParent; 32 private IdentityCache<String, Path> mChildren; 34 private Path(Path parent, String segment) { 39 public Path getChild(String segment) { 40 synchronized (Path.class) 96 String path = toString(); local [all...] |
TagClustering.java | 31 private ArrayList<ArrayList<Path>> mClusters; 41 final TreeMap<String, ArrayList<Path>> map = 42 new TreeMap<String, ArrayList<Path>>(); 43 final ArrayList<Path> untagged = new ArrayList<Path>(); 48 Path path = item.getPath(); 52 untagged.add(path); 57 ArrayList<Path> list = map.get(key); 59 list = new ArrayList<Path>(); [all...] |
/external/llvm/lib/DebugInfo/PDB/ |
PDB.cpp | 23 PDB_ErrorCode llvm::loadDataForPDB(PDB_ReaderType Type, StringRef Path, 27 return DIASession::createFromPdb(Path, Session); 32 PDB_ErrorCode llvm::loadDataForEXE(PDB_ReaderType Type, StringRef Path, 36 return DIASession::createFromExe(Path, Session);
|
/external/skia/src/svg/parser/ |
SkSVGPath.h | 16 DECLARE_SVG_INFO(Path);
|
/external/jcommander/src/main/java/com/beust/jcommander/converters/ |
PathConverter.java | 23 import java.nio.file.Path; 27 * Convert a string into a path. 31 public class PathConverter implements IStringConverter<Path> { 33 public Path convert(String value) {
|
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/ |
PathTest.java | 27 Path path = new Path(); local 29 final Path.FillType defaultFillType = path.getFillType(); 30 final Path.FillType fillType = Path.FillType.INVERSE_EVEN_ODD; 33 path.setFillType(fillType); 34 path.reset(); 35 assertEquals(path.getFillType(), fillType) [all...] |
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
PathOpsActivity.java | 24 import android.graphics.Path; 40 private Path[] mPaths; 57 Path.Op[] ops = Path.Op.values(); 58 mPaths = new Path[ops.length]; 62 Path p1 = new Path(); 63 p1.addRect(0.0f, 0.0f, mSize, mSize, Path.Direction.CW); 65 Path p2 = new Path(); [all...] |
/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/ |
GestureDescriptionTest.java | 18 import android.graphics.Path; 27 private Path mNominalPath; 31 mNominalPath = new Path(); 53 Path negativeStartXPath = new Path(); 64 Path negativeStartYPath = new Path(); 75 Path negativeEndXPath = new Path(); 86 Path negativeEndYPath = new Path() 121 Path path = new Path(); local 127 Path path = new Path(); local 139 Path path = new Path(); local 166 Path path = new Path(); local [all...] |
/external/llvm/tools/dsymutil/ |
MachOUtils.h | 24 std::string Arch, Path; 25 ArchAndFilename(StringRef Arch, StringRef Path) : Arch(Arch), Path(Path) {}
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
PathFillTypes.java | 38 private Path mPath; 45 mPath = new Path(); 46 mPath.addCircle(40, 40, 45, Path.Direction.CCW); 47 mPath.addCircle(80, 80, 45, Path.Direction.CCW); 50 private void showPath(Canvas canvas, int x, int y, Path.FillType ft, 70 showPath(canvas, 0, 0, Path.FillType.WINDING, paint); 71 showPath(canvas, 160, 0, Path.FillType.EVEN_ODD, paint); 72 showPath(canvas, 0, 160, Path.FillType.INVERSE_WINDING, paint); 73 showPath(canvas, 160, 160, Path.FillType.INVERSE_EVEN_ODD, paint);
|
/external/llvm/include/llvm/DebugInfo/PDB/ |
PDB.h | 19 PDB_ErrorCode loadDataForPDB(PDB_ReaderType Type, StringRef Path, 22 PDB_ErrorCode loadDataForEXE(PDB_ReaderType Type, StringRef Path,
|
/external/nist-sip/java/gov/nist/javax/sip/header/ims/ |
PathList.java | 37 public class PathList extends SIPHeaderList<Path> { 42 super(Path.class, PathHeader.NAME);
|
/frameworks/base/core/java/android/transition/ |
PathMotion.java | 19 import android.graphics.Path; 23 * This base class can be extended to provide motion along a Path to Transitions. 27 * in a straight path between the start and end positions. Applications that desire to 47 * Provide a Path to interpolate between two points <code>(startX, startY)</code> and 54 * @return A Path along which the points should be interpolated. The returned Path 56 * {@link android.graphics.Path#moveTo(float, float)} and end at <code>(endX, endY)</code>. 58 public abstract Path getPath(float startX, float startY, float endX, float endY);
|
/frameworks/compile/mclinker/include/mcld/MC/ |
ContextFactory.h | 14 #include "mcld/Support/Path.h" 31 class ContextFactory : public UniqueGCFactoryBase<sys::fs::Path, LDContext, 0> { 37 LDContext* produce(const sys::fs::Path& pPath);
|
/external/llvm/lib/Fuzzer/ |
FuzzerIO.cpp | 23 static long GetEpoch(const std::string &Path) { 25 if (stat(Path.c_str(), &St)) 51 Unit FileToVector(const std::string &Path) { 52 std::ifstream T(Path); 54 Printf("No such directory: %s; exiting\n", Path.c_str()); 61 std::string FileToString(const std::string &Path) { 62 std::ifstream T(Path); 67 void CopyFileToErr(const std::string &Path) { 68 Printf("%s", FileToString(Path).c_str()); 71 void WriteToFile(const Unit &U, const std::string &Path) { [all...] |
/frameworks/base/core/tests/coretests/src/android/graphics/ |
PathOffsetTest.java | 21 import android.graphics.Path.Direction; 44 Path actualPath = new Path(); 50 Path expectedPath = new Path(); 60 Path initialPath = new Path(); 62 Path actualPath = new Path(); 68 Path expectedPath = new Path() [all...] |