/cts/tests/tests/gesture/src/android/gesture/cts/ |
LineGestureStrokeHelper.java | 20 import android.graphics.Path; 54 * Helper method to assert expected values for a path derived from createLineGesture 59 void assertLineBoundingBox(Path linePath) {
|
/external/chromium/chrome/browser/chromeos/frame/ |
bubble_frame_view.h | 15 class Path; 41 virtual void GetWindowMask(const gfx::Size& size, gfx::Path* window_mask)
|
/external/llvm/tools/bugpoint/ |
OptimizerDriver.cpp | 29 #include "llvm/Support/Path.h" 114 sys::Path uniqueFilename(OutputPrefix + "-output.bc"); 124 sys::Path inputFilename(OutputPrefix + "-input.bc"); 148 sys::Path tool = PrependMainExecutablePath("opt", getToolName(), 195 sys::Path prog; 202 sys::Path Nowhere; 203 const sys::Path *Redirects[3] = {0, &Nowhere, &Nowhere}; 212 sys::Path(OutputFilename).eraseFromDisk(); 263 sys::Path(BitcodeResult).eraseFromDisk(); // No longer need the file on disk
|
/external/qemu/distrib/sdl-1.2.12/src/main/beos/ |
SDL_BeApp.cc | 27 #include <storage/Path.h> 68 BPath path; local 69 if (B_OK == path.SetTo(&entry)) { 70 if (B_OK == path.GetParent(&path)) { 71 chdir(path.Path());
|
/external/webkit/Source/WebCore/platform/graphics/cairo/ |
GraphicsContextPlatformPrivateCairo.h | 75 void clip(const Path&); 90 void clip(const Path&) {}
|
/external/webkit/Source/WebCore/platform/graphics/cg/ |
GraphicsContextPlatformPrivateCG.h | 65 void clip(const Path&) {} 81 void clip(const Path&);
|
/external/webkit/Source/WebCore/rendering/svg/ |
RenderSVGPath.h | 44 const Path& path() const { return m_path; } function in class:WebCore::RenderSVGPath 79 mutable Path m_path;
|
/external/webkit/Tools/Scripts/ |
run-webkit-httpd | 37 use File::Path;
|
/frameworks/base/core/java/android/gesture/ |
GestureStroke.java | 21 import android.graphics.Path; 42 private Path mCachedPath; 113 public Path getPath() { 125 Path path = null; local 133 if (path == null) { 134 path = new Path(); 135 path.moveTo(x, y); 142 path.quadTo(mX, mY, (x + mX) / 2, (y + mY) / 2) 175 Path path = null; local [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/actions/ |
DoodleAction.java | 20 import android.graphics.Path; 67 public void onDoodleFinished(Path path, int color) { 68 filter.addPath(path, color);
|
/sdk/anttasks/src/com/android/ant/ |
TaskHelper.java | 24 import org.apache.tools.ant.types.Path; 76 static String checkSinglePath(String attribute, Path path) { 77 String[] paths = path.list(); 80 "Value for '%1$s' is not valid. It must resolve to a single path", attribute));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/binaryxml/ |
FileStorage.java | 25 import org.eclipse.core.runtime.Path; 73 return new Path(mFile.getAbsolutePath());
|
/external/clang/examples/clang-interpreter/ |
main.cpp | 29 #include "llvm/Support/Path.h" 39 llvm::sys::Path GetExecutablePath(const char *Argv0) { 43 return llvm::sys::Path::GetMainExecutable(Argv0, MainAddr); 72 llvm::sys::Path Path = GetExecutablePath(argv[0]); 78 Driver TheDriver(Path.str(), llvm::sys::getHostTriple(), 138 // Infer the builtin include path if unspecified.
|
/external/emma/ant/ant14/com/vladium/emma/instr/ |
instrTask.java | 15 import org.apache.tools.ant.types.Path; 58 + ": instrumentation path must be specified", location).fillInStackTrace (); 84 public void setInstrpath (final Path path) 87 m_instrpath = path; 89 m_instrpath.append (path); 97 public Path createInstrpath () 100 m_instrpath = new Path (project); 174 private Path m_instrpath;
|
/external/llvm/lib/Support/ |
IntervalMap.cpp | 19 void Path::replaceRoot(void *Root, unsigned Size, IdxPair Offsets) { 20 assert(!path.empty() && "Can't replace missing root"); 21 path.front() = Entry(Root, Size, Offsets.first); 22 path.insert(path.begin() + 1, Entry(subtree(0), Offsets.second)); 25 NodeRef Path::getLeftSibling(unsigned Level) const { 32 while (l && path[l].offset == 0) 36 if (path[l].offset == 0) 40 NodeRef NR = path[l].subtree(path[l].offset - 1) [all...] |
/external/webkit/Source/WebCore/xml/ |
XPathPath.cpp | 181 Path::Path(Filter* filter, LocationPath* path) 183 , m_path(path) 190 Path::~Path() 196 Value Path::evaluate() const
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
MtpDevice.java | 41 private final Path mItemPath; 44 public MtpDevice(Path path, GalleryApp application, int deviceId, 46 super(path, nextVersionNumber()); 54 mItemPath = Path.fromString("/mtp/item/" + String.valueOf(deviceId)); 58 public MtpDevice(Path path, GalleryApp application, int deviceId, 60 this(path, application, deviceId, 128 Path childPath = mItemPath.getChild(child.getObjectHandle());
|
LocalAlbumSet.java | 40 // The path should be "/local/image", "local/video" or "/local/all" 42 public static final Path PATH_ALL = Path.fromString("/local/all"); 43 public static final Path PATH_IMAGE = Path.fromString("/local/image"); 44 public static final Path PATH_VIDEO = Path.fromString("/local/video"); 59 // name of where an image or video is in. BUCKET_ID is a hash of the path 99 public LocalAlbumSet(Path path, GalleryApp application) 210 Path path = parent.getChild(id); local [all...] |
LocalSource.java | 81 public MediaObject createMediaObject(Path path) { 83 switch (mMatcher.match(path)) { 87 return new LocalAlbumSet(path, mApplication); 89 return new LocalAlbum(path, app, mMatcher.getIntVar(0), true); 91 return new LocalAlbum(path, app, mMatcher.getIntVar(0), false); 101 path, comp, new MediaSet[] {imageSet, videoSet}); 104 return new LocalImage(path, mApplication, mMatcher.getIntVar(0)); 106 return new LocalVideo(path, mApplication, mMatcher.getIntVar(0)); 108 throw new RuntimeException("bad path: " + path) [all...] |
LocalAlbum.java | 51 private final Path mItemPath; 54 public LocalAlbum(Path path, GalleryApp application, int bucketId, 56 super(path, nextVersionNumber()); 82 public LocalAlbum(Path path, GalleryApp application, int bucketId, 84 this(path, application, bucketId, isImage, 108 Path childPath = mItemPath.getChild(id); 119 private static MediaItem loadOrUpdateItem(Path path, Cursor cursor [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
LibraryClasspathContainerInitializer.java | 30 import org.eclipse.core.runtime.Path; 64 new Path(AdtConstants.CONTAINER_LIBRARIES), 78 JavaCore.setClasspathContainer(new Path(AdtConstants.CONTAINER_LIBRARIES), 105 String path = entry.getPath().toString(); local 106 if (AdtConstants.CONTAINER_LIBRARIES.equals(path)) { 117 JavaCore.newContainerEntry(new Path(AdtConstants.CONTAINER_LIBRARIES))); 146 libProject.getLocation(), // source attachment path 147 null); // default source attachment root path. 155 new Path(AdtConstants.CONTAINER_LIBRARIES),
|
/frameworks/base/graphics/java/android/graphics/ |
Path.java | 22 * The Path class encapsulates compound (multiple contour) geometric paths 24 * It can be drawn with canvas.drawPath(path, paint), either filled or stroked 26 * text on a path. 28 public class Path { 46 * Create an empty path 48 public Path() { 54 * Create a new path, copying the contents from the src path. 56 * @param src The path to copy from when initializing the new path [all...] |
/external/webkit/Source/WebCore/html/ |
HTMLAreaElement.cpp | 32 #include "Path.h" 77 m_region = adoptPtr(new Path(getRegion(size))); 89 Path HTMLAreaElement::computePath(RenderObject* obj) const 92 return Path(); 102 Path p = getRegion(size); 119 Path HTMLAreaElement::getRegion(const IntSize& size) const 122 return Path(); 138 Path path; local 143 path.moveTo(FloatPoint(m_coords[0].calcMinValue(width), m_coords[1].calcMinValue(height))) [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
DashPathEffectTest.java | 28 import android.graphics.Path; 60 Path path = new Path(); local 61 path.moveTo(START_X, COORD_Y); 62 path.lineTo(END_X, COORD_Y); 71 canvas.drawPath(path, paint);
|
DiscretePathEffectTest.java | 28 import android.graphics.Path; 60 Path path = new Path(); local 61 path.moveTo(START_X, COORD_Y); 62 path.lineTo(END_X, COORD_Y); 68 canvas.drawPath(path, paint); 76 canvas.drawPath(path, paint); 81 canvas.drawPath(path, paint);
|