/frameworks/base/docs/html/sdk/api_diff/8/ |
changes.html | 30 <frame src="changes/jdiff_topleftframe.html" scrolling="no" name="topleftframe" frameborder="1"> 31 <frame src="changes/alldiffs_index_all.html" scrolling="auto" name="bottomleftframe" frameborder="1"> 33 <frame src="changes/changes-summary.html" scrolling="auto" name="rightframe" frameborder="1"> 37 Frame Alert 41 This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. 43 Link to <a href="changes/changes-summary.html" target="_top">Non-frame version.</A>
|
/external/opencore/codecs_v2/video/avc_h264/enc/src/ |
avcenc_api.h | 104 int width; /* width of an input frame in pixel */ 105 int height; /* height of an input frame in pixel */ 114 uint num_ref_in_cycle; /* number of reference frame in one cycle */ 117 int num_ref_frame; /* number of reference frame used */ 140 int idr_period; /* idr frame refresh rate in number of target encoded frame (no concept of actual time).*/ 141 int intramb_refresh; /* minimum number of intra MB per frame */ 150 any frame with POC less than the previously encoded frame as a B-frame [all...] |
/external/srec/srec/crec/ |
get_fram.c | 53 /* Construct frame buffer and voice buffer here 61 utt->gen_utt.frame = createFrameBuffer(buffer_size, 86 /* Destroy frame buffer 91 if (utt->gen_utt.frame) 93 destroyFrameBuffer(utt->gen_utt.frame); 94 utt->gen_utt.frame = NULL; 169 ** To get a frame amount of data and perform preprocessing functions 214 ** To get a frame amount of data 215 ** Maintains a single data buffer and passes the pointers to frame of data. 225 /* Get the next data frame i [all...] |
/external/webkit/WebKit/chromium/src/ |
WebFrameImpl.h | 36 #include "Frame.h" 174 // Called by the WebViewImpl to initialize its main frame: 177 PassRefPtr<WebCore::Frame> createChildFrame( 184 static WebFrameImpl* fromFrame(WebCore::Frame* frame); 189 WebCore::Frame* frame() const { return m_frame; } function in class:WebKit::WebFrameImpl 197 // Returns which frame has an active match. This function should only be 198 // called on the main frame, as it is the only frame keeping track. Returne [all...] |
/dalvik/vm/hprof/ |
HprofStackFrame.c | 47 method = stackFrameEntry->frame.method; 95 * If the 'live' bit is 0, the frame is not in use by any current 110 /* Only hash the 'frame' portion of the StackFrameEntry. */ 115 const char *cp = (char *) &stackFrameEntry->frame; 124 /* Only compare the 'frame' portion of the StackFrameEntry. */ 128 return memcmp(&((StackFrameEntry *)tableItem)->frame, 129 &((StackFrameEntry *) looseItem)->frame, sizeof(StackFrame)); 169 /* Mark the frame as live (in use by an object in the current heap). */ 201 method = stackFrameEntry->frame.method; 202 pc = stackFrameEntry->frame.pc [all...] |
/external/webkit/WebCore/page/ |
PrintContext.cpp | 25 #include "Frame.h" 33 PrintContext::PrintContext(Frame* frame) 34 : m_frame(frame) 131 // FIXME: This will modify the rendering of the on-screen frame. 174 Frame* frame = element->document()->frame(); 176 PrintContext printContext(frame); 191 int PrintContext::numberOfPages(Frame* frame, const FloatSize& pageSizeInPixels [all...] |
Console.h | 45 class Frame; 79 static PassRefPtr<Console> create(Frame* frame) { return adoptRef(new Console(frame)); } 81 Frame* frame() const; 120 Console(Frame*); 122 Frame* m_frame;
|
DOMSelection.h | 39 class Frame; 49 static PassRefPtr<DOMSelection> create(Frame* frame) { return adoptRef(new DOMSelection(frame)); } 51 Frame* frame() const; 94 DOMSelection(Frame*); 99 Frame* m_frame;
|
/external/webkit/WebCore/platform/network/qt/ |
ResourceHandleQt.cpp | 32 #include "Frame.h" 119 bool ResourceHandle::start(Frame* frame) 121 if (!frame) 124 Page *page = frame->page(); 139 getInternal()->m_frame = static_cast<FrameLoaderClientQt*>(frame->loader()->client())->webFrame(); 156 bool ResourceHandle::willLoadFromCache(ResourceRequest& request, Frame* frame) 158 if (!frame) 162 QNetworkAccessManager* manager = QWebFramePrivate::kit(frame)->page()->networkAccessManager() [all...] |
/external/webkit/WebCore/rendering/ |
TextControlInnerElements.cpp | 33 #include "Frame.h" 178 if (Frame* frame = document()->frame()) 179 frame->eventHandler()->setCapturingMouseEventsNode(0); 194 if (Frame* frame = document()->frame()) { 195 frame->eventHandler()->setCapturingMouseEventsNode(this); 205 if (Frame* frame = document()->frame()) [all...] |
/external/webkit/WebKit/chromium/public/ |
WebFrame.h | 79 // For example, imagine that a JS function in frame A calls a function 80 // in frame B, which calls native code, which wants to know what the 81 // 'active' frame is. 85 // function stack. frameForEnteredContext() would return frame A in 90 // frameForCurrentContext() would return frame B in our example. 94 // Returns the frame inside a given frame or iframe element. Returns 0 if 95 // the given element is not a frame, iframe or if the frame is empty. 101 // The name of this frame [all...] |
/external/webkit/WebKit/haiku/WebCoreSupport/ |
ChromeClientHaiku.cpp | 31 #include "Frame.h" 105 Page* ChromeClientHaiku::createWindow(Frame*, const FrameLoadRequest&, const WebCore::WindowFeatures&) 111 Page* ChromeClientHaiku::createModalDialog(Frame*, const FrameLoadRequest&) 206 bool ChromeClientHaiku::runBeforeUnloadConfirmPanel(const String& message, Frame* frame) 217 void ChromeClientHaiku::runJavaScriptAlert(Frame*, const String& msg) 223 bool ChromeClientHaiku::runJavaScriptConfirm(Frame*, const String& msg) 229 bool ChromeClientHaiku::runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result) 284 void ChromeClientHaiku::contentsSizeChanged(Frame*, const IntSize&) const 322 void ChromeClientHaiku::print(Frame*) [all...] |
/external/webkit/WebKit/mac/WebCoreSupport/ |
WebChromeClient.h | 58 virtual WebCore::Page* createWindow(WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&); 81 virtual bool runBeforeUnloadConfirmPanel(const WebCore::String& message, WebCore::Frame* frame); 85 virtual void runJavaScriptAlert(WebCore::Frame*, const WebCore::String&); 86 virtual bool runJavaScriptConfirm(WebCore::Frame*, const WebCore::String&); 87 virtual bool runJavaScriptPrompt(WebCore::Frame*, const WebCore::String& message, const WebCore::String& defaultValue, WebCore::String& result); 99 virtual void contentsSizeChanged(WebCore::Frame*, const WebCore::IntSize&) const; 109 virtual void print(WebCore::Frame*); 111 virtual void exceededDatabaseQuota(WebCore::Frame*, const WebCore::String& databaseName); 122 virtual void runOpenPanel(WebCore::Frame*, PassRefPtr<WebCore::FileChooser>) [all...] |
/external/webkit/WebKit/android/WebCoreSupport/ |
GeolocationPermissions.cpp | 30 #include "Frame.h" 51 GeolocationPermissions::GeolocationPermissions(WebViewCore* webViewCore, Frame* mainFrame) 68 void GeolocationPermissions::queryPermissionState(Frame* frame) 74 String originString = frame->document()->securityOrigin()->toString(); 115 frameSet.add(frame); 119 m_queuedOriginsToFramesMap.find(originString)->second.add(frame); 123 void GeolocationPermissions::cancelPermissionStateQuery(WebCore::Frame* frame) 125 // We cancel any queued request for the given frame. There can be at mos [all...] |
/hardware/broadcom/wlan/bcm4329/src/include/ |
bcmsdpcm.h | 36 #define I_SMB_NAK I_SMB_SW0 /* To SB Mailbox Frame NAK */ 42 #define SMB_NAK (1 << 0) /* To SB Mailbox Frame NAK */ 59 #define I_HMB_FRAME_IND I_HMB_SW2 /* To Host Mailbox Frame Indication */ 65 #define HMB_FRAME_IND (1 << 2) /* To Host Mailbox Frame Indication */ 70 #define HMB_DATA_NAKHANDLED 1 /* we're ready to retransmit NAK'd frame to host */ 88 /* SW frame header */ 100 /* Next Read Len: lookahead length of next frame, in 16-byte units (rounded up) */ 131 #define SDPCM_SEQUENCE_WRAP 256 /* wrap-around val for eight-bit frame seq number */ 138 /* For GLOM_CHANNEL frames, use a flag to indicate descriptor frame */ 146 * Len is current or requested frame length, no [all...] |
/external/opencore/pvmi/pvmf/src/ |
pvmf_sync_util_data_queue.cpp | 31 //set this to 1 to disable AV sync and frame dropping. 121 //Reset the frame step delta to zero. 174 //set clock for 'sync only during frame step' mode. 209 //sync and frame-step mode. 211 //does sync mode and frame-step. We need to sync logic during 212 //frame-stepping, since the MIO may not have sync capability. 364 //return current frame. 424 //update the clock value for frame-step mode. 427 //timestamp to match before releasing a frame. 428 //In frame-step mode, the clock is not advancing on its own, and we'r [all...] |
/external/webkit/WebKit/qt/Api/ |
qwebpage.cpp | 37 #include "Frame.h" 457 bool QWebPagePrivate::acceptNavigationRequest(QWebFrame *frame, const QNetworkRequest &request, QWebPage::NavigationType type) 460 && frame == mainFrame) 462 return q->acceptNavigationRequest(frame, request, type); 583 WebCore::FrameLoader *loader = mainFrame->d->frame->loader(); 714 WebCore::Frame* frame = QWebFramePrivate::core(mainFrame); local 715 if (!frame->view()) 718 bool accepted = frame->eventHandler()->mouseMoved(PlatformMouseEvent(ev, 0)); 724 WebCore::Frame* frame = QWebFramePrivate::core(mainFrame) local 734 WebCore::Frame* frame = QWebFramePrivate::core(mainFrame); local 755 WebCore::Frame* frame = QWebFramePrivate::core(mainFrame); local 789 WebCore::Frame* frame = QWebFramePrivate::core(mainFrame); local 806 WebCore::Frame* frame = QWebFramePrivate::core(mainFrame); local 823 WebCore::Frame* frame = QWebFramePrivate::core(mainFrame); local 837 WebCore::Frame* frame = QWebFramePrivate::core(mainFrame); local 874 WebCore::Frame* frame = QWebFramePrivate::core(mainFrame); local 892 Frame* frame = page->focusController()->focusedFrame(); local 913 WebCore::Frame* frame = QWebFramePrivate::core(mainFrame); local 960 WebCore::Frame* frame = QWebFramePrivate::core(mainFrame); local 971 WebCore::Frame* frame = QWebFramePrivate::core(mainFrame); local 1038 WebCore::Frame* frame = page->focusController()->focusedOrMainFrame(); local 1087 WebCore::Frame* frame = page->focusController()->focusedOrMainFrame(); local 1238 WebCore::Frame *frame = page->focusController()->focusedOrMainFrame(); local 1300 WebCore::Frame* frame = page->focusController()->focusedOrMainFrame(); local 1387 WebCore::Frame* frame = QWebFramePrivate::core(mainFrame); local 1407 Frame* frame = d->page->focusController()->focusedFrame(); local 2015 WebCore::Frame *frame = d->page->focusController()->focusedOrMainFrame(); local 2130 QWebFrame *frame = mainFrame(); local 2141 QWebFrame* frame = d->mainFrame; local 2164 QWebFrame *frame = mainFrame(); local 2651 Frame *frame = d->page->focusController()->focusedFrame(); local 2675 WebCore::Frame* frame = d->mainFrame->d->frame; local 2748 Frame* frame = QWebFramePrivate::core(webFrame); local [all...] |
/dalvik/vm/mterp/x86-atom/ |
stub.S | 20 SAVE_PC_FP_TO_GLUE %edx # save program counter and frame pointer 24 LOAD_PC_FP_FROM_GLUE # restore program counter and frame pointer
|
/external/speex/include/speex/ |
speex_stereo.h | 71 /** Transforms a stereo frame into a mono frame and stores intensity stereo info in 'bits' */ 74 /** Transforms a stereo frame into a mono frame and stores intensity stereo info in 'bits' */ 77 /** Transforms a mono frame into a stereo frame using intensity stereo info */ 80 /** Transforms a mono frame into a stereo frame using intensity stereo info */
|
/external/webkit/LayoutTests/http/tests/appcache/resources/ |
xhr-foreign-resource-frame.html | 15 // simple.txt is only listed s a resource in main frame's manifest, so loading should fail. 24 log("Frame OK");
|
/external/webkit/WebCore/bindings/generic/ |
BindingSecurity.h | 43 class Frame; 50 // Check if the active execution context can access the target frame. 51 static bool canAccessFrame(State<Binding>*, Frame*, bool reportError); 82 Frame* target, 85 // The subject is detached from a frame, deny accesses. 103 Frame* target = getFrame(node); 112 bool BindingSecurity<Binding>::allowSettingFrameSrcToJavascriptUrl(State<Binding>* state, HTMLFrameElementBase* frame, String value) 115 Node* contentDoc = frame->contentDocument();
|
/external/webkit/WebKit/gtk/tests/ |
testwebdatasource.c | 38 WebKitWebFrame* frame; local 44 frame = webkit_web_view_get_main_frame(view); 47 webkit_web_frame_load_request(frame, request); 50 dataSource = webkit_web_frame_get_provisional_data_source(frame); 61 WebKitWebFrame* frame = webkit_web_view_get_main_frame(view); local 71 WebKitWebDataSource* datasource = webkit_web_frame_get_data_source(frame); 82 WebKitWebFrame* frame = webkit_web_view_get_main_frame(view); local 83 WebKitWebDataSource* dataSource = webkit_web_frame_get_data_source(frame);
|
/external/webkit/WebKit/gtk/webkit/ |
webkitwebpolicydecision.cpp | 43 WebKitWebFrame* frame; member in struct:_WebKitWebPolicyDecisionPrivate 60 WebKitWebPolicyDecision* webkit_web_policy_decision_new(WebKitWebFrame* frame, WebCore::FramePolicyFunction function) 62 g_return_val_if_fail(frame, NULL); 67 priv->frame = frame; 89 (core(priv->frame)->loader()->policyChecker()->*(priv->framePolicyFunction))(WebCore::PolicyUse); 107 (core(priv->frame)->loader()->policyChecker()->*(priv->framePolicyFunction))(WebCore::PolicyIgnore); 125 (core(priv->frame)->loader()->policyChecker()->*(priv->framePolicyFunction))(WebCore::PolicyDownload);
|
/external/webkit/WebKit/mac/DefaultDelegates/ |
WebDefaultPolicyDelegate.m | 54 - (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/WebKit/mac/WebView/ |
WebFormDelegate.h | 52 - (void)textFieldDidBeginEditing:(DOMHTMLInputElement *)element inFrame:(WebFrame *)frame; 53 - (void)textFieldDidEndEditing:(DOMHTMLInputElement *)element inFrame:(WebFrame *)frame; 54 - (void)textDidChangeInTextField:(DOMHTMLInputElement *)element inFrame:(WebFrame *)frame; 55 - (void)textDidChangeInTextArea:(DOMHTMLTextAreaElement *)element inFrame:(WebFrame *)frame; 57 - (BOOL)textField:(DOMHTMLInputElement *)element doCommandBySelector:(SEL)commandSelector inFrame:(WebFrame *)frame; 58 - (BOOL)textField:(DOMHTMLInputElement *)element shouldHandleEvent:(NSEvent *)event inFrame:(WebFrame *)frame; 62 - (void)frame:(WebFrame *)frame sourceFrame:(WebFrame *)sourceFrame willSubmitForm:(DOMElement *)form
|