/external/webkit/Source/WebKit/android/WebCoreSupport/autofill/ |
WebAutofill.h | 44 class Frame; 93 void searchDocument(WebCore::Frame*);
|
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
WebDragClient.mm | 47 #import <WebCore/Frame.h> 59 static WebHTMLView *getTopHTMLView(Frame* frame) 61 ASSERT(frame); 62 ASSERT(frame->page()); 63 return (WebHTMLView*)[[kit(frame->page()->mainFrame()) frameView] documentView]; 89 void WebDragClient::startDrag(DragImageRef dragImage, const IntPoint& at, const IntPoint& eventPos, Clipboard* clipboard, Frame* frame, bool linkDrag) 91 if (!frame) 94 RetainPtr<WebHTMLView> htmlView = (WebHTMLView*)[[kit(frame) frameView] documentView] [all...] |
/external/webkit/Source/WebKit/mac/WebView/ |
WebRenderNode.mm | 32 #import <WebCore/Frame.h> 45 - (id)_initWithCoreFrame:(Frame *)frame 49 if (!frame->loader()->client()->hasHTMLView()) 52 RenderObject* renderer = frame->contentRenderer(); 59 - (id)_initWithName:(NSString *)n position:(NSPoint)p rect:(NSRect)r coreFrame:(Frame*)coreFrame children:(NSArray *)c 99 Frame* frame = frameView ? frameView->frame() : 0; 132 coreFrame:frame children:children] [all...] |
/system/media/mca/filterfw/java/android/filterfw/basefilters/ |
InputStreamSource.java | 22 import android.filterfw.core.Frame; 82 // Put it into a frame 84 Frame output = context.getFrameManager().newFrame(mOutputFormat); 90 // Release pushed frame
|
/external/webkit/Source/WebCore/loader/ |
DocumentWriter.cpp | 34 #include "Frame.h" 52 static inline bool canReferToParentFrameEncoding(const Frame* frame, const Frame* parentFrame) 54 return parentFrame && parentFrame->document()->securityOrigin()->canAccess(frame->document()->securityOrigin()); 57 DocumentWriter::DocumentWriter(Frame* frame) 58 : m_frame(frame) 115 // Create a new document before clearing the frame, because it may need to 162 Frame* parentFrame = m_frame->tree()->parent() [all...] |
/external/webkit/Source/WebCore/page/ |
FrameView.h | 28 #include "Frame.h" 56 static PassRefPtr<FrameView> create(Frame*); 57 static PassRefPtr<FrameView> create(Frame*, const IntSize& initialSize); 69 Frame* frame() const { return m_frame.get(); } function in class:WebCore::FrameView 231 void forceLayoutForPagination(const FloatSize& pageSize, float maximumShrinkFactor, Frame::AdjustViewSizeOrNot); 289 FrameView(Frame*); 362 RefPtr<Frame> m_frame;
|
DOMWindow.h | 83 static PassRefPtr<DOMWindow> create(Frame* frame) { return adoptRef(new DOMWindow(frame)); } 89 Frame* frame() const { return m_frame; } function in class:WebCore::DOMWindow 113 static bool allowPopUp(Frame* firstFrame); 114 static bool canShowModalDialog(const Frame*); 115 static bool canShowModalDialogNow(const Frame*); 438 DOMWindow(Frame*); 447 static Frame* createWindow(const String& urlString, const AtomicString& frameName, const WindowFeatures& [all...] |
FocusController.cpp | 40 #include "Frame.h" 92 void FocusController::setFocusedFrame(PassRefPtr<Frame> frame) 94 ASSERT(!frame || frame->page() == m_page); 95 if (m_focusedFrame == frame || m_isChangingFocusedFrame) 100 RefPtr<Frame> oldFrame = m_focusedFrame; 101 RefPtr<Frame> newFrame = frame; 105 // Now that the frame is updated, fire events and update the selection focused states of both frames 204 Frame* frame = focusedOrMainFrame(); local 315 Frame* frame = node->document()->frame(); local [all...] |
PrintContext.cpp | 25 #include "Frame.h" 46 PrintContext::PrintContext(Frame* frame) 47 : m_frame(frame) 182 m_frame->setPrinting(true, FloatSize(minLayoutWidth, minLayoutHeight), printingMaximumShrinkFactor / printingMinimumShrinkFactor, Frame::AdjustViewSize); 231 m_frame->setPrinting(false, FloatSize(), 0, Frame::AdjustViewSize); 254 Frame* frame = element->document()->frame(); 256 PrintContext printContext(frame); [all...] |
/external/webkit/Source/WebKit/android/WebCoreSupport/ |
FrameLoaderClientAndroid.h | 49 Frame* getFrame() { return m_frame; } 50 static FrameLoaderClientAndroid* get(const Frame* frame); 52 void setFrame(Frame* frame) { m_frame = frame; } 100 virtual Frame* dispatchCreatePage(const NavigationAction&); 188 virtual WTF::PassRefPtr<Frame> createFrame(const KURL& url, const String& name, HTMLFrameOwnerElement* ownerElement, const String& referrer, bool allowsScrolling, int marginWidth, int marginHeight); 221 // FIXME: this doesn't really go here, but it's better than Frame 233 Frame* m_frame [all...] |
/external/webkit/Source/WebKit/chromium/src/ |
WebFrameImpl.h | 37 #include "Frame.h" 214 // Called by the WebViewImpl to initialize its main frame: 217 PassRefPtr<WebCore::Frame> createChildFrame( 225 static WebFrameImpl* fromFrame(WebCore::Frame* frame); 228 // If the frame hosts a PluginDocument, this method returns the WebPluginContainerImpl 230 static WebPluginContainerImpl* pluginContainerFromFrame(WebCore::Frame*); 234 WebCore::Frame* frame() const { return m_frame; } function in class:WebKit::WebFrameImpl 242 // Returns which frame has an active match. This function should only b [all...] |
ChromeClientImpl.cpp | 262 void ChromeClientImpl::focusedFrameChanged(Frame*) 267 Frame* frame, const FrameLoadRequest& r, const WindowFeatures& features, const NavigationAction&) 276 m_webView->client()->createView(WebFrameImpl::fromFrame(frame), request, features, r.frameName())); 421 bool ChromeClientImpl::runBeforeUnloadConfirmPanel(const String& message, Frame* frame) 425 WebFrameImpl::fromFrame(frame), message); 442 // Although a Frame is passed in, we don't actually use it, since we 444 void ChromeClientImpl::runJavaScriptAlert(Frame* frame, const String& message [all...] |
/system/media/mca/filterpacks/imageproc/java/ |
AutoFixFilter.java | 21 import android.filterfw.core.Frame; 158 private Frame mHistFrame; 159 private Frame mDensityFrame; 241 // Get input frame 242 Frame input = pullInput("image"); 251 // Check if the frame size has changed 258 // Create output frame 259 Frame output = context.getFrameManager().newFrame(inputFormat); 262 Frame[] inputs = {input, mHistFrame, mDensityFrame}; 268 // Release pushed frame [all...] |
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/ |
WebChromeClient.cpp | 49 #include <WebCore/Frame.h> 64 static double area(WebFrame* frame) 66 IntSize size = frame->visibleContentBoundsExcludingScrollbars().size(); 73 // Approximate what a user could consider a default target frame for application menu operations. 148 void WebChromeClient::focusedFrameChanged(Frame* frame) 150 WebFrame* webFrame = frame ? static_cast<WebFrameLoaderClient*>(frame->loader()->client())->webFrame() : 0; 155 Page* WebChromeClient::createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures& windowFeatures, const NavigationAction& navigationAction) 258 bool WebChromeClient::runBeforeUnloadConfirmPanel(const String& message, Frame* frame [all...] |
/system/media/mca/filterfw/java/android/filterfw/core/ |
Filter.java | 61 private HashSet<Frame> mFramesToRelease; 62 private HashMap<String, Frame> mFramesToSet; 75 mFramesToRelease = new HashSet<Frame>(); 76 mFramesToSet = new HashMap<String, Frame>(); 146 public void setInputFrame(String inputName, Frame frame) { 151 port.setFrame(frame); 249 protected final void pushOutput(String name, Frame frame) { 250 if (frame.getTimestamp() == Frame.TIMESTAMP_NOT_SET) 650 Frame frame = shouldSerialize local [all...] |
/external/llvm/lib/MC/ |
MCDwarf.cpp | 517 const MCDwarfFrameInfo &frame); 526 const MCDwarfFrameInfo &frame); 662 /// EmitFrameMoves - Emit frame instructions to describe the layout of the 663 /// frame. 691 const MCDwarfFrameInfo &Frame) { 719 uint32_t Encoding = Frame.CompactUnwindEncoding; 723 if (Frame.Lsda) 732 Streamer.EmitSymbolValue(Frame.Function, Size); 735 const MCExpr *Range = MakeStartMinusEndExpr(Streamer, *Frame.Begin, 736 *Frame.End, 0) [all...] |
/external/webkit/Source/WebCore/page/mac/ |
FrameMac.mm | 29 #import "Frame.h" 139 NSString* Frame::searchForLabelsBeforeElement(NSArray* labels, Element* element, size_t* resultDistance, bool* resultIsInCellAbove) 243 NSString* Frame::matchLabelsAgainstElement(NSArray* labels, Element* element) 247 // FIXME: This code is mirrored in Frame.cpp. It would be nice to make the Mac code call the platform-agnostic 256 NSImage* Frame::imageFromRect(NSRect rect) const 288 NSImage* Frame::selectionImage(bool forceBlackText) const 297 NSImage* Frame::snapshotDragImage(Node* node, NSRect* imageRect, NSRect* elementRect) const 322 DragImageRef Frame::nodeImage(Node* node) 340 DragImageRef Frame::dragImageForSelection()
|
/system/media/mca/filterpacks/videoproc/java/ |
BackDropperFilter.java | 23 import android.filterfw.core.Frame; 117 // Frame count for learning bg model 119 // Frame count for learning verification 250 // tex_sampler_0: Mip-map for foreground (live) video frame. 253 // subsample_level: Level on foreground frame's mip-map. 270 // Foreground/background mask decision shader. Decides whether a frame is in the foreground or 312 // tex_sampler_0: Mip-map for foreground (live) video frame. 313 // tex_sampler_1: Mip-map for background (playback) video frame. 337 // tex_sampler_0: Foreground (live) video frame. 338 // tex_sampler_1: Background (playback) video frame [all...] |
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
DumpRenderTreeSupportQt.cpp | 40 #include "Frame.h" 233 bool DumpRenderTreeSupportQt::hasDocumentElement(QWebFrame* frame) 235 return QWebFramePrivate::core(frame)->document()->documentElement(); 238 void DumpRenderTreeSupportQt::setJavaScriptProfilingEnabled(QWebFrame* frame, bool enabled) 241 Frame* coreFrame = QWebFramePrivate::core(frame); 255 bool DumpRenderTreeSupportQt::pauseAnimation(QWebFrame *frame, const QString &animationName, double time, const QString &elementId) 257 Frame* coreFrame = QWebFramePrivate::core(frame); 275 bool DumpRenderTreeSupportQt::pauseTransitionOfProperty(QWebFrame *frame, const QString &propertyName, double time, const QString &elementId 524 WebCore::Frame* frame = page->handle()->page->focusController()->focusedOrMainFrame(); local 566 WebCore::Frame* frame = page->handle()->page->focusController()->focusedOrMainFrame(); local 590 WebCore::Frame* frame = page->handle()->page->focusController()->focusedOrMainFrame(); local [all...] |
/external/webkit/Source/WebKit/gtk/WebCoreSupport/ |
ChromeClientGtk.cpp | 155 Page* ChromeClient::createWindow(Frame* frame, const FrameLoadRequest& frameLoadRequest, const WindowFeatures& coreFeatures, const NavigationAction&) 159 g_signal_emit_by_name(m_webView, "create-web-view", kit(frame), &webView); 302 void ChromeClient::focusedFrameChanged(Frame*) 311 bool ChromeClient::runBeforeUnloadConfirmPanel(const WTF::String& message, WebCore::Frame* frame) 313 return runJavaScriptConfirm(frame, message); 322 void ChromeClient::runJavaScriptAlert(Frame* frame, const String& message) 325 g_signal_emit_by_name(m_webView, "script-alert", kit(frame), message.utf8().data(), &retval) 562 Frame* frame = node->document()->frame(); local [all...] |
/external/webkit/Source/WebCore/html/shadow/ |
TextControlInnerElements.cpp | 34 #include "Frame.h" 184 if (Frame* frame = document()->frame()) 185 frame->eventHandler()->setCapturingMouseEventsNode(0); 197 if (Frame* frame = document()->frame()) { 198 frame->eventHandler()->setCapturingMouseEventsNode(this); 208 if (Frame* frame = document()->frame()) [all...] |
/external/webkit/Source/WebKit/wince/ |
WebView.cpp | 34 #include "Frame.h" 108 RefPtr<Frame> frame = Frame::create(m_page, 0, loaderClient); local 109 m_frame = frame.get(); 155 PassRefPtr<Frame> WebView::createFrame(const KURL& url, const String& name, HTMLFrameOwnerElement* ownerElement, const String& referrer, 158 Frame* coreFrame = m_frame; 161 RefPtr<Frame> childFrame = Frame::create(m_page, ownerElement, loaderClient); 168 // The creation of the frame may have run arbitrary JavaScript that removed it from the page already [all...] |
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8HTMLDocumentCustom.cpp | 34 #include "Frame.h" 87 Frame* frame = 0; local 88 if (node->hasTagName(HTMLNames::iframeTag) && (frame = static_cast<HTMLIFrameElement*>(node)->contentFrame())) 89 return toV8(frame->domWindow()); 115 Frame* frame = V8Proxy::retrieveFrameForCallingContext(); local 116 htmlDocument->write(writeHelperGetString(args), frame ? frame->document() : NULL); 124 Frame* frame = V8Proxy::retrieveFrameForCallingContext() local 163 Frame* frame = V8Proxy::retrieveFrameForCallingContext(); local [all...] |
/external/webkit/Source/WebCore/history/ |
CachedFrame.cpp | 34 #include "Frame.h" 63 CachedFrameBase::CachedFrameBase(Frame* frame) 64 : m_document(frame->document()) 65 , m_documentLoader(frame->loader()->documentLoader()) 66 , m_view(frame->view()) 67 , m_mousePressNode(frame->eventHandler()->mousePressNode()) 68 , m_url(frame->document()->url()) 69 , m_isMainFrame(!frame->tree()->parent()) 86 Frame* frame = m_view->frame() local [all...] |
/external/webkit/Source/WebCore/html/ |
HTMLFrameElementBase.cpp | 31 #include "Frame.h" 70 if (contentDoc && !ScriptController::canAccessFromCurrentOrigin(contentDoc->frame())) 74 if (Frame* parentFrame = document()->frame()) { 82 for (Frame* frame = document()->frame(); frame; frame = frame->tree()->parent()) [all...] |