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

1 2

  /external/webkit/Source/WebCore/loader/
FormState.cpp 37 inline FormState::FormState(PassRefPtr<HTMLFormElement> form, StringPairVector& textFieldValuesToAdopt, PassRefPtr<Frame> sourceFrame, FormSubmissionTrigger formSubmissionTrigger)
39 , m_sourceFrame(sourceFrame)
45 PassRefPtr<FormState> FormState::create(PassRefPtr<HTMLFormElement> form, StringPairVector& textFieldValuesToAdopt, PassRefPtr<Frame> sourceFrame, FormSubmissionTrigger formSubmissionTrigger)
47 return adoptRef(new FormState(form, textFieldValuesToAdopt, sourceFrame, formSubmissionTrigger));
FormState.h 52 Frame* sourceFrame() const { return m_sourceFrame.get(); }
NavigationScheduler.cpp 214 Frame* requestingFrame = m_submission->state()->sourceFrame();
FrameLoader.cpp 311 ASSERT(submission->state()->sourceFrame() == m_frame);
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
StorageEventDispatcherChromium.cpp 48 SecurityOrigin* origin, Frame* sourceFrame)
50 ASSERT(!sourceFrame); // Sad, but true.
StorageAreaProxy.h 49 virtual String setItem(const String& key, const String& value, ExceptionCode& ec, Frame* sourceFrame);
50 virtual String removeItem(const String& key, Frame* sourceFrame);
51 virtual bool clear(Frame* sourceFrame);
55 void storageEvent(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame);
StorageAreaProxy.cpp 112 void StorageAreaProxy::storageEvent(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin, Frame* sourceFrame)
114 Page* page = sourceFrame->page();
124 if (sourceFrame != frame && frame->document()->securityOrigin()->equal(securityOrigin))
132 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), storage));
140 if (sourceFrame != frame && frame->document()->securityOrigin()->equal(securityOrigin))
149 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), storage));
  /external/webkit/Source/WebCore/storage/
StorageArea.h 53 virtual String setItem(const String& key, const String& value, ExceptionCode& ec, Frame* sourceFrame) = 0;
54 virtual String removeItem(const String& key, Frame* sourceFrame) = 0;
55 virtual bool clear(Frame* sourceFrame) = 0;
StorageEventDispatcher.h 43 static void dispatch(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame);
StorageEventDispatcher.cpp 41 void StorageEventDispatcher::dispatch(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin, Frame* sourceFrame)
44 if (!sourceFrame)
47 Page* page = sourceFrame->page();
57 if (sourceFrame != frame && frame->document()->securityOrigin()->equal(securityOrigin))
65 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), storage));
73 if (sourceFrame != frame && frame->document()->securityOrigin()->equal(securityOrigin))
82 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), storage));
StorageAreaImpl.h 51 virtual String setItem(const String& key, const String& value, ExceptionCode& ec, Frame* sourceFrame);
52 virtual String removeItem(const String& key, Frame* sourceFrame);
53 virtual bool clear(Frame* sourceFrame);
StorageAreaSync.h 59 void dispatchStorageEvent(const String& key, const String& oldValue, const String& newValue, Frame* sourceFrame);
  /external/webkit/Source/WebKit2/UIProcess/
WebFormClient.cpp 36 bool WebFormClient::willSubmitForm(WebPageProxy* page, WebFrameProxy* frame, WebFrameProxy* sourceFrame, const Vector<std::pair<String, String> >& textFieldValues, APIObject* userData, WebFormSubmissionListenerProxy* listener)
46 m_client.willSubmitForm(toAPI(page), toAPI(frame), toAPI(sourceFrame), toAPI(textFieldsMap.get()), toAPI(userData), toAPI(listener), m_client.clientInfo);
  /external/webkit/Source/WebKit/mac/WebView/
WebFormDelegate.h 62 - (void)frame:(WebFrame *)frame sourceFrame:(WebFrame *)sourceFrame willSubmitForm:(DOMElement *)form
WebFormDelegate.m 73 - (void)frame:(WebFrame *)frame sourceFrame:(WebFrame *)sourceFrame willSubmitForm:(DOMElement *)form
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
DrawOverlayFilter.java 69 Frame sourceFrame = pullInput("source");
80 Frame output = env.getFrameManager().newFrame(sourceFrame.getFormat());
81 output.setDataFromFrame(sourceFrame);
  /external/webkit/Source/WebCore/inspector/front-end/
