/external/webkit/WebCore/platform/graphics/wince/ |
MediaPlayerProxy.cpp | 72 Frame* frame = element()->document()->frame(); 76 m_instance = frame->script()->createScriptInstanceForWidget(renderWidget->widget()); 98 Frame* frame = element->document()->frame(); 112 frame->loader()->requestObject(static_cast<RenderPartObject*>(element->renderer()), url, nullAtom, serviceType, paramNames, paramValues); 125 Frame* frame = element()->document()->frame() local [all...] |
/external/webkit/WebCore/platform/image-decoders/gif/ |
GIFImageDecoder.cpp | 52 // Our frame count is now unknown. 121 RGBA32Buffer& frame = m_frameBufferCache[index]; 122 if (frame.status() != RGBA32Buffer::FrameComplete && m_reader) 123 decode(GIFFullQuery, index + 1); // Decode this frame. 124 return &frame; 135 // last frame we wish to preserve, but rather that we never want to clear 136 // the very last frame in the cache: it's empty (so clearing it is 139 // needed to construct the next frame (see comments below). Callers can 147 // * We don't clear the frame we're currently decoding 148 // * We don't clear any frame from which a future initFrameBuffer() cal [all...] |
/external/webkit/WebKit/haiku/WebCoreSupport/ |
ChromeClientHaiku.h | 62 Page* createWindow(Frame*, const FrameLoadRequest&, const WebCore::WindowFeatures&); 63 Page* createModalDialog(Frame*, const FrameLoadRequest&); 92 bool runBeforeUnloadConfirmPanel(const String& message, Frame* frame); 96 void runJavaScriptAlert(Frame*, const String&); 97 bool runJavaScriptConfirm(Frame*, const String&); 98 bool runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result); 110 void contentsSizeChanged(Frame*, const IntSize&) const; 124 void print(Frame*); 126 void exceededDatabaseQuota(Frame*, const String& databaseName) [all...] |
/external/webkit/WebKit/qt/WebCoreSupport/ |
ChromeClientQt.h | 70 virtual Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&); 94 virtual bool runBeforeUnloadConfirmPanel(const String& message, Frame* frame); 98 virtual void runJavaScriptAlert(Frame*, const String&); 99 virtual bool runJavaScriptConfirm(Frame*, const String&); 100 virtual bool runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result); 113 virtual void contentsSizeChanged(Frame*, const IntSize&) const; 120 virtual void print(Frame*); 122 virtual void exceededDatabaseQuota(Frame*, const String&); 131 virtual void attachRootGraphicsLayer(Frame*, GraphicsLayer*) [all...] |
/external/webkit/WebKit/wx/WebKitSupport/ |
ChromeClientWx.h | 59 virtual Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&); 60 virtual Page* createModalDialog(Frame*, const FrameLoadRequest&); 89 Frame* frame); 93 virtual void runJavaScriptAlert(Frame*, const String&); 94 virtual bool runJavaScriptConfirm(Frame*, const String&); 95 virtual bool runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result); 110 virtual void contentsSizeChanged(Frame*, const IntSize&) const; 117 virtual void print(Frame*); 120 virtual void exceededDatabaseQuota(Frame*, const String&) [all...] |
/external/webkit/WebKitTools/WinLauncher/ |
WinLauncher.h | 44 /* [in] */ IWebFrame* /*frame*/) { return S_OK; }
48 /* [in] */ IWebFrame *frame) { return S_OK; }
53 /* [in] */ IWebFrame *frame) { return S_OK; }
57 /* [in] */ IWebFrame *frame) { return updateAddressBar(webView); }
62 /* [in] */ IWebFrame *frame) { return S_OK; }
67 /* [in] */ IWebFrame *frame) { return S_OK; }
71 /* [in] */ IWebFrame* /*frame*/) { return S_OK; }
80 /* [in] */ IWebFrame *frame) { return S_OK; }
87 /* [in] */ IWebFrame *frame) { return S_OK; }
91 /* [in] */ IWebFrame *frame) { return S_OK; } [all...] |
/external/opencore/nodes/pvomxbasedecnode/include/ |
pvmf_omx_basedec_defs.h | 31 // Decoding of a frame failed. Base decoder node will continue on to decode the next frame 33 // Input bitstream buffer overflowed (frame too large or couldn't find frame marker). Data will be dropped until the next frame marker is found 34 // then frame will be decoded.
|
/external/webkit/WebCore/bindings/js/ |
JSDataGridDataSource.h | 39 class Frame; 44 static PassRefPtr<JSDataGridDataSource> create(JSC::JSValue dataSource, Frame* frame) 46 return adoptRef(new JSDataGridDataSource(dataSource, frame)); 55 JSDataGridDataSource(JSC::JSValue, Frame*); 58 RefPtr<Frame> m_frame;
|
/external/webkit/WebCore/bindings/v8/custom/ |
V8CustomApplicationInstalledCallback.h | 37 class Frame; 41 static PassRefPtr<V8CustomApplicationInstalledCallback> create(v8::Local<v8::Value> value, Frame* frame) 44 return adoptRef(new V8CustomApplicationInstalledCallback(value->ToObject(), frame)); 51 V8CustomApplicationInstalledCallback(v8::Local<v8::Object>, Frame*); 54 RefPtr<Frame> m_frame;
|
V8CustomPositionCallback.cpp | 29 #include "Frame.h" 35 V8CustomPositionCallback::V8CustomPositionCallback(v8::Local<v8::Object> callback, Frame* frame) 37 , m_frame(frame) 60 // Protect the frame until the callback returns. 61 RefPtr<Frame> protector(m_frame);
|
V8CustomPositionCallback.h | 36 class Frame; 41 static PassRefPtr<V8CustomPositionCallback> create(v8::Local<v8::Value> value, Frame* frame) 44 return adoptRef(new V8CustomPositionCallback(value->ToObject(), frame)); 51 V8CustomPositionCallback(v8::Local<v8::Object>, Frame*); 54 RefPtr<Frame> m_frame;
|
V8CustomPositionErrorCallback.cpp | 29 #include "Frame.h" 35 V8CustomPositionErrorCallback::V8CustomPositionErrorCallback(v8::Local<v8::Object> callback, Frame* frame) 37 , m_frame(frame) 60 // Protect the frame until the callback returns. 61 RefPtr<Frame> protector(m_frame);
|
V8CustomPositionErrorCallback.h | 36 class Frame; 41 static PassRefPtr<V8CustomPositionErrorCallback> create(v8::Local<v8::Value> value, Frame* frame) 44 return adoptRef(new V8CustomPositionErrorCallback(value->ToObject(), frame)); 51 V8CustomPositionErrorCallback(v8::Local<v8::Object>, Frame*); 54 RefPtr<Frame> m_frame;
|
V8CustomSQLStatementCallback.h | 43 class Frame; 47 static PassRefPtr<V8CustomSQLStatementCallback> create(v8::Local<v8::Value> value, Frame* frame) 50 return adoptRef(new V8CustomSQLStatementCallback(value->ToObject(), frame)); 56 V8CustomSQLStatementCallback(v8::Local<v8::Object>, Frame*); 59 RefPtr<Frame> m_frame;
|
V8CustomSQLStatementErrorCallback.h | 45 class Frame; 49 static PassRefPtr<V8CustomSQLStatementErrorCallback> create(v8::Local<v8::Value> value, Frame* frame) 52 return adoptRef(new V8CustomSQLStatementErrorCallback(value->ToObject(), frame)); 58 V8CustomSQLStatementErrorCallback(v8::Local<v8::Object>, Frame*); 61 RefPtr<Frame> m_frame;
|
V8CustomSQLTransactionCallback.h | 43 class Frame; 47 static PassRefPtr<V8CustomSQLTransactionCallback> create(v8::Local<v8::Value> value, Frame* frame) 50 return adoptRef(new V8CustomSQLTransactionCallback(value->ToObject(), frame)); 56 V8CustomSQLTransactionCallback(v8::Local<v8::Object>, Frame*); 59 RefPtr<Frame> m_frame;
|
V8CustomSQLTransactionErrorCallback.h | 43 class Frame; 47 static PassRefPtr<V8CustomSQLTransactionErrorCallback> create(v8::Local<v8::Value> value, Frame* frame) 50 return adoptRef(new V8CustomSQLTransactionErrorCallback(value->ToObject(), frame)); 57 V8CustomSQLTransactionErrorCallback(v8::Local<v8::Object>, Frame*); 60 RefPtr<Frame> m_frame;
|
/external/webkit/WebCore/html/ |
HTMLFrameElementBase.cpp | 31 #include "Frame.h" 74 if (Frame* parentFrame = document()->frame()) { 82 for (Frame* frame = document()->frame(); frame; frame = frame->tree()->parent()) { 83 if (equalIgnoringFragmentIdentifier(frame->loader()->url(), completeURL)) [all...] |
/external/webkit/WebCore/page/ |
FocusController.h | 36 class Frame; 45 void setFocusedFrame(PassRefPtr<Frame>); 46 Frame* focusedFrame() const { return m_focusedFrame.get(); } 47 Frame* focusedOrMainFrame(); 52 bool setFocusedNode(Node*, PassRefPtr<Frame>); 62 RefPtr<Frame> m_focusedFrame;
|
Navigator.h | 31 class Frame; 46 static PassRefPtr<Navigator> create(Frame* frame) { return adoptRef(new Navigator(frame)); } 50 Frame* frame() const { return m_frame; } function in class:WebCore::Navigator 83 Navigator(Frame*); 84 Frame* m_frame;
|
/external/webkit/WebCore/storage/ |
Storage.h | 37 class Frame; 44 static PassRefPtr<Storage> create(Frame*, PassRefPtr<StorageArea>); 56 Frame* frame() { return m_frame; } function in class:WebCore::Storage 60 Storage(Frame*, PassRefPtr<StorageArea>); 62 Frame* m_frame;
|
/external/webkit/LayoutTests/storage/ |
close-during-stress-test.html | 3 <p>A JavaScript failure on the console is expected, however, as the global object is cleared when closing a frame. 5 <iframe src="resources/stress-frame.html" onload="startTest()"></iframe>
|
/external/webkit/WebCore/page/wince/ |
FrameWince.cpp | 28 #include "Frame.h" 64 void computePageRectsForFrame(Frame* frame, const IntRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, Vector<IntRect>& pages, int& outPageHeight) 66 ASSERT(frame); 71 if (!frame->document() || !frame->view() || !frame->document()->renderer()) 74 RenderView* root = toRenderView(frame->document()->renderer()); 108 frame->view()->adjustPageHeight(&proposedBottom, printedPagesHeight, proposedBottom, printedPagesHeight); 116 HBITMAP imageFromSelection(Frame* frame, bool forceBlackText [all...] |
/external/webkit/WebKit/mac/WebView/ |
WebFormDelegate.m | 47 - (void)textFieldDidBeginEditing:(DOMHTMLInputElement *)element inFrame:(WebFrame *)frame 51 - (void)textFieldDidEndEditing:(DOMHTMLInputElement *)element inFrame:(WebFrame *)frame 55 - (void)textDidChangeInTextField:(DOMHTMLInputElement *)element inFrame:(WebFrame *)frame 59 - (void)textDidChangeInTextArea:(DOMHTMLTextAreaElement *)element inFrame:(WebFrame *)frame 63 - (BOOL)textField:(DOMHTMLInputElement *)element doCommandBySelector:(SEL)commandSelector inFrame:(WebFrame *)frame 68 - (BOOL)textField:(DOMHTMLInputElement *)element shouldHandleEvent:(NSEvent *)event inFrame:(WebFrame *)frame 73 - (void)frame:(WebFrame *)frame sourceFrame:(WebFrame *)sourceFrame willSubmitForm:(DOMElement *)form
|
/external/v8/src/ |
jump-target.h | 47 // all forward-reaching paths. When bound, an expected frame for the 49 // frame. For backward jumps, the merge code is generated at the edge 63 // access to a current frame. 94 void set_entry_frame(VirtualFrame* frame) { 95 entry_frame_ = frame; 108 // Emit a jump to the target. There must be a current frame at the 109 // jump and there will be no current frame after the jump. 114 // frame at the branch. The current frame will fall through to the 120 // Bind a jump target. If there is no current frame at the bindin [all...] |