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

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/haiku/
DragDataHaiku.cpp 66 String DragData::asPlainText(Frame*) const
83 bool DragData::containsURL(Frame*, FilenameConversionPolicy filenamePolicy) const
89 String DragData::asURL(Frame*, FilenameConversionPolicy filenamePolicy, String* title) const
95 PassRefPtr<DocumentFragment> DragData::asFragment(Frame*, PassRefPtr<Range>, bool, bool&) const
  /external/webkit/Source/WebCore/storage/
StorageEventDispatcher.h 43 static void dispatch(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame);
IDBFactoryBackendInterface.h 41 class Frame;
59 virtual void open(const String& name, PassRefPtr<IDBCallbacks>, PassRefPtr<SecurityOrigin>, Frame*, const String& dataDir, int64_t maximumSize, BackingStoreType) = 0;
  /external/webkit/Source/WebKit/win/
WebActionPropertyBag.h 30 #include <WebCore/Frame.h>
36 static WebActionPropertyBag* createInstance(const WebCore::NavigationAction&, PassRefPtr<WebCore::HTMLFormElement>, PassRefPtr<WebCore::Frame>);
39 WebActionPropertyBag(const WebCore::NavigationAction&, PassRefPtr<WebCore::HTMLFormElement>, PassRefPtr<WebCore::Frame>);
62 RefPtr<WebCore::Frame> m_frame;
WebFramePolicyListener.h 36 class Frame;
41 static WebFramePolicyListener* createInstance(PassRefPtr<WebCore::Frame>);
43 WebFramePolicyListener(PassRefPtr<WebCore::Frame>);
65 RefPtr<WebCore::Frame> m_frame;
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/gtk/
WebContextMenuClientGtk.cpp 36 void WebContextMenuClient::lookUpInDictionary(Frame*)
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/qt/
WebContextMenuClientQt.cpp 35 void WebContextMenuClient::lookUpInDictionary(Frame*)
WebFrameNetworkingContext.cpp 29 WebFrameNetworkingContext::WebFrameNetworkingContext(Frame* frame)
30 : FrameNetworkingContext(frame)
36 PassRefPtr<WebFrameNetworkingContext> WebFrameNetworkingContext::create(Frame* frame)
38 return adoptRef(new WebFrameNetworkingContext(frame));
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
WebContextMenuClientWin.cpp 34 void WebContextMenuClient::lookUpInDictionary(Frame*)
  /external/webkit/Source/WebCore/platform/
Pasteboard.h 43 // knowledge of the frame and editor or moved into the editing directory.
77 class Frame;
89 static void writeSelection(NSPasteboard*, NSArray* pasteboardTypes, Range* selectedRange, bool canSmartCopyOrDelete, Frame*);
90 static void writeURL(NSPasteboard* pasteboard, NSArray* types, const KURL& url, const String& titleStr, Frame* frame);
97 void writeSelection(Range*, bool canSmartCopyOrDelete, Frame*);
99 void writeURL(const KURL&, const String&, Frame* = 0);
103 String asURL(Frame*);
107 PassRefPtr<DocumentFragment> documentFragment(Frame*, PassRefPtr<Range>, bool allowPlainText, bool& chosePlainText);
108 String plainText(Frame* = 0)
    [all...]
  /external/webkit/Source/JavaScriptCore/heap/
