HomeSort by relevance Sort by last modified time
    Searched refs:Frame (Results 451 - 475 of 919) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/platform/mac/
DragDataMac.mm 99 String DragData::asPlainText(Frame *frame) const
102 return pasteboard.plainText(frame);
133 bool DragData::containsURL(Frame* frame, FilenameConversionPolicy filenamePolicy) const
135 return !asURL(frame, filenamePolicy).isEmpty();
138 String DragData::asURL(Frame* frame, FilenameConversionPolicy filenamePolicy, String* title) const
148 return pasteboard.asURL(frame);
151 PassRefPtr<DocumentFragment> DragData::asFragment(Frame* frame, PassRefPtr<Range> range, bool allowPlainText, bool& chosePlainText) cons
    [all...]
  /external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
WebAutofill.h 44 class Frame;
93 void searchDocument(WebCore::Frame*);
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebDragClient.mm 47 #import <WebCore/Frame.h>
59 static WebHTMLView *getTopHTMLView(Frame* frame)
61 ASSERT(frame);
62 ASSERT(frame->page());
63 return (WebHTMLView*)[[kit(frame->page()->mainFrame()) frameView] documentView];
89 void WebDragClient::startDrag(DragImageRef dragImage, const IntPoint& at, const IntPoint& eventPos, Clipboard* clipboard, Frame* frame, bool linkDrag)
91 if (!frame)
94 RetainPtr<WebHTMLView> htmlView = (WebHTMLView*)[[kit(frame) frameView] documentView]
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebRenderNode.mm 32 #import <WebCore/Frame.h>
45 - (id)_initWithCoreFrame:(Frame *)frame
49 if (!frame->loader()->client()->hasHTMLView())
52 RenderObject* renderer = frame->contentRenderer();
59 - (id)_initWithName:(NSString *)n position:(NSPoint)p rect:(NSRect)r coreFrame:(Frame*)coreFrame children:(NSArray *)c
99 Frame* frame = frameView ? frameView->frame() : 0;
132 coreFrame:frame children:children]
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
InputStreamSource.java 22 import android.filterfw.core.Frame;
82 // Put it into a frame
84 Frame output = context.getFrameManager().newFrame(mOutputFormat);
90 // Release pushed frame
  /external/webkit/Source/WebCore/loader/
DocumentWriter.cpp 34 #include "Frame.h"
52 static inline bool canReferToParentFrameEncoding(const Frame* frame, const Frame* parentFrame)
54 return parentFrame && parentFrame->document()->securityOrigin()->canAccess(frame->document()->securityOrigin());
57 DocumentWriter::DocumentWriter(Frame* frame)
58 : m_frame(frame)
115 // Create a new document before clearing the frame, because it may need to
162 Frame* parentFrame = m_frame->tree()->parent()
    [all...]
  /external/webkit/Source/WebCore/page/
