HomeSort by relevance Sort by last modified time
    Searched refs:platformPath (Results 1 - 25 of 29) sorted by null

1 2

  /external/webkit/Source/WebKit/chromium/public/
WebFileInfo.h 55 WebString platformPath;
  /external/webkit/Source/WebCore/platform/
FileMetadata.h 57 String platformPath;
  /external/webkit/Source/WebCore/fileapi/
DOMFileSystem.cpp 107 String platformPath = m_asyncFileSystem->virtualToPlatformPath(fileEntry->fullPath());
112 m_asyncFileSystem->createWriter(fileWriter.get(), platformPath, callbacks.release());
126 if (!metadata.platformPath.isEmpty())
127 m_path = metadata.platformPath;
150 String platformPath = m_asyncFileSystem->virtualToPlatformPath(fileEntry->fullPath());
152 m_asyncFileSystem->readMetadata(platformPath, GetPathCallback::create(this, platformPath, successCallback, errorCallback));
DOMFileSystemBase.cpp 108 String platformPath = m_asyncFileSystem->virtualToPlatformPath(entry->fullPath());
109 m_asyncFileSystem->readMetadata(platformPath, MetadataCallbacks::create(successCallback, errorCallback));
183 String platformPath = m_asyncFileSystem->virtualToPlatformPath(entry->fullPath());
184 m_asyncFileSystem->remove(platformPath, VoidCallbacks::create(successCallback, errorCallback));
194 String platformPath = m_asyncFileSystem->virtualToPlatformPath(entry->fullPath());
195 m_asyncFileSystem->removeRecursively(platformPath, VoidCallbacks::create(successCallback, errorCallback));
203 String platformPath = m_asyncFileSystem->virtualToPlatformPath(path);
204 m_asyncFileSystem->directoryExists(platformPath, EntryCallbacks::create(successCallback, errorCallback, this, path, true));
214 String platformPath = m_asyncFileSystem->virtualToPlatformPath(absolutePath);
217 m_asyncFileSystem->createFile(platformPath, flags->isExclusive(), callbacks.release())
    [all...]
DOMFileSystemSync.cpp 143 m_result->m_path = metadata.platformPath;
159 String platformPath = m_asyncFileSystem->virtualToPlatformPath(fileEntry->fullPath());
161 m_asyncFileSystem->readMetadata(platformPath, GetPathHelper::create(result));
171 platformPath = result->m_path;
172 return File::create(platformPath);
246 String platformPath = m_asyncFileSystem->virtualToPlatformPath(fileEntry->fullPath());
253 m_asyncFileSystem->createWriter(fileWriter.get(), platformPath, callbacks.release());
  /external/webkit/Source/WebCore/platform/graphics/cairo/
PathCairo.cpp 55 cairo_t* cr = platformPath()->context();
56 OwnPtr<cairo_path_t> p(cairo_copy_path(other.platformPath()->context()));
66 cairo_t* cr = platformPath()->context();
67 OwnPtr<cairo_path_t> p(cairo_copy_path(other.platformPath()->context()));
74 cairo_t* cr = platformPath()->context();
80 return !cairo_has_current_point(platformPath()->context());
93 cairo_get_current_point(platformPath()->context(), &x, &y);
99 cairo_t* cr = platformPath()->context();
105 cairo_t* cr = platformPath()->context();
111 cairo_t* cr = platformPath()->context()
    [all...]
CairoUtilities.cpp 80 appendPathToCairoContext(context, path.platformPath()->context());
GraphicsContextCairo.cpp 544 setPathOnCairoContext(cr, path.platformPath()->context());
554 setPathOnCairoContext(cr, path.platformPath()->context());
602 setPathOnCairoContext(cr, path.platformPath()->context());
1052 OwnPtr<cairo_path_t> p(cairo_copy_path(path.platformPath()->context()));
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebFileSystemCallbacksImpl.cpp 75 fileMetadata.platformPath = webFileInfo.platformPath;
WorkerFileSystemCallbacksBridge.cpp 61 newInfo.platformPath.assign(info.platformPath.data(), info.platformPath.length());
  /external/webkit/Source/WebCore/platform/graphics/haiku/
