Searched refs:m_path (Results 1 - 25 of 69) sorted by relevance

123

/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGPathBuilder.cpp32 : m_path(0)
38 ASSERT(m_path);
40 if (closed && !m_path->isEmpty())
41 m_path->closeSubpath();
42 m_path->moveTo(m_current);
47 ASSERT(m_path);
49 m_path->addLineTo(m_current);
54 ASSERT(m_path);
56 m_path->addBezierCurveTo(m_current + point1, m_current + point2, m_current + targetPoint);
60 m_path
[all...]
H A DSVGPathBuilder.h38 void setCurrentPath(Path* path) { m_path = path; }
43 virtual void cleanup() override { m_path = 0; }
59 Path* m_path; member in class:WebCore::SVGPathBuilder
/macosx-10.10/WebCore-7600.1.25/platform/graphics/wince/
H A DPathWinCE.cpp33 : 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
[all...]
/macosx-10.10/WebKit2-7600.1.25/Platform/
H A DModule.cpp32 : m_path(path)
/macosx-10.10/WebCore-7600.1.25/storage/
H A DStorageSyncManager.cpp50 , m_path(path.isolatedCopy())
53 ASSERT(!m_path.isEmpty());
66 if (!makeAllDirectories(m_path)) {
67 LOG_ERROR("Unabled to create LocalStorage database path %s", m_path.utf8().data());
71 return pathByAppendingComponent(m_path, databaseIdentifier + ".localstorage");
H A DStorageNamespaceImpl.cpp87 , m_path(path.isolatedCopy())
92 if (m_storageType == LocalStorage && !m_path.isEmpty())
93 m_syncManager = StorageSyncManager::create(m_path);
101 ASSERT(localStorageNamespaceMap().get(m_path) == this);
102 localStorageNamespaceMap().remove(m_path);
115 RefPtr<StorageNamespaceImpl> newNamespace = adoptRef(new StorageNamespaceImpl(m_storageType, m_path, m_quota));
H A DStorageSyncManager.h58 String m_path; member in class:WebCore::StorageSyncManager
/macosx-10.10/WebCore-7600.1.25/html/canvas/
H A DCanvasPathMethods.cpp46 if (m_path.isEmpty())
49 FloatRect boundRect = m_path.fastBoundingRect();
51 m_path.closeSubpath();
60 m_path.moveTo(FloatPoint(x, y));
71 if (!m_path.hasCurrentPoint())
72 m_path.moveTo(p1);
73 else if (p1 != m_path.currentPoint())
74 m_path.addLineTo(p1);
83 if (!m_path.hasCurrentPoint())
84 m_path
[all...]
H A DCanvasPathMethods.h55 CanvasPathMethods(const Path& path) : m_path(path) { }
59 Path m_path; member in class:WebCore::CanvasPathMethods
H A DDOMPath.h59 m_path.addPath(path->path(), transform);
63 const Path& path() const { return m_path; }
/macosx-10.10/WebCore-7600.1.25/platform/network/
H A DBlobDataFileReference.cpp35 : m_path(path)
62 return m_path;
96 m_replacementShouldBeGenerated = File::shouldReplaceFile(m_path);
101 if (!getFileMetadata(m_path, metadata))
H A DBlobDataFileReference.h61 String m_path; member in class:WebCore::BlobDataFileReference
/macosx-10.10/WebKit2-7600.1.25/Platform/gtk/
H A DModuleGtk.cpp38 m_handle = g_module_open(m_path.utf8().data(), G_MODULE_BIND_LAZY);
40 WTFLogAlways("Error loading module '%s': %s", m_path.utf8().data(), g_module_error());
/macosx-10.10/WebCore-7600.1.25/fileapi/
H A DFile.cpp42 , m_path(path)
46 computeNameAndContentType(m_path, String(), m_name, m_type);
52 , m_path(path)
56 computeNameAndContentType(m_path, nameOverride, m_name, m_type);
62 , m_path(path)
70 if (getFileModificationTime(m_path, modificationTime) && isValidFileTime(modificationTime))
/macosx-10.10/WebKit2-7600.1.25/WebProcess/InjectedBundle/efl/
H A DInjectedBundleEfl.cpp39 m_platformBundle = eina_module_new(m_path.utf8().data());
45 EINA_LOG_CRIT("Error loading the injected bundle from %s: %s", m_path.utf8().data(), eina_error_msg_get(eina_error_get()));
/macosx-10.10/WebKit2-7600.1.25/WebProcess/InjectedBundle/gtk/
H A DInjectedBundleGtk.cpp41 m_platformBundle = g_module_open(fileSystemRepresentation(m_path).data(), G_MODULE_BIND_LOCAL);
43 g_warning("Error loading the injected bundle (%s): %s", m_path.utf8().data(), g_module_error());
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-c++/detail/
H A Dfs.cpp114 atf_error_t err = atf_fs_path_init_fmt(&m_path, "%s", s.c_str());
121 atf_error_t err = atf_fs_path_copy(&m_path, &p.m_path);
128 atf_error_t err = atf_fs_path_copy(&m_path, p);
135 atf_fs_path_fini(&m_path);
142 return atf_fs_path_cstring(&m_path);
149 return &m_path;
163 return atf_fs_path_is_absolute(&m_path);
170 return atf_fs_path_is_root(&m_path);
180 err = atf_fs_path_branch_path(&m_path,
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/cg/
H A DPathCG.cpp77 : m_path(0)
82 : m_path(p.leakRef())
88 if (m_path)
89 CGPathRelease(m_path);
94 if (!m_path)
95 m_path = CGPathCreateMutable();
96 return m_path;
101 m_path = other.m_path ? CGPathCreateMutableCopy(other.m_path)
[all...]
/macosx-10.10/WebKit2-7600.1.25/Platform/efl/
H A DModuleEfl.cpp29 m_module = EflUniquePtr<Eina_Module>(eina_module_new(m_path.utf8().data()));
/macosx-10.10/WebCore-7600.1.25/page/
H A DUserContentURLPattern.h52 const String& path() const { return m_path; }
68 String m_path; member in class:WebCore::UserContentURLPattern
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-run/
H A Dfs.hpp41 std::auto_ptr< atf::fs::path > m_path; member in class:atf::atf_run::temp_dir
/macosx-10.10/WebCore-7600.1.25/loader/appcache/
H A DApplicationCacheResource.h57 const String& path() const { return m_path; }
58 void setPath(const String& path) { m_path = path; }
70 String m_path; member in class:WebCore::ApplicationCacheResource
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebPage/
H A DTapHighlightController.cpp59 m_path = GestureTapHighlighter::pathForNodeHighlight(node);
101 if (m_path.isEmpty())
107 context.fillPath(m_path);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/efl/
H A Dewk_url_scheme_request_private.h66 WKEinaSharedString m_path; member in class:EwkUrlSchemeRequest
/macosx-10.10/WebKit2-7600.1.25/Shared/linux/SeccompFilters/
H A DOpenSyscall.cpp116 m_path = CString(reinterpret_cast<char*>(context->gregs[REG_ARG0]));
135 if (!strncmp("/proc/self/", m_path.data(), 11)) {
136 String resolvedSelfPath = ASCIILiteral("/proc/") + String::number(getppid()) + &m_path.data()[10];
137 m_path = resolvedSelfPath.utf8().data();
152 if (!policy.hasPermissionForPath(m_path.data(), permission))
158 int fd = open(m_path.data(), m_flags, m_mode);
167 encoder << m_path; local
176 if (!decoder->decode(m_path))

Completed in 294 milliseconds

123