Searched refs:Element (Results 1 - 25 of 662) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/dom/
H A DStyleElement.h29 class Element;
45 void insertedIntoDocument(Document*, Element*);
46 void removedFromDocument(Document*, Element*);
47 void childrenChanged(Element*);
48 void finishParsingChildren(Element*);
53 void createSheet(Element*, int startLineNumber, const String& text = String());
54 void process(Element*);
H A DOptionGroupElement.h28 class Element;
37 OptionGroupElement* toOptionGroupElement(Element*);
38 bool isOptionGroupElement(Element*);
H A DSelectElement.h32 class Element;
44 virtual const Vector<Element*>& listItems() const = 0;
73 static void selectAll(SelectElementData&, Element*);
74 static void saveLastSelection(SelectElementData&, Element*);
75 static void setActiveSelectionAnchorIndex(SelectElementData&, Element*, int index);
77 static void updateListBoxSelection(SelectElementData&, Element*, bool deselectOtherOptions);
78 static void listBoxOnChange(SelectElementData&, Element*);
79 static void menuListOnChange(SelectElementData&, Element*);
80 static void scrollToSelection(SelectElementData&, Element*);
81 static void setRecalcListItems(SelectElementData&, Element*);
[all...]
H A DDocumentOrderedMap.h40 class Element;
45 void add(AtomicStringImpl*, Element*);
46 void remove(AtomicStringImpl*, Element*);
52 Element* getElementById(AtomicStringImpl*, const TreeScope*) const;
53 Element* getElementByMapName(AtomicStringImpl*, const TreeScope*) const;
54 Element* getElementByLowercasedMapName(AtomicStringImpl*, const TreeScope*) const;
59 template<bool keyMatches(AtomicStringImpl*, Element*)> Element* get(AtomicStringImpl*, const TreeScope*) const;
61 typedef HashMap<AtomicStringImpl*, Element*> Map;
H A DOptionElement.h28 class Element;
46 static void setSelectedState(OptionElementData&, Element*, bool selected);
47 static int optionIndex(SelectElement*, const Element*);
48 static String collectOptionLabelOrText(const OptionElementData&, const Element*);
49 static String collectOptionTextRespectingGroupLabel(const OptionElementData&, const Element*);
50 static String collectOptionValue(const OptionElementData&, const Element*);
52 static String collectOptionInnerText(const Element*);
78 OptionElement* toOptionElement(Element*);
79 bool isOptionElement(Element*);
H A DDatasetDOMStringMap.h34 class Element;
38 static PassOwnPtr<DatasetDOMStringMap> create(Element* element)
52 virtual Element* element() { return m_element; }
55 DatasetDOMStringMap(Element* element)
60 Element* m_element;
H A DTreeScope.h34 class Element;
43 Element* getElementById(const AtomicString&) const;
46 void addElementById(const AtomicString& elementId, Element*);
47 void removeElementById(const AtomicString& elementId, Element*);
53 Element* getElementByAccessKey(const String& key) const;
65 Element* findAnchor(const String& name);
82 mutable HashMap<StringImpl*, Element*, CaseFoldingHash> m_elementsByAccessKey;
H A DDocumentOrderedMap.cpp34 #include "Element.h"
43 inline bool keyMatchesId(AtomicStringImpl* key, Element* element)
48 inline bool keyMatchesMapName(AtomicStringImpl* key, Element* element)
53 inline bool keyMatchesLowercasedMapName(AtomicStringImpl* key, Element* element)
64 void DocumentOrderedMap::add(AtomicStringImpl* key, Element* element)
94 void DocumentOrderedMap::remove(AtomicStringImpl* key, Element* element)
107 template<bool keyMatches(AtomicStringImpl*, Element*)>
108 inline Element* DocumentOrderedMap::get(AtomicStringImpl* key, const TreeScope* scope) const
114 Element* element = m_map.get(key);
123 element = static_cast<Element*>(nod
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DWebElement.cpp34 #include "Element.h"
47 return constUnwrap<Element>()->isFormControlElement();
52 return constUnwrap<Element>()->isTextFormControl();
57 return constUnwrap<Element>()->tagName();
62 return equalIgnoringCase(constUnwrap<Element>()->tagName(),
68 return constUnwrap<Element>()->hasAttribute(attrName);
73 return constUnwrap<Element>()->getAttribute(attrName);
79 unwrap<Element>()->setAttribute(attrName, attrValue, exceptionCode);
90 return constUnwrap<Element>()->innerText();
95 return adoptRef(static_cast<Node*>(unwrap<Element>()
[all...]
/external/webkit/Source/WebCore/editing/
H A DMergeIdenticalElementsCommand.h35 static PassRefPtr<MergeIdenticalElementsCommand> create(PassRefPtr<Element> element1, PassRefPtr<Element> element2)
41 MergeIdenticalElementsCommand(PassRefPtr<Element>, PassRefPtr<Element>);
46 RefPtr<Element> m_element1;
47 RefPtr<Element> m_element2;
H A DWrapContentsInDummySpanCommand.h37 static PassRefPtr<WrapContentsInDummySpanCommand> create(PassRefPtr<Element> element)
43 WrapContentsInDummySpanCommand(PassRefPtr<Element>);
50 RefPtr<Element> m_element;
H A DSplitElementCommand.h35 static PassRefPtr<SplitElementCommand> create(PassRefPtr<Element> element, PassRefPtr<Node> splitPointChild)
41 SplitElementCommand(PassRefPtr<Element>, PassRefPtr<Node> splitPointChild);
48 RefPtr<Element> m_element1;
49 RefPtr<Element> m_element2;
H A DInsertParagraphSeparatorCommand.h49 void getAncestorsInsideBlock(const Node* insertionNode, Element* outerBlock, Vector<Element*>& ancestors);
50 PassRefPtr<Element> cloneHierarchyUnderNewBlock(const Vector<Element*>& ancestors, PassRefPtr<Element> blockToInsert);
/external/apache-xml/src/main/java/org/apache/xpath/
H A DWhitespaceStrippingElementMatcher.java25 import org.w3c.dom.Element;
38 * @param targetElement Element to check
45 XPathContext support, Element targetElement) throws TransformerException;
/external/chromium/chrome/browser/resources/ntp4/tools/
H A Dexterns.js8 // JSCompiler doesn't know about this new Element property
9 Element.prototype.classList = {};
11 Element.prototype.classList.remove = function(c) {};
13 Element.prototype.classList.add = function(c) {};
15 Element.prototype.classList.contains = function(c) {};
0 Element.prototype.classList = {}; class
/external/chromium/chrome/browser/resources/touch_ntp/tools/
H A Dexterns.js8 // JSCompiler doesn't know about this new Element property
9 Element.prototype.classList = {};
11 Element.prototype.classList.remove = function(c) {};
13 Element.prototype.classList.add = function(c) {};
15 Element.prototype.classList.contains = function(c) {};
0 Element.prototype.classList = {}; class
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
H A DInjectedBundlePageFullScreenClient.h37 class Element;
47 void enterFullScreenForElement(WebPage*, WebCore::Element*);
48 void exitFullScreenForElement(WebPage*, WebCore::Element*);
/external/protobuf/src/google/protobuf/
H A Drepeated_field.h71 template <typename Element>
79 const Element& Get(int index) const;
80 Element* Mutable(int index);
81 void Set(int index, const Element& value);
82 void Add(const Element& value);
83 Element* Add();
101 void AddAlreadyReserved(const Element& value);
102 Element* AddAlreadyReserved();
107 Element* mutable_data();
108 const Element* dat
[all...]
/external/webkit/Source/WebCore/html/parser/
H A DHTMLFormattingElementList.h35 class Element;
50 explicit Entry(Element* element)
64 Element* element() const
71 void replaceElement(PassRefPtr<Element> element) { m_element = element; }
74 bool operator==(Element* element) const { return m_element == element; }
75 bool operator!=(Element* element) const { return m_element != element; }
78 RefPtr<Element> m_element;
106 Element* closestElementInScopeWithName(const AtomicString&);
108 Entry* find(Element*);
109 bool contains(Element*);
[all...]
H A DHTMLElementStack.h30 #include "Element.h"
42 class Element;
58 Element* element() const { return toElement(m_node.get()); }
60 void replaceElement(PassRefPtr<Element>);
80 Element* top() const
92 Element* oneBelowTop() const;
94 Element* bottom() const;
95 ElementRecord* find(Element*) const;
98 void insertAbove(PassRefPtr<Element>, ElementRecord*);
100 void push(PassRefPtr<Element>);
[all...]
H A DHTMLConstructionSite.h42 class Element;
71 PassRefPtr<Element> createHTMLElement(AtomicHTMLToken&);
72 PassRefPtr<Element> createHTMLElementFromElementRecord(HTMLElementStack::ElementRecord*);
83 Element* currentElement() const { return m_openElements.top(); }
85 Element* oneBelowTop() const { return m_openElements.oneBelowTop(); }
90 Element* head() const { return m_head.get(); }
124 PassRefPtr<Element> attachToCurrent(PassRefPtr<Element>);
129 PassRefPtr<Element> createHTMLElementFromSavedElement(Element*);
[all...]
/external/clang/test/SemaCXX/
H A Dattr-visibility.cpp3 template <class Element>
/external/webkit/Source/WebCore/plugins/
H A DIFrameShimSupport.h26 class Element;
30 void getPluginOcclusions(Element*, Widget* parentWidget, const IntRect& frameRect, Vector<IntRect>& occlusions);
/external/webkit/Source/WebCore/html/
H A DClassList.h35 class Element;
39 static PassOwnPtr<ClassList> create(Element* element)
55 virtual Element* element() { return m_element; }
60 ClassList(Element*);
68 Element* m_element;
/external/skia/src/core/
H A DSkClipStack.cpp19 void SkClipStack::Element::invertShapeFillType() {
34 void SkClipStack::Element::checkEmpty() const {
42 bool SkClipStack::Element::canBeIntersectedInPlace(int saveCount, SkRegion::Op op) const {
54 bool SkClipStack::Element::rectRectIntersectAllowed(const SkRect& newR, bool newAA) const {
82 void SkClipStack::Element::combineBoundsDiff(FillCombo combination, const SkRect& prevFinite) {
119 SkDEBUGFAIL("SkClipStack::Element::combineBoundsDiff Invalid fill combination");
124 void SkClipStack::Element::combineBoundsXOR(int combination, const SkRect& prevFinite) {
151 SkDEBUGFAIL("SkClipStack::Element::combineBoundsXOR Invalid fill combination");
157 void SkClipStack::Element::combineBoundsUnion(int combination, const SkRect& prevFinite) {
181 SkDEBUGFAIL("SkClipStack::Element
[all...]

Completed in 1516 milliseconds

1234567891011>>