HomeSort by relevance Sort by last modified time
    Searched full:frame (Results 151 - 175 of 3803) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/webkit/WebKit/mac/WebView/
WebFrame.mm 66 #import <WebCore/Frame.h>
212 Frame* core(WebFrame *frame)
214 return frame ? frame->_private->coreFrame : 0;
217 WebFrame *kit(Frame* frame)
219 return frame ? static_cast<WebFrameLoaderClient*>(frame->loader()->client())->webFrame() : nil;
234 Frame* coreFrame = core(webFrame)
    [all...]
  /external/srec/srec/clib/
fpi_tgt.c 39 * Create a Frame Buffer *
43 * responsible for publically declaring the location of the Frame Buffer
49 * Arguments: "fCnt" Size of Frame Stack
50 * "dimen" Size of Frame
54 * Returns: fepFramePkt* Pointer to frame buffer
74 /* Allocate space for the Frame Packet *
75 * and then accommodate the Frame Stack */
123 * Clear an existing Frame Buffer *
126 * Given a pointer to a previously created frame buffer structure
132 * Arguments: "frmPkt" Frame Buffer Structure Pointe
    [all...]
  /external/opencore/codecs_v2/omx/omx_amr/src/
amr_decode_frame.cpp 24 #include "frame.h"
41 // decoder returns -1 if there is an error in decoding a frame
47 // Find frame size for each frame type
64 , 1 // WBAMR Frame No Data
65 , 1 // WBAMR Frame No Data
83 , 1 // future use; 0 length but set to 1 to skip the frame type byte
84 , 1 // future use; 0 length but set to 1 to skip the frame type byte
85 , 1 // future use; 0 length but set to 1 to skip the frame type byte
86 , 1 // AMR Frame No Dat
    [all...]
  /external/webkit/WebCore/bindings/js/
JSLazyEventListener.cpp 23 #include "Frame.h"
77 Frame* frame = static_cast<Document*>(executionContext)->frame();
78 if (!frame)
81 ScriptController* scriptController = frame->script();
91 Frame* frame = window->impl()->frame(); local
92 if (!frame)
    [all...]
  /external/webkit/WebCore/bindings/v8/
V8ConsoleMessage.cpp 36 #include "Frame.h"
93 Frame* frame = V8Proxy::retrieveFrameForEnteredContext(); local
94 if (!frame)
96 Page* page = frame->page();
109 // Use the frame where JavaScript is called from.
110 Frame* frame = V8Proxy::retrieveFrameForEnteredContext(); local
111 if (!frame)
113 Page* page = frame->page()
    [all...]
  /external/webkit/WebCore/loader/
