Searched refs:m_frame (Results 126 - 150 of 202) sorted by path

123456789

/external/webkit/Source/WebCore/platform/graphics/
H A DBitmapImage.h75 : m_frame(0)
92 NativeImagePtr m_frame; member in struct:WebCore::FrameData
/external/webkit/Source/WebCore/platform/graphics/android/
H A DImageAndroid.cpp67 if (m_frame) {
68 m_frame->unref();
69 m_frame = 0;
97 m_frames[0].m_frame = ref;
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DImageCairo.cpp54 if (m_frame) {
55 cairo_surface_destroy(m_frame);
56 m_frame = 0;
90 m_frames[0].m_frame = surface;
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DImageCG.cpp56 if (m_frame) {
57 CGImageRelease(m_frame);
58 m_frame = 0;
94 m_frames[0].m_frame = cgImage;
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DLayerChromium.cpp205 if (rect == m_frame)
208 m_frame = rect;
H A DLayerChromium.h94 FloatRect frame() const { return m_frame; }
270 FloatRect m_frame; member in class:WebCore::LayerChromium
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DImageHaiku.cpp59 if (m_frame) {
60 delete m_frame;
61 m_frame = 0;
/external/webkit/Source/WebCore/platform/graphics/openvg/
H A DImageOpenVG.cpp45 if (m_frame) {
46 delete m_frame;
47 m_frame = 0;
80 m_frames[0].m_frame = tiledImage;
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DImageQt.cpp86 if (m_frame) {
87 delete m_frame;
88 m_frame = 0;
189 m_frames[0].m_frame = pixmap;
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DImageSkia.cpp328 if (m_frame) {
329 // ImageSource::createFrameAtIndex() allocated |m_frame| and passed
331 delete m_frame;
332 m_frame = 0;
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DImageWinCE.cpp54 if (m_frame) {
55 m_frame = 0;
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DImageWx.cpp60 if (m_frame) {
61 delete m_frame;
62 m_frame = 0;
/external/webkit/Source/WebCore/platform/gtk/
H A DClipboardGtk.cpp64 , m_frame(frame)
73 , m_frame(frame)
H A DClipboardGtk.h87 Frame* m_frame; member in class:WebCore::ClipboardGtk
H A DWidgetGtk.cpp106 return m_frame;
111 m_frame = rect;
/external/webkit/Source/WebCore/platform/haiku/
H A DWidgetHaiku.cpp75 return m_frame;
80 m_frame = rect;
/external/webkit/Source/WebCore/platform/mac/
H A DClipboardMac.h89 Frame* m_frame; // used on the source side to generate dragging images member in class:WebCore::ClipboardMac
H A DClipboardMac.mm58 , m_frame(frame)
257 if ([url isFileURL] && m_frame->document()->securityOrigin()->canLoadLocalResources()) {
409 if (m_frame) {
412 result = m_frame->snapshotDragImage(m_dragImageElement.get(), &imageRect, &elementRect);
H A DWidgetMac.mm165 return m_frame;
171 return m_frame;
176 m_frame = rect;
/external/webkit/Source/WebCore/platform/qt/
H A DWidgetQt.cpp64 return m_frame;
69 m_frame = rect;
/external/webkit/Source/WebCore/platform/win/
H A DClipboardWin.cpp352 , m_frame(frame)
360 , m_frame(frame)
368 , m_frame(frame)
H A DClipboardWin.h96 Frame* m_frame; member in class:WebCore::ClipboardWin
H A DWidgetWin.cpp93 return m_frame;
98 m_frame = rect;
/external/webkit/Source/WebCore/platform/wx/
H A DWidgetWx.cpp82 return m_frame;
90 m_frame = rect;
/external/webkit/Source/WebCore/plugins/
H A DDOMMimeType.cpp34 , m_frame(frame)
37 if (m_frame)
38 m_frame->addDestructionObserver(this);
43 if (m_frame)
44 m_frame->removeDestructionObserver(this);
72 if (!m_frame || !m_frame->page() || !m_frame->page()->mainFrame()->loader()->subframeLoader()->allowPlugins(NotAboutToInstantiatePlugin))
75 return DOMPlugin::create(m_pluginData.get(), m_frame, m_pluginData->mimePluginIndices()[m_index]);

Completed in 330 milliseconds

123456789