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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/page/
FrameTree.h 27 class Frame;
32 FrameTree(Frame* thisFrame, Frame* parentFrame)
46 Frame* parent(bool checkForDisconnectedFrame = false) const;
47 void setParent(Frame* parent) { m_parent = parent; }
49 Frame* nextSibling() const { return m_nextSibling.get(); }
50 Frame* previousSibling() const { return m_previousSibling; }
51 Frame* firstChild() const { return m_firstChild.get(); }
52 Frame* lastChild() const { return m_lastChild; }
55 bool isDescendantOf(const Frame* ancestor) const
    [all...]
PerformanceNavigation.h 41 class Frame;
45 static PassRefPtr<PerformanceNavigation> create(Frame* frame) { return adoptRef(new PerformanceNavigation(frame)); }
47 Frame* frame() const;
61 PerformanceNavigation(Frame*);
63 Frame* m_frame;
Screen.h 38 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;
BarInfo.h 37 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;
FocusController.h 38 class Frame;
48 void setFocusedFrame(PassRefPtr<Frame>);
49 Frame* focusedFrame() const { return m_focusedFrame.get(); }
50 Frame* focusedOrMainFrame() const;
55 bool setFocusedNode(Node*, PassRefPtr<Frame>);
71 RefPtr<Frame> m_focusedFrame;
  /external/webkit/Source/WebCore/page/brew/
FrameBrew.cpp 26 #include "Frame.h"
32 DragImageRef Frame::nodeImage(Node*)
38 DragImageRef Frame::dragImageForSelection()
  /external/webkit/Source/WebCore/page/gtk/
FrameGtk.cpp 25 #include "Frame.h"
31 DragImageRef Frame::nodeImage(Node*)
37 DragImageRef Frame::dragImageForSelection()
  /external/webkit/Source/WebCore/page/haiku/
FrameHaiku.cpp 29 #include "Frame.h"
36 DragImageRef Frame::nodeImage(Node*)
42 DragImageRef Frame::dragImageForSelection()
  /external/webkit/Source/WebCore/page/wx/
FrameWx.cpp 27 #include "Frame.h"
32 DragImageRef Frame::nodeImage(Node*)
38 DragImageRef Frame::dragImageForSelection()
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
Program.java 20 import android.filterfw.core.Frame;
27 public abstract void process(Frame[] inputs, Frame output);
29 public void process(Frame input, Frame output) {
30 Frame[] inputs = new Frame[1];
FrameManager.java 20 import android.filterfw.core.Frame;
31 public abstract Frame newFrame(FrameFormat format);
33 public abstract Frame newBoundFrame(FrameFormat format, int bindingType, long bindingId);
35 public Frame duplicateFrame(Frame frame) {
36 Frame result = newFrame(frame.getFormat());
37 result.setDataFromFrame(frame);
41 public Frame duplicateFrameToTarget(Frame frame, int newTarget)
    [all...]
CachedFrameManager.java 20 import android.filterfw.core.Frame;
33 private SortedMap<Integer, Frame> mAvailableFrames;
40 mAvailableFrames = new TreeMap<Integer, Frame>();
44 public Frame newFrame(FrameFormat format) {
45 Frame result = findAvailableFrame(format, Frame.NO_BINDING, 0);
49 result.setTimestamp(Frame.TIMESTAMP_NOT_SET);
54 public Frame newBoundFrame(FrameFormat format, int bindingType, long bindingId) {
55 Frame result = findAvailableFrame(format, bindingType, bindingId);
59 result.setTimestamp(Frame.TIMESTAMP_NOT_SET)
124 Frame frame = mAvailableFrames.get(oldest); local
134 Frame frame = entry.getValue(); local
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/specialization/
V8BindingState.h 39 class Frame;
50 static void immediatelyReportUnsafeAccessTo(Frame*);
55 Frame* activeFrame();
56 Frame* firstFrame();
61 bool allowsAccessFromFrame(Frame*);
  /external/webkit/Source/WebCore/bindings/generic/
BindingSecurityBase.h 37 class Frame;
45 static DOMWindow* getDOMWindow(Frame*);
46 static Frame* getFrame(Node*);
  /external/webkit/Source/WebCore/loader/
FrameNetworkingContext.h 23 #include "Frame.h"
36 FrameNetworkingContext(Frame* frame)
37 : m_frame(frame)
41 Frame* frame() const { return m_frame; } function in class:WebCore::FrameNetworkingContext
46 Frame* m_frame;
  /external/webkit/Source/WebCore/page/efl/
FrameEfl.cpp 29 #include "Frame.h"
35 DragImageRef Frame::nodeImage(Node* node)
41 DragImageRef Frame::dragImageForSelection()
  /external/webkit/Source/WebCore/page/win/
FrameCairoWin.cpp 27 #include "Frame.h"
37 HBITMAP imageFromSelection(Frame* frame, bool forceBlackText)
43 DragImageRef Frame::nodeImage(Node*)
FrameWin.h 36 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/Source/WebCore/css/
StyleMedia.h 34 class Frame;
38 static PassRefPtr<StyleMedia> create(Frame* frame)
40 return adoptRef(new StyleMedia(frame));
50 StyleMedia(Frame*);
52 Frame* m_frame;
  /external/webkit/Source/WebCore/bindings/objc/
DOMAbstractViewFrame.h 31 @interface DOMAbstractView (Frame)
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
FrameNetworkingContextEfl.h 38 static PassRefPtr<FrameNetworkingContextEfl> create(WebCore::Frame* frame)
40 return adoptRef(new FrameNetworkingContextEfl(frame));
43 WebCore::Frame* coreFrame() const { return frame(); }
46 FrameNetworkingContextEfl(WebCore::Frame* frame)
47 : WebCore::FrameNetworkingContext(frame)
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
FrameNetworkingContextGtk.h 29 static PassRefPtr<FrameNetworkingContextGtk> create(WebCore::Frame* frame)
31 return adoptRef(new FrameNetworkingContextGtk(frame));
34 WebCore::Frame* coreFrame() const { return frame(); }
37 FrameNetworkingContextGtk(WebCore::Frame* frame)
38 : WebCore::FrameNetworkingContext(frame)
  /external/webkit/Source/WebKit/wx/WebKitSupport/
FrameNetworkingContextWx.h 35 static PassRefPtr<FrameNetworkingContextWx> create(WebCore::Frame* frame)
37 return adoptRef(new FrameNetworkingContextWx(frame));
40 WebCore::Frame* coreFrame() const { return frame(); }
43 FrameNetworkingContextWx(WebCore::Frame* frame)
44 : WebCore::FrameNetworkingContext(frame)
  /external/webkit/Source/WebKit/android/wds/
DebugServer.h 38 class Frame;
53 void addFrame(Frame* frame) {
54 m_frames.append(frame);
56 void removeFrame(Frame* frame) {
57 size_t i = m_frames.find(frame);
61 Frame* getFrame(unsigned idx) {
68 WTF::Vector<Frame*> m_frames;
  /external/webkit/Source/WebCore/bindings/v8/
ScriptCachedFrameData.h 39 class Frame;
44 ScriptCachedFrameData(Frame*) { }
47 void restore(Frame*) { }
67 class Frame;
73 ScriptCachedFrameData(Frame*);
76 void restore(Frame*);

Completed in 270 milliseconds

1 2 3 4 5 6 7 8 91011>>