/external/webkit/WebCore/dom/ |
OptionGroupElement.h | 26 class Element; 36 OptionGroupElement* toOptionGroupElement(Element*); 37 bool isOptionGroupElement(Element*);
|
StyleElement.h | 27 class Element; 35 StyleSheet* sheet(Element*); 42 void insertedIntoDocument(Document*, Element*); 44 void process(Element*); 46 void createSheet(Element* e, const String& text = String());
|
SelectElement.h | 29 class Element; 43 virtual const Vector<Element*>& listItems() const = 0; 68 static void selectAll(SelectElementData&, Element*); 69 static void saveLastSelection(SelectElementData&, Element*); 70 static int nextSelectableListIndex(SelectElementData&, Element*, int startIndex); 71 static int previousSelectableListIndex(SelectElementData&, Element*, int startIndex); 72 static void setActiveSelectionAnchorIndex(SelectElementData&, Element*, int index); 74 static void updateListBoxSelection(SelectElementData&, Element*, bool deselectOtherOptions); 75 static void listBoxOnChange(SelectElementData&, Element*); 76 static void menuListOnChange(SelectElementData&, Element*); [all...] |
OptionElement.h | 28 class Element; 45 static void setSelectedState(OptionElementData&, Element*, bool selected); 46 static int optionIndex(SelectElement*, const Element*); 47 static String collectOptionLabelOrText(const OptionElementData&, const Element*); 48 static String collectOptionTextRespectingGroupLabel(const OptionElementData&, const Element*); 49 static String collectOptionValue(const OptionElementData&, const Element*); 51 static String collectOptionInnerText(const Element*); 76 OptionElement* toOptionElement(Element*); 77 bool isOptionElement(Element*);
|
InputElement.h | 30 class Element; 65 static void dispatchFocusEvent(InputElement*, Element*); 66 static void dispatchBlurEvent(InputElement*, Element*); 67 static void updateFocusAppearance(InputElementData&, InputElement*, Element*, bool restorePreviousSelection); 68 static void updateSelectionRange(InputElement*, Element*, int start, int end); 69 static void aboutToUnload(InputElement*, Element*); 70 static void setValueFromRenderer(InputElementData&, InputElement*, Element*, const String&); 77 static void handleBeforeTextInsertedEvent(InputElementData&, InputElement*, Element*, Event*); 78 static void parseSizeAttribute(InputElementData&, Element*, MappedAttribute*); 79 static void parseMaxLengthAttribute(InputElementData&, InputElement*, Element*, MappedAttribute*) [all...] |
OptionElement.cpp | 25 #include "Element.h" 40 void OptionElement::setSelectedState(OptionElementData& data, Element* element, bool selected) 46 element->setNeedsStyleRecalc(); 49 int OptionElement::optionIndex(SelectElement* selectElement, const Element* element) 56 const Vector<Element*>& items = selectElement->listItems(); 62 if (items[i] == element) 70 String OptionElement::collectOptionLabelOrText(const OptionElementData& data, const Element* element) [all...] |
/external/webkit/WebCore/editing/ |
MergeIdenticalElementsCommand.h | 35 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;
|
SplitElementCommand.h | 35 static PassRefPtr<SplitElementCommand> create(PassRefPtr<Element> element, PassRefPtr<Node> splitPointChild) 37 return adoptRef(new SplitElementCommand(element, splitPointChild)); 41 SplitElementCommand(PassRefPtr<Element>, PassRefPtr<Node> splitPointChild); 48 RefPtr<Element> m_element1; 49 RefPtr<Element> m_element2;
|
WrapContentsInDummySpanCommand.h | 37 static PassRefPtr<WrapContentsInDummySpanCommand> create(PassRefPtr<Element> element) 39 return adoptRef(new WrapContentsInDummySpanCommand(element)); 43 WrapContentsInDummySpanCommand(PassRefPtr<Element>); 50 RefPtr<Element> m_element;
|
InsertParagraphSeparatorCommand.h | 47 void getAncestorsInsideBlock(const Node* insertionNode, Element* outerBlock, Vector<Element*>& ancestors); 48 PassRefPtr<Element> cloneHierarchyUnderNewBlock(const Vector<Element*>& ancestors, PassRefPtr<Element> blockToInsert);
|
AppendNodeCommand.h | 35 static PassRefPtr<AppendNodeCommand> create(PassRefPtr<Element> parent, PassRefPtr<Node> node) 41 AppendNodeCommand(PassRefPtr<Element> parent, PassRefPtr<Node> node); 46 RefPtr<Element> m_parent;
|
SetNodeAttributeCommand.h | 36 static PassRefPtr<SetNodeAttributeCommand> create(PassRefPtr<Element> element, const QualifiedName& attribute, const AtomicString& value) 38 return adoptRef(new SetNodeAttributeCommand(element, attribute, value)); 42 SetNodeAttributeCommand(PassRefPtr<Element>, const QualifiedName& attribute, const AtomicString& value); 47 RefPtr<Element> m_element;
|
/packages/apps/Mms/src/org/w3c/dom/smil/ |
SMILSwitchElement.java | 15 import org.w3c.dom.Element; 18 * Defines a block of content control. See the switch element definition . 22 * Returns the slected element at runtime. <code>null</code> if the 23 * selected element is not yet available. 24 * @return The selected <code>Element</code> for thisd <code>switch</code> 25 * element. 27 public Element getSelectedElement();
|
SMILElement.java | 16 import org.w3c.dom.Element; 19 * The <code>SMILElement</code> interface is the base for all SMIL element 21 * DOM, extending the base <code>Element</code> class to denote SMIL-specific 29 public interface SMILElement extends Element {
|
/dalvik/libcore/xml/src/main/java/org/apache/xpath/ |
WhitespaceStrippingElementMatcher.java | 25 import org.w3c.dom.Element; 28 * A class that implements this interface can tell if a given element should 34 * Get information about whether or not an element should strip whitespace. 38 * @param targetElement Element to check 45 XPathContext support, Element targetElement) throws TransformerException;
|
/external/webkit/WebKit/chromium/src/ |
WebElement.cpp | 34 #include "Element.h" 41 WebElement::WebElement(const WTF::PassRefPtr<WebCore::Element>& elem) 46 WebElement& WebElement::operator=(const WTF::PassRefPtr<WebCore::Element>& elem) 52 WebElement::operator WTF::PassRefPtr<Element>() const 54 return PassRefPtr<Element>(static_cast<Element*>(m_private)); 59 return constUnwrap<Element>()->tagName(); 64 return equalIgnoringCase(constUnwrap<Element>()->tagName(), 70 return constUnwrap<Element>()->hasAttribute(attrName); 75 return constUnwrap<Element>()->getAttribute(attrName) [all...] |
/external/webkit/WebCore/xml/ |
XPathNamespace.h | 41 XPathNamespace(PassRefPtr<Element> ownerElement, const AtomicString& prefix, const AtomicString& uri); 44 virtual Element* ownerElement() const; 53 RefPtr<Element> m_ownerElement;
|
/external/webkit/WebCore/html/ |
HTMLImageLoader.h | 32 HTMLImageLoader(Element*);
|
HTMLNameCollection.h | 43 virtual Element* itemAfter(Element*) const;
|
HTMLTableRowsCollection.h | 49 virtual Element* itemAfter(Element*) const;
|
/external/webkit/WebCore/loader/ |
ImageLoader.h | 32 class Element; 37 ImageLoader(Element*); 40 // This function should be called when the element is attached to a document; starts 48 Element* element() const { return m_element; } function in class:WebCore::ImageLoader 75 Element* m_element;
|
/frameworks/base/libs/rs/ |
rsElement.h | 29 // An element is a group of Components that occupies one cell in a structure. 30 class Element : public ObjectBase 33 ~Element(); 49 const Element * getField(uint32_t idx) const {return mFields[idx].e.get();} 63 static const Element * create(Context *rsc, RsDataType dt, RsDataKind dk, 65 static const Element * create(Context *rsc, size_t count, const Element **, 69 // deallocate any components that are part of this element. 74 ObjectBaseRef<const Element> e; 80 Element(Context *) [all...] |
/dalvik/libcore/xml/src/main/java/org/w3c/dom/ls/ |
LSParserFilter.java | 16 import org.w3c.dom.Element; 25 * The document element is never passed to the <code>LSParserFilter</code> 26 * methods, i.e. it is not possible to filter out the document element. 69 * The parser will call this method after each <code>Element</code> start 71 * <code>Element</code> is processed. The intent is to allow the 72 * element, including any children, to be efficiently skipped. Note that 73 * only element nodes are passed to the <code>startElement</code> 75 * <br>The element node passed to <code>startElement</code> for filtering 76 * will include all of the Element's attributes, but none of the 77 * children nodes. The Element may not yet be in place in the document [all...] |
/external/webkit/WebCore/rendering/ |
RenderTreeAsText.h | 31 class Element; 51 String counterValueForElement(Element*);
|
/frameworks/base/sax/java/android/sax/ |
Element.java | 27 * An XML element. Provides access to child elements and hooks to listen 28 * for events related to this element. 32 public class Element { 37 final Element parent; 40 ArrayList<Element> requiredChilden; 48 Element(Element parent, String uri, String localName, int depth) { 56 * Gets the child element with the given name. Uses an empty string as the 59 public Element getChild(String localName) { 64 * Gets the child element with the given name [all...] |