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

1 2 3 4 56 7 8 91011>>

  /external/webkit/Source/WebKit/android/WebCoreSupport/
ChromeClientAndroid.h 73 virtual void focusedFrameChanged(Frame*);
75 // The Frame pointer provides the ChromeClient with context about which
76 // Frame wants to create the new Page. Also, the newly created window
79 virtual Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&, const NavigationAction&);
102 virtual bool runBeforeUnloadConfirmPanel(const String& message, Frame* frame);
106 virtual void runJavaScriptAlert(Frame*, const String&);
107 virtual bool runJavaScriptConfirm(Frame*, const String&);
108 virtual bool runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result);
123 virtual void contentsSizeChanged(Frame*, const IntSize&) const
    [all...]
GeolocationPermissions.h 39 class Frame;
51 // origin specifies the scheme, host and port of particular frame. An
55 // Each instance handles permissions for a given main frame. The class
57 // - Non-remembered permissions last for the dureation of the main frame.
59 // - All permissions are shared between child frames of a main frame.
66 // the specified main frame (i.e. tab). The WebViewCore is used to
68 GeolocationPermissions(WebViewCore* webViewCore, WebCore::Frame* mainFrame);
71 // Queries the permission state for the specified frame. If the
75 // the same origin as the requesting frame.
76 void queryPermissionState(WebCore::Frame* frame)
    [all...]
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
ChromeClientQt.h 77 virtual void focusedFrameChanged(Frame*);
79 virtual Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&, const NavigationAction&);
102 virtual bool runBeforeUnloadConfirmPanel(const String& message, Frame*);
106 virtual void runJavaScriptAlert(Frame*, const String&);
107 virtual bool runJavaScriptConfirm(Frame*, const String&);
108 virtual bool runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result);
127 virtual void contentsSizeChanged(Frame*, const IntSize&) const;
134 virtual void print(Frame*);
136 virtual void exceededDatabaseQuota(Frame*, const String&);
152 virtual void attachRootGraphicsLayer(Frame*, GraphicsLayer*)
    [all...]
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebChromeClient.h 61 virtual void focusedFrameChanged(WebCore::Frame*);
63 virtual WebCore::Page* createWindow(WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&, const WebCore::NavigationAction&);
86 virtual bool runBeforeUnloadConfirmPanel(const WTF::String& message, WebCore::Frame* frame);
90 virtual void runJavaScriptAlert(WebCore::Frame*, const WTF::String&);
91 virtual bool runJavaScriptConfirm(WebCore::Frame*, const WTF::String&);
92 virtual bool runJavaScriptPrompt(WebCore::Frame*, const WTF::String& message, const WTF::String& defaultValue, WTF::String& result);
107 virtual void contentsSizeChanged(WebCore::Frame*, const WebCore::IntSize&) const;
116 virtual void print(WebCore::Frame*);
119 virtual void exceededDatabaseQuota(WebCore::Frame*, const WTF::String&)
    [all...]
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
ChromeClientWinCE.h 54 virtual void focusedFrameChanged(WebCore::Frame*);
56 // The Frame pointer provides the ChromeClient with context about which
57 // Frame wants to create the new Page. Also, the newly created window
60 virtual WebCore::Page* createWindow(WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&, const WebCore::NavigationAction&);
83 virtual bool runBeforeUnloadConfirmPanel(const WTF::String& message, WebCore::Frame* frame);
87 virtual void runJavaScriptAlert(WebCore::Frame*, const WTF::String&);
88 virtual bool runJavaScriptConfirm(WebCore::Frame*, const WTF::String&);
89 virtual bool runJavaScriptPrompt(WebCore::Frame*, const WTF::String& message, const WTF::String& defaultValue, WTF::String& result);
104 virtual void contentsSizeChanged(WebCore::Frame*, const WebCore::IntSize&) const
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/specialization/
V8BindingState.cpp 34 #include "Frame.h"
63 Frame* State<V8Binding>::activeFrame()
65 Frame* frame = V8Proxy::retrieveFrameForCallingContext(); local
66 if (!frame) {
72 frame = V8Proxy::retrieveFrameForEnteredContext();
74 return frame;
77 Frame* State<V8Binding>::firstFrame()
82 void State<V8Binding>::immediatelyReportUnsafeAccessTo(Frame* target)
92 bool State<V8Binding>::allowsAccessFromFrame(Frame* frame
    [all...]
  /external/webkit/Source/WebCore/loader/appcache/
DOMApplicationCache.h 44 class Frame;
49 static PassRefPtr<DOMApplicationCache> create(Frame* frame) { return adoptRef(new DOMApplicationCache(frame)); }
52 Frame* frame() const { return m_frame; } function in class:WebCore::DOMApplicationCache
81 DOMApplicationCache(Frame*);
90 Frame* m_frame;
  /external/webkit/Source/WebCore/page/
DOMSelection.h 39 class Frame;
48 static PassRefPtr<DOMSelection> create(Frame* frame) { return adoptRef(new DOMSelection(frame)); }
50 Frame* frame() const;
93 DOMSelection(Frame*);
99 Frame* m_frame;
Location.h 39 class Frame;
46 static PassRefPtr<Location> create(Frame* frame) { return adoptRef(new Location(frame)); }
48 Frame* frame() const { return m_frame; } function in class:WebCore::Location
79 Location(Frame*);
83 Frame* m_frame;
Frame.cpp 30 #include "Frame.h"
123 static WTF::RefCountedLeakCounter frameCounter("Frame");
126 static inline Frame* parentFromOwnerElement(HTMLFrameOwnerElement* ownerElement)
130 return ownerElement->document()->frame();
133 static inline float parentPageZoomFactor(Frame* frame)
135 Frame* parent = frame->tree()->parent();
141 static inline float parentTextZoomFactor(Frame* frame)
211 RefPtr<Frame> frame = adoptRef(new Frame(page, ownerElement, client)); local
587 Frame* frame = *it; local
    [all...]
  /external/webkit/Source/WebCore/platform/efl/
ClipboardEfl.cpp 30 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy, Frame*)
35 PassRefPtr<Clipboard> Clipboard::create(ClipboardAccessPolicy, DragData*, Frame*)
125 void ClipboardEfl::declareAndWriteDragImage(Element*, const KURL&, const String&, Frame*)
130 void ClipboardEfl::writeURL(const KURL&, const String&, Frame*)
135 void ClipboardEfl::writeRange(Range*, Frame*)
ClipboardEfl.h 52 virtual void declareAndWriteDragImage(Element*, const KURL&, const String&, Frame*);
53 virtual void writeURL(const KURL&, const String&, Frame*);
54 virtual void writeRange(Range*, Frame*);
  /dalvik/dx/src/com/android/dx/cf/code/
Frame.java 26 * Representation of a Java method execution frame. A frame consists
31 public final class Frame {
47 private Frame(LocalsArray locals, ExecutionStack stack) {
57 * subroutines this frame is nested in
59 private Frame(LocalsArray locals,
86 public Frame(int maxLocals, int maxStack) {
97 public Frame copy() {
98 return new Frame(locals.copy(), stack.copy(), subroutines);
112 * this frame with its initialized equivalent
    [all...]
  /external/webkit/Source/WebCore/dom/
Touch.cpp 36 static int contentsX(Frame* frame)
38 if (!frame)
40 FrameView* frameView = frame->view();
43 return frameView->scrollX() / frame->pageZoomFactor();
46 static int contentsY(Frame* frame)
48 if (!frame)
50 FrameView* frameView = frame->view();
53 return frameView->scrollY() / frame->pageZoomFactor()
    [all...]
  /external/webkit/Source/WebCore/loader/
PolicyChecker.h 43 class Frame;
51 PolicyChecker(Frame*);
84 Frame* m_frame;
ResourceLoadNotifier.h 39 class Frame;
49 ResourceLoadNotifier(Frame*);
70 Frame* m_frame;
  /external/webkit/Source/WebCore/platform/haiku/
ClipboardHaiku.h 61 virtual void declareAndWriteDragImage(Element*, const KURL&, const String& title, Frame*);
62 virtual void writeURL(const KURL&, const String&, Frame*);
63 virtual void writeRange(Range*, Frame*);
  /external/webkit/Source/WebCore/platform/wx/
ClipboardWx.h 59 virtual void declareAndWriteDragImage(Element*, const KURL&, const String& title, Frame*);
60 virtual void writeURL(const KURL&, const String&, Frame*);
61 virtual void writeRange(Range*, Frame*);
  /external/webkit/Source/WebCore/plugins/
DOMMimeType.h 23 #include "Frame.h"
37 static PassRefPtr<DOMMimeType> create(PassRefPtr<PluginData> pluginData, Frame* frame, unsigned index) { return adoptRef(new DOMMimeType(pluginData, frame, index)); }
51 DOMMimeType(PassRefPtr<PluginData>, Frame*, unsigned index);
53 Frame* m_frame;
DOMPlugin.h 35 static PassRefPtr<DOMPlugin> create(PluginData* pluginData, Frame* frame, unsigned index) { return adoptRef(new DOMPlugin(pluginData, frame, index)); }
54 DOMPlugin(PluginData*, Frame*, unsigned index);
56 Frame* m_frame;
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
ChromeClientGtk.h 58 virtual void focusedFrameChanged(WebCore::Frame*);
60 virtual WebCore::Page* createWindow(WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&, const WebCore::NavigationAction&);
85 virtual bool runBeforeUnloadConfirmPanel(const WTF::String& message, WebCore::Frame* frame);
89 virtual void runJavaScriptAlert(WebCore::Frame*, const WTF::String&);
90 virtual bool runJavaScriptConfirm(WebCore::Frame*, const WTF::String&);
91 virtual bool runJavaScriptPrompt(WebCore::Frame*, const WTF::String& message, const WTF::String& defaultValue, WTF::String& result);
106 virtual void contentsSizeChanged(WebCore::Frame*, const WebCore::IntSize&) const;
115 virtual void print(WebCore::Frame*);
117 virtual void exceededDatabaseQuota(WebCore::Frame*, const WTF::String&)
    [all...]
  /frameworks/base/media/mca/effect/java/android/media/effect/effects/
IdentityEffect.java 20 import android.filterfw.core.Frame;
37 Frame inputFrame = frameFromTexture(inputTexId, width, height);
38 Frame outputFrame = frameFromTexture(outputTexId, width, height);
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/text/
StringSource.java 22 import android.filterfw.core.Frame;
51 Frame output = env.getFrameManager().newFrame(mOutputFormat);
53 output.setTimestamp(Frame.TIMESTAMP_UNKNOWN);
ToUpperCase.java 22 import android.filterfw.core.Frame;
46 Frame input = pullInput("mixedcase");
49 Frame output = env.getFrameManager().newFrame(mOutputFormat);
  /external/webkit/Source/WebCore/editing/
EditorCommand.cpp 43 #include "Frame.h"
70 bool (*execute)(Frame*, Event*, EditorCommandSource, const String&);
71 bool (*isSupportedFromDOM)(Frame*);
72 bool (*isEnabled)(Frame*, Event*, EditorCommandSource);
73 TriState (*state)(Frame*, Event*);
74 String (*value)(Frame*, Event*);
90 static Frame* targetFrame(Frame* frame, Event* event)
93 return frame;
    [all...]

Completed in 577 milliseconds

1 2 3 4 56 7 8 91011>>