/external/webkit/WebCore/dom/ |
Document.cpp | 531 m_scriptsToExecuteSoon[i].first->element()->deref(); // Balances ref() in executeScriptSoon(). 628 // Invalidate the document element we have cached in case it was replaced. 638 m_documentElement = static_cast<Element*>(n); 641 PassRefPtr<Element> Document::createElement(const AtomicString& name, ExceptionCode& ec) 739 Element* oldElement = static_cast<Element*>(importedNode); 740 RefPtr<Element> newElement = createElementNS(oldElement->namespaceURI(), oldElement->tagQName().toString(), ec); 864 PassRefPtr<Element> Document::createElement(const QualifiedName& qName, bool createdByParser) 866 RefPtr<Element> e; 887 e = Element::create(qName, document()) 920 Element* element = m_elementsById.get(elementId.impl()); local 1127 Element* element = static_cast<Element*>(n); local 4153 Element *element; local [all...] |
ScriptElement.cpp | 62 data.evaluateScript(ScriptSourceCode(data.scriptContent(), data.element()->document()->url())); // FIXME: Provide a real starting line number here. 76 Element* element = data.element(); 78 // If a node is inserted as a child of the script element 79 // and the script element has been inserted in the document 81 if (element->inDocument() && element->firstChild()) 82 data.evaluateScript(ScriptSourceCode(data.scriptContent(), element->document()->url())); // FIXME: Provide a real starting line number here 126 ScriptElementData::ScriptElementData(ScriptElement* scriptElement, Element* element [all...] |
StyledElement.cpp | 115 : Element(name, document, type) 149 Element::attributeChanged(attr, preserveDecls); 472 void StyledElement::copyNonAttributeProperties(const Element *sourceElement) 482 Element::copyNonAttributeProperties(sourceElement); 497 Element::didMoveToNewOwnerDocument();
|
/external/webkit/WebKit/chromium/src/ |
WebSearchableFormData.cpp | 95 const Vector<Element*>& listItems = select->listItems(); 97 for (Vector<Element*>::const_iterator i(listItems.begin()); i != listItems.end(); ++i) { 110 for (Vector<Element*>::const_iterator i(listItems.begin()); i != listItems.end(); ++i) { 125 // Returns true if the form element is in its default state, false otherwise. 126 // The default state is the state of the form element on initial load of the 127 // page, and varies depending upon the form element. For example, a checkbox is 140 // If form has only one text input element, return true. If a valid input 141 // element is not found, return false. Additionally, the form data for all
|
EditorClientImpl.cpp | 643 void EditorClientImpl::textFieldDidBeginEditing(Element*) 647 void EditorClientImpl::textFieldDidEndEditing(Element* element) 663 HTMLInputElement* inputElement = WebKit::toHTMLInputElement(element); 678 void EditorClientImpl::textDidChangeInTextField(Element* element) 680 ASSERT(element->hasLocalName(HTMLNames::inputTag)); 683 autofill(static_cast<HTMLInputElement*>(element), false, false, 755 // First let's see if there is a password listener for that element. 795 // input element with autofill suggestions [all...] |
/external/webkit/WebKit/qt/Api/ |
qwebelement.h | 31 class Element; 105 void appendInside(const QWebElement& element); 109 void prependInside(const QWebElement& element); 113 void appendOutside(const QWebElement& element); 117 void prependOutside(const QWebElement& element); 120 void encloseContentsWith(const QWebElement& element); 123 void encloseWith(const QWebElement& element); 126 void replace(const QWebElement& element); 146 explicit QWebElement(WebCore::Element*); 158 WebCore::Element* m_element [all...] |
/external/webkit/WebCore/xml/ |
XPathStep.cpp | 35 #include "Element.h" 189 // For other axes, the principal node type is element. 200 return equalIgnoringCase(static_cast<Element*>(node)->localName(), name) && (namespaceURI.isNull() || namespaceURI == node->namespaceURI()); 203 return static_cast<Element*>(node)->hasLocalName(name) && namespaceURI == node->namespaceURI() && !namespaceURI.isNull(); 205 return static_cast<Element*>(node)->hasLocalName(name) && namespaceURI == node->namespaceURI(); 338 RefPtr<Node> n = static_cast<Element*>(context)->getAttributeNodeNS(m_nodeTest.namespaceURI(), m_nodeTest.data()); 351 RefPtr<Attr> attr = attrs->attributeItem(i)->createAttrIfNeeded(static_cast<Element*>(context));
|
/external/webkit/WebCore/editing/ |
ReplaceSelectionCommand.cpp | 40 #include "Element.h" 97 static_cast<const Element *>(node)->getAttribute(classAttr) == interchangeNewlineClassString; 121 Element* editableRoot = selection.rootEditableElement(); 228 // Copy the whitespace and user-select style from the context onto this element. 387 return node && node->hasTagName(blockquoteTag) && node->isElementNode() && static_cast<const Element*>(node)->getAttribute(classAttr) == ApplePasteAsQuotation; 431 return a && b && a->isElementNode() && b->isElementNode() && static_cast<Element*>(a)->tagName() == static_cast<Element*>(b)->tagName(); 495 // We don't have to make sure that m_firstNodeInserted isn't inside a select or script element, because 515 removeNodeAttribute(static_cast<Element*>(node), classAttr); 557 if (styleText == static_cast<Element*>(sourceDocumentStyleSpan)->getAttribute(styleAttr)) [all...] |
/external/webkit/WebCore/inspector/front-end/ |
utilities.js | 172 Element.prototype.removeStyleClass = function(className) 188 Element.prototype.removeMatchingStyleClasses = function(classNameRegex) 195 Element.prototype.addStyleClass = function(className) 201 Element.prototype.hasStyleClass = function(className) 216 Element.prototype.positionAt = function(x, y) 251 Element.prototype.query = function(query) 256 Element.prototype.removeChildren = function() 261 Element.prototype.isInsertionCaretInside = function() 270 Element.prototype.__defineGetter__("totalOffsetLeft", function() 273 for (var element = this; element; element = element.offsetParent [all...] |
/external/webkit/WebCore/page/ |
DragController.cpp | 41 #include "Element.h" 243 // The button for a FILE input is a sub element with no set input type 244 // In order to get around this problem we assume any non-FILE input element 259 static Element* elementUnderMouse(Document* documentUnderMouse, const IntPoint& p) 275 return static_cast<Element*>(n); 313 Element* element = elementUnderMouse(m_documentUnderMouse, point); local 314 if (!asFileInput(element)) { 319 Frame* innerFrame = element->document()->frame(); 363 Element* element = elementUnderMouse(m_documentUnderMouse, point) local 659 Element* element = static_cast<Element*>(node); local [all...] |
Frame.cpp | 182 // Make sure we will not end up with two frames referencing the same owner element. 459 String Frame::searchForLabelsBeforeElement(const Vector<String>& labels, Element* element, size_t* resultDistance, bool* resultIsInCellAbove) 467 // If the starting element is within a table, the cell that contains it 476 // walk backwards in the node tree, until another element, or form, or end of tree 479 for (n = element->traversePreviousNode(); 484 || (n->isHTMLElement() && static_cast<Element*>(n)->isFormControlElement())) 486 // We hit another form element or the start of the form - bail out 515 // previous element, we still might need to search the row above us for a label. 562 String Frame::matchLabelsAgainstElement(const Vector<String>& labels, Element* element [all...] |
/external/webkit/WebCore/platform/qt/ |
RenderThemeQt.cpp | 392 void RenderThemeQt::adjustButtonStyle(CSSStyleSelector* selector, RenderStyle* style, Element*) const 496 void RenderThemeQt::adjustTextFieldStyle(CSSStyleSelector*, RenderStyle* style, Element*) const 533 void RenderThemeQt::adjustTextAreaStyle(CSSStyleSelector* selector, RenderStyle* style, Element* element) const 535 adjustTextFieldStyle(selector, style, element); 543 void RenderThemeQt::adjustMenuListStyle(CSSStyleSelector*, RenderStyle* style, Element*) const 594 void RenderThemeQt::adjustMenuListButtonStyle(CSSStyleSelector*, RenderStyle* style, Element*) const 682 void RenderThemeQt::adjustSliderTrackStyle(CSSStyleSelector*, RenderStyle* style, Element*) const 694 void RenderThemeQt::adjustSliderThumbStyle(CSSStyleSelector*, RenderStyle* style, Element*) const 706 Element* e) cons [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/ |
UnImplNode.java | 34 import org.w3c.dom.Element; 49 public class UnImplNode implements Node, Element, NodeList, Document 267 * Unimplemented. See org.w3c.dom.Element 269 * @param name Name of the element 282 * Unimplemented. See org.w3c.dom.Element 299 * Unimplemented. See org.w3c.dom.Element 316 * Unimplemented. See org.w3c.dom.Element 332 * Unimplemented. See org.w3c.dom.Element 349 * Unimplemented. See org.w3c.dom.Element 365 * Unimplemented. See org.w3c.dom.Element [all...] |
QName.java | 29 import org.w3c.dom.Element; 324 public QName(String qname, Element namespaceContext, 341 public QName(String qname, Element namespaceContext,
|
TreeWalker.java | 26 import org.w3c.dom.Element; 333 NamedNodeMap atts = ((Element) node).getAttributes(); 469 NamedNodeMap atts = ((Element) node).getAttributes();
|
/packages/wallpapers/Basic/src/com/android/wallpaper/grass/ |
GrassRS.java | 27 import static android.renderscript.Element.*; 32 import android.renderscript.Element; 271 elementBuilder.add(Element.ATTRIB_COLOR_U8_4(mRS), "color"); 272 elementBuilder.add(Element.ATTRIB_POSITION_2(mRS), "position"); 273 elementBuilder.add(Element.ATTRIB_TEXTURE_2(mRS), "texture"); 274 final Element vertexElement = elementBuilder.create(); 278 meshBuilder.setIndexType(Element.INDEX_16(mRS), mIndicies);
|
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/ |
DTMNodeProxy.java | 37 import org.w3c.dom.Element; 64 implements Node, Document, Text, Element, Attr, 584 * Fragment and hence not have a clear-cut Document Element. We can 590 public final Element getDocumentElement() 625 return (Element)(dtm.getNode(elementhandle)); 637 public final Element createElement(String tagName) throws DOMException 836 public final Element createElementNS( 953 public final Element getElementById(String elementId) 955 return (Element) dtm.getNode(dtm.getElementById(elementId)); 1078 * @see org.w3c.dom.Element [all...] |
/external/tinyxml/ |
xmltest.cpp | 156 // an element from the document. 159 // Get the "ToDo" element. 175 // "none" to "here". It's the next sibling element. 244 TiXmlElement* element; local 257 XmlTest( "Root element exists.", true, ( node != 0 && node->ToElement() ) ); 258 XmlTest ( "Root element value is 'ToDo'.", "ToDo", node->Value()); 263 XmlTest( "Sibling element exists & is an element.", true, ( node != 0 && node->ToElement() ) ); 306 for( element = todoElement->FirstChildElement(); 307 element; 508 TiXmlElement* element = docH.FirstChildElement( "document" ).FirstChildElement( "Russian" ).Element(); local 669 const TiXmlElement* element = doc.RootElement(); local [all...] |
/dalvik/libcore/xml/src/test/java/tests/api/javax/xml/parsers/ |
DocumentBuilderTest.java | 26 import org.w3c.dom.Element; 630 Element root = (Element)d.getElementsByTagName("a").item(0); 716 Element root = (Element)d.getElementsByTagName("a").item(0); 730 root = (Element)d.getElementsByTagName("a").item(0);
|
/dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/ |
ImportNode.java | 36 import org.w3c.dom.Element; 110 Element attrOwnerElement; 238 Element element; local 249 element = (Element) addresses.item(0); 250 assertNotNull("empAddressNotNull", element); 251 aNode = doc.importNode(element, false); 271 Element element; local [all...] |
/external/webkit/WebKit/gtk/WebCoreSupport/ |
EditorClientGtk.cpp | 545 void EditorClient::textFieldDidBeginEditing(Element*) 549 void EditorClient::textFieldDidEndEditing(Element*) 553 void EditorClient::textDidChangeInTextField(Element*) 557 bool EditorClient::doTextFieldCommandFromEvent(Element*, KeyboardEvent*) 562 void EditorClient::textWillBeDeletedInTextField(Element*) 567 void EditorClient::textDidChangeInTextArea(Element*)
|
/external/webkit/WebKit/win/WebCoreSupport/ |
WebEditorClient.cpp | 294 bool WebEditorClient::shouldShowDeleteInterface(HTMLElement* /*element*/) 314 void WebEditorClient::textFieldDidBeginEditing(Element* e) 331 void WebEditorClient::textFieldDidEndEditing(Element* e) 348 void WebEditorClient::textDidChangeInTextField(Element* e) 365 bool WebEditorClient::doTextFieldCommandFromEvent(Element* e, KeyboardEvent* ke) 387 void WebEditorClient::textWillBeDeletedInTextField(Element* e) 406 void WebEditorClient::textDidChangeInTextArea(Element* e)
|
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/dom3/ |
DOM3TreeWalker.java | 45 import org.w3c.dom.Element;
132 /** stores all namespace bindings on the current element */
135 /** stores the current element depth */
156 // Parameter element-content-whitespace, true [required] (default) - value - false [optional] NOT SUPPORTED
420 serializeElement((Element) node, true);
455 serializeElement((Element) node, false);
593 * Serializes an Element Node.
595 * @param node The Element Node to serialize
598 protected void serializeElement(Element node, boolean bStart)
619 // namespaces=true, record and fixup namspaced element
[all...] |
/external/webkit/WebCore/html/ |
HTMLDocument.cpp | 144 Element* HTMLDocument::activeElement() 148 return static_cast<Element*>(node); 304 PassRefPtr<Element> HTMLDocument::createElement(const AtomicString& name, ExceptionCode& ec)
|
HTMLObjectElement.cpp | 130 // for the object element. 278 Element* element = static_cast<Element*>(child); local 279 if (HTMLElement::isRecognizedTagName(element->tagQName()) && !element->hasTagName(paramTag)) 336 for (Element* child = firstElementChild(); child; child = child->nextElementSibling()) { 358 // not seem like it would work. The image element has similar but not identical code.
|