Searched refs:Frame (Results 1 - 25 of 586) sorted by relevance

1234567891011>>

/external/webkit/WebCore/page/
H A DFrameTree.h27 class Frame;
31 FrameTree(Frame* thisFrame, Frame* parentFrame)
44 Frame* parent(bool checkForDisconnectedFrame = false) const;
45 void setParent(Frame* parent) { m_parent = parent; }
47 Frame* nextSibling() const { return m_nextSibling.get(); }
48 Frame* previousSibling() const { return m_previousSibling; }
49 Frame* firstChild() const { return m_firstChild.get(); }
50 Frame* lastChild() const { return m_lastChild; }
53 bool isDescendantOf(const Frame* ancesto
[all...]
H A DBarInfo.h37 class Frame;
43 static PassRefPtr<BarInfo> create(Frame* frame, Type type) { return adoptRef(new BarInfo(frame, type)); }
45 Frame* frame() const;
53 BarInfo(Frame*, Type);
54 Frame* m_frame;
H A DScreen.h38 class Frame;
42 static PassRefPtr<Screen> create(Frame *frame) { return adoptRef(new Screen(frame)); }
44 Frame* frame() const;
57 Screen(Frame*);
59 Frame* m_frame;
H A DFocusController.h36 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;
H A DFrameTree.cpp23 #include "Frame.h"
38 for (Frame* child = firstChild(); child; child = child->tree()->nextSibling())
57 Frame* FrameTree::parent(bool checkForDisconnectedFrame) const
64 void FrameTree::appendChild(PassRefPtr<Frame> child)
69 Frame* oldLast = m_lastChild;
83 void FrameTree::removeChild(Frame* child)
91 RefPtr<Frame>& newLocationForNext = m_firstChild == child ? m_firstChild : child->tree()->m_previousSibling->tree()->m_nextSibling;
92 Frame*& newLocationForPrevious = m_lastChild == child ? m_lastChild : child->tree()->m_nextSibling->tree()->m_previousSibling;
120 Vector<Frame*, 16> chain;
121 Frame* fram
[all...]
/external/webkit/WebCore/page/brew/
H A DFrameBrew.cpp26 #include "Frame.h"
32 DragImageRef Frame::dragImageForSelection()
/external/webkit/WebCore/page/gtk/
H A DFrameGtk.cpp25 #include "Frame.h"
31 DragImageRef Frame::dragImageForSelection()
/external/webkit/WebCore/page/haiku/
H A DFrameHaiku.cpp29 #include "Frame.h"
36 DragImageRef Frame::dragImageForSelection()
/external/webkit/WebCore/page/qt/
H A DFrameQt.cpp25 #include "Frame.h"
29 DragImageRef Frame::dragImageForSelection()
/external/webkit/WebCore/page/wx/
H A DFrameWx.cpp27 #include "Frame.h"
32 DragImageRef Frame::dragImageForSelection()
/external/webkit/WebCore/page/win/
H A DFrameCairoWin.cpp27 #include "Frame.h"
37 HBITMAP imageFromSelection(Frame* frame, bool forceBlackText)
43 HBITMAP Frame::nodeImage(Node*) const
H A DFrameWin.h36 class Frame;
39 HBITMAP imageFromSelection(Frame* frame, bool forceWhiteText);
40 void computePageRectsForFrame(Frame*, const IntRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, Vector<IntRect>& outPages, int& outPageHeight);
/external/webkit/WebCore/page/chromium/
H A DFrameChromium.cpp38 DragImageRef Frame::dragImageForSelection()
/external/webkit/WebCore/bindings/objc/
H A DDOMAbstractViewFrame.h31 @interface DOMAbstractView (Frame)
/external/webkit/WebCore/bindings/generic/
H A DBindingSecurityBase.h37 class Frame;
45 static DOMWindow* getDOMWindow(Frame*);
46 static Frame* getFrame(Node*);
/external/webkit/WebCore/css/
H A DMedia.h35 static PassRefPtr<Media> create(Frame* frame)
47 Media(Frame*);
49 Frame* m_frame;
/external/webkit/WebCore/platform/gtk/
H A DPasteboardHelper.h31 #include "Frame.h"
42 virtual GtkClipboard* getCurrentTarget(Frame*) const = 0;
43 virtual GtkClipboard* getClipboard(Frame*) const = 0;
44 virtual GtkClipboard* getPrimary(Frame*) const = 0;
/external/webkit/WebCore/bindings/v8/
H A DScriptCachedFrameData.h39 class Frame;
44 ScriptCachedFrameData(Frame*) { }
47 void restore(Frame*) { }
67 class Frame;
72 ScriptCachedFrameData(Frame*);
75 void restore(Frame*);
H A DScriptEventListener.h42 class Frame;
47 PassRefPtr<V8LazyEventListener> createAttributeEventListener(Frame*, Attribute*);
/external/webkit/WebCore/bindings/js/
H A DScriptCachedFrameData.h38 class Frame;
47 ScriptCachedFrameData(Frame*);
50 void restore(Frame*);
H A DScriptEventListener.h43 class Frame;
47 PassRefPtr<JSLazyEventListener> createAttributeEventListener(Frame*, Attribute*);
H A DScriptState.h39 class Frame;
49 ScriptState* mainWorldScriptState(Frame*);
/external/webkit/WebCore/loader/
H A DFTPDirectoryDocument.h36 static PassRefPtr<FTPDirectoryDocument> create(Frame* frame)
42 FTPDirectoryDocument(Frame*);
H A DPlaceholderDocument.h35 static PassRefPtr<PlaceholderDocument> create(Frame* frame)
43 PlaceholderDocument(Frame* frame) : Document(frame, false, false) { }
H A DPluginDocument.h34 static PassRefPtr<PluginDocument> create(Frame* frame)
40 PluginDocument(Frame*);

Completed in 836 milliseconds

1234567891011>>