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

1 2

  /external/webkit/WebCore/platform/graphics/wince/
PathWince.cpp 33 : m_path(new PlatformPath())
38 : m_path(new PlatformPath(*other.m_path))
44 delete m_path;
50 delete m_path;
51 m_path = new PlatformPath(*other.m_path);
58 return m_path->contains(point, rule);
63 m_path->translate(size);
68 return m_path->boundingRect()
    [all...]
  /external/webkit/WebCore/platform/graphics/wx/
PathWx.cpp 52 m_path = 0;
62 m_path = new wxGraphicsPath(path);
74 m_path = new wxGraphicsPath(*path.m_path);
80 if (m_path) {
82 return m_path->Contains(point.x(), point.y(), static_cast<wxPolygonFillMode>(getWxWindRuleForWindRule(rule)));
84 return m_path->Contains(point.x(), point.y(), getWxWindRuleForWindRule(rule));
99 if (m_path) {
100 return m_path->GetBox();
121 if (m_path)
    [all...]
  /external/webkit/WebCore/html/
Blob.cpp 39 : m_path(path)
48 if (!getFileSize(m_path, size))
Blob.h 50 const String& path() const { return m_path; }
57 String m_path; member in class:WebCore::Blob
  /external/webkit/WebCore/platform/graphics/skia/
PathSkia.cpp 48 m_path = new SkPath;
53 m_path = new SkPath(*other.m_path);
58 delete m_path;
63 *m_path = *other.m_path;
69 return m_path->isEmpty();
74 return m_path->getPoints(NULL, 0) != 0;
79 return SkPathContainsPoint(m_path, point,
85 m_path->offset(WebCoreFloatToSkScalar(size.width()), WebCoreFloatToSkScalar(size.height()))
    [all...]
  /external/webkit/WebCore/platform/graphics/haiku/
PathHaiku.cpp 41 : m_path(new BRegion())
47 delete m_path;
51 : m_path(new BRegion(*other.platformPath()))
58 m_path = other.platformPath();
70 return m_path->Contains(point);
80 return m_path->Frame();
121 m_path->Include(r);
131 m_path->MakeEmpty();
136 return !m_path->Frame().IsValid();
  /external/webkit/WebCore/wml/
WMLAccessElement.h 38 String m_path; member in class:WebCore::WMLAccessElement
WMLAccessElement.cpp 53 m_path = value;
63 if (!pageState || pageState->processAccessControlData(m_domain, m_path))
  /external/webkit/WebCore/platform/graphics/android/
PathAndroid.cpp 44 m_path = new SkPath;
45 // m_path->setFlags(SkPath::kWinding_FillType);
50 m_path = new SkPath(*other.m_path);
55 delete m_path;
60 *m_path = *other.m_path;
66 return m_path->isEmpty();
75 return m_path->getPoints(0, 0) > 0;
86 SkPath::FillType ft = m_path->getFillType(); // sav
    [all...]
  /external/webkit/WebCore/platform/graphics/cg/
PathCG.cpp 69 : m_path(CGPathCreateMutable())
75 CGPathRelease(m_path);
79 : m_path(CGPathCreateMutableCopy(other.m_path))
85 CGMutablePathRef path = CGPathCreateMutableCopy(other.m_path);
86 CGPathRelease(m_path);
87 m_path = path;
131 RetainPtr<CGMutablePathRef> path(AdoptCF, copyCGPathClosingSubpaths(m_path));
159 CGPathAddPath(newPath, &translation, m_path);
160 CGPathRelease(m_path);
    [all...]
  /external/webkit/WebCore/platform/graphics/qt/
PathQt.cpp 62 : m_path(other.m_path)
68 m_path = other.m_path;
74 Qt::FillRule savedRule = m_path.fillRule();
75 const_cast<QPainterPath*>(&m_path)->setFillRule(rule == RULE_EVENODD ? Qt::OddEvenFill : Qt::WindingFill);
77 bool contains = m_path.contains(point);
79 const_cast<QPainterPath*>(&m_path)->setFillRule(savedRule);
102 return stroke.createStroke(m_path).contains(point);
109 m_path = m_path * matrix
    [all...]
  /external/webkit/WebCore/storage/
StorageSyncManager.cpp 52 , m_path(path.crossThreadString())
55 ASSERT(!m_path.isEmpty());
68 if (!makeAllDirectories(m_path)) {
69 LOG_ERROR("Unabled to create LocalStorage database path %s", m_path.utf8().data());
73 return pathByAppendingComponent(m_path, databaseIdentifier + ".localstorage");
StorageNamespaceImpl.cpp 72 , m_path(path.crossThreadString())
77 if (m_storageType == LocalStorage && !m_path.isEmpty())
78 m_syncManager = StorageSyncManager::create(m_path);
86 ASSERT(localStorageNamespaceMap().get(m_path) == this);
87 localStorageNamespaceMap().remove(m_path);
100 StorageNamespaceImpl* newNamespace = new StorageNamespaceImpl(m_storageType, m_path, m_quota);
StorageSyncManager.h 64 String m_path; member in class:WebCore::StorageSyncManager
StorageNamespaceImpl.h 69 String m_path; member in class:WebCore::StorageNamespaceImpl
  /external/webkit/WebCore/page/
UserContentURLPattern.h 48 const String& path() const { return m_path; }
64 String m_path; member in class:WebCore::UserContentURLPattern
  /external/webkit/WebCore/rendering/
RenderPath.cpp 84 if (m_path.isEmpty())
90 return m_path.contains(point, style()->svgStyle()->fillRule());
95 if (m_path.isEmpty())
102 return m_path.strokeContains(&strokeStyle, point);
107 if (m_path.isEmpty())
111 m_cachedLocalFillBBox = m_path.boundingRect();
118 if (m_path.isEmpty())
127 m_cachedLocalStrokeBBox.unite(m_path.strokeBoundingRect(&strokeStyle));
135 if (m_path.isEmpty())
146 if (m_path.isEmpty()
    [all...]
RenderPath.h 43 const Path& path() const { return m_path; }
73 mutable Path m_path; member in class:WebCore::RenderPath
  /external/webkit/WebCore/plugins/qt/
PluginPackageQt.cpp 100 m_module = new QLibrary((QString)m_path);
103 LOG(Plugins, "%s not loaded (%s)", m_path.utf8().data(),
124 if (m_path.contains("npwrapper.")) {
  /external/webkit/WebCore/platform/graphics/
Path.h 106 void swap(Path& other) { std::swap(m_path, other.m_path); }
138 PlatformPathPtr platformPath() const { return m_path; }
151 PlatformPathPtr m_path; member in class:WebCore::Path
  /libcore/luni/src/main/java/org/apache/xml/serializer/utils/
URI.java 133 private String m_path = null; field in class:URI
347 m_path = p_other.getPath();
458 if (m_path.length() == 0 && m_scheme == null && m_host == null)
464 m_path = p_base.getPath();
495 if (m_path.length() > 0 && m_path.startsWith("/"))
517 path = path.concat(m_path);
568 m_path = path;
770 m_path = p_uriSpec.substring(start, index);
887 if (m_path != null
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/utils/
URI.java 130 private String m_path = null; field in class:URI
344 m_path = p_other.getPath();
478 if (m_path.length() == 0 && m_scheme == null && m_host == null)
484 m_path = p_base.getPath();
515 if (m_path.length() > 0 && m_path.startsWith("/"))
537 path = path.concat(m_path);
588 m_path = path;
790 m_path = p_uriSpec.substring(start, index);
907 if (m_path != null
    [all...]
  /external/webkit/WebCore/plugins/android/
PluginPackageAndroid.cpp 213 PLUGIN_LOG("Loading \"%s\"\n", m_path.utf8().data());
216 void *handle = dlopen(m_path.utf8().data(), RTLD_NOW);
219 m_path.utf8().data(), dlerror());
267 PLUGIN_LOG("Fetch Info Loading \"%s\"\n", m_path.utf8().data());
270 void *handle = dlopen(m_path.utf8().data(), RTLD_NOW);
273 m_path.utf8().data(), dlerror());
308 int last_slash = m_path.reverseFind('/');
310 m_fileName = m_path;
312 m_fileName = m_path.substring(last_slash + 1);
359 m_path.utf8().data())
    [all...]
  /frameworks/base/core/java/android/os/
FileObserver.java 146 private String m_path; field in class:FileObserver
166 m_path = path;
182 m_descriptor = s_observerThread.startWatching(m_path, m_mask, this);
  /external/webkit/WebCore/svg/
SVGAnimateMotionElement.h 68 Path m_path; member in class:WebCore::SVGAnimateMotionElement

Completed in 541 milliseconds

1 2