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

1 2

  /external/srec/srec/include/
srec_eosd.h 32 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;
swimodel.h 85 static PINLINE costdata duration_penalty_loop(frameID average_duration, frameID duration_so_far)
99 static PINLINE costdata duration_penalty_depart(frameID average_duration, frameID duration_so_far)
srec.h 67 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 */
112 /* since frameID is 16 bit, and 15bits is plenty
130 frameID max_frames;
204 frameID current_search_frame;
263 frameID max_frames;
298 frameID max_frames
    [all...]
srec_sizes.h 33 typedef asr_uint16_t frameID; /*for time frame*/
49 #define MAXframeID ((frameID)65535)
word_lattice.h 47 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 ifr);
  /external/srec/srec/crec/
rec_norm.c 39 frameID speech_start, speech_end;
srec_eosd.c 37 eosd->eos_costdelta = (frameID)eos_costdelta;
38 eosd->opt_eos_costdelta = (frameID)opt_eos_costdelta;
39 eosd->endnode_timeout = (frameID)terminal_timeout;
40 eosd->optendnode_timeout = (frameID)optional_terminal_timeout;
41 eosd->internalnode_timeout = (frameID)non_terminal_timeout;
42 eosd->inspeech_timeout = (frameID)max_speech_duration;
srec_results.c 79 frameID end_frame;
95 frameID ifr;
366 frameID start_frame = MAXframeID;
367 frameID i, end_frame = MAXframeID;
368 frameID num_speech_frames;
371 frameID num_words;
396 num_speech_frames = (frameID)(end_frame - start_frame);
word_lattice.c 54 srec_word_lattice *allocate_word_lattice(frameID max_frames)
76 frameID ifr;
84 costdata lattice_best_cost_to_frame(srec_word_lattice *wl, word_token* word_token_array, frameID ifr)
100 void lattice_add_word_tokens(srec_word_lattice *wl, frameID frame,
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)
    [all...]
srec_initialize.c 112 rec->max_frames = (frameID)max_frames;
114 rec->word_lattice = allocate_word_lattice((frameID)max_frames);
189 rec->max_frames = (frameID)max_frames;
  /external/webkit/Source/WebKit2/UIProcess/
WebContextUserMessageCoders.h 63 encoder->encode(frame->frameID());
117 uint64_t frameID;
118 if (!decoder->decode(frameID))
120 coder.m_root = coder.m_context->process()->webFrame(frameID);
WebPageProxy.h 508 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& unreachableURL, CoreIPC::ArgumentDecoder*);
514 void didReceiveServerRedirectForProvisionalLoadForFrame(uint64_t frameID, const String&, CoreIPC::ArgumentDecoder*);
515 void didFailProvisionalLoadForFrame(uint64_t frameID, const WebCore::ResourceError&, CoreIPC::ArgumentDecoder*);
516 void didCommitLoadForFrame(uint64_t frameID, const String& mimeType, bool frameHasCustomRepresentation, const PlatformCertificateInfo&, CoreIPC::ArgumentDecoder*);
517 void didFinishDocumentLoadForFrame(uint64_t frameID, CoreIPC::ArgumentDecoder*);
518 void didFinishLoadForFrame(uint64_t frameID, CoreIPC::ArgumentDecoder*)
    [all...]
WebFrameProxy.h 59 static PassRefPtr<WebFrameProxy> create(WebPageProxy* page, uint64_t frameID)
61 return adoptRef(new WebFrameProxy(page, frameID));
72 uint64_t frameID() const { return m_frameID; }
137 WebFrameProxy(WebPageProxy* page, uint64_t frameID);
WebProcessProxy.cpp 362 WebFrameProxy* WebProcessProxy::webFrame(uint64_t frameID) const
364 return isGoodKey<WebFrameProxyMap>(frameID) ? m_frameMap.get(frameID).get() : 0;
367 bool WebProcessProxy::canCreateFrame(uint64_t frameID) const
369 return isGoodKey<WebFrameProxyMap>(frameID) && !m_frameMap.contains(frameID);
372 void WebProcessProxy::frameCreated(uint64_t frameID, WebFrameProxy* frameProxy)
374 ASSERT(canCreateFrame(frameID));
375 m_frameMap.set(frameID, frameProxy);
378 void WebProcessProxy::didDestroyFrame(uint64_t frameID)
    [all...]
WebPageProxy.cpp 947 process()->send(Messages::WebPage::DidReceivePolicyDecision(frame->frameID(), listenerID, action, downloadID), m_pageID);
    [all...]
