Searched refs:Element (Results 126 - 150 of 814) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
H A DElementShadow.h48 Element* host() const;
53 ShadowRoot& addShadowRoot(Element& shadowHost, ShadowRoot::ShadowRootType);
101 inline Element* ElementShadow::host() const
114 inline ShadowRoot* Element::youngestShadowRoot() const
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLImageLoader.h32 HTMLImageLoader(Element*);
H A DHTMLViewSourceDocument.h57 PassRefPtr<Element> addSpanWithClassName(const AtomicString&);
62 PassRefPtr<Element> addLink(const AtomicString& url, bool isAnchor);
63 PassRefPtr<Element> addBase(const AtomicString& href);
66 RefPtr<Element> m_current;
H A DLabelsNodeList.cpp28 #include "core/dom/Element.h"
46 bool LabelsNodeList::nodeMatches(Element* testNode) const
H A DHTMLElement.idl23 ] interface HTMLElement : Element {
39 [RaisesException, CustomElementCallbacks, MeasureAs=InsertAdjacentElement] Element insertAdjacentElement([Default=Undefined] optional DOMString where,
40 [Default=Undefined] optional Element element);
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLScriptRunnerHost.h34 class Element;
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DImageLoader.h45 class Element;
54 explicit ImageLoader(Element*);
67 Element* element() const { return m_element; }
109 Element* m_element;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderMediaControlElements.cpp37 RenderTextTrackContainerElement::RenderTextTrackContainerElement(Element* element)
H A DRenderSearchField.cpp49 inline Element* RenderSearchField::searchDecorationElement() const
54 inline Element* RenderSearchField::cancelButtonElement() const
61 Element* searchDecoration = searchDecorationElement();
67 Element* cancelButton = cancelButtonElement();
H A DRenderTheme.h41 class Element;
68 void adjustStyle(RenderStyle*, Element*, const CachedUAStyle&);
157 virtual void adjustSliderThumbSize(RenderStyle*, Element*) const;
223 virtual void adjustCheckboxStyle(RenderStyle*, Element*) const;
227 virtual void adjustRadioStyle(RenderStyle*, Element*) const;
231 virtual void adjustButtonStyle(RenderStyle*, Element*) const;
234 virtual void adjustInnerSpinButtonStyle(RenderStyle*, Element*) const;
242 virtual void adjustMenuListStyle(RenderStyle*, Element*) const;
245 virtual void adjustMenuListButtonStyle(RenderStyle*, Element*) const;
253 virtual void adjustInputFieldSpeechButtonStyle(RenderStyle*, Element*) cons
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGTextPath.h30 explicit RenderSVGTextPath(Element*);
/external/chromium_org/third_party/WebKit/public/web/
H A DWebElement.h38 namespace WebCore { class Element; }
92 WebElement(const WTF::PassRefPtr<WebCore::Element>&);
93 WebElement& operator=(const WTF::PassRefPtr<WebCore::Element>&);
94 operator WTF::PassRefPtr<WebCore::Element>() const;
/external/chromium_org/third_party/skia/src/gpu/
H A DGrReducedClip.h14 typedef SkTLList<SkClipStack::Element> ElementList;
/external/skia/src/gpu/
H A DGrReducedClip.h14 typedef SkTLList<SkClipStack::Element> ElementList;
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DScopedStyleTree.h57 void resolveScopedStyles(const Element*, Vector<ScopedStyleResolver*, 8>&);
58 void collectScopedResolversForHostedShadowTrees(const Element*, Vector<ScopedStyleResolver*, 8>&);
59 void resolveScopedKeyframesRules(const Element*, Vector<ScopedStyleResolver*, 8>&);
60 ScopedStyleResolver* scopedResolverFor(const Element*);
98 inline ScopedStyleResolver* ScopedStyleTree::scopedResolverFor(const Element* element)
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DAttr.h45 static PassRefPtr<Attr> create(Element&, const QualifiedName&);
51 Element* ownerElement() const { return m_element; }
61 void attachToElement(Element*);
71 Attr(Element&, const QualifiedName&);
92 Element* m_element;
H A DVisitedLinkState.cpp40 static inline const AtomicString& linkAttribute(const Element& element)
49 static inline LinkHash linkHashForElement(const Element& element, const AtomicString& attribute = AtomicString())
66 for (Element* element = ElementTraversal::firstWithin(m_document); element; element = ElementTraversal::next(*element)) {
76 for (Element* element = ElementTraversal::firstWithin(m_document); element; element = ElementTraversal::next(*element)) {
82 EInsideLink VisitedLinkState::determineLinkStateSlowCase(const Element& element)
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DDOMEditor.h38 class Element;
54 bool setAttribute(Element*, const String& name, const String& value, ExceptionState&);
55 bool removeAttribute(Element*, const String& name, ExceptionState&);
63 bool setAttribute(Element*, const String& name, const String& value, ErrorString*);
64 bool removeAttribute(Element*, const String& name, ErrorString*);
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
H A DCSSAnimations.h47 class Element;
146 static const StyleRuleKeyframes* matchScopedKeyframesRule(StyleResolver*, const Element*, const StringImpl*);
151 // We should also change the Element* to a const Element*
152 static PassOwnPtr<CSSAnimationUpdate> calculateUpdate(Element*, const Element& parentElement, const RenderStyle&, RenderStyle* parentStyle, StyleResolver*);
155 void maybeApplyPendingUpdate(Element*);
177 static void calculateAnimationUpdate(CSSAnimationUpdate*, Element*, const Element& parentElement, const RenderStyle&, RenderStyle* parentStyle, StyleResolver*);
178 static void calculateTransitionUpdate(CSSAnimationUpdate*, const Element*, cons
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementCallbackInvocation.cpp34 #include "core/dom/Element.h"
47 virtual void dispatch(Element*) OVERRIDE;
51 void CreatedInvocation::dispatch(Element* element)
63 virtual void dispatch(Element*) OVERRIDE;
75 void AttachedDetachedInvocation::dispatch(Element* element)
94 virtual void dispatch(Element*) OVERRIDE;
109 void AttributeChangedInvocation::dispatch(Element* element)
/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_node_data.cc28 BookmarkNodeData::Element::Element() : is_url(false), id_(0) { function in class:BookmarkNodeData::Element
31 BookmarkNodeData::Element::Element(const BookmarkNode* node) function in class:BookmarkNodeData::Element
37 children.push_back(Element(node->GetChild(i)));
40 BookmarkNodeData::Element::~Element() {
43 void BookmarkNodeData::Element::WriteToPickle(Pickle* pickle) const {
50 for (std::vector<Element>::const_iterator i = children.begin();
57 bool BookmarkNodeData::Element
[all...]
/external/chromium_org/third_party/skia/include/core/
H A DSkClipStack.h37 class Element { class in class:SkClipStack
48 Element() { function in class:SkClipStack::Element
53 Element(const SkRect& rect, SkRegion::Op op, bool doAA) { function in class:SkClipStack::Element
57 Element(const SkPath& path, SkRegion::Op op, bool doAA) { function in class:SkClipStack::Element
61 bool operator== (const Element& element) const {
83 bool operator!= (const Element& element) const { return !(*this == element); }
187 Element(int saveCount) { function in class:SkClipStack::Element
192 Element(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) { function in class:SkClipStack::Element
196 Element(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA) { function in class:SkClipStack::Element
234 // All Element method
[all...]
/external/skia/include/core/
H A DSkClipStack.h37 class Element { class in class:SkClipStack
48 Element() { function in class:SkClipStack::Element
53 Element(const SkRect& rect, SkRegion::Op op, bool doAA) { function in class:SkClipStack::Element
57 Element(const SkPath& path, SkRegion::Op op, bool doAA) { function in class:SkClipStack::Element
61 bool operator== (const Element& element) const {
83 bool operator!= (const Element& element) const { return !(*this == element); }
187 Element(int saveCount) { function in class:SkClipStack::Element
192 Element(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) { function in class:SkClipStack::Element
196 Element(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA) { function in class:SkClipStack::Element
234 // All Element method
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DInsertParagraphSeparatorCommand.cpp48 static Element* highestVisuallyEquivalentDivBelowRoot(Element* startBlock)
50 Element* curBlock = startBlock;
122 void InsertParagraphSeparatorCommand::getAncestorsInsideBlock(const Node* insertionNode, Element* outerBlock, Vector<RefPtr<Element> >& ancestors)
128 for (Element* n = insertionNode->parentElement(); n && n != outerBlock; n = n->parentElement())
133 PassRefPtr<Element> InsertParagraphSeparatorCommand::cloneHierarchyUnderNewBlock(const Vector<RefPtr<Element> >& ancestors, PassRefPtr<Element> blockToInsert)
136 RefPtr<Element> paren
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSCursorImageValue.h30 class Element;
53 bool updateIfSVGCursorIsUsed(Element*);

Completed in 417 milliseconds

1234567891011>>