HomeSort by relevance Sort by last modified time
    Searched refs:element (Results 126 - 150 of 2645) sorted by null

1 2 3 4 56 7 8 91011>>

  /libcore/luni/src/test/java/tests/org/w3c/dom/
NamedNodeMapGetNamedItemNS.java 29 import org.w3c.dom.Element;
103 Node element; local
110 element = elementList.item(1);
111 attributes = element.getAttributes();
120 Node element; local
127 element = doc.createElementNS("http://www.w3.org/DOM/Test", "root");
129 ((Element) /* Node */element).setAttributeNodeNS(newAttr1);
131 ((Element) /* Node */element).setAttributeNodeNS(newAttr2)
141 Element element; local
160 Node element; local
    [all...]
NodeSetPrefix.java 30 import org.w3c.dom.Element;
41 * Element and Attr interfaces, when applicable.
43 * Create a new element node with a namespace prefix. Add it to a new
45 * Check if the prefix was set correctly on the element.
84 Element element; local
90 element = doc.createElementNS("http://www.w3.org/DOM/Test",
92 docFragment.appendChild(element);
93 element.setPrefix("dmstc");
94 elementTagName = element.getTagName()
127 Element element; local
168 Element element; local
196 Element element; local
230 Element element; local
251 Element element; local
    [all...]
  /external/chromium_org/chrome/test/functional/gtalk/
jsutils.js 32 * The body element of the given window.
39 * Find the ancestor of the given element with a particular tag name.
41 $FindByTagName = function(element, tag, index) {
42 var tagElements = element.getElementsByTagName(tag);
50 * Find the first ancestor of the given element containing the given text.
55 var element = allElements[i];
56 if (element.innerText && element.innerText.indexOf(text) >= 0) {
57 var child = $FindByText(element, text);
58 return child != null ? child : element;
    [all...]
  /external/chromium_org/ui/compositor/
layer_animation_element_unittest.cc 23 // Check that the transformation element progresses the delegate as expected and
24 // that the element can be reused after it completes.
34 scoped_ptr<LayerAnimationElement> element(
36 element->set_animation_group_id(1);
40 element->set_requested_start_time(start_time);
42 element->Start(&delegate, 1);
43 element->Progress(start_time, &delegate);
47 element->set_effective_start_time(effective_start_time);
48 element->Progress(effective_start_time, &delegate);
49 EXPECT_FLOAT_EQ(0.0, element->last_progressed_fraction())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
StatusBarButton.js 34 * @param {!Element} element
36 WebInspector.StatusBarItem = function(element)
38 this.element = element;
59 this.element.disabled = !this._enabled;
74 this.element.className = "status-bar-item status-bar-text";
76 this.element.classList.add(className);
77 this.element.textContent = text;
86 this.element.textContent = text
    [all...]
DatabaseTableView.js 37 this.element.classList.add("storage-view");
38 this.element.classList.add("table");
52 return [this.refreshButton.element];
72 this.element.removeChildren();
77 this._emptyView.show(this.element);
80 dataGrid.show(this.element);
87 this.element.removeChildren();
92 this.element.appendChild(errorMsgElement);
ViewportControl.js 37 this.element = document.createElement("div");
38 this.element.className = "fill";
39 this.element.style.overflow = "auto";
40 this._topGapElement = this.element.createChild("div");
41 this._contentElement = this.element.createChild("div");
42 this._bottomGapElement = this.element.createChild("div");
45 this.element.addEventListener("scroll", this._onScroll.bind(this), false);
65 * @return {?Element}
72 * @return {!Element}
81 if (!this.element.clientHeight
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
SiblingTraversalStrategies.h 32 #include "core/dom/Element.h"
38 bool isFirstChild(Element*) const;
39 bool isLastChild(Element*) const;
40 bool isFirstOfType(Element*, const QualifiedName&) const;
41 bool isLastOfType(Element*, const QualifiedName&) const;
43 int countElementsBefore(Element*) const;
44 int countElementsAfter(Element*) const;
45 int countElementsOfTypeBefore(Element*, const QualifiedName&) const;
46 int countElementsOfTypeAfter(Element*, const QualifiedName&) const;
49 inline bool DOMSiblingTraversalStrategy::isFirstChild(Element* element) cons
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementObserver.h 38 class Element;
47 static void notifyElementDidFinishParsingChildren(Element*);
48 static void notifyElementWasDestroyed(Element*);
51 void observe(Element*);
52 void unobserve(Element*);
54 virtual void elementDidFinishParsingChildren(Element*) = 0;
55 virtual void elementWasDestroyed(Element* element) { unobserve(element); }
59 // element at a time
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
WrapContentsInDummySpanCommand.h 37 static PassRefPtr<WrapContentsInDummySpanCommand> create(PassRefPtr<Element> element)
39 return adoptRef(new WrapContentsInDummySpanCommand(element));
43 explicit WrapContentsInDummySpanCommand(PassRefPtr<Element>);
50 RefPtr<Element> m_element;
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
BaseButtonInputType.h 41 BaseButtonInputType(HTMLInputElement& element) : BaseClickableWithKeyInputType(element) { }
ButtonInputType.h 43 ButtonInputType(HTMLInputElement& element) : BaseButtonInputType(element) { }
ResetInputType.h 43 ResetInputType(HTMLInputElement& element) : BaseButtonInputType(element) { }
TelephoneInputType.cpp 39 PassRefPtr<InputType> TelephoneInputType::create(HTMLInputElement& element)
41 return adoptRef(new TelephoneInputType(element));
TelephoneInputType.h 43 TelephoneInputType(HTMLInputElement& element) : BaseTextInputType(element) { }
TextInputType.h 43 TextInputType(HTMLInputElement& element) : BaseTextInputType(element) { }
URLInputType.h 43 URLInputType(HTMLInputElement& element) : BaseTextInputType(element) { }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMediaControlElements.cpp 37 RenderTextTrackContainerElement::RenderTextTrackContainerElement(Element* element)
38 : RenderBlockFlow(element)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGHiddenContainer.cpp 28 RenderSVGHiddenContainer::RenderSVGHiddenContainer(SVGElement* element)
29 : RenderSVGContainer(element)
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathSegLinetoHorizontal.h 30 SVGPathSegLinetoHorizontal(SVGPathElement* element, SVGPathSegRole role, float x)
31 : SVGPathSegWithContext(element, role)
SVGPathSegLinetoVertical.h 30 SVGPathSegLinetoVertical(SVGPathElement* element, SVGPathSegRole role, float y)
31 : SVGPathSegWithContext(element, role)
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
discoitemsquerytask.cc 42 XmlElement* element = new XmlElement(QN_DISCO_ITEMS_QUERY, true); local
44 element->AddAttr(QN_NODE, node);
46 return element;
67 bool DiscoItemsQueryTask::ParseItem(const XmlElement* element,
69 if (element->HasAttr(QN_JID)) {
73 item->jid = element->Attr(QN_JID);
74 item->name = element->Attr(QN_NAME);
75 item->node = element->Attr(QN_NODE);
  /external/guava/guava/src/com/google/common/collect/
Multiset.java 35 * element equivalence", below) are referred to as <i>occurrences</i> of the
36 * same single element. The total number of occurrences of an element in a
37 * multiset is called the <i>count</i> of that element (the terms "frequency"
39 * of an element is represented as an {@code int}, a multiset may never contain
40 * more than {@link Integer#MAX_VALUE} occurrences of any one element.
44 * #count}, which returns the count of an element. There are five new
46 * or remove multiple occurrences of an element at once, or to set the count of
47 * an element to a specific value. These modification operations are optional,
53 * Multiset.Entry} instances, each providing both a distinct element and th
    [all...]
  /frameworks/rs/cpu_ref/linkloader/utils/
traits.h 27 Type element; member in struct:TypeTraits::AlignmentTest
32 enum { align = offsetof(AlignmentTest, element) };
  /packages/apps/Mms/src/com/android/mms/dom/smil/
ElementTimeContainerImpl.java 30 ElementTimeContainerImpl(SMILElement element) {
31 super(element);

Completed in 171 milliseconds

1 2 3 4 56 7 8 91011>>