/external/chromium_org/ui/gfx/ |
path_aura.cc | 5 #include "ui/gfx/path.h" 12 SkRegion* Path::CreateNativeRegion() const { 13 // Create a clip region that contains |this| path. 26 NativeRegion Path::IntersectRegions(NativeRegion r1, NativeRegion r2) { 33 NativeRegion Path::CombineRegions(NativeRegion r1, NativeRegion r2) { 40 NativeRegion Path::SubtractRegion(NativeRegion r1, NativeRegion r2) {
|
/external/llvm/include/llvm-c/ |
BitWriter.h | 37 /** Writes a module to the specified path. Returns 0 on success. */ 38 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path);
|
/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...] |
/frameworks/compile/mclinker/include/mcld/Support/ |
ToolOutputFile.h | 21 class Path; 33 ToolOutputFile(const sys::fs::Path& pPath, 56 explicit CleanupInstaller(const sys::fs::Path& pPath); 64 sys::fs::Path m_Path;
|
MemoryAreaFactory.h | 13 #include <mcld/Support/Path.h> 46 MemoryArea* produce(const sys::fs::Path& pPath, 50 MemoryArea* produce(const sys::fs::Path& pPath,
|
/frameworks/compile/mclinker/unittests/ |
PathTest.h | 12 #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;
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
Path.h | 69 class PLATFORM_EXPORT Path { 72 Path(); 73 ~Path(); 75 Path(const Path&); 76 Path& operator=(const Path&); 77 bool operator==(const Path&) const; 89 // Helper for computing a sequence of positions and normals (normal angles) on a path. 94 // state-less method on Path [all...] |
Path.cpp | 31 #include "platform/graphics/Path.h" 44 Path::Path() 49 Path::Path(const Path& other) 54 Path::~Path() 58 Path& Path::operator=(const Path& other [all...] |
/frameworks/base/core/java/android/transition/ |
PatternPathMotion.java | 23 import android.graphics.Path; 30 * A PathMotion that takes a Path pattern and applies it to the separation between two points. 31 * The starting point of the Path will be moved to the origin and the end point will be scaled 43 private Path mOriginalPatternPath; 45 private final Path mPatternPath = new Path(); 64 Path pattern = PathParser.createPathFromPathData(pathData); 73 * Creates a PatternPathMotion with the Path defining a pattern of motion between two 78 * @param patternPath A Path to be used as a pattern for two-dimensional motion. 80 public PatternPathMotion(Path patternPath) 141 Path path = new Path(); local [all...] |
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/jsfs/ |
js_fs.h | 38 virtual Error Access(const Path& path, int a_mode); 39 virtual Error Open(const Path& path, int mode, ScopedNode* out_node); 40 virtual Error Unlink(const Path& path); 41 virtual Error Mkdir(const Path& path, int perm); 42 virtual Error Rmdir(const Path& path); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderDetailsMarker.h | 42 Path getCanonicalPath() const; 43 Path getPath(const LayoutPoint& origin) const;
|
/external/chromium_org/tools/gyp/test/mac/sdkroot/ |
test_shorthand.sh | 10 if expected=$(xcodebuild -version -sdk macosx$sdk Path 2>/dev/null) ; then
|
/external/chromium_org/ui/views/ |
masked_view_targeter.h | 12 class Path; 28 virtual bool GetHitTestMask(const View* view, gfx::Path* mask) const = 0;
|
/external/chromium_org/ui/wm/core/ |
masked_window_targeter.h | 12 class Path; 25 virtual bool GetHitTestMask(aura::Window* window, gfx::Path* mask) const = 0;
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
MediaSource.java | 37 public Path findPathByUri(Uri uri, String type) { 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...] |
SnailSource.java | 38 // The only path we accept is "/snail/set/id" and "/snail/item/id" 40 public MediaObject createMediaObject(Path path) { 42 switch (mMatcher.match(path)) { 47 return new SnailAlbum(path, item); 50 return new SnailItem(path); 57 // them. You can obtain the Path of the SnailAlbum and SnailItem associated 63 public static Path getSetPath(int id) { 64 return Path.fromString("/snail/set").getChild(id); 67 public static Path getItemPath(int id) [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/util/ |
MediaSetUtils.java | 24 import com.android.gallery3d.data.Path; 47 private static final Path[] CAMERA_PATHS = { 48 Path.fromString("/local/all/" + CAMERA_BUCKET_ID), 49 Path.fromString("/local/image/" + CAMERA_BUCKET_ID), 50 Path.fromString("/local/video/" + CAMERA_BUCKET_ID)}; 52 public static boolean isCameraSource(Path path) { 53 return CAMERA_PATHS[0] == path || CAMERA_PATHS[1] == path 54 || CAMERA_PATHS[2] == path; [all...] |
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
path_test.cc | 10 #include "nacl_io/path.h" 16 Path ph1("."); 17 Path *ph2 = new Path("."); 20 Path p1("."); 23 Path p2("/"); 29 Path empty; 30 Path dot("."); 31 Path root("/"); 32 Path abs_str("/abs/from/string") [all...] |
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
PathTest.java | 3 import android.graphics.Path; 22 Path path = Robolectric.newInstanceOf(Path.class); local 23 path.quadTo(0, 5, 10, 15); 24 ShadowPath shadowPath = shadowOf(path); 30 Path path = Robolectric.newInstanceOf(Path.class); local 31 path.moveTo(2, 3) 42 Path path = Robolectric.newInstanceOf(Path.class); local [all...] |
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
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() { 50 Path path = new Path(); local 51 buildPath(path); 52 return path; 63 Path path = new Path(); local 115 Path path = makePath(); local [all...] |
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);
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
Canvas_EdgeTypeTest.java | 20 import android.graphics.Path; 41 c.quickReject(new Path(), EdgeType.AA); 42 c.quickReject(new Path(), EdgeType.BW);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
RenderSVGTextPath.cpp | 51 Path RenderSVGTextPath::layoutPath() const 56 return Path(); 60 Path pathData; 63 // Spec: The transform attribute on the referenced 'path' element represents a
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGPathBuilder.h | 32 class Path; 38 void setCurrentPath(Path* path) { m_path = path; } 59 Path* m_path;
|
/frameworks/compile/mclinker/lib/MC/ |
ContextFactory.cpp | 17 : UniqueGCFactoryBase<sys::fs::Path, LDContext, 0>(pNum) 25 LDContext* ContextFactory::produce(const sys::fs::Path& pPath) 29 result = UniqueGCFactoryBase<sys::fs::Path, LDContext, 0>::allocate();
|