HomeSort by relevance Sort by last modified time
    Searched defs:platformPath (Results 1 - 7 of 7) sorted by null

  /external/webkit/Source/WebCore/platform/
FileMetadata.h 57 String platformPath;
  /external/webkit/Source/WebKit/chromium/public/
WebFileInfo.h 55 WebString 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/
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/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...]

Completed in 66 milliseconds