/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLFrameOwnerElement.cpp | 38 HTMLFrameOwnerElement::HTMLFrameOwnerElement(const QualifiedName& tagName, Document& document) in HTMLFrameOwnerElement() function in WebCore::HTMLFrameOwnerElement 45 RenderPart* HTMLFrameOwnerElement::renderPart() const in renderPart() 54 void HTMLFrameOwnerElement::setContentFrame(Frame& frame) in setContentFrame() 66 void HTMLFrameOwnerElement::clearContentFrame() in clearContentFrame() 77 void HTMLFrameOwnerElement::disconnectContentFrame() in disconnectContentFrame() 90 HTMLFrameOwnerElement::~HTMLFrameOwnerElement() in ~HTMLFrameOwnerElement() 96 Document* HTMLFrameOwnerElement::contentDocument() const in contentDocument() 101 DOMWindow* HTMLFrameOwnerElement::contentWindow() const in contentWindow() 106 void HTMLFrameOwnerElement::setSandboxFlags(SandboxFlags flags) in setSandboxFlags() 111 bool HTMLFrameOwnerElement::isKeyboardFocusable() const in isKeyboardFocusable() [all …]
|
D | HTMLFrameElementBase.cpp | 46 : HTMLFrameOwnerElement(tagName, document) in HTMLFrameElementBase() 108 HTMLFrameOwnerElement::parseAttribute(name, value); in parseAttribute() 134 HTMLFrameOwnerElement::parseAttribute(name, value); in parseAttribute() 147 HTMLFrameOwnerElement::insertedInto(insertionPoint); in insertedInto() 164 HTMLFrameOwnerElement::attach(context); in attach() 194 HTMLFrameOwnerElement::setFocus(received); in setFocus() 206 || HTMLFrameOwnerElement::isURLAttribute(attribute); in isURLAttribute() 211 … return attribute.name() == srcdocAttr || HTMLFrameOwnerElement::isHTMLContentAttribute(attribute); in isHTMLContentAttribute()
|
D | HTMLFrameOwnerElement.h | 35 class HTMLFrameOwnerElement : public HTMLElement { 37 virtual ~HTMLFrameOwnerElement(); 67 HTMLFrameOwnerElement(const QualifiedName& tagName, Document&); 80 DEFINE_NODE_TYPE_CASTS(HTMLFrameOwnerElement, isFrameOwnerElement()); 95 static bool canLoadFrame(HTMLFrameOwnerElement& owner) in canLoadFrame()
|
D | HTMLPlugInElement.cpp | 58 : HTMLFrameOwnerElement(tagName, doc) in HTMLPlugInElement() 100 HTMLFrameOwnerElement::removeAllEventListeners(); in removeAllEventListeners() 111 HTMLFrameOwnerElement::didMoveToNewDocument(oldDocument); in didMoveToNewDocument() 116 HTMLFrameOwnerElement::attach(context); in attach() 168 HTMLFrameOwnerElement::detach(context); in detach() 197 HTMLFrameOwnerElement::finishParsingChildren(); in finishParsingChildren() 235 bool beforeLoadAllowedLoad = HTMLFrameOwnerElement::dispatchBeforeLoadEvent(sourceURL); in dispatchBeforeLoadEvent() 258 return HTMLFrameOwnerElement::isPresentationAttribute(name); in isPresentationAttribute() 276 HTMLFrameOwnerElement::collectStyleForPresentationAttribute(name, value, style); in collectStyleForPresentationAttribute() 307 HTMLFrameOwnerElement::defaultEventHandler(event); in defaultEventHandler() [all …]
|
D | HTMLFrameElementBase.h | 32 class HTMLFrameElementBase : public HTMLFrameOwnerElement {
|
D | HTMLPlugInElement.h | 43 class HTMLPlugInElement : public HTMLFrameOwnerElement {
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
D | Frame.h | 60 class HTMLFrameOwnerElement; variable 92 void setOwnerElement(HTMLFrameOwnerElement* ownerElement) { m_ownerElement = ownerElement; } in setOwnerElement() 93 HTMLFrameOwnerElement* ownerElement() const { return m_ownerElement; } in ownerElement() 108 HTMLFrameOwnerElement* m_ownerElement; 131 HTMLFrameOwnerElement* ownerElement() const; 305 inline HTMLFrameOwnerElement* Frame::ownerElement() const in ownerElement()
|
D | Frame.cpp | 81 static inline Frame* parentFromOwnerElement(HTMLFrameOwnerElement* ownerElement) in parentFromOwnerElement() 170 HTMLFrameOwnerElement* owner = doc->ownerElement(); in inScope() 487 if (HTMLFrameOwnerElement* owner = ownerElement()) in createView()
|
D | FrameView.h | 155 … IntRect windowClipRectForFrameOwner(const HTMLFrameOwnerElement*, bool clipToLayerContents) const;
|
D | FrameView.cpp | 661 const HTMLFrameOwnerElement* owner = m_frame->ownerElement(); in calculateScrollbarModesForLayout() 2515 HTMLFrameOwnerElement* ownerElement = m_frame->ownerElement(); in windowClipRect() 2522 IntRect FrameView::windowClipRectForFrameOwner(const HTMLFrameOwnerElement* ownerElement, bool clip… in windowClipRectForFrameOwner() 2643 HTMLFrameOwnerElement* owner = m_frame->ownerElement(); in isScrollable()
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
D | FocusController.h | 41 class HTMLFrameOwnerElement; variable 57 static FocusNavigationScope ownedByIFrame(HTMLFrameOwnerElement*);
|
D | SpatialNavigation.h | 149 HTMLFrameOwnerElement* frameOwnerElement(FocusCandidate&);
|
D | FocusController.cpp | 116 FocusNavigationScope FocusNavigationScope::ownedByIFrame(HTMLFrameOwnerElement* frame) in ownedByIFrame() 288 HTMLFrameOwnerElement* owner = toHTMLFrameOwnerElement(node); in findFocusableNodeDecendingDownIntoFrameDocument() 379 HTMLFrameOwnerElement* owner = toHTMLFrameOwnerElement(element); in advanceFocusInDocumentOrder() 819 if (HTMLFrameOwnerElement* frameElement = frameOwnerElement(focusCandidate)) { in advanceFocusDirectionallyInContainer()
|
D | PageSerializer.cpp | 96 static const QualifiedName& frameOwnerURLAttributeName(const HTMLFrameOwnerElement& frameOwner) in frameOwnerURLAttributeName() 155 HTMLFrameOwnerElement* frameOwner = toHTMLFrameOwnerElement(element); in appendCustomAttributes()
|
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
D | AXScrollView.cpp | 212 HTMLFrameOwnerElement* owner = toFrameView(m_scrollView)->frame().ownerElement(); in parentObject() 224 HTMLFrameOwnerElement* owner = toFrameView(m_scrollView)->frame().ownerElement(); in parentObjectIfExists()
|
/external/chromium_org/third_party/WebKit/Source/core/loader/ |
D | FrameLoaderClient.h | 68 class HTMLFrameOwnerElement; variable 170 …> createFrame(const KURL&, const String& name, const String& referrer, HTMLFrameOwnerElement*) = 0;
|
D | EmptyClients.cpp | 121 …tyFrameLoaderClient::createFrame(const KURL&, const String&, const String&, HTMLFrameOwnerElement*) in createFrame() argument
|
D | EmptyClients.h | 240 …Ptr<Frame> createFrame(const KURL&, const String&, const String&, HTMLFrameOwnerElement*) OVERRIDE;
|
D | FrameLoader.cpp | 1428 HTMLFrameOwnerElement* ownerElement = m_frame->ownerElement(); in shouldTreatURLAsSrcdocDocument() 1523 if (HTMLFrameOwnerElement* ownerElement = m_frame->ownerElement()) in effectiveSandboxFlags()
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | ContainerNodeAlgorithms.h | 280 Vector<RefPtr<HTMLFrameOwnerElement>, 10> m_frameOwners; 311 HTMLFrameOwnerElement* owner = m_frameOwners[i].get();
|
D | FullscreenElementStack.cpp | 47 …me& attribute, const WebCore::QualifiedName& prefixedAttribute, const HTMLFrameOwnerElement* owner) in isAttributeOnAllOwners()
|
D | Document.h | 112 class HTMLFrameOwnerElement; variable 716 HTMLFrameOwnerElement* ownerElement() const;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderPart.cpp | 88 HTMLFrameOwnerElement* element = toHTMLFrameOwnerElement(node()); in requiresAcceleratedCompositing()
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | FrameLoaderClientImpl.h | 116 …ore::KURL&, const WTF::String& name, const WTF::String& referrer, WebCore::HTMLFrameOwnerElement*);
|
D | WebFrameImpl.h | 251 const WebCore::FrameLoadRequest&, WebCore::HTMLFrameOwnerElement*);
|