/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/io/ |
IFolderWrapper.java | 29 import org.eclipse.core.runtime.Path; 113 IFile file = mContainer.getFile(new Path(name)); 149 IFolder folder = mContainer.getFolder(new Path(name));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt.ndk/src/com/android/ide/eclipse/adt/ndk/internal/templates/ |
SetFolders.java | 34 import org.eclipse.core.runtime.Path;
86 IFolder folder = project.getFolder(new Path(sourceFolder));
93 IFolder folder = project.getFolder(new Path(outputFolder));
|
SimpleFile.java | 34 import org.eclipse.core.runtime.Path;
91 IFile destFile = project.getFile(new Path(op.destination));
99 URL sourceURL = FileLocator.find(bundle, new Path(op.source), null);
|
/development/samples/GlobalTime/src/com/android/globaltime/ |
Clock.java | 25 import android.graphics.Path; 58 * Adds a line to the given Path. The line extends from 62 * @param path the Path to draw to 70 private static void drawLine(Path path, 87 path.moveTo(p0x - ox, p0y - oy); 88 path.lineTo(p1x - ox, p1y - oy); 89 path.lineTo(p1x + ox, p1y + oy); 90 path.lineTo(p0x + ox, p0y + oy) [all...] |
/external/emma/ant/ant14/com/vladium/emma/report/ |
ReportCfg.java | 27 import org.apache.tools.ant.types.Path; 246 public Path getSourcepath () 299 public void setSourcepath (final Path path) 302 m_srcpath = path; 304 m_srcpath.append (path); 312 public Path createSourcepath () 315 m_srcpath = new Path (m_project); 442 private Path m_srcpath;
|
/external/llvm/include/llvm/Support/ |
GraphWriter.h | 29 #include "llvm/Support/Path.h" 49 void DisplayGraph(const sys::Path& Filename, bool wait=true, GraphProgram::Name program = GraphProgram::DOT); 310 sys::Path WriteGraph(const GraphType &G, const std::string &Name, 313 sys::Path Filename = sys::Path::GetTemporaryDirectory(&ErrMsg); 321 return sys::Path(); 347 sys::Path Filename = llvm::WriteGraph(G, Name, ShortNames, Title);
|
/external/webkit/Source/WebCore/platform/graphics/ |
Path.cpp | 30 #include "Path.h" 86 float Path::length() const 93 FloatPoint Path::pointAtLength(float length, bool& ok) const 102 float Path::normalAngleAtLength(float length, bool& ok) const 112 void Path::addRoundedRect(const FloatRect& rect, const FloatSize& roundingRadii) 155 void Path::addRoundedRect(const FloatRect& rect, const FloatSize& topLeftRadius, const FloatSize& topRightRadius, const FloatSize& bottomLeftRadius, const FloatSize& bottomRightRadius) 191 void Path::addRoundedRect(const RoundedIntRect& r)
|
/external/webkit/Source/WebCore/platform/graphics/haiku/ |
GraphicsContextHaiku.cpp | 36 #include "Path.h" 132 void GraphicsContext::strokePath(const Path&) 191 void GraphicsContext::fillPath(const Path&) 205 void GraphicsContext::drawFocusRing(const Path& path, int width, int offset, const Color& color) 366 void GraphicsContext::clip(const Path& path) 371 m_data->m_view->ConstrainClippingRegion(path.platformPath()); 374 void GraphicsContext::canvasClip(const Path& path) [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
ActionModeHandler.java | 25 import com.android.gallery3d.data.Path; 177 ArrayList<Path> paths = mSelectionManager.getSelected(false); 183 for (Path path : paths) { 185 int support = manager.getSupportedOperations(path); 186 type |= manager.getMediaType(path); 214 ArrayList<Path> paths = mSelectionManager.getSelected(true); 223 for (Path path : paths) { 224 int support = manager.getSupportedOperations(path); [all...] |
GridDrawer.java | 20 import com.android.gallery3d.data.Path; 49 int height, int rotation, Path path, 73 if (mSelectionManager.isPressedPath(path)) { 75 } else if (mSelectionMode && mSelectionManager.isItemSelected(path)) {
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
Compass.java | 81 private Path mPath = new Path(); 87 // Construct a wedge-shaped path
|
RoundRects.java | 34 private Path mPath; 43 mPath = new Path();
|
/external/chromium/chrome/browser/ui/views/notifications/ |
balloon_view.h | 18 #include "ui/gfx/path.h" 99 void GetContentsMask(const gfx::Rect& contents_rect, gfx::Path* path) const; 102 void GetFrameMask(const gfx::Rect&, gfx::Path* path) const;
|
/external/clang/lib/AST/ |
InheritViz.cpp | 139 sys::Path Filename = sys::Path::GetTemporaryDirectory(&ErrMsg);
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
ImageCacheRequest.java | 32 private Path mPath; 37 Path path, int type, int targetSize) { 39 mPath = path;
|
MtpDeviceSet.java | 41 public MtpDeviceSet(Path path, GalleryApp application, MtpContext mtpContext) { 42 super(path, nextVersionNumber()); 57 Path childPath = mPath.getChild(deviceId);
|
/development/samples/ApiDemos/src/com/example/android/apis/os/ |
Sensors.java | 31 import android.graphics.Path; 59 private Path mPath = new Path(); 110 final Path path = mPath; local 144 canvas.drawPath(path, paint); 163 canvas.drawPath(path, paint);
|
/external/chromium/chrome/browser/ui/touch/tabs/ |
touch_tab.h | 52 virtual void GetHitTestMask(gfx::Path* path) const;
|
/external/llvm/tools/bugpoint/ |
FindBugs.cpp | 106 sys::Path(Filename).eraseFromDisk();
|
/external/webkit/Source/JavaScriptCore/wtf/url/src/ |
URLSegments.cpp | 84 if (path.isValid()) { 85 if (type <= Path) 86 return path.begin(); 87 current = path.end();
|
/external/webkit/Source/WebCore/rendering/svg/ |
RenderSVGResourceFilter.h | 75 virtual void postApplyResource(RenderObject*, GraphicsContext*&, unsigned short resourceMode, const Path*);
|
RenderSVGResourceSolidColor.cpp | 77 void RenderSVGResourceSolidColor::postApplyResource(RenderObject*, GraphicsContext*& context, unsigned short resourceMode, const Path* path) 82 if (path && !(resourceMode & ApplyToTextMode)) { 84 context->fillPath(*path); 86 context->strokePath(*path);
|
SVGInlineTextBox.h | 70 void releasePaintingResource(GraphicsContext*&, const Path*);
|
SVGTextLayoutEngine.h | 24 #include "Path.h" 96 // Text on path layout 97 Path m_textPath;
|
/external/webkit/Source/WebCore/svg/ |
SVGGlyphElement.h | 26 #include "Path.h" 99 Path pathData;
|