HomeSort by relevance Sort by last modified time
    Searched full:frameid (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.messages.in 28 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::String result)
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::ResourceRequest request, uint64_t listenerID, WebKit::InjectedBundleUserMessageEncoder userData) -> (bool receivedPolicyAction, uint64_t policyAction, uint64_t downloadID)
72 DecidePolicyForNavigationAction(uint64_t frameID, uint32_t navigationType, uint32_t modifiers, int32_t mouseButton, WebCore::ResourceRequest reques (…)
    [all...]
WebContext.messages.in 26 DidNavigateWithNavigationData(uint64_t pageID, WebKit::WebNavigationDataStore store, uint64_t frameID)
27 DidPerformClientRedirect(uint64_t pageID, WTF::String sourceURLString, WTF::String destinationURLString, uint64_t frameID)
28 DidPerformServerRedirect(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)
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...]
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...]
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);
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);
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);
WebProcessProxy.messages.in 26 DidDestroyFrame(uint64_t frameID)
  /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;
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);
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)
  /external/webkit/Source/WebCore/inspector/front-end/
ResourceTreeModel.js 95 resources: function(frameId)
98 var resources = this._resourcesByFrameId[frameId] || {};
133 var frameId = event.data;
134 this._clearChildFramesAndResources(frameId, 0);
135 this.dispatchEventToListeners(WebInspector.ResourceTreeModel.EventTypes.FrameDetached, frameId);
154 var frameId = resource.frameId;
155 var resourcesForFrame = this._resourcesByFrameId[frameId];
158 this._resourcesByFrameId[frameId] = resourcesForFrame;
214 _clearChildFramesAndResources: function(frameId, loaderToPreserveId
    [all...]
NetworkManager.js 58 NetworkAgent.getResourceContent(resource.frameId, resource.url, base64Encode, callbackWrapper);
123 requestWillBeSent: function(identifier, frameId, loaderId, documentURL, request, time, stackTrace, redirectResponse)
133 resource = this._createResource(identifier, frameId, loaderId, request.url, documentURL, stackTrace);
215 resourceLoadedFromMemoryCache: function(frameId, loaderId, documentURL, time, cachedResource)
217 var resource = this._createResource("cached:" + ++this._lastIdentifierForCachedResource, frameId, loaderId, cachedResource.url, documentURL);
226 frameDetached: function(frameId)
228 this._dispatchEventToListeners(WebInspector.NetworkManager.EventTypes.FrameDetached, frameId);
298 var newResource = this._createResource(identifier, originalResource.frameId, originalResource.loaderId,
330 _createResource: function(identifier, frameId, loaderId, url, documentURL, stackTrace)
334 resource.frameId = frameId
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.messages.in 61 StopLoadingFrame(uint64_t frameID)
68 DidReceivePolicyDecision(uint64_t frameID, uint64_t listenerID, uint32_t policyAction, uint64_t downloadID)
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
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_webnavigation_api_constants.cc 10 const char kFrameIdKey[] = "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);
  /dalvik/vm/
Debugger.h 243 bool dvmDbgGetThreadFrame(ObjectId threadId, int num, FrameId* pFrameId,
253 bool dvmDbgGetThisObject(ObjectId threadId, FrameId frameId, ObjectId* pThisId);
254 void dvmDbgGetLocalValue(ObjectId threadId, FrameId frameId, int slot,
256 void dvmDbgSetLocalValue(ObjectId threadId, FrameId frameId, int slot,
  /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...]
  /external/srec/srec/crec/
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;
rec_norm.c 39 frameID speech_start, speech_end;
  /external/webkit/Source/WebCore/inspector/
InspectorResourceAgent.h 115 Frame* frameForId(const String& frameId);
122 void getResourceContent(ErrorString*, const String& frameId, const String& url, const bool* const base64Encode, String* content);
  /dalvik/vm/jdwp/
Jdwp.h 44 typedef u8 FrameId; /* short-lived stack frame ID */
54 INLINE FrameId dvmReadFrameId(const u1** pBuf) { return read8BE(pBuf); }
59 INLINE void dvmSetFrameId(u1* buf, FrameId val) { return set8BE(buf, val); }
72 INLINE void expandBufAddFrameId(ExpandBuf* pReply, FrameId id) {

Completed in 596 milliseconds

1 2 3