FrameView.h 28 #include "Frame.h"
56 static PassRefPtr<FrameView> create(Frame*);
57 static PassRefPtr<FrameView> create(Frame*, const IntSize& initialSize);
69 Frame* frame() const { return m_frame.get(); } function in class:WebCore::FrameView
231 void forceLayoutForPagination(const FloatSize& pageSize, float maximumShrinkFactor, Frame::AdjustViewSizeOrNot);
289 FrameView(Frame*);
362 RefPtr<Frame> m_frame;
DOMWindow.h 83 static PassRefPtr<DOMWindow> create(Frame* frame) { return adoptRef(new DOMWindow(frame)); }
89 Frame* frame() const { return m_frame; } function in class:WebCore::DOMWindow
113 static bool allowPopUp(Frame* firstFrame);
114 static bool canShowModalDialog(const Frame*);
115 static bool canShowModalDialogNow(const Frame*);
438 DOMWindow(Frame*);
447 static Frame* createWindow(const String& urlString, const AtomicString& frameName, const WindowFeatures&
    [all...]
FocusController.cpp 40 #include "Frame.h"
92 void FocusController::setFocusedFrame(PassRefPtr<Frame> frame)
94 ASSERT(!frame || frame->page() == m_page);
95 if (m_focusedFrame == frame || m_isChangingFocusedFrame)
100 RefPtr<Frame> oldFrame = m_focusedFrame;
101 RefPtr<Frame> newFrame = frame;
105 // Now that the frame is updated, fire events and update the selection focused states of both frames
204 Frame* frame = focusedOrMainFrame(); local
315 Frame* frame = node->document()->frame(); local
    [all...]
PrintContext.cpp 25 #include "Frame.h"
46 PrintContext::PrintContext(Frame* frame)
47 : m_frame(frame)
182 m_frame->setPrinting(true, FloatSize(minLayoutWidth, minLayoutHeight), printingMaximumShrinkFactor / printingMinimumShrinkFactor, Frame::AdjustViewSize);
231 m_frame->setPrinting(false, FloatSize(), 0, Frame::AdjustViewSize);
254 Frame* frame = element->document()->frame();
256 PrintContext printContext(frame);
    [all...]
  /external/webkit/Source/WebKit/android/WebCoreSupport/
FrameLoaderClientAndroid.h 48 Frame* getFrame() { return m_frame; }
49 static FrameLoaderClientAndroid* get(const Frame* frame);
51 void setFrame(Frame* frame) { m_frame = frame; }
99 virtual Frame* dispatchCreatePage(const NavigationAction&);
187 virtual WTF::PassRefPtr<Frame> createFrame(const KURL& url, const String& name, HTMLFrameOwnerElement* ownerElement, const String& referrer, bool allowsScrolling, int marginWidth, int marginHeight);
226 Frame* m_frame;
  /external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.h 37 #include "Frame.h"
214 // Called by the WebViewImpl to initialize its main frame:
217 PassRefPtr<WebCore::Frame> createChildFrame(
225 static WebFrameImpl* fromFrame(WebCore::Frame* frame);
228 // If the frame hosts a PluginDocument, this method returns the WebPluginContainerImpl
230 static WebPluginContainerImpl* pluginContainerFromFrame(WebCore::Frame*);
234 WebCore::Frame* frame() const { return m_frame; } function in class:WebKit::WebFrameImpl
242 // Returns which frame has an active match. This function should only b
    [all...]
ChromeClientImpl.cpp 262 void ChromeClientImpl::focusedFrameChanged(Frame*)
267 Frame* frame, const FrameLoadRequest& r, const WindowFeatures& features, const NavigationAction&)
276 m_webView->client()->createView(WebFrameImpl::fromFrame(frame), request, features, r.frameName()));
421 bool ChromeClientImpl::runBeforeUnloadConfirmPanel(const String& message, Frame* frame)
425 WebFrameImpl::fromFrame(frame), message);
442 // Although a Frame is passed in, we don't actually use it, since we
444 void ChromeClientImpl::runJavaScriptAlert(Frame* frame, const String& message
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
AutoFixFilter.java 21 import android.filterfw.core.Frame;
158 private Frame mHistFrame;
159 private Frame mDensityFrame;
241 // Get input frame
242 Frame input = pullInput("image");
251 // Check if the frame size has changed
258 // Create output frame
259 Frame output = context.getFrameManager().newFrame(inputFormat);
262 Frame[] inputs = {input, mHistFrame, mDensityFrame};
268 // Release pushed frame
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebChromeClient.cpp 49 #include <WebCore/Frame.h>
64 static double area(WebFrame* frame)
66 IntSize size = frame->visibleContentBoundsExcludingScrollbars().size();
73 // Approximate what a user could consider a default target frame for application menu operations.
148 void WebChromeClient::focusedFrameChanged(Frame* frame)
150 WebFrame* webFrame = frame ? static_cast<WebFrameLoaderClient*>(frame->loader()->client())->webFrame() : 0;
155 Page* WebChromeClient::createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures& windowFeatures, const NavigationAction& navigationAction)
258 bool WebChromeClient::runBeforeUnloadConfirmPanel(const String& message, Frame* frame
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
Filter.java 61 private HashSet<Frame> mFramesToRelease;
62 private HashMap<String, Frame> mFramesToSet;
75 mFramesToRelease = new HashSet<Frame>();
76 mFramesToSet = new HashMap<String, Frame>();
146 public void setInputFrame(String inputName, Frame frame) {
151 port.setFrame(frame);
249 protected final void pushOutput(String name, Frame frame) {
250 if (frame.getTimestamp() == Frame.TIMESTAMP_NOT_SET)
650 Frame frame = shouldSerialize local
    [all...]
  /external/webkit/Source/WebCore/page/mac/
FrameMac.mm 29 #import "Frame.h"
139 NSString* Frame::searchForLabelsBeforeElement(NSArray* labels, Element* element, size_t* resultDistance, bool* resultIsInCellAbove)
243 NSString* Frame::matchLabelsAgainstElement(NSArray* labels, Element* element)
247 // FIXME: This code is mirrored in Frame.cpp. It would be nice to make the Mac code call the platform-agnostic
256 NSImage* Frame::imageFromRect(NSRect rect) const
288 NSImage* Frame::selectionImage(bool forceBlackText) const
297 NSImage* Frame::snapshotDragImage(Node* node, NSRect* imageRect, NSRect* elementRect) const
322 DragImageRef Frame::nodeImage(Node* node)
340 DragImageRef Frame::dragImageForSelection()
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
DumpRenderTreeSupportQt.cpp 40 #include "Frame.h"
233 bool DumpRenderTreeSupportQt::hasDocumentElement(QWebFrame* frame)
235 return QWebFramePrivate::core(frame)->document()->documentElement();
238 void DumpRenderTreeSupportQt::setJavaScriptProfilingEnabled(QWebFrame* frame, bool enabled)
241 Frame* coreFrame = QWebFramePrivate::core(frame);
255 bool DumpRenderTreeSupportQt::pauseAnimation(QWebFrame *frame, const QString &animationName, double time, const QString &elementId)
257 Frame* coreFrame = QWebFramePrivate::core(frame);
275 bool DumpRenderTreeSupportQt::pauseTransitionOfProperty(QWebFrame *frame, const QString &propertyName, double time, const QString &elementId
524 WebCore::Frame* frame = page->handle()->page->focusController()->focusedOrMainFrame(); local
566 WebCore::Frame* frame = page->handle()->page->focusController()->focusedOrMainFrame(); local
590 WebCore::Frame* frame = page->handle()->page->focusController()->focusedOrMainFrame(); local
    [all...]
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
ChromeClientGtk.cpp 155 Page* ChromeClient::createWindow(Frame* frame, const FrameLoadRequest& frameLoadRequest, const WindowFeatures& coreFeatures, const NavigationAction&)
159 g_signal_emit_by_name(m_webView, "create-web-view", kit(frame), &webView);
302 void ChromeClient::focusedFrameChanged(Frame*)
311 bool ChromeClient::runBeforeUnloadConfirmPanel(const WTF::String& message, WebCore::Frame* frame)
313 return runJavaScriptConfirm(frame, message);
322 void ChromeClient::runJavaScriptAlert(Frame* frame, const String& message)
325 g_signal_emit_by_name(m_webView, "script-alert", kit(frame), message.utf8().data(), &retval)
562 Frame* frame = node->document()->frame(); local
    [all...]
  /external/webkit/Source/WebCore/html/shadow/
TextControlInnerElements.cpp 34 #include "Frame.h"
184 if (Frame* frame = document()->frame())
185 frame->eventHandler()->setCapturingMouseEventsNode(0);
197 if (Frame* frame = document()->frame()) {
198 frame->eventHandler()->setCapturingMouseEventsNode(this);
208 if (Frame* frame = document()->frame())
    [all...]
  /external/webkit/Source/WebKit/wince/
WebView.cpp 34 #include "Frame.h"
108 RefPtr<Frame> frame = Frame::create(m_page, 0, loaderClient); local
109 m_frame = frame.get();
155 PassRefPtr<Frame> WebView::createFrame(const KURL& url, const String& name, HTMLFrameOwnerElement* ownerElement, const String& referrer,
158 Frame* coreFrame = m_frame;
161 RefPtr<Frame> childFrame = Frame::create(m_page, ownerElement, loaderClient);
168 // The creation of the frame may have run arbitrary JavaScript that removed it from the page already
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLDocumentCustom.cpp 34 #include "Frame.h"
87 Frame* frame = 0; local
88 if (node->hasTagName(HTMLNames::iframeTag) && (frame = static_cast<HTMLIFrameElement*>(node)->contentFrame()))
89 return toV8(frame->domWindow());
115 Frame* frame = V8Proxy::retrieveFrameForCallingContext(); local
116 htmlDocument->write(writeHelperGetString(args), frame ? frame->document() : NULL);
124 Frame* frame = V8Proxy::retrieveFrameForCallingContext() local
163 Frame* frame = V8Proxy::retrieveFrameForCallingContext(); local
    [all...]
  /external/webkit/Source/WebCore/history/
CachedFrame.cpp 34 #include "Frame.h"
63 CachedFrameBase::CachedFrameBase(Frame* frame)
64 : m_document(frame->document())
65 , m_documentLoader(frame->loader()->documentLoader())
66 , m_view(frame->view())
67 , m_mousePressNode(frame->eventHandler()->mousePressNode())
68 , m_url(frame->document()->url())
69 , m_isMainFrame(!frame->tree()->parent())
86 Frame* frame = m_view->frame() local
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLFrameElementBase.cpp 31 #include "Frame.h"
70 if (contentDoc && !ScriptController::canAccessFromCurrentOrigin(contentDoc->frame()))
74 if (Frame* parentFrame = document()->frame()) {
82 for (Frame* frame = document()->frame(); frame; frame = frame->tree()->parent())
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorPageAgent.cpp 41 #include "Frame.h"
103 Frame* mainFrame = m_inspectedPage->mainFrame();
109 Frame* newFrame = WebCore::createWindow(mainFrame, mainFrame, request, windowFeatures, created);
170 for (Frame* frame = m_inspectedPage->mainFrame(); frame; frame = frame->tree()->traverseNext(m_inspectedPage->mainFrame())) {
171 Document* document = frame->document();
183 // because "document" is the document of the main frame of the page
    [all...]

Completed in 677 milliseconds

<<11121314151617181920>>