HomeSort by relevance Sort by last modified time
    Searched refs:Frame (Results 701 - 725 of 919) sorted by null

<<21222324252627282930>>

  /external/webkit/Source/WebCore/page/
DOMSelection.cpp 34 #include "Frame.h"
44 static Node* selectionShadowAncestor(Frame* frame)
46 Node* node = frame->selection()->selection().base().anchorNode();
55 DOMSelection::DOMSelection(Frame* frame)
56 : m_frame(frame)
60 Frame* DOMSelection::frame() const function in class:WebCore::DOMSelection
  /external/webkit/Source/WebKit/chromium/src/
WebMediaPlayerClientImpl.cpp 10 #include "Frame.h"
55 WebMediaPlayerClient* client, Frame* frame)
57 WebFrameImpl* webFrame = WebFrameImpl::fromFrame(frame);
205 // Video frame object is owned by WebMediaPlayer. Before destroying
221 Frame* frame = static_cast<HTMLMediaElement*>(m_mediaPlayer->mediaPlayerClient())->document()->frame(); local
222 m_webMediaPlayer.set(createWebMediaPlayer(this, frame));
557 Frame* frame = static_cast<HTMLMediaElement*> local
    [all...]
EditorClientImpl.h 129 void modifySelection(WebCore::Frame*, WebCore::KeyboardEvent*);
  /external/webkit/Source/WebKit/mac/Plugins/
WebBaseNetscapePluginView.mm 50 #import <WebCore/Frame.h>
126 - (id)initWithFrame:(NSRect)frame
136 self = [super initWithFrame:frame];
219 Frame* frame = core([self webFrame]);
220 if (!frame)
222 [request _web_setHTTPReferrer:frame->loader()->outgoingReferrer()];
435 Frame* frame = core([self webFrame]);
436 if (!frame)
    [all...]
  /external/webkit/Source/WebKit/wx/