WebContext.h 187 void didNavigateWithNavigationData(uint64_t pageID, const WebNavigationDataStore& store, uint64_t frameID);
188 void didPerformClientRedirect(uint64_t pageID, const String& sourceURLString, const String& destinationURLString, uint64_t frameID);
189 void didPerformServerRedirect(uint64_t pageID, const String& sourceURLString, const String& destinationURLString, uint64_t frameID);
190 void didUpdateHistoryTitle(uint64_t pageID, const String& title, const String& url, uint64_t frameID);
WebContext.cpp 407 void WebContext::didNavigateWithNavigationData(uint64_t pageID, const WebNavigationDataStore& store, uint64_t frameID)
409 WebFrameProxy* frame = m_process->webFrame(frameID);
417 void WebContext::didPerformClientRedirect(uint64_t pageID, const String& sourceURLString, const String& destinationURLString, uint64_t frameID)
419 WebFrameProxy* frame = m_process->webFrame(frameID);
427 void WebContext::didPerformServerRedirect(uint64_t pageID, const String& sourceURLString, const String& destinationURLString, uint64_t frameID)
429 WebFrameProxy* frame = m_process->webFrame(frameID);
437 void WebContext::didUpdateHistoryTitle(uint64_t pageID, const String& title, const String& url, uint64_t frameID)
439 WebFrameProxy* frame = m_process->webFrame(frameID);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundleUserMessageCoders.h 66 encoder->encode(frame->frameID());
118 uint64_t frameID;
119 if (!decoder->decode(frameID))
121 coder.m_root = WebProcess::shared().webFrame(frameID);
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebFrameLoaderClient.cpp 136 webPage->send(Messages::WebPageProxy::DidRemoveFrameFromHierarchy(m_frame->frameID(), InjectedBundleUserMessageEncoder(userData.get())));
156 webPage->send(Messages::WebPageProxy::DidInitiateLoadForResource(m_frame->frameID(), identifier, request, pageIsProvisionallyLoading));
172 webPage->send(Messages::WebPageProxy::DidSendRequestForResource(m_frame->frameID(), identifier, request, redirectResponse));
208 if (!webPage->sendSync(Messages::WebPageProxy::CanAuthenticateAgainstProtectionSpaceInFrame(m_frame->frameID(), protectionSpace), Messages::WebPageProxy::CanAuthenticateAgainstProtectionSpaceInFrame::Reply(canAuthenticate)))
222 webPage->send(Messages::WebPageProxy::DidReceiveResponseForResource(m_frame->frameID(), identifier, response));
232 webPage->send(Messages::WebPageProxy::DidReceiveContentLengthForResource(m_frame->frameID(), identifier, dataLength));
242 webPage->send(Messages::WebPageProxy::DidFinishLoadForResource(m_frame->frameID(), identifier));
252 webPage->send(Messages::WebPageProxy::DidFailLoadForResource(m_frame->frameID(), identifier, error));
290 webPage->send(Messages::WebPageProxy::DidReceiveServerRedirectForProvisionalLoadForFrame(m_frame->frameID(), url, InjectedBundleUserMessageEncoder(userData.get())));
325 webPage->send(Messages::WebPageProxy::DidSameDocumentNavigationForFrame(m_frame->frameID(), SameDocumentNavigationAnchorNavigation, m_frame->coreFrame()->document()->url().string(), Injec (…)
    [all...]
WebChromeClient.cpp 152 WebProcess::shared().connection()->send(Messages::WebPageProxy::FocusedFrameChanged(webFrame ? webFrame->frameID() : 0), m_page->pageID());
263 if (!WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::RunBeforeUnloadConfirmPanel(message, webFrame->frameID()), Messages::WebPageProxy::RunBeforeUnloadConfirmPanel::Reply(shouldClose), m_page->pageID()))
295 WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::RunJavaScriptAlert(webFrame->frameID(), alertText), Messages::WebPageProxy::RunJavaScriptAlert::Reply(), m_page->pageID());
306 if (!WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::RunJavaScriptConfirm(webFrame->frameID(), message), Messages::WebPageProxy::RunJavaScriptConfirm::Reply(result), m_page->pageID()))
319 if (!WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::RunJavaScriptPrompt(webFrame->frameID(), message, defaultValue), Messages::WebPageProxy::RunJavaScriptPrompt::Reply(result), m_page->pageID()))
418 m_page->send(Messages::WebPageProxy::FrameSetLargestFrameChanged(largestFrame ? largestFrame->frameID() : 0));
489 m_page->sendSync(Messages::WebPageProxy::PrintFrame(webFrame->frameID()), Messages::WebPageProxy::PrintFrame::Reply());
502 Messages::WebPageProxy::ExceededDatabaseQuota(webFrame->frameID(), origin->databaseIdentifier(), databaseName, details.displayName(), currentQuota, details.currentUsage(), details.expectedUsage()),
608 m_page->send(Messages::WebPageProxy::RunOpenPanel(static_cast<WebFrameLoaderClient*>(frame->loader()->client())->webFrame()->frameID(), parameters));
  /external/webkit/Source/WebKit2/WebProcess/Geolocation/
GeolocationPermissionRequestManager.cpp 65 m_page->send(Messages::WebPageProxy::RequestGeolocationPermissionForFrame(geolocationID, webFrame->frameID(), origin->databaseIdentifier()));
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.h 243 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_t downloadID)
    [all...]
WebFrame.h 67 uint64_t frameID() const { return m_frameID; }
  /external/webkit/Source/WebKit2/WebProcess/Authentication/
AuthenticationManager.cpp 73 WebProcess::shared().connection()->send(Messages::WebPageProxy::DidReceiveAuthenticationChallenge(frame->frameID(), authenticationChallenge, challengeID), frame->page()->pageID());
  /external/webkit/Source/WebKit2/WebProcess/
WebProcess.cpp 673 WebFrame* WebProcess::webFrame(uint64_t frameID) const
675 return m_frameMap.get(frameID);
678 void WebProcess::addWebFrame(uint64_t frameID, WebFrame* frame)
680 m_frameMap.set(frameID, frame);
683 void WebProcess::removeWebFrame(uint64_t frameID)
685 m_frameMap.remove(frameID);
693 m_connection->send(Messages::WebProcessProxy::DidDestroyFrame(frameID), 0);

Completed in 424 milliseconds

1 2