HomeSort by relevance Sort by last modified time
    Searched refs:Frame (Results 226 - 250 of 921) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/html/
PluginDocument.h 36 static PassRefPtr<PluginDocument> create(Frame* frame, const KURL& url)
38 return adoptRef(new PluginDocument(frame, url));
55 PluginDocument(Frame*, const KURL&);
  /external/webkit/Source/WebCore/inspector/
InspectorApplicationCacheAgent.h 37 class Frame;
59 void updateApplicationCacheStatus(Frame*);
InspectorDOMStorageAgent.h 38 class Frame;
70 void didUseDOMStorage(StorageArea*, bool isLocalStorage, Frame*);
  /external/webkit/Source/WebCore/loader/
SubresourceLoader.h 44 static PassRefPtr<SubresourceLoader> create(Frame*, SubresourceLoaderClient*, const ResourceRequest&, SecurityCheckPolicy = DoSecurityCheck, bool sendResourceLoadCallbacks = true, bool shouldContentSniff = true, const String& optionalOutgoingReferrer = String(), bool shouldBufferData = true);
49 SubresourceLoader(Frame*, SubresourceLoaderClient*, bool sendResourceLoadCallbacks, bool shouldContentSniff);
SinkDocument.cpp 50 SinkDocument::SinkDocument(Frame* frame, const KURL& url)
51 : HTMLDocument(frame, url)
  /external/webkit/Source/WebCore/page/
Screen.cpp 34 #include "Frame.h"
41 Screen::Screen(Frame* frame)
42 : m_frame(frame)
46 Frame* Screen::frame() const function in class:WebCore::Screen
  /external/webkit/Source/WebCore/page/animation/
AnimationController.h 41 class Frame;
49 AnimationController(Frame*);
  /external/webkit/Source/WebCore/page/qt/
FrameQt.cpp 25 #include "Frame.h"
35 DragImageRef Frame::nodeImage(Node*)
41 DragImageRef Frame::dragImageForSelection()
  /external/webkit/Source/WebKit/android/wds/
Command.h 33 class Frame;
49 // The dispatcher function called with a Frame for context and the established
53 typedef bool (*DispatchFunction)(const Frame*, const Connection*);
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebDragClient.h 38 virtual void startDrag(WebCore::DragImageRef dragImage, const WebCore::IntPoint& dragPos, const WebCore::IntPoint& eventPos, WebCore::Clipboard*, WebCore::Frame*, bool linkDrag);
39 virtual void declareAndWriteDragImage(NSPasteboard*, DOMElement*, NSURL*, NSString*, WebCore::Frame*);
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebDragClient.h 48 virtual void startDrag(WebCore::DragImageRef dragImage, const WebCore::IntPoint& dragImageOrigin, const WebCore::IntPoint& eventPos, WebCore::Clipboard*, WebCore::Frame*, bool linkDrag = false);
51 virtual void declareAndWriteDragImage(NSPasteboard*, DOMElement*, NSURL*, NSString*, WebCore::Frame*);
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
FindController.h 36 class Frame;
66 bool updateFindIndicator(WebCore::Frame* selectedFrame, bool isShowingOverlay);
  /system/media/mca/filterfw/java/android/filterfw/basefilters/
FrameBranch.java 22 import android.filterfw.core.Frame;
53 // Get input frame
54 Frame input = pullInput("in");
FrameFetch.java 22 import android.filterfw.core.Frame;
49 addOutputPort("frame", mFormat == null ? FrameFormat.unspecified() : mFormat);
53 Frame output = context.fetchFrame(mKey);
55 pushOutput("frame", output);
57 closeOutputPort("frame");
FrameSource.java 22 import android.filterfw.core.Frame;
35 @GenerateFieldPort(name = "frame", hasDefault = true)
36 private Frame mFrame = null;
47 addOutputPort("frame", mFormat);
54 pushOutput("frame", mFrame);
59 closeOutputPort("frame");
  /external/sonivox/jet_tools/JetCreator/
