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

1 2 34 5 6 7 8 91011>>

  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
SimpleFrameManager.java 20 import android.filterfw.core.Frame;
37 public Frame newFrame(FrameFormat format) {
42 public Frame newBoundFrame(FrameFormat format, int bindingType, long bindingId) {
43 Frame result = null;
59 private Frame createNewFrame(FrameFormat format) {
60 Frame result = null;
83 throw new RuntimeException("Unsupported frame target type: " +
90 public Frame retainFrame(Frame frame) {
    [all...]
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
ChromeClientHaiku.h 62 virtual void focusedFrameChanged(Frame*);
64 virtual Page* createWindow(Frame*, const FrameLoadRequest&, const WebCore::WindowFeatures&, const WebCore::NavigationAction&);
65 virtual Page* createModalDialog(Frame*, const FrameLoadRequest&);
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);
115 virtual void contentsSizeChanged(Frame*, const IntSize&) const;
129 void print(Frame*);
    [all...]
  /external/webkit/Source/WebKit/wx/WebKitSupport/
ChromeClientWx.h 59 virtual void focusedFrameChanged(Frame*);
61 virtual Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&, const NavigationAction&);
62 virtual Page* createModalDialog(Frame*, const FrameLoadRequest&);
91 Frame* frame);
95 virtual void runJavaScriptAlert(Frame*, const String&);
96 virtual bool runJavaScriptConfirm(Frame*, const String&);
97 virtual bool runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result);
115 virtual void contentsSizeChanged(Frame*, const IntSize&) const;
122 virtual void print(Frame*);
    [all...]
  /external/webkit/Source/WebCore/page/
FrameTree.cpp 24 #include "Frame.h"
38 for (Frame* child = firstChild(); child; child = child->tree()->nextSibling())
49 m_uniqueName = AtomicString(); // Remove our old frame name so it's not considered in uniqueChildName.
59 Frame* FrameTree::parent(bool checkForDisconnectedFrame) const
66 bool FrameTree::transferChild(PassRefPtr<Frame> child)
68 Frame* oldParent = child->tree()->parent();
78 // We need to ensure that the child still has a unique frame name with respect to its new parent.
85 void FrameTree::appendChild(PassRefPtr<Frame> child)
92 void FrameTree::actuallyAppendChild(PassRefPtr<Frame> child)
95 Frame* oldLast = m_lastChild
147 Frame* frame; local
273 Frame* frame = m_thisFrame; local
328 Frame* frame = m_thisFrame; local
    [all...]
Frame.h 82 class Frame : public RefCounted<Frame>, public TiledBackingStoreClient {
84 static PassRefPtr<Frame> create(Page*, HTMLFrameOwnerElement*, FrameLoaderClient*);
92 ~Frame();
121 RenderView* contentRenderer() const; // Root of the render tree for the document contained in this frame.
122 RenderPart* ownerRenderer() const; // Renderer for the element that contains this frame.
126 // ======== All public functions below this point are candidates to move out of Frame into another class. ========
145 static Frame* frameForWidget(const Widget*);
155 void keepAlive(); // Used to keep the frame alive when running a script that might destroy it.
210 Frame(Page*, HTMLFrameOwnerElement*, FrameLoaderClient*)
    [all...]
ContextMenuClient.h 36 class Frame;
54 virtual void searchWithGoogle(const Frame*) = 0;
55 virtual void lookUpInDictionary(Frame*) = 0;
DragClient.h 52 class Frame;
64 virtual void startDrag(DragImageRef dragImage, const IntPoint& dragImageOrigin, const IntPoint& eventPos, Clipboard*, Frame*, bool linkDrag = false) = 0;
71 virtual void declareAndWriteDragImage(NSPasteboard*, DOMElement*, NSURL*, NSString*, Frame*) {};
  /dalvik/dx/src/com/android/dx/cf/code/
Machine.java 27 * upon a {@link Frame}. A machine conceptually contains four arbitrary-value
51 * @param frame {@code non-null;} frame to operate on
54 public void popArgs(Frame frame, int count);
64 * @param frame {@code non-null;} frame to operate on
67 public void popArgs(Frame frame, Prototype prototype);
74 * @param frame {@code non-null;} frame to operate o
    [all...]
  /external/webkit/Source/WebCore/platform/chromium/
ClipboardChromium.h 41 class Frame;
50 ClipboardType, PassRefPtr<ChromiumDataObject>, ClipboardAccessPolicy, Frame*);
76 virtual void declareAndWriteDragImage(Element*, const KURL&, const String& title, Frame*);
77 virtual void writeURL(const KURL&, const String&, Frame*);
78 virtual void writeRange(Range*, Frame*);
88 ClipboardChromium(ClipboardType, PassRefPtr<ChromiumDataObject>, ClipboardAccessPolicy, Frame*);
93 Frame* m_frame;
  /external/webkit/Source/WebCore/platform/mac/
ClipboardMac.h 43 class Frame;
49 static PassRefPtr<ClipboardMac> create(ClipboardType clipboardType, NSPasteboard *pasteboard, ClipboardAccessPolicy policy, Frame* frame)
51 return adoptRef(new ClipboardMac(clipboardType, pasteboard, policy, frame));
72 virtual void declareAndWriteDragImage(Element*, const KURL&, const String& title, Frame*);
74 virtual void writeRange(Range*, Frame* frame);
75 virtual void writeURL(const KURL&, const String&, Frame* frame);
83 ClipboardMac(ClipboardType, NSPasteboard *, ClipboardAccessPolicy, Frame*);
    [all...]
  /external/webkit/Source/WebCore/css/
MediaQueryEvaluator.h 35 class Frame;
70 MediaQueryEvaluator(const String& acceptedMediaType, Frame*, RenderStyle*);
85 Frame* m_frame; // not owned
  /external/webkit/Source/WebCore/editing/
DeleteButtonController.h 34 class Frame;
42 DeleteButtonController(Frame*);
66 Frame* m_frame;
SpellChecker.h 36 class Frame;
42 explicit SpellChecker(Frame*);
58 Frame* m_frame;
  /external/webkit/Source/WebCore/platform/android/
ClipboardAndroid.h 57 virtual void declareAndWriteDragImage(Element*, const KURL&, const String&, Frame*);
58 virtual void writeURL(const KURL&, const String&, Frame*);
59 virtual void writeRange(Range*, Frame*);
GeolocationServiceBridge.h 34 class Frame;
44 GeolocationServiceBridge(ListenerInterface* listener, Frame* frame);
57 void startJavaImplementation(Frame* frame);
  /external/webkit/Source/WebCore/platform/brew/
ClipboardBrew.h 55 virtual void declareAndWriteDragImage(Element*, const KURL&, const String&, Frame*);
56 virtual void writeURL(const KURL&, const String&, Frame*);
57 virtual void writeRange(Range*, Frame*);
PasteboardBrew.cpp 55 void Pasteboard::writeSelection(Range* selectedRange, bool canSmartCopyOrDelete, Frame* frame)
65 void Pasteboard::writeURL(const KURL& url, const String& titleStr, Frame* frame)
81 String Pasteboard::plainText(Frame* frame)
87 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context, bool allowPlainText, bool& chosePlainText)
  /external/webkit/Source/WebCore/platform/gtk/
