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

<<11121314151617181920>>

  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level2/core/
setAttributeNS05.java 36 * on the element, its prefix is changed to be the prefix part of the "qualifiedName",
41 * Add a new attribute to the "emp:address" element.
83 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "<newValue>");
84 resultAttr = ((Element) /*Node */testAddr).getAttributeNS(namespaceURI, localName);
setAttributeNodeNS01.java 36 * is already an attribute of another element.
39 * a newly created element. The "createAttributeNS(namespaceURI,qualifiedName)"
42 * Element. The "setAttributeNodeNS(newAttr)" method is
45 * an attribute of another element.
77 Element newElement;
96 setAttr2 = ((Element) /*Node */testAddr).setAttributeNodeNS(newAttr);
setAttributeNodeNS02.java 38 * Obtain the children of the THIRD "gender" element. The elements
83 Element genElement;
98 genElement = (Element) gList.item(0);
  /dalvik/libcore/xml/src/main/java/org/kxml2/kdom/
Document.java 28 element. This class basically adds some consistency checks to
61 an exception when a second root element is added */
64 if (type == ELEMENT) {
66 // throw new RuntimeException("Only one document root element allowed");
106 /** returns the root element of this document. */
108 public Element getRootElement() {
110 throw new RuntimeException("Document has no root element!");
112 return (Element) getChild(rootIndex);
Element.java 29 * In order to create an element, please use the createElement method
33 public class Element extends Node {
41 public Element() {
67 public Element createElement(
77 * Returns the number of attributes of this element. */
113 * all parents un of the root element. */
117 Element current = this;
120 if (!(current.parent instanceof Element)) return current.parent;
121 current = (Element) current.parent;
128 * returns the (local) name of the element */
    [all...]
  /dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/
DocumentGeteEementById.java 9 import org.w3c.dom.Element;
14 * The method getElementById returns the element whose ID is given by elementId.
15 * If not such element exists, returns null.
18 * elementId. This should return a null element.
59 notes = "Doesn't verify getElementById method for existent element.",
65 Element element; local
68 element = doc.getElementById(elementId);
69 assertNull("documentgetelementbyid01", element);
GetElementById.java 30 import org.w3c.dom.Element;
36 * element whose ID matches elementId.
39 * equals "CANADA". Method should return an element whose tag name is
82 // Element element;
85 // element = doc.getElementById("CANADA");
86 // tagname = element.getTagName();
91 notes = "Doesn't verify getElementById method for existent element.",
97 Element element; local
    [all...]
HCNotationsSetNamedItemNS.java 29 import org.w3c.dom.Element;
35 * An attempt to add an element to the named node map returned by notations
85 Element elem;
NodeSetPrefix.java 35 import org.w3c.dom.Element;
46 * Element and Attr interfaces, when applicable.
48 * Create a new element node with a namespace prefix. Add it to a new
50 * Check if the prefix was set correctly on the element.
96 Element element; local
102 element = doc.createElementNS("http://www.w3.org/DOM/Test",
104 docFragment.appendChild(element);
105 element.setPrefix("dmstc");
106 elementTagName = element.getTagName()
145 Element element; local
192 Element element; local
226 Element element; local
272 Element element; local
299 Element element; local
    [all...]
NamedNodeMapGetNamedItemNS.java 34 import org.w3c.dom.Element;
115 Node element; local
122 element = elementList.item(1);
123 attributes = element.getAttributes();
138 Node element; local
145 element = doc.createElementNS("http://www.w3.org/DOM/Test", "root");
147 ((Element) /* Node */element).setAttributeNodeNS(newAttr1);
149 ((Element) /* Node */element).setAttributeNodeNS(newAttr2)
165 Element element; local
190 Node element; local
    [all...]
  /external/webkit/WebCore/dom/
Attribute.h 34 class Element;
58 PassRefPtr<Attr> createAttrIfNeeded(Element*);
DynamicNodeList.cpp 27 #include "Element.h"
60 length += n->isElementNode() && nodeMatches(static_cast<Element*>(n));
72 if (n->isElementNode() && nodeMatches(static_cast<Element*>(n))) {
90 if (n->isElementNode() && nodeMatches(static_cast<Element*>(n))) {
125 Element* node = m_rootNode->document()->getElementById(elementId);
140 if (node->isElementNode() && static_cast<Element*>(node)->getIDAttribute() == elementId)
Document.h 69 class Element;
271 Element* documentElement() const
278 virtual PassRefPtr<Element> createElement(const AtomicString& tagName, ExceptionCode&);
288 virtual PassRefPtr<Element> createElementNS(const String& namespaceURI, const String& qualifiedName, ExceptionCode&);
289 PassRefPtr<Element> createElement(const QualifiedName&, bool createdByParser);
290 Element* getElementById(const AtomicString&) const;
294 Element* elementFromPoint(int x, int y) const;
341 // First searches for an element with the given ID, but if that fails, then looks
345 Element* findAnchor(const String& name);
385 Element* getElementByAccessKey(const String& key) const
    [all...]
  /external/webkit/WebCore/html/
HTMLDocument.h 55 Element* activeElement();
96 virtual PassRefPtr<Element> createElement(const AtomicString& tagName, ExceptionCode&);
  /external/webkit/WebKit/chromium/public/
WebHTTPBody.h 50 struct Element {
78 // Sets the values of the element at the given index. Returns false if
80 WEBKIT_API bool elementAt(size_t index, Element&) const;
  /frameworks/base/libs/rs/
rsProgram.h 67 ObjectBaseRef<Element> *mInputElements;
68 ObjectBaseRef<Element> *mOutputElements;
  /packages/apps/Mms/src/com/android/mms/dom/
AttrImpl.java 22 import org.w3c.dom.Element;
47 public Element getOwnerElement() {
DocumentImpl.java 29 import org.w3c.dom.Element;
75 public abstract Element createElement(String tagName) throws DOMException;
77 public Element createElementNS(String namespaceURI, String qualifiedName)
104 public abstract Element getDocumentElement();
106 public Element getElementById(String elementId) {
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis5/
Visualization5RS.java 25 import android.renderscript.Element;
34 import android.renderscript.Element.Builder;
175 mTextures[0] = Allocation.createFromBitmapResourceBoxed(mRS, mResources, R.drawable.background, Element.RGBA_8888(mRS), true);
177 mTextures[1] = Allocation.createFromBitmapResourceBoxed(mRS, mResources, R.drawable.frame, Element.RGBA_8888(mRS), true);
179 mTextures[2] = Allocation.createFromBitmapResourceBoxed(mRS, mResources, R.drawable.peak_on, Element.RGBA_8888(mRS), true);
181 mTextures[3] = Allocation.createFromBitmapResourceBoxed(mRS, mResources, R.drawable.peak_off, Element.RGBA_8888(mRS), true);
183 mTextures[4] = Allocation.createFromBitmapResourceBoxed(mRS, mResources, R.drawable.needle, Element.RGBA_8888(mRS), true);
185 mTextures[5] = Allocation.createFromBitmapResourceBoxed(mRS, mResources, R.drawable.black, Element.RGB_565(mRS), false);
187 mTextures[6] = Allocation.createFromBitmapResource(mRS, mResources, R.drawable.albumart, Element.RGBA_8888(mRS), true);
189 mTextures[7] = Allocation.createFromBitmapResource(mRS, mResources, R.drawable.fire, Element.RGB_565(mRS), false)
    [all...]
  /external/emma/ant/ant14/com/vladium/emma/report/
ReportCfg.java 32 * ReportCfg is a container for report type {@link ReportCfg.Element}s that are
37 * conceptual property being set via an attribute and a nested element are resolved
53 public static abstract class Element implements IReportEnums, IReportProperties
98 // generic property element [don't doc this publicly]:
113 Element (final Task task, final IProperties settings)
160 public static class Element_HTML extends Element
179 public static class Element_TXT extends Element
198 public static class Element_LCOV extends Element
216 public static class Element_XML extends Element
285 final Element cfg = (Element) i.next ()
    [all...]
  /external/webkit/WebCore/platform/android/
RenderThemeAndroid.cpp 30 #include "Element.h"
197 void RenderThemeAndroid::adjustButtonStyle(CSSStyleSelector*, RenderStyle* style, WebCore::Element*) const
217 Element* formControlElement = static_cast<Element*>(node);
246 void RenderThemeAndroid::adjustTextFieldStyle(CSSStyleSelector*, RenderStyle* style, WebCore::Element*) const
256 void RenderThemeAndroid::adjustTextAreaStyle(CSSStyleSelector*, RenderStyle* style, WebCore::Element*) const
316 void RenderThemeAndroid::adjustSearchFieldStyle(CSSStyleSelector*, RenderStyle* style, Element*) const
326 void RenderThemeAndroid::adjustListboxStyle(CSSStyleSelector*, RenderStyle* style, Element*) const
330 // Make webkit draw invisible, since it will simply draw the first element
335 static void adjustMenuListStyleCommon(RenderStyle* style, Element* e
    [all...]
  /dalvik/libcore/xml/src/test/java/tests/xml/
DomTest.java 29 import org.w3c.dom.Element;
103 private Element menu;
104 private Element item;
107 private Element name;
111 private Element description;
115 private Element option1;
116 private Element option2;
119 private Element nutrition;
120 private Element vitamins;
123 private Element vitaminc
    [all...]
  /external/webkit/WebCore/accessibility/
AccessibilityRenderObject.cpp 257 InputElement* inputElement = toInputElement(static_cast<Element*>(m_renderer->node()));
355 InputElement* inputElement = toInputElement(static_cast<Element*>(m_renderer->node()));
369 InputElement* inputElement = toInputElement(static_cast<Element*>(m_renderer->node()));
457 Element* element = static_cast<Element*>(node);
458 return element->getAttribute(aria_levelAttr).toInt();
498 return node && ((node->isElementNode() && static_cast<Element*>(node)->isFormControlElement())
557 Element* element = static_cast<Element*>(node)
1232 Element* element = anchorElement(); local
1334 Element* element = elements[k]; local
1544 Element* element = static_cast<Element*>(node); local
1878 Element* element = elements[k]; local
1979 Node* element = m_renderer->node(); local
2568 Element* element = static_cast<Element*>(renderer()->node()); local
3031 Element* element = static_cast<Element*>(renderer()->node()); local
    [all...]
  /dalvik/libcore/prefs/src/main/java/java/util/prefs/
XMLParser.java 52 import org.w3c.dom.Element;
80 + " <!ELEMENT preferences (root)>" //$NON-NLS-1$
82 + " <!ELEMENT root (map, node*) >" //$NON-NLS-1$
84 + " <!ELEMENT node (map, node*) >" //$NON-NLS-1$
86 + " <!ELEMENT map (entry*) >" //$NON-NLS-1$
87 + " <!ELEMENT entry EMPTY >" //$NON-NLS-1$
372 Element preferences;
382 Element root = (Element) preferences
406 private static void loadNode(Preferences prefs, Element node)
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
determinize.h 213 struct Element {
214 Element() {}
216 Element(StateId s, Weight w) : state_id(s), weight(w) {}
221 typedef slist<Element> Subset;
245 Element element(s, Weight::One());
247 subset->push_front(element);
257 Element &element = *siter; local
258 final = Plus(final, Times(element.weight
433 const Element &element = *iter; local
    [all...]

Completed in 69 milliseconds

<<11121314151617181920>>