HomeSort by relevance Sort by last modified time
    Searched refs:Element (Results 501 - 525 of 827) sorted by null

<<21222324252627282930>>

  /dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
DOM2Helper.java 32 import org.w3c.dom.Element;
192 * Given an XML ID, return the element. This requires assistance from the
201 * @return DOM Element node with an attribute of type ID whose value
203 * such an element or if the DOM can't answer the question for other
206 public Element getElementByID(String id, Document doc)
  /external/webkit/WebCore/accessibility/
AccessibilityListBoxOption.cpp 34 #include "Element.h"
145 Element* AccessibilityListBoxOption::actionElement() const
198 const Vector<Element*>& listItems = selectElement->listItems();
  /external/webkit/WebCore/css/
CSSCursorImageValue.cpp 47 Element* element = document->getElementById(SVGURIReference::getTarget(fragmentId)); local
48 if (element && element->hasTagName(SVGNames::cursorTag))
49 return static_cast<SVGCursorElement*>(element);
80 bool CSSCursorImageValue::updateIfSVGCursorIsUsed(Element* element)
83 UNUSED_PARAM(element);
85 if (!element || !element->isSVGElement()
    [all...]
  /external/webkit/WebCore/dom/
Node.h 41 class Element;
119 Element* parentElement() const;
154 String lookupNamespacePrefix(const AtomicString& namespaceURI, const Element* originalElement) const;
241 Element* enclosingBlockFlowElement() const;
243 Element* enclosingInlineElement() const;
244 Element* rootEditableElement() const;
253 // Called by the parser when this element's close tag is reached,
505 PassRefPtr<Element> querySelector(const String& selectors, ExceptionCode&);
574 // CreateElementZeroRefCount is deprecated and can be removed once we convert all element
617 Element* ancestorElement() const
    [all...]
make_names.pl 131 return $parameters{namespace} . upperCaseName($_[0]) . "Element"
232 return $tagName eq $parameters{namespace} . "Element";
235 # Build a direct mapping from the tags to the Element to create, excluding
236 # Element that have not constructor.
250 $interfaceName =~ s/$parameters{namespace}(.*)Element/$1/;
263 print F "static PassRefPtr<$parameters{namespace}Element> ${constructorName}Constructor(const QualifiedName& $constructorTagName, Document* document";
274 # Element constructor with the right arguments.
646 print F "typedef PassRefPtr<$parameters{namespace}Element> (*ConstructorFunction)(const QualifiedName&, Document*";
685 print F "\nPassRefPtr<$parameters{namespace}Element> $parameters{namespace}ElementFactory::create$parameters{namespace}Element(const QualifiedName& qName, Document* document"
    [all...]
xml_expat_tokenizer.cpp 277 XMLTokenizer::XMLTokenizer(DocumentFragment *fragment, Element *parentElement)
301 Vector<Element*> elemStack;
308 parentElement = static_cast<Element*>(n);
314 for (Element* element = elemStack.last(); !elemStack.isEmpty(); elemStack.removeLast()) {
315 if (NamedAttrMap* attrs = element->attributes()) {
394 static inline void handleElementNamespaces(Element *newElement, const String &uri, const String &prefix, ExceptionCode &exceptioncode)
405 static inline void handleElementAttributes(Element *newElement, const XML_Char **atts, ExceptionCode &exceptioncode)
444 RefPtr<Element> newElement = m_doc->createElementNS(uri, qName, ec);
495 if (n->isElementNode() && m_view && static_cast<Element*>(n)->hasTagName(scriptTag))
    [all...]
XMLTokenizerQt.cpp 108 XMLTokenizer::XMLTokenizer(DocumentFragment* fragment, Element* parentElement, FragmentScriptingPermission permission)
137 Vector<Element*> elemStack;
144 parentElement = static_cast<Element*>(n);
151 for (Element* element = elemStack.last(); !elemStack.isEmpty(); elemStack.removeLast()) {
152 if (NamedNodeMap* attrs = element->attributes()) {
165 // If the parent element is not in document tree, there may be no xmlns attribute; just default to the parent's namespace.
261 bool parseXMLDocumentFragment(const String& chunk, DocumentFragment* fragment, Element* parent, FragmentScriptingPermission scriptingPermission)
326 static inline void handleElementNamespaces(Element* newElement, const QXmlStreamNamespaceDeclarations &ns,
339 static inline void handleElementAttributes(Element* newElement, const QXmlStreamAttributes &attrs, ExceptionCode& ec
557 Element* element = static_cast<Element*>(n); local
    [all...]
  /external/webkit/WebCore/editing/
EditCommand.cpp 35 #include "Element.h"
165 Element* root = s.rootEditableElement();
176 Element* root = s.rootEditableElement();
FormatBlockCommand.cpp 27 #include "Element.h"
110 RefPtr<Element> blockNode = createHTMLElement(document(), m_tagName);
111 RefPtr<Element> placeholder = createBreakElement(document());
  /external/webkit/WebCore/html/
HTMLDocument.idl 53 readonly attribute Element activeElement;
  /external/webkit/WebCore/page/
DragController.h 40 class Element;
110 void doImageDrag(Element*, const IntPoint&, const IntRect&, Clipboard*, Frame*, IntPoint&);
  /external/webkit/WebCore/svg/
SVGFEImageElement.cpp 61 Element* hrefElement = document()->getElementById(SVGURIReference::getTarget(href()));
117 Element* hrefElement = document()->getElementById(SVGURIReference::getTarget(href()));
  /external/webkit/WebKit/mac/Plugins/
WebNullPluginView.mm 36 #import <WebCore/Element.h>
55 element = [elem retain];
66 [element release];
73 DOMElement *localElement = element;
76 element = nil;
  /packages/apps/Mms/src/com/android/mms/dom/
ElementImpl.java 22 import org.w3c.dom.Element;
27 public class ElementImpl extends NodeImpl implements Element {
41 * Element Interface methods
141 // The value of nodeName is tagName when Node is an Element
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis3/
Visualization3RS.java 28 import android.renderscript.Element;
34 import android.renderscript.Element.Builder;
  /external/webkit/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js 259 case 1: return 'element';
397 if (!win.Element){
398 win.Element = $empty;
400 win.Element.prototype = (Browser.Engine.webkit) ? window["[[DOMElement.prototype]]"] : {};
1294 Script: Element.js
1302 var Element = new Native({
1304 name: 'Element',
1306 legacy: window.Element,
1309 var konstructor = Element.Constructors.get(tag);
1316 Element.Prototype[key] = value
    [all...]
  /dalvik/libcore/xml/src/test/java/tests/xml/
NormalizeTest.java 28 import org.w3c.dom.Element;
63 "element-content-whitespace", "comments", "namespaces" };
110 assertEquals(true, domConfiguration.getParameter("element-content-whitespace"));
111 assertUnsupported("element-content-whitespace", false);
112 assertSupported("element-content-whitespace", true);
404 Element root = document.createElement("foo");
424 Element root = document.createElement("foo");
437 Element root = document.createElement("foo");
449 Element root = document.createElement("foo");
470 Element root = document.createElement("foo")
    [all...]
  /frameworks/base/libs/rs/
rsAllocation.cpp 346 type->setElement(static_cast<Element *>(e));
477 static ElementConverter_t pickConverter(const Element *dst, const Element *src)
526 const Element *src = static_cast<const Element *>(_src);
527 const Element *dst = static_cast<const Element *>(_dst);
566 const Element *srcE = static_cast<const Element *>(_src);
567 const Element *dstE = static_cast<const Element *>(_dst)
    [all...]
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/
attrcreatedocumentfragment.java 31 * Attr nodes may be associated with Element nodes contained within a DocumentFragment.
32 * Create a new DocumentFragment and add a newly created Element node(with one attribute).
33 * Once the element is added, its attribute should be available as an attribute associated
34 * with an Element within a DocumentFragment.
65 Element newOne;
attrspecifiedvalueremove.java 41 * from the Element interface and the "getNamedItem(name)"
85 ((Element) /*Node */testNode).removeAttribute("street");
documentcreateelementdefaultattr.java 31 * The "createElement(tagName)" method creates an Element
34 * created and attached to the element.
37 * The method should create an instance of an Element node
39 * attribute with default values, therefore the newly created element
75 Element newElement;
hc_attrcreatedocumentfragment.java 31 * Create a new DocumentFragment and add a newly created Element node(with one attribute).
32 * Once the element is added, its attribute should be available as an attribute associated
33 * with an Element within a DocumentFragment.
66 Element newOne;
hc_attrnormalize.java 78 ((Element) /*Node */testNode).normalize();
hc_entitiessetnameditem1.java 31 * An attempt to add an element to the named node map returned by entities should
66 Element elem;
hc_nodereplacechildnodename.java 34 * Replace the second Element of the second employee with
35 * a newly created node Element and check the NodeName
77 childList = ((Element) /*Node */employeeNode).getElementsByTagName("em");
82 assertEqualsAutoCase("element", "replacedNodeName", "em", childName);

Completed in 444 milliseconds

<<21222324252627282930>>