HomeSort by relevance Sort by last modified time
    Searched refs:Frame (Results 76 - 100 of 603) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/WebCore/storage/
StorageEventDispatcher.h 43 static void dispatch(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame);
  /external/webkit/WebKit/win/
WebActionPropertyBag.h 32 #include <WebCore/Frame.h>
39 static WebActionPropertyBag* createInstance(const WebCore::NavigationAction&, PassRefPtr<WebCore::HTMLFormElement>, PassRefPtr<WebCore::Frame>);
42 WebActionPropertyBag(const WebCore::NavigationAction&, PassRefPtr<WebCore::HTMLFormElement>, PassRefPtr<WebCore::Frame>);
65 RefPtr<WebCore::Frame> m_frame;
WebFramePolicyListener.h 39 class Frame;
44 static WebFramePolicyListener* createInstance(PassRefPtr<WebCore::Frame>);
46 WebFramePolicyListener(PassRefPtr<WebCore::Frame>);
68 RefPtr<WebCore::Frame> m_frame;
  /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...]
ContextMenuClientQt.cpp 60 void ContextMenuClientQt::lookUpInDictionary(Frame*)
81 void ContextMenuClientQt::searchWithGoogle(const Frame*)
  /external/webkit/WebCore/bindings/objc/
DOMAbstractView.mm 35 #import "Frame.h"
39 #define IMPL reinterpret_cast<WebCore::Frame*>(_internal)
58 @implementation DOMAbstractView (Frame)
75 return reinterpret_cast<WebCore::Frame*>(wrapper->_internal)->domWindow();
84 WebCore::Frame* frame = value->frame();
85 if (!frame)
87 if (DOMAbstractView *wrapper = getDOMWrapper(frame))
90 wrapper->_internal = reinterpret_cast<DOMObjectInternal*>(frame);
    [all...]
  /external/webkit/WebCore/page/mac/
WebCoreFrameView.h 29 class Frame;
39 - (WebCore::Frame*)_web_frame;
  /external/webkit/WebCore/page/win/
FrameWin.cpp 39 void computePageRectsForFrame(Frame* frame, const IntRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, Vector<IntRect>& outPages, int& outPageHeight)
41 PrintContext printContext(frame);
48 DragImageRef Frame::dragImageForSelection()
  /external/webkit/WebCore/svg/
SVGDocument.h 36 static PassRefPtr<SVGDocument> create(Frame* frame)
38 return adoptRef(new SVGDocument(frame));
54 SVGDocument(Frame*);
  /external/webkit/WebKit/android/WebCoreSupport/
DragClientAndroid.cpp 42 void* DragClientAndroid::createDragImageForLink(KURL&, String const&, Frame*) { return NULL; }
44 void DragClientAndroid::startDrag(void*, IntPoint const&, IntPoint const&, Clipboard*, Frame*, bool) {}
DragClientAndroid.h 43 virtual void startDrag(DragImageRef dragImage, const IntPoint& dragImageOrigin, const IntPoint& eventPos, Clipboard*, Frame*, bool linkDrag = false);
44 virtual DragImageRef createDragImageForLink(KURL&, const String& label, Frame*);
  /external/webkit/WebKit/haiku/WebCoreSupport/
ContextMenuClientHaiku.cpp 58 void ContextMenuClientHaiku::lookUpInDictionary(Frame*)
79 void ContextMenuClientHaiku::searchWithGoogle(const Frame*)
DragClientHaiku.h 41 const IntPoint& eventPos, Clipboard*, Frame*, bool linkDrag = false);
42 virtual DragImageRef createDragImageForLink(KURL&, const String& label, Frame*);
  /external/webkit/WebKit/mac/WebCoreSupport/
WebContextMenuClient.h 43 virtual void searchWithGoogle(const WebCore::Frame*);
44 virtual void lookUpInDictionary(WebCore::Frame*);
  /external/webkit/WebKit/win/WebCoreSupport/
WebContextMenuClient.h 44 virtual void searchWithGoogle(const WebCore::Frame*);
45 virtual void lookUpInDictionary(WebCore::Frame*);
  /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/v8/
ScriptController.h 51 class Frame;
60 ScriptController(Frame*);
108 // Creates a property of the global object of a frame.
109 void bindToWindowObject(Frame*, const String& key, NPObject*);
124 // Returns the frame for the entered context. See comments in
126 static Frame* retrieveFrameForEnteredContext();
128 // Returns the frame for the current context. See comments in
130 static Frame* retrieveFrameForCurrentContext();
132 // Check whether it is safe to access a frame in another domain.
133 static bool isSafeScript(Frame*);
    [all...]
  /external/webkit/WebCore/platform/
Pasteboard.h 43 // knowledge of the frame and editor or moved into the editing directory.
72 class Frame;
83 static void writeSelection(NSPasteboard* pasteboard, Range* selectedRange, bool canSmartCopyOrDelete, Frame* frame);
84 static void writeURL(NSPasteboard* pasteboard, NSArray* types, const KURL& url, const String& titleStr, Frame* frame);
89 void writeSelection(Range*, bool canSmartCopyOrDelete, Frame*);
91 void writeURL(const KURL&, const String&, Frame* = 0);
98 PassRefPtr<DocumentFragment> documentFragment(Frame*, PassRefPtr<Range>, bool allowPlainText, bool& chosePlainText);
99 String plainText(Frame* = 0)
    [all...]
  /external/webkit/WebCore/page/
ChromeClient.h 48 class Frame;
92 // The Frame pointer provides the ChromeClient with context about which
93 // Frame wants to create the new Page. Also, the newly created window
96 virtual Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&) = 0;
119 virtual bool runBeforeUnloadConfirmPanel(const String& message, Frame* frame) = 0;
123 virtual void runJavaScriptAlert(Frame*, const String&) = 0;
124 virtual bool runJavaScriptConfirm(Frame*, const String&) = 0;
125 virtual bool runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result) = 0;
141 virtual void contentsSizeChanged(Frame*, const IntSize&) const = 0
    [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;
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;
  /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/WebCore/dom/
Touch.cpp 36 static int contentsX(Frame* frame)
38 if (!frame)
40 FrameView* frameView = frame->view();
43 return frameView->scrollX() / frame->pageZoomFactor();
46 static int contentsY(Frame* frame)
48 if (!frame)
50 FrameView* frameView = frame->view();
53 return frameView->scrollY() / frame->pageZoomFactor()
    [all...]
  /external/webkit/WebCore/loader/
PolicyChecker.h 43 class Frame;
50 PolicyChecker(Frame*);
83 Frame* m_frame;

Completed in 507 milliseconds

1 2 34 5 6 7 8 91011>>