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

1 23 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/bindings/v8/
ScriptEventListener.h 43 class Frame;
47 PassRefPtr<V8LazyEventListener> createAttributeEventListener(Frame*, Attribute*);
  /external/webkit/Source/WebCore/dom/
UserTypingGestureIndicator.h 34 class Frame;
43 explicit UserTypingGestureIndicator(Frame*);
  /external/webkit/Source/WebCore/html/
FTPDirectoryDocument.h 36 static PassRefPtr<FTPDirectoryDocument> create(Frame* frame, const KURL& url)
38 return adoptRef(new FTPDirectoryDocument(frame, url));
42 FTPDirectoryDocument(Frame*, const KURL&);
TextDocument.h 34 static PassRefPtr<TextDocument> create(Frame* frame, const KURL& url)
36 return adoptRef(new TextDocument(frame, url));
40 TextDocument(Frame*, const KURL&);
  /external/webkit/Source/WebCore/loader/
PlaceholderDocument.h 35 static PassRefPtr<PlaceholderDocument> create(Frame* frame, const KURL& url)
37 return adoptRef(new PlaceholderDocument(frame, url));
43 PlaceholderDocument(Frame* frame, const KURL& url) : Document(frame, url, false, false) { }
SinkDocument.h 35 static PassRefPtr<SinkDocument> create(Frame* frame, const KURL& url)
37 return adoptRef(new SinkDocument(frame, url));
41 SinkDocument(Frame*, const KURL&);
FormState.h 36 class Frame;
48 static PassRefPtr<FormState> create(PassRefPtr<HTMLFormElement>, StringPairVector& textFieldValuesToAdopt, PassRefPtr<Frame>, FormSubmissionTrigger);
52 Frame* sourceFrame() const { return m_sourceFrame.get(); }
56 FormState(PassRefPtr<HTMLFormElement>, StringPairVector& textFieldValuesToAdopt, PassRefPtr<Frame>, FormSubmissionTrigger);
60 RefPtr<Frame> m_sourceFrame;
  /external/webkit/Source/WebCore/page/
PageGroupLoadDeferrer.h 28 class Frame;
38 Vector<RefPtr<Frame>, 16> m_deferredFrames;
Chrome.h 44 class Frame;
87 void contentsSizeChanged(Frame*, const IntSize&) const;
103 void focusedFrameChanged(Frame*) const;
105 Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&, const NavigationAction&) const;
127 bool runBeforeUnloadConfirmPanel(const String& message, Frame* frame);
131 void runJavaScriptAlert(Frame*, const String&);
132 bool runJavaScriptConfirm(Frame*, const String&);
133 bool runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result);
134 void setStatusbarText(Frame*, const String&)
    [all...]
History.h 36 class Frame;
43 static PassRefPtr<History> create(Frame* frame) { return adoptRef(new History(frame)); }
45 Frame* frame() const;
64 History(Frame*);
68 Frame* m_frame;
PerformanceTiming.h 44 class Frame;
49 static PassRefPtr<PerformanceTiming> create(Frame* frame) { return adoptRef(new PerformanceTiming(frame)); }
51 Frame* frame() const;
77 PerformanceTiming(Frame*);
85 Frame* m_frame;
  /external/webkit/Source/WebKit/android/WebCoreSupport/
ContextMenuClientAndroid.h 42 virtual void searchWithGoogle(const Frame*);
43 virtual void lookUpInDictionary(Frame*);
FrameNetworkingContextAndroid.h 40 static PassRefPtr<FrameNetworkingContextAndroid> create(WebCore::Frame* frame)
42 return adoptRef(new FrameNetworkingContextAndroid(frame));
46 FrameNetworkingContextAndroid(WebCore::Frame*);
  /external/webkit/Source/WebKit/chromium/src/