HandleStack.h 42 class Frame {
50 void enterScope(Frame&);
51 void leaveScope(Frame&);
59 void zapTo(Frame&);
66 Frame m_frame;
69 inline void HandleStack::enterScope(Frame& lastFrame)
80 inline void HandleStack::zapTo(Frame& lastFrame)
87 if (lastFrame.m_end != m_frame.m_end) { // Zapping to a frame in a different block.
105 inline void HandleStack::leaveScope(Frame& lastFrame)
113 if (lastFrame.m_end != m_frame.m_end) // Popping to a frame in a different block
    [all...]
  /external/webkit/Source/WebCore/bindings/objc/
DOMAbstractView.mm 35 #import "Frame.h"
39 #define IMPL reinterpret_cast<WebCore::Frame*>(_internal)
58 @implementation DOMAbstractView (Frame)
75 return reinterpret_cast<WebCore::Frame*>(wrapper->_internal)->domWindow();
84 WebCore::Frame* frame = value->frame();
85 if (!frame)
87 if (DOMAbstractView *wrapper = getDOMWrapper(frame))
90 wrapper->_internal = reinterpret_cast<DOMObjectInternal*>(frame);
    [all...]
  /external/webkit/Source/WebCore/html/
MediaDocument.h 37 static PassRefPtr<MediaDocument> create(Frame* frame, const KURL& url)
39 return adoptRef(new MediaDocument(frame, url));
46 MediaDocument(Frame*, const KURL&);
  /external/webkit/Source/WebCore/page/win/
FrameWin.cpp 39 void computePageRectsForFrame(Frame* frame, const IntRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, Vector<IntRect>& outPages, int& outPageHeight)
41 PrintContext printContext(frame);
48 DragImageRef Frame::dragImageForSelection()
  /external/webkit/Source/WebCore/wml/
WMLDocument.h 35 static PassRefPtr<WMLDocument> create(Frame* frame, const KURL& url)
37 return adoptRef(new WMLDocument(frame, url));
50 WMLDocument(Frame*, const KURL&);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
DragClientAndroid.cpp 42 void* DragClientAndroid::createDragImageForLink(KURL&, String const&, Frame*) { return NULL; }
44 void DragClientAndroid::startDrag(void*, IntPoint const&, IntPoint const&, Clipboard*, Frame*, bool) {}
DragClientAndroid.h 43 virtual void startDrag(DragImageRef dragImage, const IntPoint& dragImageOrigin, const IntPoint& eventPos, Clipboard*, Frame*, bool linkDrag = false);
44 virtual DragImageRef createDragImageForLink(KURL&, const String& label, Frame*);
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
ContextMenuClientHaiku.cpp 58 void ContextMenuClientHaiku::lookUpInDictionary(Frame*)
79 void ContextMenuClientHaiku::searchWithGoogle(const Frame*)
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebContextMenuClient.h 43 virtual void searchWithGoogle(const WebCore::Frame*);
44 virtual void lookUpInDictionary(WebCore::Frame*);
WebFrameNetworkingContext.h 24 static PassRefPtr<WebFrameNetworkingContext> create(WebCore::Frame* frame)
26 return adoptRef(new WebFrameNetworkingContext(frame));
30 WebFrameNetworkingContext(WebCore::Frame* frame)
31 : WebCore::FrameNetworkingContext(frame)
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
ContextMenuClientWinCE.h 45 virtual void searchWithGoogle(const WebCore::Frame*);
46 virtual void lookUpInDictionary(WebCore::Frame*);
FrameNetworkingContextWinCE.h 34 static PassRefPtr<FrameNetworkingContextWinCE> create(WebCore::Frame* frame, const WTF::String& userAgent)
36 return adoptRef(new FrameNetworkingContextWinCE(frame, userAgent));
44 FrameNetworkingContextWinCE(WebCore::Frame* frame, const WTF::String& userAgent);
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
WebContextMenuClientMac.mm 33 #import <WebCore/Frame.h>
42 void WebContextMenuClient::lookUpInDictionary(Frame* frame)
44 m_page->performDictionaryLookupForSelection(DictionaryPopupInfo::ContextMenu, frame, frame->selection()->selection());
68 Frame* mainFrame = m_page->corePage()->mainFrame();
70 Frame* selectionFrame = mainFrame;
WebFrameNetworkingContext.h 29 static PassRefPtr<WebFrameNetworkingContext> create(WebCore::Frame* frame)
31 return adoptRef(new WebFrameNetworkingContext(frame));
35 WebFrameNetworkingContext(WebCore::Frame* frame)
36 : WebCore::FrameNetworkingContext(frame)
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
StreamPort.java 25 private Frame mFrame;
41 public void setFrame(Frame frame) {
42 assignFrame(frame, true);
46 public void pushFrame(Frame frame) {
47 assignFrame(frame, false);
50 protected synchronized void assignFrame(Frame frame, boolean persistent) {
52 checkFrameType(frame, persistent)
    [all...]

Completed in 326 milliseconds

1 2 3 45 6 7 8 91011>>