Searched refs:Element (Results 151 - 175 of 916) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLImageLoader.cpp26 #include "core/dom/Element.h"
36 HTMLImageLoader::HTMLImageLoader(Element* node)
68 RefPtrWillBeRawPtr<Element> element = this->element();
H A DHTMLTagCollection.h28 #include "core/dom/Element.h"
42 bool elementMatches(const Element&) const;
52 inline bool HTMLTagCollection::elementMatches(const Element& testElement) const
H A DHTMLCollection.cpp200 Element* HTMLCollection::item(unsigned offset) const
255 inline bool HTMLCollection::elementMatches(const Element& element) const
287 bool operator() (const Element& element) const
301 Element* HTMLCollection::virtualItemAfter(Element*) const
326 Element* HTMLCollection::traverseToFirst() const
342 Element* HTMLCollection::traverseToLast() const
350 Element* HTMLCollection::traverseForwardToOffset(unsigned offset, Element& currentElement, unsigned& currentOffset) const
360 for (Element* nex
[all...]
H A DHTMLFormElement.idl36 [ImplementedAs=item] getter Element (unsigned long index);
37 [NotEnumerable] getter (RadioNodeList or Element) (DOMString name);
H A DLabelsNodeList.h46 virtual bool elementMatches(const Element&) const OVERRIDE;
H A DRadioNodeList.cpp31 #include "core/dom/Element.h"
55 static inline HTMLInputElement* toRadioButtonInputElement(Element& element)
93 bool RadioNodeList::matchesByIdOrName(const Element& testElement) const
98 bool RadioNodeList::checkElementMatchesRadioNodeListFilter(const Element& testElement) const
111 bool RadioNodeList::elementMatches(const Element& element) const
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderThemeChromiumSkia.h75 virtual void adjustButtonStyle(RenderStyle*, Element*) const OVERRIDE;
79 virtual void adjustSearchFieldStyle(RenderStyle*, Element*) const OVERRIDE;
82 virtual void adjustSearchFieldCancelButtonStyle(RenderStyle*, Element*) const OVERRIDE;
85 virtual void adjustSearchFieldDecorationStyle(RenderStyle*, Element*) const OVERRIDE;
87 virtual void adjustSearchFieldResultsDecorationStyle(RenderStyle*, Element*) const OVERRIDE;
92 virtual void adjustSliderThumbSize(RenderStyle*, Element*) const OVERRIDE;
113 virtual void adjustMenuListStyle(RenderStyle*, Element*) const OVERRIDE;
114 virtual void adjustMenuListButtonStyle(RenderStyle*, Element*) const OVERRIDE;
H A DRenderDetailsMarker.h30 RenderDetailsMarker(Element*);
H A DRenderIFrame.cpp39 RenderIFrame::RenderIFrame(Element* element)
H A DRenderIFrame.h35 explicit RenderIFrame(Element*);
H A DRenderPartTest.cpp20 RefPtrWillBeRawPtr<Element> element = HTMLElement::create(HTMLNames::divTag, document());
H A DRenderRubyText.h40 RenderRubyText(Element*);
H A DRenderTableCaption.cpp27 RenderTableCaption::RenderTableCaption(Element* element)
H A DRenderTableCaption.h31 explicit RenderTableCaption(Element*);
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGTextPath.cpp31 RenderSVGTextPath::RenderSVGTextPath(Element* element)
54 Element* targetElement = SVGURIReference::targetElementFromIRIString(textPathElement->href()->currentValue()->value(), textPathElement->treeScope());
H A DRenderSVGTextPath.h30 explicit RenderSVGTextPath(Element*);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGElement.idl23 interface SVGElement : Element {
H A DSVGURIReference.h29 class Element;
39 static Element* targetElementFromIRIString(const String&, const TreeScope&, AtomicString* = 0, Document* = 0);
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DDictionaryTest.h11 #include "core/dom/Element.h"
58 RefPtrWillBeMember<Element> m_elementMember;
59 RefPtrWillBeMember<Element> m_elementOrNullMember;
/external/clang/lib/Tooling/
H A DFileMatchTrie.cpp67 StringRef Element(llvm::sys::path::filename(
69 Children[Element].Path = Path;
71 StringRef Element(llvm::sys::path::filename(
73 Children[Element].insert(NewPath, ConsumedLength + Element.size() + 1);
106 StringRef Element(llvm::sys::path::filename(FileName.drop_back(
109 Children.find(Element);
113 ConsumedLength + Element.size() + 1);
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DInsertParagraphSeparatorCommand.cpp51 static Element* highestVisuallyEquivalentDivBelowRoot(Element* startBlock)
53 Element* curBlock = startBlock;
90 void InsertParagraphSeparatorCommand::applyStyleAfterInsertion(Element* originalEnclosingBlock)
109 bool InsertParagraphSeparatorCommand::shouldUseDefaultParagraphElement(Element* enclosingBlock) const
125 void InsertParagraphSeparatorCommand::getAncestorsInsideBlock(const Node* insertionNode, Element* outerBlock, WillBeHeapVector<RefPtrWillBeMember<Element> >& ancestors)
131 for (Element* n = insertionNode->parentElement(); n && n != outerBlock; n = n->parentElement())
136 PassRefPtrWillBeRawPtr<Element> InsertParagraphSeparatorCommand::cloneHierarchyUnderNewBlock(const WillBeHeapVector<RefPtrWillBeMember<Element> >
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DDOMExtension.js162 * @param {!Element=} relativeTo
164 Element.prototype.positionAt = function(x, y, relativeTo)
184 Element.prototype.isScrolledToBottom = function()
280 * @param {?Element=} containerElement
283 Element.prototype.measurePreferredSize = function(containerElement)
298 Element.prototype.containsEventPoint = function(event)
331 * @param {!Element=} stayWithin
332 * @return {?Element}
338 return /** @type {!Element} */ (node);
347 Element
157 Element.prototype.positionAt = function(x, y, relativeTo) class
[all...]
/external/chromium_org/components/bookmarks/browser/
H A Dbookmark_node_data.cc21 BookmarkNodeData::Element::Element() : is_url(false), id_(0) { function in class:bookmarks::BookmarkNodeData::Element
24 BookmarkNodeData::Element::Element(const BookmarkNode* node) function in class:bookmarks::BookmarkNodeData::Element
34 children.push_back(Element(node->GetChild(i)));
37 BookmarkNodeData::Element::~Element() {
40 void BookmarkNodeData::Element::WriteToPickle(Pickle* pickle) const {
53 for (std::vector<Element>::const_iterator i = children.begin();
60 bool BookmarkNodeData::Element
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DUserActionElementSet.cpp30 #include "core/dom/Element.h"
76 inline bool UserActionElementSet::hasFlags(const Element* element, unsigned flags) const
79 ElementFlagMap::const_iterator found = m_elements.find(const_cast<Element*>(element));
85 inline void UserActionElementSet::clearFlags(Element* element, unsigned flags)
108 inline void UserActionElementSet::setFlags(Element* element, unsigned flags)
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
H A DElementShadow.h48 Element* host() const;
53 ShadowRoot& addShadowRoot(Element& shadowHost, ShadowRoot::ShadowRootType);
100 inline Element* ElementShadow::host() const
113 inline ShadowRoot* Element::youngestShadowRoot() const

Completed in 501 milliseconds

1234567891011>>