WebFrame.cpp 32 #include "Frame.h"
93 RefPtr<WebCore::Frame> newFrame = WebCore::Frame::create(container->m_impl->page, parentFrame, loaderClient);
95 m_impl->frame = newFrame.get();
102 parentFrame->document()->frame()->tree()->appendChild(newFrame.get());
108 m_impl->frame->ref();
110 m_impl->frame->init();
121 WebCore::Frame* wxWebFrame::GetFrame()
124 return m_impl->frame;
131 if (m_impl->frame && m_impl->frame->loader()
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Simulator.java 83 * the passed-in frame to represent the end result.
86 * @param frame {@code non-null;} frame to operate on
88 public void simulate(ByteBlock bb, Frame frame) {
91 visitor.setFrame(frame);
100 frame.annotate(ex);
107 * making appropriate calls on the given frame.
110 * @param frame {@code non-null;} frame to operate o
199 private Frame frame; field in class:Simulator.SimVisitor
    [all...]
ValueAwareMachine.java 41 public void run(Frame frame, int offset, int opcode) {
160 frame.makeInitialized(thisType);
197 storeResults(frame);
  /external/webkit/Source/WebCore/accessibility/
AXObjectCache.h 67 // Returns the root object for a specific frame.
68 AccessibilityObject* rootObjectForFrame(Frame*);
  /external/webkit/Source/WebCore/bindings/js/
JSEventListener.cpp 24 #include "Frame.h"
83 Frame* frame = window->impl()->frame(); local
84 if (!frame)
86 // The window must still be active in its frame. See <https://bugs.webkit.org/show_bug.cgi?id=21921>.
87 // FIXME: A better fix for this may be to change DOMWindow::frame() to not return a frame the detached window used to be in.
88 if (frame->domWindow() != window->impl())
91 ScriptController* script = frame->script()
    [all...]
ScheduledAction.cpp 30 #include "Frame.h"
120 JSDOMWindow* window = toJSDOMWindow(document->frame(), m_isolatedWorld.get());
124 RefPtr<Frame> frame = window->impl()->frame();
125 if (!frame || !frame->script()->canExecuteScripts(AboutToExecuteScript))
128 frame->script()->setProcessingTimerCallback(true);
134 frame->script()->executeScriptInWorld(m_isolatedWorld.get(), m_code);
136 frame->script()->setProcessingTimerCallback(false)
    [all...]
  /external/webkit/Source/WebCore/editing/
SpellChecker.cpp 32 #include "Frame.h"
47 SpellChecker::SpellChecker(Frame* frame)
48 : m_frame(frame)
  /external/webkit/Source/WebCore/inspector/
InspectorAgent.h 143 void didClearWindowObjectInWorld(Frame*, DOMWrapperWorld*);
  /external/webkit/Source/WebCore/loader/
PolicyChecker.cpp 36 #include "Frame.h"
43 PolicyChecker::PolicyChecker(Frame* frame)
44 : m_frame(frame)
  /external/webkit/Source/WebCore/loader/cache/
CachedResource.h 46 class Frame;
  /external/webkit/Source/WebCore/platform/mac/
WidgetMac.mm 39 #import "Frame.h"
106 // FIXME: Should move this to Chrome; bad layering that this knows about Frame.
112 Frame* frame = Frame::frameForWidget(this);
113 if (!frame)
121 if (Page* page = frame->page()) {
168 return enclosingIntRect([getOuterView() frame]);
189 if (!NSEqualRects(f, [outerView frame])) {
294 NSRect viewFrame = [view frame];
    [all...]
  /external/webkit/Source/WebCore/platform/network/
ResourceHandleInternal.h 53 class Frame;
  /external/webkit/Source/WebCore/platform/network/curl/
ResourceHandleCurl.cpp 100 // The frame could be null if the ResourceHandle is not associated to any
101 // Frame, e.g. if we are downloading a file.
102 // If the frame is not null but the page is null this must be an attempted
104 // If both the frame and the page are not null the context is valid.
178 bool ResourceHandle::willLoadFromCache(ResourceRequest&, Frame*)
  /external/webkit/Source/WebCore/xml/
XSLTProcessor.cpp 32 #include "Frame.h"
69 const String& sourceEncoding, const String& sourceMIMEType, Node* sourceNode, Frame* frame)
77 result = Document::create(frame, sourceIsDocument ? ownerDocument->url() : KURL());
80 result = DOMImplementation::createDocument(sourceMIMEType, frame, sourceIsDocument ? ownerDocument->url() : KURL(), false);
84 if (frame) {
85 if (FrameView* view = frame->view())
87 result->setTransformSourceDocument(frame->document());
88 frame->setDocument(result);
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
DragClientGtk.cpp 28 #include "Frame.h"
100 void DragClient::startDrag(DragImageRef image, const IntPoint& dragImageOrigin, const IntPoint& eventPos, Clipboard* clipboard, Frame* frame, bool linkDrag)
104 WebKitWebView* webView = webkit_web_frame_get_web_view(kit(frame));
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebContextMenuClient.mm 333 void WebContextMenuClient::searchWithGoogle(const Frame*)
338 void WebContextMenuClient::lookUpInDictionary(Frame* frame)
340 WebHTMLView* htmlView = (WebHTMLView*)[[kit(frame) frameView] documentView];
WebEditorClient.h 79 virtual NSArray *pasteboardTypesForSelection(WebCore::Frame*);
  /external/webkit/Source/WebKit/wx/WebKitSupport/
FrameLoaderClientWx.cpp 37 #include "Frame.h"
98 void FrameLoaderClientWx::setFrame(wxWebFrame *frame)
100 m_webFrame = frame;
101 m_frame = m_webFrame->m_impl->frame;
774 Frame* FrameLoaderClientWx::dispatchCreatePage(const NavigationAction&)
838 PassRefPtr<Frame> FrameLoaderClientWx::createFrame(const KURL& url, const String& name, HTMLFrameOwnerElement* ownerElement,
852 RefPtr<Frame> childFrame = adoptRef(newFrame->m_impl->frame);
854 // The creation of the frame may have run arbitrary JavaScript that removed it from the page already.
860 // The frame's onload handler may have removed it from the document
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
WebDragClientMac.mm 93 void WebDragClient::startDrag(RetainPtr<NSImage> image, const IntPoint& point, const IntPoint&, Clipboard*, Frame* frame, bool linkDrag)
101 m_page->send(Messages::WebPageProxy::SetDragImage(frame->view()->contentsToWindow(point), handle, linkDrag));
123 void WebDragClient::declareAndWriteDragImage(NSPasteboard *pasteboard, DOMElement *element, NSURL *URL, NSString *title, WebCore::Frame*)
  /external/webkit/Source/WebKit2/WebProcess/WebPage/ca/
LayerTreeHostCA.cpp 32 #include <WebCore/Frame.h>
  /external/linux-tools-perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
SchedGui.py 17 class RootFrame(wx.Frame):
24 wx.Frame.__init__(self, parent, id, title)

Completed in 1449 milliseconds

<<21222324252627282930>>