/external/webkit/Source/WebCore/svg/ |
SVGPolygonElement.h | 36 virtual void toPathData(Path&) const;
|
SVGPolylineElement.h | 36 virtual void toPathData(Path&) const;
|
SVGStyledTransformableElement.h | 32 class Path; 53 virtual void toPathData(Path&) const { } 54 virtual void toClipPath(Path&) const;
|
/frameworks/base/graphics/java/android/graphics/drawable/shapes/ |
PathShape.java | 21 import android.graphics.Path; 24 * Creates geometric paths, utilizing the {@link android.graphics.Path} class. 25 * The path can be drawn to a Canvas with its own draw() method, 30 private Path mPath; 40 * @param path a Path that defines the geometric paths for this shape 48 public PathShape(Path path, float stdWidth, float stdHeight) { 49 mPath = path; 71 shape.mPath = new Path(mPath) [all...] |
RoundRectShape.java | 21 import android.graphics.Path; 37 private Path mPath; // this is what we actually draw 73 mPath = new Path(); 89 mPath.addRoundRect(r, mOuterRadii, Path.Direction.CW); 91 mPath.addRect(r, Path.Direction.CW); 98 mPath.addRoundRect(mInnerRect, mInnerRadii, Path.Direction.CCW); 100 mPath.addRect(mInnerRect, Path.Direction.CCW); 113 shape.mPath = new Path(mPath);
|
/frameworks/compile/slang/ |
slang_utils.cpp | 21 #include "llvm/Support/Path.h" 27 return !llvm::sys::Path(Dir).createDirectoryOnDisk(/* create_parents = */true,
|
/external/webkit/Source/WebCore/rendering/svg/ |
RenderSVGTextPath.h | 33 Path layoutPath() const; 48 Path m_layoutPath;
|
RenderSVGTextPath.cpp | 44 Path RenderSVGTextPath::layoutPath() const 50 return Path(); 54 Path pathData; 56 // Spec: The transform attribute on the referenced 'path' element represents a
|
/packages/apps/Gallery2/tests/src/com/android/gallery3d/data/ |
MediaSetTest.java | 31 Path.clearAll(); 37 MockSet set00 = new MockSet(Path.fromString("/mock/00"), dataManager, 0, 2000); 38 MockSet set01 = new MockSet(Path.fromString("/mock/01"), dataManager, 1, 3000); 39 MockSet set10 = new MockSet(Path.fromString("/mock/10"), dataManager, 2, 4000); 40 MockSet set11 = new MockSet(Path.fromString("/mock/11"), dataManager, 3, 5000); 41 MockSet set12 = new MockSet(Path.fromString("/mock/12"), dataManager, 4, 6000); 43 MockSet set0 = new MockSet(Path.fromString("/mock/0"), dataManager, 7, 7000); 47 MockSet set1 = new MockSet(Path.fromString("/mock/1"), dataManager, 8, 8000);
|
MockSet.java | 24 Path mItemPath; 26 public MockSet(Path path, DataManager dataManager) { 27 super(path, nextVersionNumber()); 28 mItemPath = Path.fromString("/mock/item"); 31 public MockSet(Path path, DataManager dataManager, 33 this(path, dataManager); 35 Path childPath = mItemPath.getChild(item_id_start + i);
|
/external/clang/include/clang/Basic/ |
FileSystemStatCache.h | 40 /// path, using the cache to accellerate it if possible. This returns true if 41 /// the path does not exist or false if it exists. 48 static bool get(const char *Path, struct stat &StatBuf, int *FileDescriptor, 67 virtual LookupResult getStat(const char *Path, struct stat &StatBuf, 70 LookupResult statChained(const char *Path, struct stat &StatBuf, 73 return Next->getStat(Path, StatBuf, FileDescriptor); 77 return get(Path, StatBuf, FileDescriptor, 0) ? CacheMissing : CacheExists; 95 virtual LookupResult getStat(const char *Path, struct stat &StatBuf,
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
MediaSource.java | 37 public Path findPathByUri(Uri uri) { 41 public abstract MediaObject createMediaObject(Path path); 49 public Path getDefaultSetOf(Path item) { 62 public PathId(Path path, int id) { 63 this.path = path; 66 public Path path field in class:MediaSource.PathId [all...] |
UriSource.java | 38 public MediaObject createMediaObject(Path path) { 39 String segment[] = path.split(); 41 throw new RuntimeException("bad path: " + path); 45 return new UriImage(mApplication, path, Uri.parse(decoded)); 49 public Path findPathByUri(Uri uri) { 54 return Path.fromString("/uri/" + URLEncoder.encode(uri.toString()));
|
/packages/apps/Gallery2/src/com/android/gallery3d/util/ |
MediaSetUtils.java | 21 import com.android.gallery3d.data.Path; 38 private static final Path[] CAMERA_PATHS = { 39 Path.fromString("/local/all/" + CAMERA_BUCKET_ID), 40 Path.fromString("/local/image/" + CAMERA_BUCKET_ID), 41 Path.fromString("/local/video/" + CAMERA_BUCKET_ID)}; 43 public static boolean isCameraSource(Path path) { 44 return CAMERA_PATHS[0] == path || CAMERA_PATHS[1] == path 45 || CAMERA_PATHS[2] == path; [all...] |
/external/webkit/Source/WebCore/platform/graphics/android/ |
PathAndroid.cpp | 27 #include "Path.h" 44 Path::Path() 50 Path::Path(const Path& other) 55 Path::~Path() 60 Path& Path::operator=(const Path& other [all...] |
/sdk/anttasks/src/com/android/ant/ |
ApkBuilderTask.java | 26 import org.apache.tools.ant.types.Path; 47 private Path mDexPath; 49 private final ArrayList<Path> mZipList = new ArrayList<Path>(); 50 private final ArrayList<Path> mSourceList = new ArrayList<Path>(); 51 private final ArrayList<Path> mJarfolderList = new ArrayList<Path>(); 52 private final ArrayList<Path> mJarfileList = new ArrayList<Path>(); 142 Path path = new Path(getProject()); local 164 Path path = new Path(getProject()); local 173 Path path = new Path(getProject()); local 182 Path path = new Path(getProject()); local 191 Path path = new Path(getProject()); local [all...] |
AidlExecTask.java | 22 import org.apache.tools.ant.types.Path; 31 * 'executable' ({@link Path} with a single path) for the location of the aidl executable<br> 32 * 'framework' ({@link Path} with a single path) for the "preprocessed" file containing all the 34 * 'genFolder' ({@link Path} with a single path) for the location of the gen folder. 36 * It also expects one or more inner elements called "source" which are identical to {@link Path} 44 private final ArrayList<Path> mPaths = new ArrayList<Path>(); [all...] |
/external/llvm/lib/Linker/ |
Linker.cpp | 17 #include "llvm/Support/Path.h" 68 Linker::addPath(const sys::Path& path) { 69 LibPaths.push_back(path); 75 LibPaths.push_back(sys::Path(paths[i])); 80 sys::Path::GetBitcodeLibraryPaths(LibPaths); 81 LibPaths.insert(LibPaths.begin(),sys::Path("./")); 98 Linker::LoadObject(const sys::Path &FN) { 118 // a non-empty sys::Path if its found, an empty one otherwise. 119 static inline sys::Path IsLibrary(StringRef Name [all...] |
/external/llvm/lib/Support/ |
Path.cpp | 1 //===-- Path.cpp - Implement OS Path Concept --------------------*- C++ -*-===// 10 // This header file implements the operating system Path concept. 14 #include "llvm/Support/Path.h" 33 bool Path::operator==(const Path &that) const { 34 return path == that.path; 37 bool Path::operator<(const Path& that) const [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
PathDashPathEffectTest.java | 27 import android.graphics.Path; 31 import android.graphics.Path.Direction; 46 args = {android.graphics.Path.class, float.class, float.class, 58 canvas.drawPath(path(), p); method 83 private static Path path() { method in class:PathDashPathEffectTest 84 Path p = new Path(); 90 private static Path shape() { 91 Path p = new Path() [all...] |
Path_DirectionTest.java | 19 import android.graphics.Path; 20 import android.graphics.Path.Direction; 26 @TestTargetClass(Path.Direction.class)
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
SmallCircleActivity.java | 23 import android.graphics.Path; 49 private final Path mPath; 54 mPath = new Path(); 55 mPath.addCircle(SIZE * 0.5f, SIZE * 0.5f, SIZE * 0.275f, Path.Direction.CW); 56 mPath.addCircle(SIZE * 0.5f, SIZE * 0.5f, SIZE * 0.225f, Path.Direction.CCW);
|
/external/webkit/Source/WebCore/platform/graphics/openvg/ |
PathOpenVG.cpp | 21 #include "Path.h" 105 Path::Path() 110 Path::~Path() 115 Path::Path(const Path& other) 120 Path& Path::operator=(const Path& other [all...] |
/external/webkit/Source/WebCore/platform/graphics/gpu/ |
LoopBlinnPathProcessor.h | 49 class Path; 53 // The LoopBlinnPathProcessor turns a Path (assumed to contain one or 69 // Transforms the given path into a triangle mesh for rendering 72 void process(const Path&, LoopBlinnPathCache&); 80 // Builds a list of contours for the given path. 81 void buildContours(const Path&); 115 // The contours described by the path.
|
/external/webkit/Source/WebCore/xml/ |
XPathPath.h | 75 class Path : public Expression { 77 Path(Filter*, LocationPath*); 78 virtual ~Path();
|