Home
last modified time | relevance | path

Searched refs:frameID (Results 1 – 25 of 38) sorted by relevance

12

/external/webkit/Source/WebKit2/UIProcess/
DWebPageProxy.messages.in28 RunJavaScriptAlert(uint64_t frameID, WTF::String message) -> ()
29 RunJavaScriptConfirm(uint64_t frameID, WTF::String message) -> (bool result)
30 …RunJavaScriptPrompt(uint64_t frameID, WTF::String message, WTF::String defaultValue) -> (WTF::Stri…
40 FocusedFrameChanged(uint64_t frameID)
41 FrameSetLargestFrameChanged(uint64_t frameID)
53 RunBeforeUnloadConfirmPanel(WTF::String message, uint64_t frameID) -> (bool shouldClose)
55 RunOpenPanel(uint64_t frameID, WebKit::WebOpenPanelParameters::Data parameters)
56 PrintFrame(uint64_t frameID) -> ()
71 …DecidePolicyForResponse(uint64_t frameID, WebCore::ResourceResponse response, WebCore::ResourceReq…
72 …DecidePolicyForNavigationAction(uint64_t frameID, uint32_t navigationType, uint32_t modifiers, int…
[all …]
DWebPageProxy.h508 void didCreateMainFrame(uint64_t frameID);
509 void didCreateSubframe(uint64_t frameID, uint64_t parentFrameID);
510 void didSaveFrameToPageCache(uint64_t frameID);
511 void didRestoreFrameFromPageCache(uint64_t frameID, uint64_t parentFrameID);
513 …void didStartProvisionalLoadForFrame(uint64_t frameID, const String& url, const String& unreachabl…
514 …void didReceiveServerRedirectForProvisionalLoadForFrame(uint64_t frameID, const String&, CoreIPC::…
515 …void didFailProvisionalLoadForFrame(uint64_t frameID, const WebCore::ResourceError&, CoreIPC::Argu…
516 …void didCommitLoadForFrame(uint64_t frameID, const String& mimeType, bool frameHasCustomRepresenta…
517 void didFinishDocumentLoadForFrame(uint64_t frameID, CoreIPC::ArgumentDecoder*);
518 void didFinishLoadForFrame(uint64_t frameID, CoreIPC::ArgumentDecoder*);
[all …]
DWebPageProxy.cpp947 …process()->send(Messages::WebPage::DidReceivePolicyDecision(frame->frameID(), listenerID, action, … in receivedPolicyDecision()
1216 process()->send(Messages::WebPage::GetSourceForFrame(frame->frameID(), callbackID), m_pageID); in getSourceForFrame()
1256 …process()->send(Messages::WebPage::GetMainResourceDataOfFrame(frame->frameID(), callbackID), m_pag… in getMainResourceDataOfFrame()
1269 …process()->send(Messages::WebPage::GetResourceDataFromFrame(frame->frameID(), resourceURL->string(… in getResourceDataFromFrame()
1282 … process()->send(Messages::WebPage::GetWebArchiveOfFrame(frame->frameID(), callbackID), m_pageID); in getWebArchiveOfFrame()
1371 void WebPageProxy::didCreateMainFrame(uint64_t frameID) in didCreateMainFrame() argument
1374 MESSAGE_CHECK(process()->canCreateFrame(frameID)); in didCreateMainFrame()
1376 m_mainFrame = WebFrameProxy::create(this, frameID); in didCreateMainFrame()
1379 process()->frameCreated(frameID, m_mainFrame.get()); in didCreateMainFrame()
1382 void WebPageProxy::didCreateSubframe(uint64_t frameID, uint64_t parentFrameID) in didCreateSubframe() argument
[all …]
DWebProcessProxy.cpp362 WebFrameProxy* WebProcessProxy::webFrame(uint64_t frameID) const in webFrame()
364 return isGoodKey<WebFrameProxyMap>(frameID) ? m_frameMap.get(frameID).get() : 0; in webFrame()
367 bool WebProcessProxy::canCreateFrame(uint64_t frameID) const in canCreateFrame()
369 return isGoodKey<WebFrameProxyMap>(frameID) && !m_frameMap.contains(frameID); in canCreateFrame()
372 void WebProcessProxy::frameCreated(uint64_t frameID, WebFrameProxy* frameProxy) in frameCreated() argument
374 ASSERT(canCreateFrame(frameID)); in frameCreated()
375 m_frameMap.set(frameID, frameProxy); in frameCreated()
378 void WebProcessProxy::didDestroyFrame(uint64_t frameID) in didDestroyFrame() argument
383 ASSERT(isGoodKey<WebFrameProxyMap>(frameID)); in didDestroyFrame()
384 m_frameMap.remove(frameID); in didDestroyFrame()
DWebContextUserMessageCoders.h63 encoder->encode(frame->frameID()); in encode()
117 uint64_t frameID; in decode() local
118 if (!decoder->decode(frameID)) in decode()
120 coder.m_root = coder.m_context->process()->webFrame(frameID); in decode()
DWebFrameProxy.h59 static PassRefPtr<WebFrameProxy> create(WebPageProxy* page, uint64_t frameID) in create() argument
61 return adoptRef(new WebFrameProxy(page, frameID)); in create()
72 uint64_t frameID() const { return m_frameID; } in frameID() function
137 WebFrameProxy(WebPageProxy* page, uint64_t frameID);
DWebContext.messages.in26 …NavigateWithNavigationData(uint64_t pageID, WebKit::WebNavigationDataStore store, uint64_t frameID)
27 …t(uint64_t pageID, WTF::String sourceURLString, WTF::String destinationURLString, uint64_t frameID)
28 …t(uint64_t pageID, WTF::String sourceURLString, WTF::String destinationURLString, uint64_t frameID)
29 DidUpdateHistoryTitle(uint64_t pageID, WTF::String title, WTF::String url, uint64_t frameID)
DWebContext.h187 …NavigateWithNavigationData(uint64_t pageID, const WebNavigationDataStore& store, uint64_t frameID);
188 …t64_t pageID, const String& sourceURLString, const String& destinationURLString, uint64_t frameID);
189 …t64_t pageID, const String& sourceURLString, const String& destinationURLString, uint64_t frameID);
190 …d didUpdateHistoryTitle(uint64_t pageID, const String& title, const String& url, uint64_t frameID);
DWebContext.cpp407 …NavigateWithNavigationData(uint64_t pageID, const WebNavigationDataStore& store, uint64_t frameID) in didNavigateWithNavigationData() argument
409 WebFrameProxy* frame = m_process->webFrame(frameID); in didNavigateWithNavigationData()
417 …nt64_t pageID, const String& sourceURLString, const String& destinationURLString, uint64_t frameID) in didPerformClientRedirect() argument
419 WebFrameProxy* frame = m_process->webFrame(frameID); in didPerformClientRedirect()
427 …nt64_t pageID, const String& sourceURLString, const String& destinationURLString, uint64_t frameID) in didPerformServerRedirect() argument
429 WebFrameProxy* frame = m_process->webFrame(frameID); in didPerformServerRedirect()
437 …t::didUpdateHistoryTitle(uint64_t pageID, const String& title, const String& url, uint64_t frameID) in didUpdateHistoryTitle() argument
439 WebFrameProxy* frame = m_process->webFrame(frameID); in didUpdateHistoryTitle()
/external/srec/srec/include/
Dsrec_eosd.h32 frameID endnode_timeout;
33 frameID optendnode_timeout;
34 frameID internalnode_timeout;
35 frameID inspeech_timeout;
41 frameID endnode_frmcnt;
42 frameID optendnode_frmcnt;
43 frameID internalnode_frmcnt;
44 frameID inspeech_frmcnt;
Dsrec.h67 frameID num_hmm_states; /* number of hmm states */
72 frameID duration[MAX_HMM]; /* frames observed for this hmm state, todo: pack into char! */
94 frameID silence_duration;
105 frameID end_time; /* end time of the word just observed, includes trailing silence */
111 frameID _word_end_time; /* end time of the word just observed, excl trailing silence */
130 frameID max_frames;
204 frameID current_search_frame;
263 frameID max_frames;
298 frameID max_frames;
334 bigcostdata accumulated_cost_offset(costdata *cost_offsets, frameID frame);
[all …]
Dswimodel.h85 static PINLINE costdata duration_penalty_loop(frameID average_duration, frameID duration_so_far) in duration_penalty_loop()
99 static PINLINE costdata duration_penalty_depart(frameID average_duration, frameID duration_so_far) in duration_penalty_depart()
Dword_lattice.h47 void sort_word_lattice_at_frame(srec* rec, frameID frame);
49 srec_word_lattice *allocate_word_lattice(frameID max_frames);
52 void lattice_add_word_tokens(srec_word_lattice *wl, frameID frame,
54 …costdata lattice_best_cost_to_frame(srec_word_lattice *wl, word_token* word_token_array, frameID i…
Dsrec_sizes.h33 typedef asr_uint16_t frameID; /*for time frame*/ typedef
49 #define MAXframeID ((frameID)65535)
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
DWebFrameLoaderClient.cpp136 …webPage->send(Messages::WebPageProxy::DidRemoveFrameFromHierarchy(m_frame->frameID(), InjectedBund… in detachedFromParent2()
156 …webPage->send(Messages::WebPageProxy::DidInitiateLoadForResource(m_frame->frameID(), identifier, r… in assignIdentifierToInitialRequest()
172 …webPage->send(Messages::WebPageProxy::DidSendRequestForResource(m_frame->frameID(), identifier, re… in dispatchWillSendRequest()
208 …ges::WebPageProxy::CanAuthenticateAgainstProtectionSpaceInFrame(m_frame->frameID(), protectionSpac… in canAuthenticateAgainstProtectionSpace()
222 …webPage->send(Messages::WebPageProxy::DidReceiveResponseForResource(m_frame->frameID(), identifier… in dispatchDidReceiveResponse()
232 …webPage->send(Messages::WebPageProxy::DidReceiveContentLengthForResource(m_frame->frameID(), ident… in dispatchDidReceiveContentLength()
242 webPage->send(Messages::WebPageProxy::DidFinishLoadForResource(m_frame->frameID(), identifier)); in dispatchDidFinishLoading()
252 …webPage->send(Messages::WebPageProxy::DidFailLoadForResource(m_frame->frameID(), identifier, error… in dispatchDidFailLoading()
290 …ebPageProxy::DidReceiveServerRedirectForProvisionalLoadForFrame(m_frame->frameID(), url, InjectedB… in dispatchDidReceiveServerRedirectForProvisionalLoad()
325 …webPage->send(Messages::WebPageProxy::DidSameDocumentNavigationForFrame(m_frame->frameID(), SameDo… in dispatchDidChangeLocationWithinPage()
[all …]
DWebChromeClient.cpp152 …)->send(Messages::WebPageProxy::FocusedFrameChanged(webFrame ? webFrame->frameID() : 0), m_page->p… in focusedFrameChanged()
263 …c(Messages::WebPageProxy::RunBeforeUnloadConfirmPanel(message, webFrame->frameID()), Messages::Web… in runBeforeUnloadConfirmPanel()
295 …nection()->sendSync(Messages::WebPageProxy::RunJavaScriptAlert(webFrame->frameID(), alertText), Me… in runJavaScriptAlert()
306 …ction()->sendSync(Messages::WebPageProxy::RunJavaScriptConfirm(webFrame->frameID(), message), Mess… in runJavaScriptConfirm()
319 …ection()->sendSync(Messages::WebPageProxy::RunJavaScriptPrompt(webFrame->frameID(), message, defau… in runJavaScriptPrompt()
418 …d(Messages::WebPageProxy::FrameSetLargestFrameChanged(largestFrame ? largestFrame->frameID() : 0)); in contentsSizeChanged()
489 …m_page->sendSync(Messages::WebPageProxy::PrintFrame(webFrame->frameID()), Messages::WebPageProxy::… in print()
502 …Messages::WebPageProxy::ExceededDatabaseQuota(webFrame->frameID(), origin->databaseIdentifier(), d… in exceededDatabaseQuota()
608 …static_cast<WebFrameLoaderClient*>(frame->loader()->client())->webFrame()->frameID(), parameters)); in runOpenPanel()
/external/srec/srec/crec/
Dsrec_eosd.c37 eosd->eos_costdelta = (frameID)eos_costdelta; in srec_eosd_allocate()
38 eosd->opt_eos_costdelta = (frameID)opt_eos_costdelta; in srec_eosd_allocate()
39 eosd->endnode_timeout = (frameID)terminal_timeout; in srec_eosd_allocate()
40 eosd->optendnode_timeout = (frameID)optional_terminal_timeout; in srec_eosd_allocate()
41 eosd->internalnode_timeout = (frameID)non_terminal_timeout; in srec_eosd_allocate()
42 eosd->inspeech_timeout = (frameID)max_speech_duration; in srec_eosd_allocate()
Dsrec_results.c79 frameID end_frame; in srec_has_results()
95 frameID ifr; in srec_clear_results()
366 frameID start_frame = MAXframeID; in srec_nbest_get_choice_info()
367 frameID i, end_frame = MAXframeID; in srec_nbest_get_choice_info()
368 frameID num_speech_frames; in srec_nbest_get_choice_info()
371 frameID num_words; in srec_nbest_get_choice_info()
396 num_speech_frames = (frameID)(end_frame - start_frame); in srec_nbest_get_choice_info()
Dword_lattice.c54 srec_word_lattice *allocate_word_lattice(frameID max_frames) in allocate_word_lattice()
76 frameID ifr; in initialize_word_lattice()
84 costdata lattice_best_cost_to_frame(srec_word_lattice *wl, word_token* word_token_array, frameID if… in lattice_best_cost_to_frame()
100 void lattice_add_word_tokens(srec_word_lattice *wl, frameID frame, in lattice_add_word_tokens()
355 frameID i;
412 frameID end_frame;
448 frameID end_frame;
489 frameID end_frame;
534 void sort_word_lattice_at_frame(srec* rec, frameID frame)
749 free_word_token_from_lattice(rec, (frameID)i);
Dsrec_initialize.c112 rec->max_frames = (frameID)max_frames; in allocate_recognition1()
114 rec->word_lattice = allocate_word_lattice((frameID)max_frames); in allocate_recognition1()
189 rec->max_frames = (frameID)max_frames; in allocate_recognition()
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
DInjectedBundleUserMessageCoders.h66 encoder->encode(frame->frameID()); in encode()
118 uint64_t frameID; in decode() local
119 if (!decoder->decode(frameID)) in decode()
121 coder.m_root = WebProcess::shared().webFrame(frameID); in decode()
/external/webkit/Source/WebKit2/WebProcess/WebPage/
DWebPage.messages.in61 StopLoadingFrame(uint64_t frameID)
68 …DidReceivePolicyDecision(uint64_t frameID, uint64_t listenerID, uint32_t policyAction, uint64_t do…
72 GetMainResourceDataOfFrame(uint64_t frameID, uint64_t callbackID)
73 GetResourceDataFromFrame(uint64_t frameID, WTF::String resourceURL, uint64_t callbackID)
76 GetSourceForFrame(uint64_t frameID, uint64_t callbackID)
77 GetWebArchiveOfFrame(uint64_t frameID, uint64_t callbackID)
160 BeginPrinting(uint64_t frameID, WebKit::PrintInfo printInfo)
162 ComputePagesForPrinting(uint64_t frameID, WebKit::PrintInfo printInfo, uint64_t callbackID)
164 DrawRectToPDF(uint64_t frameID, WebCore::IntRect rect, uint64_t callbackID)
165 DrawPagesToPDF(uint64_t frameID, uint32_t first, uint32_t count, uint64_t callbackID)
DWebPage.h243 void stopLoadingFrame(uint64_t frameID);
373 void beginPrinting(uint64_t frameID, const PrintInfo&);
375 void computePagesForPrinting(uint64_t frameID, const PrintInfo&, uint64_t callbackID);
377 void drawRectToPDF(uint64_t frameID, const WebCore::IntRect&, uint64_t callbackID);
378 void drawPagesToPDF(uint64_t frameID, uint32_t first, uint32_t count, uint64_t callbackID);
487 void getMainResourceDataOfFrame(uint64_t frameID, uint64_t callbackID);
488 void getResourceDataFromFrame(uint64_t frameID, const String& resourceURL, uint64_t callbackID);
491 void getSourceForFrame(uint64_t frameID, uint64_t callbackID);
492 void getWebArchiveOfFrame(uint64_t frameID, uint64_t callbackID);
500 …void didReceivePolicyDecision(uint64_t frameID, uint64_t listenerID, uint32_t policyAction, uint64…
DWebPage.cpp492 void WebPage::stopLoadingFrame(uint64_t frameID) in stopLoadingFrame() argument
494 WebFrame* frame = WebProcess::shared().webFrame(frameID); in stopLoadingFrame()
1229 void WebPage::didReceivePolicyDecision(uint64_t frameID, uint64_t listenerID, uint32_t policyAction… in didReceivePolicyDecision() argument
1231 WebFrame* frame = WebProcess::shared().webFrame(frameID); in didReceivePolicyDecision()
1315 void WebPage::getSourceForFrame(uint64_t frameID, uint64_t callbackID) in getSourceForFrame() argument
1318 if (WebFrame* frame = WebProcess::shared().webFrame(frameID)) in getSourceForFrame()
1324 void WebPage::getMainResourceDataOfFrame(uint64_t frameID, uint64_t callbackID) in getMainResourceDataOfFrame() argument
1329 if (WebFrame* frame = WebProcess::shared().webFrame(frameID)) { in getMainResourceDataOfFrame()
1339 void WebPage::getResourceDataFromFrame(uint64_t frameID, const String& resourceURL, uint64_t callba… in getResourceDataFromFrame() argument
1344 if (WebFrame* frame = WebProcess::shared().webFrame(frameID)) { in getResourceDataFromFrame()
[all …]
/external/webkit/Source/WebKit2/WebProcess/
DWebProcess.cpp673 WebFrame* WebProcess::webFrame(uint64_t frameID) const in webFrame()
675 return m_frameMap.get(frameID); in webFrame()
678 void WebProcess::addWebFrame(uint64_t frameID, WebFrame* frame) in addWebFrame() argument
680 m_frameMap.set(frameID, frame); in addWebFrame()
683 void WebProcess::removeWebFrame(uint64_t frameID) in removeWebFrame() argument
685 m_frameMap.remove(frameID); in removeWebFrame()
693 m_connection->send(Messages::WebProcessProxy::DidDestroyFrame(frameID), 0); in removeWebFrame()

12