PluginDocument.cpp 30 #include "Frame.h"
92 m_embedElement->setAttribute(typeAttr, m_doc->frame()->loader()->responseMIMEType());
105 if (Frame* frame = m_doc->frame()) {
106 Settings* settings = frame->settings();
111 frame->loader()->client()->redirectDataToPlugin(renderer->widget());
112 frame->loader()->activeDocumentLoader()->mainResourceLoader()->setShouldBufferData(false);
139 PluginDocument::PluginDocument(Frame* frame)
    [all...]
ImageDocument.cpp 34 #include "Frame.h"
119 Frame* frame = m_doc->frame(); local
120 Settings* settings = frame->settings();
121 if (!frame->loader()->client()->allowImages(!settings || settings->areImagesEnabled()))
125 cachedImage->data(frame->loader()->documentLoader()->mainResourceData(), false);
136 RefPtr<SharedBuffer> data = m_doc->frame()->loader()->documentLoader()->mainResourceData();
140 if (m_doc->frame()->loader()->documentLoader()->isLoadingMultipartContent())
146 cachedImage->setResponse(m_doc->frame()->loader()->documentLoader()->response())
    [all...]
FTPDirectoryDocument.h 36 static PassRefPtr<FTPDirectoryDocument> create(Frame* frame)
38 return adoptRef(new FTPDirectoryDocument(frame));
42 FTPDirectoryDocument(Frame*);
PluginDocument.h 34 static PassRefPtr<PluginDocument> create(Frame* frame)
36 return adoptRef(new PluginDocument(frame));
40 PluginDocument(Frame*);
TextDocument.h 36 static PassRefPtr<TextDocument> create(Frame* frame)
38 return adoptRef(new TextDocument(frame));
42 TextDocument(Frame*);
  /external/webkit/WebKit/android/jni/
WebCoreFrameBridge.h 58 static WebFrame* getWebFrame(const WebCore::Frame* frame);
67 void loadStarted(WebCore::Frame* frame);
69 void transitionToCommitted(WebCore::Frame* frame);
71 void didFinishLoad(WebCore::Frame* frame);
81 void windowObjectCleared(WebCore::Frame* frame);
    [all...]
  /external/webkit/WebKit/chromium/src/
StorageEventDispatcherImpl.cpp 38 #include "Frame.h"
61 // We need to copy all relevant frames from every page to a vector since sending the event to one frame might mutate the frame tree
63 Vector<RefPtr<Frame> > frames;
68 for (Frame* frame = (*it)->mainFrame(); frame; frame = frame->tree()->traverseNext()) {
69 if (frame->document()->securityOrigin()->equal(securityOrigin)
    [all...]
WebFrameImpl.cpp 36 // WebView (for the toplevel frame only)
39 // Page O------- Frame (m_mainFrame) O-------O FrameView
44 // FrameLoader and Frame are formerly one object that was split apart because
47 // WebFrame is refcounted and has one ref on behalf of the FrameLoader/Frame.
53 // frame is created, and second in WebFrame::CreateChildFrame when sub-frames
54 // are created. WebKit will hook up this object to the FrameLoader/Frame
60 // The main frame is never destroyed and is re-used. The FrameLoader is re-used
61 // and a reference to the main frame is kept by the Page.
63 // When frame content is replaced, all subframes are destroyed. This happens
66 // Frame going away causes the FrameLoader to get deleted. In FrameLoader'
343 Frame* frame = local
350 Frame* frame = local
1572 RefPtr<Frame> frame = Frame::create(webViewImpl->page(), 0, &m_frameLoaderClient); local
    [all...]
  /external/webkit/WebKit/gtk/WebCoreSupport/
ChromeClientGtk.h 52 virtual WebCore::Page* createWindow(WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&);
77 virtual bool runBeforeUnloadConfirmPanel(const WebCore::String& message, WebCore::Frame* frame);
81 virtual void runJavaScriptAlert(WebCore::Frame*, const WebCore::String&);
82 virtual bool runJavaScriptConfirm(WebCore::Frame*, const WebCore::String&);
83 virtual bool runJavaScriptPrompt(WebCore::Frame*, const WebCore::String& message, const WebCore::String& defaultValue, WebCore::String& result);
95 virtual void contentsSizeChanged(WebCore::Frame*, const WebCore::IntSize&) const;
102 virtual void print(WebCore::Frame*);
104 virtual void exceededDatabaseQuota(WebCore::Frame*, const WebCore::String&);
109 virtual void runOpenPanel(WebCore::Frame*, PassRefPtr<WebCore::FileChooser>)
    [all...]
  /external/webkit/WebCore/bindings/generic/
BindingDOMWindow.h 34 #include "Frame.h"
47 static Frame* createWindow(State<Binding>*,
48 Frame* callingFrame,
49 Frame* enteredFrame,
50 Frame* openerFrame,
60 Frame* BindingDOMWindow<Binding>::createWindow(State<Binding>* state,
61 Frame* callingFrame,
62 Frame* enteredFrame,
63 Frame* openerFrame,
80 // For whatever reason, Firefox uses the entered frame to determin
    [all...]
  /external/webkit/WebCore/dom/
MouseRelatedEvent.cpp 28 #include "Frame.h"
54 Frame* frame = abstractView->frame();
55 if (!frame)
57 FrameView* frameView = frame->view();
60 return frameView->scrollX() / frame->pageZoomFactor();
67 Frame* frame = abstractView->frame();
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Frame.java 26 * Representation of a Java method execution frame. A frame consists
31 public final class Frame {
47 private Frame(LocalsArray locals, ExecutionStack stack) {
57 * subroutines this frame is nested in
59 private Frame(LocalsArray locals,
86 public Frame(int maxLocals, int maxStack) {
97 public Frame copy() {
98 return new Frame(locals.copy(), stack.copy(), subroutines);
112 * this frame with its initialized equivalent
    [all...]
  /external/webkit/WebKit/mac/Plugins/Hosted/
NetscapePluginInstanceProxy.mm 49 #import <WebCore/Frame.h>
128 // For full frame plug-ins, the first requestID will always be the one for the already
190 if (Frame* frame = core([m_pluginView webFrame]))
191 frame->script()->cleanupScriptObjectsForPlugin(m_pluginView);
293 void NetscapePluginInstanceProxy::windowFrameChanged(NSRect frame)
295 _WKPHPluginInstanceWindowFrameChanged(m_pluginHostProxy->port(), m_pluginID, frame.origin.x, frame.origin.y, frame.size.width, frame.size.height
    [all...]
  /external/webkit/WebKit/wx/
WebView.cpp 39 #include "Frame.h"
413 WebCore::Frame* frame = 0; local
415 frame = m_mainFrame->GetFrame();
417 if (!frame || !frame->view())
420 frame->view()->setTransparent(transparent);
425 WebCore::Frame* frame = 0; local
427 frame = m_mainFrame->GetFrame()
537 WebCore::Frame* frame = m_mainFrame->GetFrame(); local
575 WebCore::Frame* frame = m_mainFrame->GetFrame(); local
746 WebCore::Frame* frame = 0; local
884 WebCore::Frame* frame = 0; local
897 WebCore::Frame* frame = 0; local
    [all...]
  /dalvik/dx/tests/098-dex-jsr-ret-throw/
info.txt 3 such a way that it caused the frame merge and subroutine inliner
  /dalvik/vm/mterp/armv5te/
OP_NOP.S 7 /* insert fake function header to help gdb find the stack frame */
  /external/jsr305/javadoc/
overview-frame.html 28 <TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="allclasses-frame.html" target="packageFrame">All Classes</A></FONT>
33 <FONT CLASS="FrameItemFont"><A HREF="javax/annotation/package-frame.html" target="packageFrame">javax.annotation</A></FONT>
35 <FONT CLASS="FrameItemFont"><A HREF="javax/annotation/concurrent/package-frame.html" target="packageFrame">javax.annotation.concurrent</A></FONT>
37 <FONT CLASS="FrameItemFont"><A HREF="javax/annotation/meta/package-frame.html" target="packageFrame">javax.annotation.meta</A></FONT>
  /external/webkit/LayoutTests/storage/
close-during-stress-test-expected.txt 3 A JavaScript failure on the console is expected, however, as the global object is cleared when closing a frame. It actually helps to cause database activity by throwing an exception from a callback.
  /external/webkit/WebCore/html/
HTMLFrameOwnerElement.h 30 class Frame;
40 Frame* contentFrame() const { return m_contentFrame; }
60 friend class Frame;
65 Frame* m_contentFrame;
  /external/webkit/WebCore/manual-tests/resources/
nested-plug-ins-outer-frame.html 3 <iframe style="height: 200px; width: 200px;" id='inner' src='nested-plug-ins-inner-frame.html'></iframe>

Completed in 74 milliseconds

1 2 3 4 5 67 8 91011>>