Home
last modified time | relevance | path

Searched refs:sourceElement (Results 1 – 5 of 5) sorted by relevance

/external/webkit/WebCore/wml/
DWMLTableElement.cpp133 void WMLTableElement::transferAllChildrenOfElementToTargetElement(WMLElement* sourceElement, WMLEle… in transferAllChildrenOfElementToTargetElement() argument
135 RefPtr<NodeList> children = sourceElement->childNodes(); in transferAllChildrenOfElementToTargetElement()
DWMLTableElement.h45 …void transferAllChildrenOfElementToTargetElement(WMLElement* sourceElement, WMLElement* targetElem…
DWMLInputElement.cpp228 const WMLInputElement* sourceElement = static_cast<const WMLInputElement*>(source); in copyNonAttributeProperties() local
229 m_data.setValue(sourceElement->m_data.value()); in copyNonAttributeProperties()
/external/webkit/WebCore/dom/
DStyledElement.cpp472 void StyledElement::copyNonAttributeProperties(const Element *sourceElement) in copyNonAttributeProperties() argument
474 const StyledElement* source = static_cast<const StyledElement*>(sourceElement); in copyNonAttributeProperties()
482 Element::copyNonAttributeProperties(sourceElement); in copyNonAttributeProperties()
/external/webkit/WebCore/html/
DHTMLInputElement.cpp1469 const HTMLInputElement* sourceElement = static_cast<const HTMLInputElement*>(source); in copyNonAttributeProperties() local
1471 m_data.setValue(sourceElement->m_data.value()); in copyNonAttributeProperties()
1472 setChecked(sourceElement->m_checked); in copyNonAttributeProperties()
1473 m_defaultChecked = sourceElement->m_defaultChecked; in copyNonAttributeProperties()
1474 m_useDefaultChecked = sourceElement->m_useDefaultChecked; in copyNonAttributeProperties()
1475 m_indeterminate = sourceElement->m_indeterminate; in copyNonAttributeProperties()
2696 HTMLDataListElement* sourceElement = dataList(); in selectedOption() local
2697 if (!sourceElement) in selectedOption()
2699 RefPtr<HTMLCollection> options = sourceElement->options(); in selectedOption()