PathHaiku.cpp 51 : m_path(new BRegion(*other.platformPath()))
58 m_path = other.platformPath();
GraphicsContextHaiku.cpp 371 m_data->m_view->ConstrainClippingRegion(path.platformPath());
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 496 QPainterPath platformPath = path.platformPath();
497 platformPath.setFillRule(toQtFillRule(fillRule()));
503 QPainter* shadowPainter = shadow->beginShadowLayer(this, platformPath.controlPointRect());
508 shadowPainter->fillPath(platformPath, QBrush(m_state.fillPattern->createPlatformPattern(affine)));
513 shadowPainter->fillPath(platformPath, brush);
517 shadowPainter->fillPath(platformPath, shadowColor);
526 p->fillPath(platformPath, shadowColor);
532 p->fillPath(platformPath, QBrush(m_state.fillPattern->createPlatformPattern(affine)));
536 p->fillPath(platformPath, brush)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
Path.h 36 typedef struct CGPath PlatformPath;
41 typedef WebCore::PlatformPathOpenVG PlatformPath;
44 typedef QPainterPath PlatformPath;
47 typedef wxGraphicsPath PlatformPath;
52 typedef WebCore::CairoPath PlatformPath;
55 typedef SkPath PlatformPath;
58 typedef BRegion PlatformPath;
61 class PlatformPath;
63 typedef WebCore::PlatformPath PlatformPath;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
PathCG.cpp 144 CGContextAddPath(context, platformPath());
175 CGContextAddPath(context, platformPath());
GraphicsContextCG.cpp 528 CGContextAddPath(context, path.platformPath());
563 CGContextAddPath(layerContext, path.platformPath());
576 CGContextAddPath(context, path.platformPath());
593 CGContextAddPath(context, path.platformPath());
608 CGContextAddPath(context, path.platformPath());
629 CGContextAddPath(layerContext, path.platformPath());
862 CGContextAddPath(platformContext(), path.platformPath());
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/skia/
PathSkia.cpp 242 paint.getFillPath(*platformPath(), &boundingPath);
260 paint.getFillPath(*platformPath(), &strokePath);
GraphicsContextSkia.cpp 364 const SkPath& p = *path.platformPath();
380 const SkPath& p = *path.platformPath();
407 const SkPath& path = *p.platformPath();
422 SkPath path = *pathToClip.platformPath();
743 SkPath path = *pathToFill.platformPath();
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextSkia.cpp 184 mCanvas->clipPath(*path.platformPath(), SkRegion::kIntersect_Op, true);
204 mCanvas->clipPath(*path.platformPath(), SkRegion::kDifference_Op);
209 SkPath path = *pathToClip.platformPath();
479 SkPath* path = pathToFill.platformPath();
589 const SkPath* path = pathToStroke.platformPath();
  /external/webkit/Source/WebCore/platform/graphics/wx/
PathWx.cpp 122 *m_path = *path.platformPath();
GraphicsContextWx.cpp 531 gc->FillPath(*path.platformPath());
540 gc->StrokePath(*path.platformPath());
  /external/webkit/Source/WebCore/platform/graphics/android/
PathAndroid.cpp 299 paint.getFillPath(*platformPath(), &boundingPath);
317 paint.getFillPath(*platformPath(), &strokePath);
  /external/webkit/Source/WebCore/platform/graphics/mac/
GraphicsContextMac.mm 70 drawFocusRingToContext(platformContext(), path.platformPath(), colorRef, radius);
  /external/webkit/Source/WebCore/platform/graphics/openvg/
PainterOpenVG.cpp 735 vgDrawPath(path.platformPath()->vgPath(), paintModes);
813 vgRenderToMask(path.platformPath()->vgPath(), VG_FILL_PATH, (VGMaskOperation) maskOp);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp     [all...]

Completed in 296 milliseconds

1 2