Searched refs:frame (Results 151 - 175 of 1426) sorted by relevance

1234567891011>>

/external/webkit/Source/WebKit/chromium/src/
H A DWebGeolocationPermissionRequest.cpp41 return WebSecurityOrigin(m_private->frame()->document()->securityOrigin());
H A DStorageEventDispatcherImpl.cpp61 // We need to copy all relevant frames from every page to a vector since sending the event to one frame might mutate the frame tree
68 for (Frame* frame = (*it)->mainFrame(); frame; frame = frame->tree()->traverseNext()) {
69 if (frame->document()->securityOrigin()->equal(securityOrigin))
70 frames.append(frame);
/external/webkit/Source/WebKit/mac/DefaultDelegates/
H A DWebDefaultPolicyDelegate.m54 - (void)webView: (WebView *)wv unableToImplementPolicyWithError:(NSError *)error frame:(WebFrame *)frame
56 LOG_ERROR("called unableToImplementPolicyWithError:%@ inFrame:%@", error, frame);
62 frame:(WebFrame *)frame
81 frame:(WebFrame *)frame
86 if ([WebView _canHandleRequest:request forMainFrame:frame == [wv mainFrame]]) {
/external/webkit/Source/WebCore/bindings/js/
H A DJSDocumentCustom.cpp65 Frame* frame = static_cast<Document*>(impl())->frame(); local
66 if (!frame)
69 Location* location = frame->domWindow()->location();
80 Frame* frame = static_cast<Document*>(impl())->frame(); local
81 if (!frame)
86 Frame* lexicalFrame = asJSDOMWindow(exec->lexicalGlobalObject())->impl()->frame();
88 // IE and Mozilla both resolve the URL relative to the source frame,
89 // not the target frame
[all...]
/external/webkit/Source/WebCore/page/win/
H A DFrameCGWin.cpp53 static HBITMAP imageFromRect(const Frame* frame, IntRect& ir) argument
55 PaintBehavior oldPaintBehavior = frame->view()->paintBehavior();
56 frame->view()->setPaintBehavior(oldPaintBehavior | PaintBehaviorFlattenCompositingLayers);
72 drawRectIntoContext(ir, frame->view(), &gc);
78 frame->view()->setPaintBehavior(oldPaintBehavior);
83 HBITMAP imageFromSelection(Frame* frame, bool forceBlackText) argument
85 frame->document()->updateLayout();
87 frame->view()->setPaintBehavior(PaintBehaviorSelectionOnly | (forceBlackText ? PaintBehaviorForceBlackText : 0));
88 FloatRect fr = frame->selection()->bounds();
91 HBITMAP image = imageFromRect(frame, i
[all...]
H A DFrameWin.cpp39 void computePageRectsForFrame(Frame* frame, const IntRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, Vector<IntRect>& outPages, int& outPageHeight) argument
41 PrintContext printContext(frame);
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/gtk/
H A DWebEditorClientGtk.cpp45 bool WebEditorClient::executePendingEditorCommands(Frame* frame, Vector<WTF::String> pendingEditorCommands, bool allowTextInsertion) argument
49 Editor::Command command = frame->editor()->command(pendingEditorCommands.at(i).utf8().data());
68 Frame* frame = node->document()->frame(); local
69 ASSERT(frame);
83 if (executePendingEditorCommands(frame, pendingEditorCommands, false))
90 if (executePendingEditorCommands(frame, pendingEditorCommands, frame->editor()->canEdit())) {
97 if (!frame->editor()->canEdit())
107 frame
[all...]
H A DWebFrameNetworkingContext.h40 WebFrameNetworkingContext(WebCore::Frame* frame) argument
41 : WebCore::FrameNetworkingContext(frame)
/external/webkit/Tools/WinLauncher/
H A DWinLauncher.h44 /* [in] */ IWebFrame* /*frame*/) { return S_OK; }
48 /* [in] */ IWebFrame *frame) { return S_OK; }
53 /* [in] */ IWebFrame *frame) { return S_OK; }
57 /* [in] */ IWebFrame *frame) { return updateAddressBar(webView); }
62 /* [in] */ IWebFrame *frame) { return S_OK; }
66 /* [in] */ IWebFrame *frame) { return S_OK; }
71 /* [in] */ IWebFrame *frame) { return S_OK; }
75 /* [in] */ IWebFrame* /*frame*/) { return S_OK; }
84 /* [in] */ IWebFrame *frame) { return S_OK; }
91 /* [in] */ IWebFrame *frame) { retur
46 didReceiveServerRedirectForProvisionalLoadForFrame( IWebView *webView, IWebFrame *frame) argument
50 didFailProvisionalLoadWithError( IWebView *webView, IWebError *error, IWebFrame *frame) argument
55 didCommitLoadForFrame( IWebView *webView, IWebFrame *frame) argument
59 didReceiveTitle( IWebView *webView, BSTR title, IWebFrame *frame) argument
64 didChangeIcons( IWebView *webView, IWebFrame *frame) argument
68 didReceiveIcon( IWebView *webView, OLE_HANDLE hBitmap, IWebFrame *frame) argument
82 didChangeLocationWithinPageForFrame( IWebView *webView, IWebFrame *frame) argument
86 willPerformClientRedirectToURL( IWebView *webView, BSTR url, double delaySeconds, DATE fireDate, IWebFrame *frame) argument
93 didCancelClientRedirectForFrame( IWebView *webView, IWebFrame *frame) argument
97 willCloseFrame( IWebView *webView, IWebFrame *frame) argument
106 didClearWindowObject( IWebView *webView, JSContextRef context, JSObjectRef windowScriptObject, IWebFrame *frame) argument
[all...]
/external/chromium/chrome/browser/ui/cocoa/location_bar/
H A Dimage_decoration.h23 // Returns the part of |frame| the image is drawn in.
24 NSRect GetDrawRectInFrame(NSRect frame);
28 virtual void DrawInFrame(NSRect frame, NSView* control_view);
/external/chromium/chrome/browser/ui/cocoa/tabs/
H A Dthrobber_view.h31 // Creates a filmstrip view with |frame| and image |image|.
32 + (id)filmstripThrobberViewWithFrame:(NSRect)frame
35 // Creates a toast view with |frame| and specified images.
36 + (id)toastThrobberViewWithFrame:(NSRect)frame
/external/webkit/Source/WebCore/bindings/v8/
H A DV8DataGridDataSource.cpp45 V8DataGridDataSource::V8DataGridDataSource(v8::Handle<v8::Value> dataSource, Frame* frame) argument
47 , m_frame(frame)
/external/webkit/Source/WebCore/loader/
H A DSinkDocument.cpp50 SinkDocument::SinkDocument(Frame* frame, const KURL& url) argument
51 : HTMLDocument(frame, url)
H A DProgressTracker.cpp104 void ProgressTracker::progressStarted(Frame* frame) argument
106 LOG(Progress, "Progress started (%p) - frame %p(\"%s\"), value %f, tracked frames %d, originating frame %p", this, frame, frame->tree()->uniqueName().string().utf8().data(), m_progressValue, m_numProgressTrackedFrames, m_originatingProgressFrame.get());
108 frame->loader()->client()->willChangeEstimatedProgress();
110 if (m_numProgressTrackedFrames == 0 || m_originatingProgressFrame == frame) {
113 m_originatingProgressFrame = frame;
119 frame->loader()->client()->didChangeEstimatedProgress();
122 void ProgressTracker::progressCompleted(Frame* frame) argument
143 RefPtr<Frame> frame = m_originatingProgressFrame.release(); local
[all...]
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DFrameNetworkingContextAndroid.h40 static PassRefPtr<FrameNetworkingContextAndroid> create(WebCore::Frame* frame) argument
42 return adoptRef(new FrameNetworkingContextAndroid(frame));
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebpolicydecision.cpp44 WebKitWebFrame* frame; member in struct:_WebKitWebPolicyDecisionPrivate
59 WebKitWebPolicyDecision* webkit_web_policy_decision_new(WebKitWebFrame* frame, WebCore::FramePolicyFunction function) argument
61 g_return_val_if_fail(frame, NULL);
66 priv->frame = frame;
88 (core(priv->frame)->loader()->policyChecker()->*(priv->framePolicyFunction))(WebCore::PolicyUse);
106 (core(priv->frame)->loader()->policyChecker()->*(priv->framePolicyFunction))(WebCore::PolicyIgnore);
124 (core(priv->frame)->loader()->policyChecker()->*(priv->framePolicyFunction))(WebCore::PolicyDownload);
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DEditorClientWx.cpp253 Frame* frame = m_page->focusController()->focusedOrMainFrame(); local
255 if (frame) {
256 wxWebView* webKitWin = dynamic_cast<wxWebView*>(frame->view()->hostWindow()->platformPageClient());
281 Frame* frame = m_page->focusController()->focusedOrMainFrame(); local
283 if (frame) {
284 wxWebView* webKitWin = dynamic_cast<wxWebView*>(frame->view()->hostWindow()->platformPageClient());
293 Frame* frame = m_page->focusController()->focusedOrMainFrame(); local
295 if (frame) {
296 wxWebView* webKitWin = dynamic_cast<wxWebView*>(frame->view()->hostWindow()->platformPageClient());
305 Frame* frame local
328 Frame* frame = m_page->focusController()->focusedOrMainFrame(); local
341 Frame* frame = m_page->focusController()->focusedOrMainFrame(); local
354 Frame* frame = m_page->focusController()->focusedOrMainFrame(); local
367 Frame* frame = m_page->focusController()->focusedOrMainFrame(); local
382 Frame* frame = node->document()->frame(); local
492 Frame* frame = m_page->focusController()->focusedOrMainFrame(); local
[all...]
/external/webkit/Source/WebKit2/UIProcess/
H A DWebFormSubmissionListenerProxy.h39 static PassRefPtr<WebFormSubmissionListenerProxy> create(WebFrameProxy* frame, uint64_t listenerID) argument
41 return adoptRef(new WebFormSubmissionListenerProxy(frame, listenerID));
H A DWebFramePolicyListenerProxy.h37 static PassRefPtr<WebFramePolicyListenerProxy> create(WebFrameProxy* frame, uint64_t listenerID) argument
39 return adoptRef(new WebFramePolicyListenerProxy(frame, listenerID));
H A DWebHistoryClient.cpp37 void WebHistoryClient::didNavigateWithNavigationData(WebContext* context, WebPageProxy* page, const WebNavigationDataStore& navigationDataStore, WebFrameProxy* frame) argument
43 m_client.didNavigateWithNavigationData(toAPI(context), toAPI(page), toAPI(navigationData.get()), toAPI(frame), m_client.clientInfo);
46 void WebHistoryClient::didPerformClientRedirect(WebContext* context, WebPageProxy* page, const String& sourceURL, const String& destinationURL, WebFrameProxy* frame) argument
51 m_client.didPerformClientRedirect(toAPI(context), toAPI(page), toURLRef(sourceURL.impl()), toURLRef(destinationURL.impl()), toAPI(frame), m_client.clientInfo);
54 void WebHistoryClient::didPerformServerRedirect(WebContext* context, WebPageProxy* page, const String& sourceURL, const String& destinationURL, WebFrameProxy* frame) argument
59 m_client.didPerformServerRedirect(toAPI(context), toAPI(page), toURLRef(sourceURL.impl()), toURLRef(destinationURL.impl()), toAPI(frame), m_client.clientInfo);
62 void WebHistoryClient::didUpdateHistoryTitle(WebContext* context, WebPageProxy* page, const String& title, const String& url, WebFrameProxy* frame) argument
67 m_client.didUpdateHistoryTitle(toAPI(context), toAPI(page), toAPI(title.impl()), toURLRef(url.impl()), toAPI(frame), m_client.clientInfo);
/external/openssl/crypto/bn/asm/
H A Dx86-mont.pl57 $frame=32; # size of above frame rounded up to 16n
69 &lea ("esp",&DWP(-$frame,"esp","edi",4)); # alloca($frame+4*(num+2))
164 &movd (&DWP($frame-4,"esp",$j,4),$car1); # tp[j-1]=
179 &movd (&DWP($frame-4,"esp",$j,4),$car1); # tp[num-2]=
185 &movq (&QWP($frame,"esp",$num,4),$car1); # tp[num].tp[num-1]
194 &movd ($temp,&DWP($frame,"esp")); # tp[0]
208 &movd ($temp,&DWP($frame+4,"esp")); # tp[1]
225 &movd ($temp,&DWP($frame
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DSpriteAnimation.java59 // of the frame list. So we'll use a linear search for small animations
60 // and only pull the binary search out when the frame count is large.
69 AnimationFrame frame = frames.get(x);
70 currentTime += frame.holdTime;
72 result = frame;
83 public void addFrame(AnimationFrame frame) { argument
85 mFrames.add(frame);
86 mLength += frame.holdTime;
/external/webkit/Source/WebCore/bindings/v8/specialization/
H A DV8BindingState.cpp65 Frame* frame = V8Proxy::retrieveFrameForCallingContext(); local
66 if (!frame) {
72 frame = V8Proxy::retrieveFrameForEnteredContext();
74 return frame;
92 bool State<V8Binding>::allowsAccessFromFrame(Frame* frame) argument
94 return ScriptController::isSafeScript(frame);
/external/webkit/Source/WebCore/history/
H A DCachedPage.cpp73 ASSERT(page && page->mainFrame() && page->mainFrame() == m_cachedMainFrame->view()->frame());
87 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree()->traverseNext()) {
88 if (CSSStyleSelector* styleSelector = frame->document()->styleSelector())
/external/webkit/Source/WebCore/html/
H A DHTMLFrameOwnerElement.cpp56 if (Frame* frame = contentFrame()) {
57 RefPtr<Frame> protect(frame);
58 frame->loader()->frameDetached();
59 frame->disconnectOwnerElement();
88 if (Frame* frame = contentFrame())
89 frame->loader()->ownerElementSandboxFlagsChanged();

Completed in 368 milliseconds

1234567891011>>