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

1234567891011>>

/macosx-10.10/WebCore-7600.1.25/page/
H A DFrameTree.h27 class Frame;
35 FrameTree(Frame& thisFrame, Frame* parentFrame)
50 Frame* parent() const;
51 void setParent(Frame* parent) { m_parent = parent; }
53 Frame* nextSibling() const { return m_nextSibling.get(); }
54 Frame* previousSibling() const { return m_previousSibling; }
55 Frame* firstChild() const { return m_firstChild.get(); }
56 Frame* lastChild() const { return m_lastChild; }
58 bool isDescendantOf(const Frame* ancesto
[all...]
H A DFrameDestructionObserver.h33 class Frame;
37 WEBCORE_TESTING explicit FrameDestructionObserver(Frame*);
42 Frame* frame() const { return m_frame; }
46 WEBCORE_TESTING void observeFrame(Frame*);
48 Frame* m_frame;
H A DDOMWindowProperty.h32 class Frame;
36 explicit DOMWindowProperty(Frame*);
39 virtual void reconnectFrameFromPageCache(Frame*);
44 Frame* frame() const { return m_frame; }
49 Frame* m_frame;
H A DFrameSnapshotting.h37 class Frame;
51 std::unique_ptr<ImageBuffer> snapshotFrameRect(Frame&, const IntRect&, SnapshotOptions = SnapshotOptionsNone);
52 std::unique_ptr<ImageBuffer> snapshotNode(Frame&, Node&);
53 std::unique_ptr<ImageBuffer> snapshotSelection(Frame&, SnapshotOptions = SnapshotOptionsNone);
H A DPrintContext.h30 class Frame;
38 explicit PrintContext(Frame*);
41 Frame* frame() const { return m_frame; }
73 static String pageProperty(Frame* frame, const char* propertyName, int pageNumber);
74 static bool isPageBoxVisible(Frame* frame, int pageNumber);
75 static String pageSizeAndMarginsInPixels(Frame* frame, int pageNumber, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft);
76 static int numberOfPages(Frame*, const FloatSize& pageSizeInPixels);
80 static void spoolAllPagesWithBoundaries(Frame*, GraphicsContext&, const FloatSize& pageSizeInPixels);
83 Frame* m_frame;
H A DFrameDestructionObserver.cpp29 #include "Frame.h"
33 FrameDestructionObserver::FrameDestructionObserver(Frame* frame)
45 void FrameDestructionObserver::observeFrame(Frame* frame)
H A DMainFrame.h30 #include "Frame.h"
34 class MainFrame final : public Frame {
49 inline bool Frame::isMainFrame() const
H A DPageGroupLoadDeferrer.h28 class Frame;
38 Vector<RefPtr<Frame>, 16> m_deferredFrames;
H A DDOMWindowExtension.h38 class Frame;
42 static PassRefPtr<DOMWindowExtension> create(Frame* frame, DOMWrapperWorld& world)
48 virtual void reconnectFrameFromPageCache(Frame*) override;
56 DOMWindowExtension(Frame*, DOMWrapperWorld&);
59 RefPtr<Frame> m_disconnectedFrame;
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tkextlib/blt/tile/
H A Dframe.rb12 class Frame < Tk::Frame class in class:Tk.Tile
/macosx-10.10/WebCore-7600.1.25/loader/
H A DProgressTrackerClient.h31 class Frame;
43 virtual void progressStarted(Frame& originatingProgressFrame) = 0;
44 virtual void progressEstimateChanged(Frame& originatingProgressFrame) = 0;
45 virtual void progressFinished(Frame& originatingProgressFrame) = 0;
H A DFrameNetworkingContext.h24 #include "Frame.h"
47 explicit FrameNetworkingContext(Frame* frame)
52 Frame* frame() const { return m_frame; }
57 Frame* m_frame;
H A DSinkDocument.h35 static PassRefPtr<SinkDocument> create(Frame* frame, const URL& url)
41 SinkDocument(Frame*, const URL&);
/macosx-10.10/WebCore-7600.1.25/bindings/objc/
H A DDOMAbstractViewFrame.h31 @interface DOMAbstractView (Frame)
/macosx-10.10/WebCore-7600.1.25/page/win/
H A DFrameWin.h34 class Frame;
37 GDIObject<HBITMAP> imageFromRect(const Frame*, IntRect&);
38 GDIObject<HBITMAP> imageFromSelection(Frame*, bool forceBlackText);
39 void computePageRectsForFrame(Frame*, const IntRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, Vector<IntRect>& outPages, int& outPageHeight);
H A DFrameCairoWin.cpp27 #include "Frame.h"
35 GDIObject<HBITMAP> imageFromRect(const Frame*, IntRect&) argument
/macosx-10.10/WebCore-7600.1.25/inspector/
H A DInspectorTimelineAgent.h54 class Frame;
157 void willCallFunction(const String& scriptName, int scriptLine, Frame*);
158 void didCallFunction(Frame*);
160 void willDispatchEvent(const Event&, Frame*);
163 void didInvalidateLayout(Frame*);
164 void willLayout(Frame*);
167 void didScheduleStyleRecalculation(Frame*);
168 void willRecalculateStyle(Frame*);
171 void willPaint(Frame*);
174 void willScroll(Frame*);
[all...]
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DScriptCachedFrameData.h40 class Frame;
47 ScriptCachedFrameData(Frame&);
50 void restore(Frame&);
/macosx-10.10/WebCore-7600.1.25/css/
H A DStyleMedia.h36 class Frame;
40 static PassRefPtr<StyleMedia> create(Frame* frame) { return adoptRef(new StyleMedia(frame));}
46 explicit StyleMedia(Frame*);
/macosx-10.10/WebCore-7600.1.25/platform/efl/
H A DDragDataEfl.cpp58 String DragData::asPlainText(Frame*) const
73 bool DragData::containsURL(Frame*, FilenameConversionPolicy) const
78 String DragData::asURL(Frame*, FilenameConversionPolicy, String*) const
83 PassRefPtr<DocumentFragment> DragData::asFragment(Frame*, Range&, bool, bool&) const
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tkextlib/tile/
H A Dtframe.rb10 class TFrame < Tk::Frame
12 Frame = TFrame
16 class Tk::Tile::TFrame < Tk::Frame
32 #Tk.__set_toplevel_aliases__(:Ttk, Tk::Tile::Frame, :TkFrame)
34 :Ttk, Tk::Tile::Frame, :TkFrame)
/macosx-10.10/WebCore-7600.1.25/bindings/gobject/
H A DDOMObjectCache.h24 class Frame;
33 static void clearByFrame(WebCore::Frame* frame = 0);
/macosx-10.10/WebCore-7600.1.25/dom/
H A DUserTypingGestureIndicator.h34 class Frame;
43 explicit UserTypingGestureIndicator(Frame&);
/macosx-10.10/WebCore-7600.1.25/html/
H A DFTPDirectoryDocument.h36 static PassRefPtr<FTPDirectoryDocument> create(Frame* frame, const URL& url)
42 FTPDirectoryDocument(Frame*, const URL&);
H A DTextDocument.h34 static PassRefPtr<TextDocument> create(Frame* frame, const URL& url)
40 TextDocument(Frame*, const URL&);

Completed in 138 milliseconds

1234567891011>>