FrameNetworkingContextImpl.h 29 static PassRefPtr<FrameNetworkingContextImpl> create(WebCore::Frame* frame)
31 return adoptRef(new FrameNetworkingContextImpl(frame));
35 FrameNetworkingContextImpl(WebCore::Frame* frame)
36 : WebCore::FrameNetworkingContext(frame)
StorageAreaProxy.h 37 class Frame;
49 virtual String setItem(const String& key, const String& value, ExceptionCode& ec, Frame* sourceFrame);
50 virtual String removeItem(const String& key, Frame* sourceFrame);
51 virtual bool clear(Frame* sourceFrame);
55 void storageEvent(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame);
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
ContextMenuClientHaiku.h 44 virtual void searchWithGoogle(const Frame*);
45 virtual void lookUpInDictionary(Frame*);
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
ContextMenuClientQt.h 44 virtual void lookUpInDictionary(Frame*);
48 virtual void searchWithGoogle(const Frame*);
FrameNetworkingContextQt.h 29 static PassRefPtr<FrameNetworkingContextQt> create(Frame*, QObject* originatingObject, bool mimeSniffingEnabled, QNetworkAccessManager*);
32 FrameNetworkingContextQt(Frame*, QObject* originatingObject, bool mimeSniffingEnabled, QNetworkAccessManager*);
  /external/webkit/Source/WebKit/wx/WebKitSupport/
ContextMenuClientWx.h 47 virtual void searchWithGoogle(const Frame*);
48 virtual void lookUpInDictionary(Frame*);
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/gtk/
WebFrameNetworkingContext.h 34 static PassRefPtr<WebFrameNetworkingContext> create(WebCore::Frame*)
40 WebFrameNetworkingContext(WebCore::Frame* frame)
41 : WebCore::FrameNetworkingContext(frame)
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/qt/
WebFrameNetworkingContext.h 29 static PassRefPtr<WebFrameNetworkingContext> create(Frame*);
32 WebFrameNetworkingContext(Frame*);
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
ChromeClientEfl.h 56 virtual void focusedFrameChanged(Frame*);
58 virtual Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&, const NavigationAction&);
85 virtual bool runBeforeUnloadConfirmPanel(const String& message, Frame* frame);
89 virtual void runJavaScriptAlert(Frame*, const String&);
90 virtual bool runJavaScriptConfirm(Frame*, const String&);
91 virtual bool runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result);
98 virtual void contentsSizeChanged(Frame*, const IntSize&) const;
108 virtual void print(Frame*);
111 virtual void exceededDatabaseQuota(Frame*, const String&)
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorDOMStorageResource.h 46 class Frame;
51 static PassRefPtr<InspectorDOMStorageResource> create(Storage* domStorage, bool isLocalStorage, Frame* frame)
53 return adoptRef(new InspectorDOMStorageResource(domStorage, isLocalStorage, frame));
68 bool isSameHostAndType(Frame*, bool isLocalStorage) const;
74 InspectorDOMStorageResource(Storage*, bool isLocalStorage, Frame*);
78 RefPtr<Frame> m_frame;
  /external/webkit/Source/WebCore/storage/
Storage.h 37 class Frame;
43 static PassRefPtr<Storage> create(Frame*, PassRefPtr<StorageArea>);
55 Frame* frame() { return m_frame; } function in class:WebCore::Storage
59 Storage(Frame*, PassRefPtr<StorageArea>);
61 Frame* m_frame;
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
FilterContext.java 21 import android.filterfw.core.Frame;
36 private HashMap<String, Frame> mStoredFrames = new HashMap<String, Frame>();
69 public void onFrameReceived(Filter filter, Frame frame, Object userData);
72 public synchronized void storeFrame(String key, Frame frame) {
73 Frame storedFrame = fetchFrame(key);
77 frame.onFrameStore();
78 mStoredFrames.put(key, frame.retain())
82 Frame frame = mStoredFrames.get(key); local
90 Frame frame = mStoredFrames.get(key); local
    [all...]

Completed in 1260 milliseconds

1 23 4 5 6 7 8 91011>>