/cts/tests/tests/graphics/src/android/graphics/cts/ |
EmbossMaskFilterTest.java | 28 import android.graphics.Path; 59 Path path = new Path(); local 60 path.moveTo(START_X, CENTER_Y); 61 path.lineTo(END_X, CENTER_Y); 67 c.drawPath(path, paint);
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
Clipping.java | 34 private Path mPath; 46 mPath = new Path(); 83 mPath.addCircle(50, 50, 50, Path.Direction.CCW);
|
/external/llvm/lib/CompilerDriver/ |
Action.cpp | 57 sys::Path prog(name); 59 if (sys::path::is_relative(prog.str())) { 77 const sys::Path* redirects[3] = {0,0,0}; 78 sys::Path stdout_redirect;
|
/external/webkit/Source/WebCore/platform/graphics/openvg/ |
PainterOpenVG.h | 38 class Path; 115 void drawPath(const Path&, VGbitfield paintModes = (VG_STROKE_PATH | VG_FILL_PATH), WindRule fillRule = RULE_NONZERO); 118 void clipPath(const Path&, PainterOpenVG::ClipOperation, WindRule clipRule = RULE_NONZERO);
|
GraphicsContextOpenVG.cpp | 139 void GraphicsContext::fillPath(const Path& path) 144 m_data->drawPath(path, VG_FILL_PATH, m_state.fillRule); 147 void GraphicsContext::strokePath(const Path& path) 152 m_data->drawPath(path, VG_STROKE_PATH, m_state.fillRule); 197 void GraphicsContext::clipPath(const Path& path, WindRule clipRule) 202 m_data->clipPath(path, PainterOpenVG::IntersectClip, clipRule); 375 void GraphicsContext::clip(const Path& path [all...] |
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
ClearActivity.java | 25 import android.graphics.Path; 43 private final Path mPath; 58 mPath = new Path();
|
/packages/apps/Gallery2/tests/src/com/android/gallery3d/data/ |
RealDataTest.java | 34 private HashSet<Path> mUsedId = new HashSet<Path>(); 106 void assertNewId(Path key) {
|
/external/llvm/tools/llvm-ar/ |
llvm-ar.cpp | 64 " [P] - use full path names when matching\n" 124 // This variable holds the (possibly expanded) list of path objects that 126 std::set<sys::Path> Paths; 275 // sys::Path::getDirectoryContent method to perform the actual directory scans. 277 recurseDirectories(const sys::Path& path, 278 std::set<sys::Path>& result, std::string* ErrMsg) { 281 std::set<sys::Path> content; 282 if (path.getDirectoryContents(content, ErrMsg)) 285 for (std::set<sys::Path>::iterator I = content.begin(), E = content.end() [all...] |
/external/chromium/chrome/browser/ui/views/frame/ |
popup_non_client_frame_view.cc | 37 gfx::Path* window_mask) {
|
/external/chromium/webkit/glue/ |
webcookie.cc | 20 path(c.Path()), 28 const std::string& domain, const std::string& path, 33 path(path),
|
/external/llvm/lib/Archive/ |
ArchiveInternals.h | 75 bool GetBitcodeSymbols(const sys::Path& fName,
|
/external/llvm/lib/Linker/ |
LinkItems.cpp | 18 #include "llvm/Support/Path.h" 47 if (LinkInFile(sys::Path(I->first), is_native)) 77 sys::Path Pathname = FindLib(Lib); 158 bool Linker::LinkInFile(const sys::Path &File, bool &is_native) { 227 /// Files - A vector of sys::Path indicating the LLVM bitcode filenames 235 bool Linker::LinkInFiles(const std::vector<sys::Path> &Files) {
|
/external/skia/src/animator/ |
SkDrawPath.h | 27 DECLARE_DRAW_MEMBER_INFO(Path);
|
SkTextToPath.cpp | 29 SK_MEMBER(path, Path), 37 SkTextToPath::SkTextToPath() : paint(NULL), path(NULL), text(NULL) { 41 path->draw(maker); 46 if (paint == NULL || path == NULL || text == NULL) { 54 text->y, &path->getPath());
|
/external/webkit/Source/WebCore/rendering/ |
RenderEmbeddedObject.h | 71 bool getReplacementTextGeometry(int tx, int ty, FloatRect& contentRect, Path&, FloatRect& replacementTextRect, Font&, TextRun&, float& textWidth);
|
/external/webkit/Source/WebCore/rendering/svg/ |
RenderSVGResourceGradient.h | 53 virtual void postApplyResource(RenderObject*, GraphicsContext*&, unsigned short resourceMode, const Path*);
|
RenderSVGResourcePattern.h | 55 virtual void postApplyResource(RenderObject*, GraphicsContext*&, unsigned short resourceMode, const Path*);
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
ComboSource.java | 35 // The only path we accept is "/combo/{set1, set2, ...} and /combo/item/{set1, set2, ...}" 37 public MediaObject createMediaObject(Path path) { 38 String[] segments = path.split(); 40 throw new RuntimeException("bad path: " + path); 44 switch (mMatcher.match(path)) { 46 return new ComboAlbumSet(path, mApplication, 50 return new ComboAlbum(path,
|
FilterSource.java | 39 public MediaObject createMediaObject(Path path) { 40 int matchType = mMatcher.match(path); 47 return new FilterSet(path, dataManager, sets[0], mediaType); 49 throw new RuntimeException("bad path: " + path);
|
MediaItem.java | 41 public MediaItem(Path path, long version) { 42 super(path, version);
|
PathMatcher.java | 33 String[] segments = Path.split(pattern); 41 public int match(Path path) { 42 String[] segments = path.split();
|
/external/llvm/lib/Object/ |
Binary.cpp | 17 #include "llvm/Support/Path.h" 91 error_code object::createBinary(StringRef Path, OwningPtr<Binary> &Result) { 93 if (error_code ec = MemoryBuffer::getFile(Path, File))
|
/external/webkit/Source/WebCore/bindings/scripts/ |
generate-bindings.pl | 33 use File::Path;
|
/external/webkit/Source/WebCore/inspector/ |
combine-javascript-resources.pl | 32 use File::Path; 45 print "Usage: $0 --input-html <path> --output-dir path --output-script-name <name>\n";
|
/external/webkit/Source/WebCore/svg/ |
SVGAnimationElement.h | 29 #include "Path.h" 98 virtual Path animationPath() const { return Path(); }
|