/external/webkit/WebCore/platform/graphics/wx/ |
D | PathWx.cpp | 52 m_path = 0; in Path() 62 m_path = new wxGraphicsPath(path); in Path() 74 m_path = new wxGraphicsPath(*path.m_path); in Path() 80 if (m_path) { in contains() 82 …return m_path->Contains(point.x(), point.y(), static_cast<wxPolygonFillMode>(getWxWindRuleForWindR… in contains() 84 return m_path->Contains(point.x(), point.y(), getWxWindRuleForWindRule(rule)); in contains() 99 if (m_path) { in boundingRect() 100 return m_path->GetBox(); in boundingRect() 121 if (m_path) in clear() 122 delete m_path; in clear() [all …]
|
/external/webkit/WebCore/platform/graphics/wince/ |
D | PathWince.cpp | 33 : m_path(new PlatformPath()) in Path() 38 : m_path(new PlatformPath(*other.m_path)) in Path() 44 delete m_path; in ~Path() 50 delete m_path; in operator =() 51 m_path = new PlatformPath(*other.m_path); in operator =() 58 return m_path->contains(point, rule); in contains() 63 m_path->translate(size); in translate() 68 return m_path->boundingRect(); in boundingRect() 73 m_path->moveTo(point); in moveTo() 78 m_path->addLineTo(point); in addLineTo() [all …]
|
/external/webkit/WebCore/platform/graphics/skia/ |
D | PathSkia.cpp | 48 m_path = new SkPath; in Path() 53 m_path = new SkPath(*other.m_path); in Path() 58 delete m_path; in ~Path() 63 *m_path = *other.m_path; in operator =() 69 return m_path->isEmpty(); in isEmpty() 74 return m_path->getPoints(NULL, 0) != 0; in hasCurrentPoint() 79 return SkPathContainsPoint(m_path, point, in contains() 85 m_path->offset(WebCoreFloatToSkScalar(size.width()), WebCoreFloatToSkScalar(size.height())); in translate() 90 return m_path->getBounds(); in boundingRect() 95 m_path->moveTo(point); in moveTo() [all …]
|
/external/webkit/WebCore/platform/graphics/cg/ |
D | PathCG.cpp | 69 : m_path(CGPathCreateMutable()) in Path() 75 CGPathRelease(m_path); in ~Path() 79 : m_path(CGPathCreateMutableCopy(other.m_path)) in Path() 85 CGMutablePathRef path = CGPathCreateMutableCopy(other.m_path); in operator =() 86 CGPathRelease(m_path); in operator =() 87 m_path = path; in operator =() 131 RetainPtr<CGMutablePathRef> path(AdoptCF, copyCGPathClosingSubpaths(m_path)); in contains() 159 CGPathAddPath(newPath, &translation, m_path); in translate() 160 CGPathRelease(m_path); in translate() 161 m_path = newPath; in translate() [all …]
|
/external/webkit/WebCore/platform/graphics/qt/ |
D | PathQt.cpp | 62 : m_path(other.m_path) in Path() 68 m_path = other.m_path; in operator =() 74 Qt::FillRule savedRule = m_path.fillRule(); in contains() 75 …const_cast<QPainterPath*>(&m_path)->setFillRule(rule == RULE_EVENODD ? Qt::OddEvenFill : Qt::Windi… in contains() 77 bool contains = m_path.contains(point); in contains() 79 const_cast<QPainterPath*>(&m_path)->setFillRule(savedRule); in contains() 102 return stroke.createStroke(m_path).contains(point); in strokeContains() 109 m_path = m_path * matrix; in translate() 114 return m_path.boundingRect(); in boundingRect() 135 return stroke.createStroke(m_path).boundingRect(); in strokeBoundingRect() [all …]
|
/external/webkit/WebCore/platform/graphics/android/ |
D | PathAndroid.cpp | 44 m_path = new SkPath; in Path() 50 m_path = new SkPath(*other.m_path); in Path() 55 delete m_path; in ~Path() 60 *m_path = *other.m_path; in operator =() 66 return m_path->isEmpty(); in isEmpty() 75 return m_path->getPoints(0, 0) > 0; in hasCurrentPoint() 86 SkPath::FillType ft = m_path->getFillType(); // save in contains() 87 … m_path->setFillType(rule == RULE_NONZERO ? SkPath::kWinding_FillType : SkPath::kEvenOdd_FillType); in contains() 89 bool contains = rgn.setPath(*m_path, clip); in contains() 91 m_path->setFillType(ft); // restore in contains() [all …]
|
/external/webkit/WebCore/platform/graphics/haiku/ |
D | PathHaiku.cpp | 41 : m_path(new BRegion()) in Path() 47 delete m_path; in ~Path() 51 : m_path(new BRegion(*other.platformPath())) in Path() 58 m_path = other.platformPath(); in operator =() 70 return m_path->Contains(point); in contains() 80 return m_path->Frame(); in boundingRect() 121 m_path->Include(r); in addRect() 131 m_path->MakeEmpty(); in clear() 136 return !m_path->Frame().IsValid(); in isEmpty()
|
/external/webkit/WebCore/rendering/ |
D | RenderPath.cpp | 84 if (m_path.isEmpty()) in fillContains() 90 return m_path.contains(point, style()->svgStyle()->fillRule()); in fillContains() 95 if (m_path.isEmpty()) in strokeContains() 102 return m_path.strokeContains(&strokeStyle, point); in strokeContains() 107 if (m_path.isEmpty()) in objectBoundingBox() 111 m_cachedLocalFillBBox = m_path.boundingRect(); in objectBoundingBox() 118 if (m_path.isEmpty()) in strokeBoundingBox() 127 m_cachedLocalStrokeBBox.unite(m_path.strokeBoundingRect(&strokeStyle)); in strokeBoundingBox() 135 if (m_path.isEmpty()) in markerBoundingBox() 146 if (m_path.isEmpty()) in repaintRectInLocalCoordinates() [all …]
|
D | RenderPath.h | 43 const Path& path() const { return m_path; } in path() 73 mutable Path m_path; variable
|
/external/webkit/WebCore/storage/ |
D | StorageSyncManager.cpp | 52 , m_path(path.crossThreadString()) in StorageSyncManager() 55 ASSERT(!m_path.isEmpty()); in StorageSyncManager() 68 if (!makeAllDirectories(m_path)) { in fullDatabaseFilename() 69 LOG_ERROR("Unabled to create LocalStorage database path %s", m_path.utf8().data()); in fullDatabaseFilename() 73 return pathByAppendingComponent(m_path, databaseIdentifier + ".localstorage"); in fullDatabaseFilename()
|
D | StorageNamespaceImpl.cpp | 72 , m_path(path.crossThreadString()) in StorageNamespaceImpl() 77 if (m_storageType == LocalStorage && !m_path.isEmpty()) in StorageNamespaceImpl() 78 m_syncManager = StorageSyncManager::create(m_path); in StorageNamespaceImpl() 86 ASSERT(localStorageNamespaceMap().get(m_path) == this); in ~StorageNamespaceImpl() 87 localStorageNamespaceMap().remove(m_path); in ~StorageNamespaceImpl() 100 StorageNamespaceImpl* newNamespace = new StorageNamespaceImpl(m_storageType, m_path, m_quota); in copy()
|
/external/webkit/WebCore/plugins/android/ |
D | PluginPackageAndroid.cpp | 213 PLUGIN_LOG("Loading \"%s\"\n", m_path.utf8().data()); in load() 216 void *handle = dlopen(m_path.utf8().data(), RTLD_NOW); in load() 219 m_path.utf8().data(), dlerror()); in load() 267 PLUGIN_LOG("Fetch Info Loading \"%s\"\n", m_path.utf8().data()); in fetchInfo() 270 void *handle = dlopen(m_path.utf8().data(), RTLD_NOW); in fetchInfo() 273 m_path.utf8().data(), dlerror()); in fetchInfo() 308 int last_slash = m_path.reverseFind('/'); in fetchInfo() 310 m_fileName = m_path; in fetchInfo() 312 m_fileName = m_path.substring(last_slash + 1); in fetchInfo() 359 m_path.utf8().data()); in fetchInfo()
|
/external/webkit/WebCore/html/canvas/ |
D | CanvasRenderingContext2D.cpp | 148 m_path.transform(state().m_transform); in restore() 150 m_path.transform(state().m_transform.inverse()); in restore() 369 m_path.transform(AffineTransform().scaleNonUniform(1.0 / sx, 1.0 / sy)); in scale() 392 m_path.transform(AffineTransform().rotate(-angleInRadians / piDouble * 180.0)); in rotate() 415 m_path.transform(AffineTransform().translate(-tx, -ty)); in translate() 439 m_path.transform(transform.inverse()); in transform() 458 m_path.transform(ctm); in setTransform() 526 m_path.clear(); in beginPath() 531 m_path.closeSubpath(); in closePath() 540 m_path.moveTo(FloatPoint(x, y)); in moveTo() [all …]
|
/external/webkit/WebCore/plugins/win/ |
D | PluginPackageWin.cpp | 167 …versionInfoSize = GetFileVersionInfoSizeW(const_cast<UChar*>(m_path.charactersWithNullTermination(… in fetchInfo() 173 if (!GetFileVersionInfoW(const_cast<UChar*>(m_path.charactersWithNullTermination()), in fetchInfo() 238 m_module = ::LoadLibraryW(m_path.charactersWithNullTermination()); in load() 245 String path = m_path.substring(0, m_path.reverseFind('\\')); in load() 251 …m_module = ::LoadLibraryExW(m_path.charactersWithNullTermination(), 0, LOAD_WITH_ALTERED_SEARCH_PA… in load()
|
/external/webkit/WebCore/platform/graphics/ |
D | Path.h | 106 void swap(Path& other) { std::swap(m_path, other.m_path); } in swap() 138 PlatformPathPtr platformPath() const { return m_path; } in platformPath() 151 PlatformPathPtr m_path;
|
/external/emma/core/java12/com/vladium/util/ |
D | IPathEnumerator.java | 79 …for (m_pathIndex = 0; m_pathIndex < m_path.size (); ++ m_pathIndex) // important not to cache m_pa… in enumerate() 81 final File f = (File) m_path.get (m_pathIndex); in enumerate() 126 m_path = new ArrayList (path.length); in PathEnumerator() 127 for (int p = 0; p < path.length; ++ p) m_path.add (path [p]); in PathEnumerator() 270 … m_path.add (m_pathIndex + (p ++), path); // insert after the current m_path entry in enumeratePathArchive() 313 private final ArrayList /* File */ m_path; field in IPathEnumerator.Factory.PathEnumerator
|
/external/webkit/WebCore/plugins/ |
D | PluginPackage.cpp | 112 , m_path(path) in PluginPackage() 118 m_fileName = pathGetFileName(m_path); in PluginPackage() 119 m_parentDirectory = m_path.left(m_path.length() - m_fileName.length() - 1); in PluginPackage() 317 m_path.impl()->hash(), in hash()
|
D | PluginStream.cpp | 207 m_path = openTemporaryFile("WKP", m_tempFileHandle); in startStream() 260 ASSERT(!m_path.isNull()); in destroyStream() 264 m_pluginFuncs->asfile(m_instance, &m_stream, m_path.data()); in destroyStream() 313 if (!m_path.isNull()) { in destroyStream() 314 String tempFilePath = String::fromUTF8(m_path.data()); in destroyStream()
|
/external/webkit/WebCore/plugins/qt/ |
D | PluginPackageQt.cpp | 100 m_module = new QLibrary((QString)m_path); in load() 103 LOG(Plugins, "%s not loaded (%s)", m_path.utf8().data(), in load() 124 if (m_path.contains("npwrapper.")) { in load()
|
/external/webkit/WebCore/html/ |
D | Blob.cpp | 39 : m_path(path) in Blob() 48 if (!getFileSize(m_path, size)) in size()
|
D | Blob.h | 50 const String& path() const { return m_path; } in path() 57 String m_path;
|
/external/webkit/WebCore/page/ |
D | UserContentURLPattern.h | 48 const String& path() const { return m_path; } in path() 64 String m_path; variable
|
/external/webkit/WebCore/wml/ |
D | WMLAccessElement.cpp | 53 m_path = value; in parseMappedAttribute() 63 if (!pageState || pageState->processAccessControlData(m_domain, m_path)) in insertedIntoDocument()
|
/external/webkit/WebCore/xml/ |
D | XPathPath.cpp | 183 , m_path(path) in Path() 193 delete m_path; in ~Path() 201 m_path->evaluate(nodes); in evaluate()
|
/external/webkit/WebCore/plugins/gtk/ |
D | PluginPackageGtk.cpp | 108 m_module = g_module_open((m_path.utf8()).data(), G_MODULE_BIND_LOCAL); in load() 111 LOG(Plugins,"Module Load Failed :%s, Error:%s\n", (m_path.utf8()).data(), g_module_error()); in load()
|