ScriptsPanel.js 328 var sourceFrame = this._sourceFileIdToSourceFrame[message.sourceFileId];
329 if (sourceFrame && sourceFrame.loaded)
330 sourceFrame.addMessageToSource(message.lineNumber, message.originalMessage);
337 var sourceFrame = this._sourceFileIdToSourceFrame[breakpoint.sourceFileId];
338 if (sourceFrame && sourceFrame.loaded)
339 sourceFrame.addBreakpoint(breakpoint.lineNumber, breakpoint.resolved, breakpoint.condition, breakpoint.enabled);
348 var sourceFrame = this._sourceFileIdToSourceFrame[breakpoint.sourceFileId];
349 if (sourceFrame && sourceFrame.loaded
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundlePageFormClient.h 55 void willSubmitForm(WebPage*, WebCore::HTMLFormElement*, WebFrame*, WebFrame* sourceFrame, const Vector<std::pair<String, String> >&, RefPtr<APIObject>& userData);
InjectedBundlePageFormClient.cpp 86 void InjectedBundlePageFormClient::willSubmitForm(WebPage* page, HTMLFormElement* formElement, WebFrame* frame, WebFrame* sourceFrame, const Vector<std::pair<String, String> >& values, RefPtr<APIObject>& userData)
99 m_client.willSubmitForm(toAPI(page), toAPI(nodeHandle.get()), toAPI(frame), toAPI(sourceFrame), toAPI(textFieldsMap.get()), &userDataToPass, m_client.clientInfo);
  /external/webkit/Source/WebKit/win/Interfaces/
IWebFormDelegate.idl 95 //- (void)frame:(WebFrame *)frame sourceFrame:(WebFrame *)sourceFrame willSubmitForm:(DOMElement *)form withValues:(NSDictionary *)values submissionListener:(id <WebFormSubmissionListener>)listener;
96 HRESULT willSubmitForm([in] IWebFrame* frame, [in] IWebFrame* sourceFrame, [in] IDOMElement* form, [in] IPropertyBag* values, [in] IWebFormSubmissionListener* listener);
  /external/webkit/Source/WebKit/chromium/src/js/
Tests.js 681 if (!view.sourceFrame._loaded) {
711 * @param {WebInspector.SourceFrame} sourceFrame
715 TestSuite.prototype._checkExecutionLine = function(sourceFrame, lineNumber, lineContent)
717 this.assertEquals(lineNumber, sourceFrame._executionLineNumber + 1, "Unexpected execution line number.");
718 this.assertEquals(lineContent, sourceFrame._textModel.line(lineNumber - 1), "Unexpected execution line text.");
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebFrameLoaderClient.cpp 701 WebFrame* sourceFrame = static_cast<WebFrameLoaderClient*>(formState->sourceFrame()->loader()->client())->webFrame();
705 webPage->injectedBundleFormClient().willSubmitForm(webPage, form, m_frame, sourceFrame, values, userData);
711 webPage->send(Messages::WebPageProxy::WillSubmitForm(m_frame->frameID(), sourceFrame->frameID(), valuesVector, listenerID, InjectedBundleUserMessageEncoder(userData.get())));
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundlePage.h 228 typedef void (*WKBundlePageWillSubmitFormCallback)(WKBundlePageRef page, WKBundleNodeHandleRef htmlFormElementHandle, WKBundleFrameRef frame, WKBundleFrameRef sourceFrame, WKDictionaryRef values, WKTypeRef* userData, const void* clientInfo);
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKPage.h 124 typedef void (*WKPageWillSubmitFormCallback)(WKPageRef page, WKFrameRef frame, WKFrameRef sourceFrame, WKDictionaryRef values, WKTypeRef userData, WKFormSubmissionListenerRef listener, const void* clientInfo);
  /external/webkit/Source/WebKit/win/
WebFrame.cpp     [all...]

Completed in 312 milliseconds

1 2