PasteboardHelper.h 33 #include "Frame.h"
44 GtkClipboard* getCurrentClipboard(Frame*);
45 GtkClipboard* getClipboard(Frame*) const;
46 GtkClipboard* getPrimarySelectionClipboard(Frame*) const;
  /external/webkit/Source/WebCore/bindings/js/
JSDataGridDataSource.cpp 33 #include "Frame.h"
43 JSDataGridDataSource::JSDataGridDataSource(JSC::JSValue dataSource, Frame* frame)
45 , m_frame(frame)
JSDataGridDataSource.h 39 class Frame;
44 static PassRefPtr<JSDataGridDataSource> create(JSC::JSValue dataSource, Frame* frame)
46 return adoptRef(new JSDataGridDataSource(dataSource, frame));
55 JSDataGridDataSource(JSC::JSValue, Frame*);
58 RefPtr<Frame> m_frame;
  /external/webkit/Source/WebCore/bindings/v8/
V8DataGridDataSource.h 44 class Frame;
49 static PassRefPtr<V8DataGridDataSource> create(v8::Handle<v8::Value> dataSource, Frame* frame)
51 return adoptRef(new V8DataGridDataSource(dataSource, frame));
60 V8DataGridDataSource(v8::Handle<v8::Value>, Frame*);
63 RefPtr<Frame> m_frame;
  /external/webkit/Source/WebCore/editing/chromium/
EditorChromium.cpp 36 #include "Frame.h"
40 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy, Frame* frame)
42 return ClipboardChromium::create(Clipboard::CopyAndPaste, ChromiumDataObject::create(Clipboard::CopyAndPaste), policy, frame);
  /external/webkit/Source/WebCore/html/
TextDocument.cpp 32 TextDocument::TextDocument(Frame* frame, const KURL& url)
33 : HTMLDocument(frame, url)
  /external/webkit/Source/WebCore/loader/
DocumentWriter.h 38 class Frame;
45 DocumentWriter(Frame*);
57 void setFrame(Frame* frame) { m_frame = frame; }
82 Frame* m_frame;
  /external/webkit/Source/WebCore/platform/efl/
PasteboardEfl.cpp 27 #include "Frame.h"
54 void Pasteboard::writeSelection(Range* selectedRange, bool canSmartCopyOrDelete, Frame* frame)
59 void Pasteboard::writeURL(const KURL&, const String&, Frame*)
80 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context,
87 String Pasteboard::plainText(Frame*)

Completed in 660 milliseconds

1 2 34 5 6 7 8 91011>>