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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/page/
FrameDestructionObserver.h 31 class Frame;
35 explicit FrameDestructionObserver(Frame*);
40 Frame* frame() const { return m_frame; } function in class:WebCore::FrameDestructionObserver
44 void observeFrame(Frame*);
46 Frame* m_frame;
FrameTree.h 27 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* ancestor) const
    [all...]
DOMWindowProperty.h 32 class Frame;
36 explicit DOMWindowProperty(Frame*);
41 Frame* frame() const { return m_frame; } function in class:WebCore::DOMWindowProperty
46 Frame* m_frame;
TouchDisambiguation.h 38 class Frame;
41 void findGoodTouchTargets(const IntRect& touchBox, Frame* mainFrame, Vector<IntRect>& goodTargets);
CreateWindow.h 34 class Frame;
37 Frame* createWindow(const String& urlString, const AtomicString& frameName, const WindowFeatures&,
38 DOMWindow* activeWindow, Frame* firstFrame, Frame* openerFrame, DOMWindow::PrepareDialogFunction = 0, void* functionContext = 0);
PageGroupLoadDeferrer.h 28 class Frame;
38 Vector<RefPtr<Frame>, 16> m_deferredFrames;
PageLifecycleObserver.h 34 class Frame;
45 virtual void didCommitLoad(Frame*) { }
PerformanceNavigation.h 41 class Frame;
45 static PassRefPtr<PerformanceNavigation> create(Frame* frame) { return adoptRef(new PerformanceNavigation(frame)); }
58 explicit PerformanceNavigation(Frame*);
Screen.h 40 class Frame;
44 static PassRefPtr<Screen> create(Frame *frame) { return adoptRef(new Screen(frame)); }
56 explicit Screen(Frame*);
BarProp.h 39 class Frame;
45 static PassRefPtr<BarProp> create(Frame* frame, Type type) { return adoptRef(new BarProp(frame, type)); }
51 BarProp(Frame*, Type);
MemoryInfo.h 41 class Frame;
45 static PassRefPtr<MemoryInfo> create(Frame* frame) { return adoptRef(new MemoryInfo(frame)); }
52 explicit MemoryInfo(Frame*);
  /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/chromium_org/third_party/WebKit/Source/core/storage/
StorageArea.h 35 class Frame;
45 // FIXME: We should pass Document instead of Frame. Also, that parameter should go first.
46 virtual unsigned length(ExceptionState&, Frame* sourceFrame) = 0;
47 virtual String key(unsigned index, ExceptionState&, Frame* sourceFrame) = 0;
48 virtual String getItem(const String& key, ExceptionState&, Frame* sourceFrame) = 0;
49 virtual void setItem(const String& key, const String& value, ExceptionState&, Frame* sourceFrame) = 0;
50 virtual void removeItem(const String& key, ExceptionState&, Frame* sourceFrame) = 0;
51 virtual void clear(ExceptionState&, Frame* sourceFrame) = 0;
52 virtual bool contains(const String& key, ExceptionState&, Frame* sourceFrame) = 0;
54 virtual bool canAccessStorage(Frame*) = 0
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
UserTypingGestureIndicator.h 34 class Frame;
43 explicit UserTypingGestureIndicator(Frame*);
DocumentInit.h 40 class Frame;
46 explicit DocumentInit(const KURL& url = KURL(), Frame* frame = 0, HTMLImport* import = 0)
48 , m_frame(frame)
53 Frame* frame() const { return m_frame; } function in class:WebCore::DocumentInit
61 Frame* ownerFrame() const;
68 Frame* frameForSecurityContext() const;
71 Frame* m_frame;
  /external/chromium_org/chrome_frame/infobars/
infobar_content.h 21 class Frame {
23 virtual ~Frame() {}
30 }; // class Frame
34 // Prepares the content to display in the provided frame.
36 // The frame pointer remains valid until the InfobarContent instance is
38 virtual bool InstallInFrame(Frame* frame) = 0;
41 // Dimensions are relative to the origin of the frame window.
  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleMedia.h 36 class Frame;
40 static PassRefPtr<StyleMedia> create(Frame* frame) { return adoptRef(new StyleMedia(frame));}
46 explicit StyleMedia(Frame*);
  /external/chromium_org/third_party/WebKit/Source/core/loader/
IconController.h 38 class Frame;
45 explicit IconController(Frame*);
56 Frame* m_frame;
MixedContentChecker.h 38 class Frame;
46 MixedContentChecker(Frame*);
58 Frame* m_frame;
  /external/chromium_org/third_party/WebKit/Source/web/
PageWidgetDelegate.h 40 class Frame;
56 virtual void handleMouseMove(WebCore::Frame& mainFrame, const WebMouseEvent&);
57 virtual void handleMouseLeave(WebCore::Frame& mainFrame, const WebMouseEvent&);
58 virtual void handleMouseDown(WebCore::Frame& mainFrame, const WebMouseEvent&);
59 virtual void handleMouseUp(WebCore::Frame& mainFrame, const WebMouseEvent&);
60 virtual bool handleMouseWheel(WebCore::Frame& mainFrame, const WebMouseWheelEvent&);
64 virtual bool handleTouchEvent(WebCore::Frame& mainFrame, const WebTouchEvent&);
StorageAreaProxy.h 39 class Frame;
51 virtual unsigned length(ExceptionState&, Frame* sourceFrame);
52 virtual String key(unsigned index, ExceptionState&, Frame* sourceFrame);
53 virtual String getItem(const String& key, ExceptionState&, Frame* sourceFrame);
54 virtual void setItem(const String& key, const String& value, ExceptionState&, Frame* sourceFrame);
55 virtual void removeItem(const String& key, ExceptionState&, Frame* sourceFrame);
56 virtual void clear(ExceptionState&, Frame* sourceFrame);
57 virtual bool contains(const String& key, ExceptionState&, Frame* sourceFrame);
59 virtual bool canAccessStorage(Frame*);
77 mutable Frame* m_canAccessStorageCachedFrame
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/plugins/
DOMMimeTypeArray.h 34 class Frame;
39 static PassRefPtr<DOMMimeTypeArray> create(Frame* frame) { return adoptRef(new DOMMimeTypeArray(frame)); }
48 explicit DOMMimeTypeArray(Frame*);
DOMPluginArray.h 34 class Frame;
39 static PassRefPtr<DOMPluginArray> create(Frame* frame) { return adoptRef(new DOMPluginArray(frame)); }
50 explicit DOMPluginArray(Frame*);

Completed in 295 milliseconds

1 2 3 4 5 6 7 8 91011>>