HomeSort by relevance Sort by last modified time
    Searched refs:Element (Results 176 - 200 of 1992) sorted by null

1 2 3 4 5 6 78 91011>>

  /libcore/luni/src/test/java/libcore/java/util/
EnumSetTest.java 41 assertTrue(Element.values().length > 64);
51 EnumSet<Element> set = EnumSet.of(Element.H, Element.TB, Element.DY, Element.UUO);
52 new SerializationTester<EnumSet<Element>>(set, s).test();
101 enum Element {
  /libcore/luni/src/test/java/tests/org/w3c/dom/
AttrGetOwnerElement.java 5 import org.w3c.dom.Element;
39 // Element element;
40 // Element ownerElement;
50 // element = (Element) elementList.item(1);
51 // attributes = element.getAttributes();
60 Element element; local
61 Element ownerElement
86 Element element; local
105 Node element; local
    [all...]
NamedNodeMapSetNamedItemNS.java 29 import org.w3c.dom.Element;
41 * Retreive the first element whose localName is address and namespaceURI
86 Node element; local
95 element = elementList.item(0);
96 attributes = element.getAttributes();
98 ((Element) /* Node */element).setAttributeNodeNS(newAttr1);
107 Element element; local
113 element = doc.createElementNS("http://www.w3.org/DOM/Test", "root")
131 Element element; local
166 Element element; local
232 Element element; local
258 Element element; local
284 Element element; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
OutlineLabelProvider.java 33 import org.w3c.dom.Element;
44 public Image getImage(Object element) {
45 if (element instanceof Element) {
46 Element e = (Element) element;
59 return super.getImage(element);
63 public String getText(Object element) {
64 String text = super.getText(element);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.cpp 27 #include "core/dom/Element.h"
128 PassRefPtrWillBeRawPtr<Element> Element::create(const QualifiedName& tagName, Document* document)
130 return adoptRefWillBeNoop(new Element(tagName, document, CreateElement));
133 Element::Element(const QualifiedName& tagName, Document* document, ConstructionType type)
140 Element::~Element()
154 // With Oilpan, either the Element has been removed from the Document
155 // or the Document is dead as well. If the Element has been removed fro
562 Element* element = offsetParent(); local
    [all...]
NameNodeList.cpp 26 #include "core/dom/Element.h"
47 bool NameNodeList::elementMatches(const Element& element) const
49 return element.getNameAttribute() == m_name;
NamedNodesCollection.cpp 33 #include "core/dom/Element.h"
37 Element* NamedNodesCollection::item(unsigned index) const
PendingScript.cpp 29 #include "core/dom/Element.h"
38 PassRefPtrWillBeRawPtr<Element> PendingScript::releaseElementAndClear()
  /external/chromium_org/ui/base/l10n/
l10n_util_collator.h 82 // Compares two elements' string keys and returns true if the first element's
83 // string key is less than the second element's string key. The Element must
87 template <class Element>
88 class StringComparator : public std::binary_function<const Element&,
89 const Element&,
96 bool operator()(const Element& lhs, const Element& rhs) {
114 // each element in the vector by using collation rules for |locale|.
118 template <class Element>
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTheme.h 40 class Element;
60 // This method is called whenever style has been computed for an element and the appearance
65 void adjustStyle(RenderStyle*, Element*, const CachedUAStyle*);
152 virtual void adjustSliderThumbSize(RenderStyle*, Element*) const;
215 virtual void adjustCheckboxStyle(RenderStyle*, Element*) const;
219 virtual void adjustRadioStyle(RenderStyle*, Element*) const;
223 virtual void adjustButtonStyle(RenderStyle*, Element*) const;
226 virtual void adjustInnerSpinButtonStyle(RenderStyle*, Element*) const;
234 virtual void adjustMenuListStyle(RenderStyle*, Element*) const;
237 virtual void adjustMenuListButtonStyle(RenderStyle*, Element*) const
    [all...]
RenderIFrame.h 35 explicit RenderIFrame(Element*);
RenderMediaControlElements.cpp 37 RenderTextTrackContainerElement::RenderTextTrackContainerElement(Element* element)
38 : RenderBlockFlow(element)
RenderRubyText.h 40 RenderRubyText(Element*);
  /external/smack/src/org/xbill/DNS/
APLRecord.java 23 public static class Element {
30 Element(int family, boolean negative, Object address, int prefixLength)
43 * Creates an APL element corresponding to an IPv4 or IPv6 prefix.
50 Element(boolean negative, InetAddress address, int prefixLength) {
73 if (arg == null || !(arg instanceof Element))
75 Element elt = (Element) arg;
119 if (!(o instanceof Element)) {
120 throw new IllegalArgumentException("illegal element");
122 Element element = (Element) o local
155 Element element; local
237 Element element = (Element) it.next(); local
263 Element element = (Element) it.next(); local
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
partition.h 40 struct Element {
41 Element() : value(0), next(0), prev(0) {}
42 Element(T v) : value(v), next(0), prev(0) {}
45 Element* next;
46 Element* prev;
63 // Initialize just creates num_states of elements. All element
64 // operations are then done by simply disconnecting the element from
77 elements_[i] = new Element(i);
101 // use the Move() method move an element from once class to another.
103 Element* element = elements_[element_id] local
120 Element* element = elements_[element_id]; local
    [all...]
  /frameworks/base/rs/java/android/renderscript/
ScriptIntrinsicColorMatrix.java 22 * If the element type is {@link Element.DataType#UNSIGNED_8},
23 * it is converted to {@link Element.DataType#FLOAT_32} and
25 * is less than four, a {@link Element#F32_4} is created by
28 * rsMatrixMultiply(), adding a {@link Element#F32_4}, and then
35 * Supported elements types are {@link Element#U8}, {@link
36 * Element#U8_2}, {@link Element#U8_3}, {@link Element#U8_4},
37 * {@link Element#F32}, {@link Element#F32_2}, {@lin
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
JaxenXPathTestSuite.java 23 import org.w3c.dom.Element;
85 Element tests = DocumentBuilderFactory.newInstance()
89 for (Element document : elementsOf(tests.getElementsByTagName("document"))) {
92 for (final Element context : elementsOf(document.getElementsByTagName("context"))) {
101 * Populates the test suite with tests from the given XML context element.
104 InputSource inputSource, Element element) {
107 * Each context element has this structure:
119 String select = element.getAttribute("select");
123 xpath.setXPathVariableResolver(new ElementVariableResolver(element));
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DomUtilitiesTest.java 22 import org.w3c.dom.Element;
45 Element root1 = document1.getDocumentElement();
47 Element root2 = document2.getDocumentElement();
57 Element foo1 = document1.createElement("foo");
58 Element foo2 = document2.createElement("foo");
94 Element root = document.getDocumentElement();
96 Element foo = document.createElement("foo");
99 Element bar = document.createElement("bar");
101 Element baz = document.createElement("baz");
130 Element a = document.getDocumentElement()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
ElementShadow.h 48 Element* host() const;
53 ShadowRoot& addShadowRoot(Element& shadowHost, ShadowRoot::ShadowRootType);
100 inline Element* ElementShadow::host() const
113 inline ShadowRoot* Element::youngestShadowRoot() const
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLNoEmbedElement.cpp 54 return Element::rendererIsNeeded(style);
HTMLNoScriptElement.cpp 54 return Element::rendererIsNeeded(style);
HTMLViewSourceDocument.h 64 PassRefPtrWillBeRawPtr<Element> addSpanWithClassName(const AtomicString&);
71 PassRefPtrWillBeRawPtr<Element> addLink(const AtomicString& url, bool isAnchor);
72 PassRefPtrWillBeRawPtr<Element> addBase(const AtomicString& href);
75 RefPtrWillBeMember<Element> m_current;
LabelsNodeList.cpp 28 #include "core/dom/Element.h"
48 bool LabelsNodeList::elementMatches(const Element& element) const
50 return isHTMLLabelElement(element) && toHTMLLabelElement(element).control() == ownerNode();
LabelsNodeList.h 46 virtual bool elementMatches(const Element&) const OVERRIDE;
WindowNameCollection.cpp 17 bool WindowNameCollection::elementMatches(const Element& element) const
21 if (isHTMLImageElement(element)
22 || isHTMLFormElement(element)
23 || isHTMLAppletElement(element)
24 || isHTMLEmbedElement(element)
25 || isHTMLObjectElement(element)) {
26 if (element.getNameAttribute() == m_name)
29 return element.getIdAttribute() == m_name;

Completed in 478 milliseconds

1 2 3 4 5 6 78 91011>>