JetHelp.py 28 frame = wx.Frame(None, -1, JetDefs.MAIN_HELPTITLE, size=(800,600)) variable
29 html1 = wx.html.HtmlWindow(frame, -1)
31 frame.Center()
32 frame.Show()
  /external/webkit/Source/WebCore/bindings/v8/
V8DOMWindowShell.h 45 class Frame;
48 // V8WindowShell represents all the per-global object state for a Frame that
52 static PassRefPtr<V8DOMWindowShell> create(Frame*);
56 // Update document object of the frame.
96 V8DOMWindowShell(Frame*);
112 Frame* m_frame;
V8DataGridDataSource.cpp 38 #include "Frame.h"
45 V8DataGridDataSource::V8DataGridDataSource(v8::Handle<v8::Value> dataSource, Frame* frame)
47 , m_frame(frame)
V8Helpers.cpp 43 return V8Proxy::mainWorldContext(object->rootObject->frame());
49 Frame* frame = object->rootObject->frame(); local
50 return V8Proxy::retrieve(frame);
  /external/webkit/Source/WebCore/platform/chromium/
DragDataChromium.cpp 37 #include "Frame.h"
51 bool DragData::containsURL(Frame*, FilenameConversionPolicy filenamePolicy) const
57 String DragData::asURL(Frame*, FilenameConversionPolicy filenamePolicy, String* title) const
88 String DragData::asPlainText(Frame*) const
119 PassRefPtr<DocumentFragment> DragData::asFragment(Frame* frame, PassRefPtr<Range>, bool, bool&) const
141 RefPtr<DocumentFragment> fragment = createFragmentFromMarkup(frame->document(),
  /external/webkit/Source/WebCore/platform/qt/
DragDataQt.cpp 31 #include "Frame.h"
84 String DragData::asPlainText(Frame* frame) const
93 return asURL(frame, DoNotConvertFilenames, 0);
110 bool DragData::containsURL(Frame*, FilenameConversionPolicy filenamePolicy) const
118 String DragData::asURL(Frame*, FilenameConversionPolicy filenamePolicy, String*) const
132 PassRefPtr<DocumentFragment> DragData::asFragment(Frame* frame, PassRefPtr<Range>, bool, bool&) const
135 return createFragmentFromMarkup(frame->document(), m_platformDragData->html(), "", FragmentScriptingNotAllowed);
  /external/webkit/Source/WebCore/plugins/
PluginStream.h 47 class Frame;
60 static PassRefPtr<PluginStream> create(PluginStreamClient* client, Frame* frame, const ResourceRequest& request, bool sendNotification, void* notifyData, const NPPluginFuncs* functions, NPP instance, const PluginQuirkSet& quirks)
62 return adoptRef(new PluginStream(client, frame, request, sendNotification, notifyData, functions, instance, quirks));
86 PluginStream(PluginStreamClient*, Frame*, const ResourceRequest&, bool sendNotification, void* notifyData, const NPPluginFuncs*, NPP instance, const PluginQuirkSet&);
98 Frame* m_frame;
  /external/webkit/Source/WebCore/storage/
StorageEventDispatcher.cpp 33 #include "Frame.h"
41 void StorageEventDispatcher::dispatch(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin, Frame* sourceFrame)
51 // We need to copy all relevant frames from every page to a vector since sending the event to one frame might mutate the frame tree
53 Vector<RefPtr<Frame> > frames;
56 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree()->traverseNext())
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
IDBFactoryBackendProxy.h 48 virtual void open(const String& name, PassRefPtr<WebCore::IDBCallbacks>, PassRefPtr<WebCore::SecurityOrigin>, WebCore::Frame*, const String& dataDir, int64_t maximumSize, BackingStoreType);
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
DragClientEfl.cpp 58 void DragClientEfl::startDrag(DragImageRef, const IntPoint&, const IntPoint&, Clipboard*, Frame*, bool)

Completed in 182 milliseconds

1 2 3 4 5 6 7 8 91011>>