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

1 2 3 4 5 67 8 91011>>

  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
FilterFunction.java 43 public Frame execute(KeyValueMap inputMap) {
68 if (entry.getValue() instanceof Frame) {
69 mFilter.pushInputFrame(entry.getKey(), (Frame)entry.getValue());
83 Frame result = null;
96 public Frame executeWithArgList(Object... inputs) {
112 public void setInputFrame(String input, Frame frame) {
113 mFilter.setInputFrame(input, frame);
  /external/webkit/Source/WebCore/bindings/generic/
BindingSecurityBase.cpp 35 #include "Frame.h"
40 DOMWindow* BindingSecurityBase::getDOMWindow(Frame* frame)
42 return frame->domWindow();
45 Frame* BindingSecurityBase::getFrame(Node* node)
47 return node->document()->frame();
72 // Helper to check if the current execution context can access a target frame.
101 // detached context of the same frame as the blank page.
102 if (targetSecurityOrigin->isEmpty() && activeWindow->frame() == targetWindow->frame())
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
ScriptState.h 45 class Frame;
66 ScriptState* mainWorldScriptState(Frame*);
  /external/webkit/Source/WebCore/bindings/v8/
ScriptController.h 60 class Frame;
67 ScriptController(Frame*);
113 // Creates a property of the global object of a frame.
114 void bindToWindowObject(Frame*, const String& key, NPObject*);
121 static bool canAccessFromCurrentOrigin(Frame*);
135 // Returns the frame for the entered context. See comments in
137 static Frame* retrieveFrameForEnteredContext();
139 // Returns the frame for the current context. See comments in
141 static Frame* retrieveFrameForCurrentContext();
143 // Check whether it is safe to access a frame in another domain
    [all...]
  /external/webkit/Source/WebCore/html/
ImageDocument.h 36 static PassRefPtr<ImageDocument> create(Frame* frame, const KURL& url)
38 return adoptRef(new ImageDocument(frame, url));
50 ImageDocument(Frame*, const KURL&);
  /external/webkit/Source/WebCore/loader/
FormState.cpp 32 #include "Frame.h"
37 inline FormState::FormState(PassRefPtr<HTMLFormElement> form, StringPairVector& textFieldValuesToAdopt, PassRefPtr<Frame> sourceFrame, FormSubmissionTrigger formSubmissionTrigger)
45 PassRefPtr<FormState> FormState::create(PassRefPtr<HTMLFormElement> form, StringPairVector& textFieldValuesToAdopt, PassRefPtr<Frame> sourceFrame, FormSubmissionTrigger formSubmissionTrigger)
NetscapePlugInStreamLoader.h 53 static PassRefPtr<NetscapePlugInStreamLoader> create(Frame*, NetscapePlugInStreamLoaderClient*, const ResourceRequest&);
66 NetscapePlugInStreamLoader(Frame*, NetscapePlugInStreamLoaderClient*);
  /external/webkit/Source/WebCore/page/
BarInfo.cpp 33 #include "Frame.h"
38 BarInfo::BarInfo(Frame* frame, Type type)
39 : m_frame(frame)
44 Frame* BarInfo::frame() const function in class:WebCore::BarInfo
DragController.h 41 class Frame;
78 bool mayStartDragAtEventLocation(const Frame*, const IntPoint& framePos, Node*);
83 bool startDrag(Frame* src, Clipboard*, DragOperation srcOp, const PlatformMouseEvent& dragEvent, const IntPoint& dragOrigin, bool isDHTMLDrag);
93 bool dispatchTextInputEventFor(Frame*, DragData*);
107 IntRect selectionDraggingRect(Frame*);
108 bool doDrag(Frame* src, Clipboard* clipboard, DragImageRef dragImage, const KURL& linkURL, const KURL& imageURL, Node* node, IntPoint& dragLoc, IntPoint& dragImageOffset);
109 void doImageDrag(Element*, const IntPoint&, const IntRect&, Clipboard*, Frame*, IntPoint&);
110 void doSystemDrag(DragImageRef, const IntPoint&, const IntPoint&, Clipboard*, Frame*, bool forLink);
Performance.cpp 40 #include "Frame.h"
44 Performance::Performance(Frame* frame)
45 : m_frame(frame)
49 Frame* Performance::frame() const function in class:WebCore::Performance
PerformanceNavigation.cpp 37 #include "Frame.h"
42 PerformanceNavigation::PerformanceNavigation(Frame* frame)
43 : m_frame(frame)
47 Frame* PerformanceNavigation::frame() const function in class:WebCore::PerformanceNavigation
  /external/webkit/Source/WebCore/page/mac/
WebCoreFrameView.h 29 class Frame;
41 - (WebCore::Frame*)_web_frame;
  /external/webkit/Source/WebCore/svg/
SVGDocument.h 36 static PassRefPtr<SVGDocument> create(Frame* frame, const KURL& url)
38 return adoptRef(new SVGDocument(frame, url));
52 SVGDocument(Frame*, const KURL&);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
ContextMenuClientAndroid.cpp 41 void ContextMenuClientAndroid::searchWithGoogle(const Frame*) { notImplemented(); }
42 void ContextMenuClientAndroid::lookUpInDictionary(Frame*) { notImplemented(); }
  /external/webkit/Source/WebKit/chromium/src/
ContextMenuClientImpl.h 51 virtual void lookUpInDictionary(WebCore::Frame*) {}
52 virtual void searchWithGoogle(const WebCore::Frame*) {}
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
ContextMenuClientGtk.h 51 virtual void searchWithGoogle(const WebCore::Frame*);
52 virtual void lookUpInDictionary(WebCore::Frame*);
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
ContextMenuClientQt.cpp 60 void ContextMenuClientQt::lookUpInDictionary(Frame*)
81 void ContextMenuClientQt::searchWithGoogle(const Frame*)
FrameNetworkingContextQt.cpp 31 FrameNetworkingContextQt::FrameNetworkingContextQt(Frame* frame, QObject* originatingObject, bool mimeSniffingEnabled, QNetworkAccessManager* networkAccessManager)
32 : FrameNetworkingContext(frame)
39 PassRefPtr<FrameNetworkingContextQt> FrameNetworkingContextQt::create(Frame* frame, QObject* originatingObject, bool mimeSniffingEnabled, QNetworkAccessManager* networkAccessManager)
41 return adoptRef(new FrameNetworkingContextQt(frame, originatingObject, mimeSniffingEnabled, networkAccessManager));
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebContextMenuClient.h 43 virtual void searchWithGoogle(const WebCore::Frame*);
44 virtual void lookUpInDictionary(WebCore::Frame*);
WebFrameNetworkingContext.h 28 static PassRefPtr<WebFrameNetworkingContext> create(WebCore::Frame*, const WTF::String& userAgent);
31 WebFrameNetworkingContext(WebCore::Frame* frame, const WTF::String& userAgent)
32 : WebCore::FrameNetworkingContext(frame)
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
ContextMenuClientWinCE.cpp 65 void ContextMenuClientWinCE::searchWithGoogle(const Frame*)
70 void ContextMenuClientWinCE::lookUpInDictionary(Frame*)
  /external/webkit/Source/WebKit/wx/WebKitSupport/
ContextMenuClientWx.cpp 66 void ContextMenuClientWx::searchWithGoogle(const Frame*)
71 void ContextMenuClientWx::lookUpInDictionary(Frame*)
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebContextMenuClient.h 53 virtual void searchWithGoogle(const WebCore::Frame*);
54 virtual void lookUpInDictionary(WebCore::Frame*);
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
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/filterpacks/java/android/filterpacks/base/
FrameStore.java 22 import android.filterfw.core.Frame;
40 addInputPort("frame");
44 // Get input frame
45 Frame input = pullInput("frame");
47 // Store frame

Completed in 119 milliseconds

1 2 3 4 5 67 8 91011>>