HomeSort by relevance Sort by last modified time
    Searched refs:element (Results 701 - 725 of 3120) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
InputTypeView.h 48 class Element;
95 virtual void handleFocusEvent(Element* oldFocusedElement, FocusType);
96 virtual void handleFocusInEvent(Element* oldFocusedElement, FocusType);
124 InputTypeView(HTMLInputElement& element) : m_element(&element) { }
125 HTMLInputElement& element() const { return *m_element; } function in class:blink::InputTypeView
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
PickerIndicatorElement.h 55 virtual Element& pickerOwnerElement() const = 0;
70 virtual Element& ownerElement() const OVERRIDE;
91 DEFINE_TYPE_CASTS(PickerIndicatorElement, Element, element, element->isPickerIndicatorElement(), element.isPickerIndicatorElement());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderSearchField.cpp 38 RenderSearchField::RenderSearchField(HTMLInputElement* element)
39 : RenderTextControlSingleLine(element)
41 ASSERT(element->type() == InputTypeNames::search);
48 inline Element* RenderSearchField::searchDecorationElement() const
53 inline Element* RenderSearchField::cancelButtonElement() const
60 Element* searchDecoration = searchDecorationElement();
66 Element* cancelButton = cancelButtonElement();
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFontElement.cpp 158 for (SVGElement* element = Traversal<SVGElement>::firstChild(*this); element; element = Traversal<SVGElement>::nextSibling(*element)) {
159 if (isSVGGlyphElement(*element)) {
160 SVGGlyphElement& glyph = toSVGGlyphElement(*element);
171 } else if (isSVGHKernElement(*element)) {
172 toSVGHKernElement(*element).buildHorizontalKerningPair(horizontalKerningPairs);
173 } else if (isSVGVKernElement(*element)) {
174 toSVGVKernElement(*element).buildVerticalKerningPair(verticalKerningPairs)
    [all...]
SVGGradientElement.h 77 inline bool isSVGGradientElement(const SVGElement& element)
79 return element.hasTagName(SVGNames::radialGradientTag) || element.hasTagName(SVGNames::linearGradientTag);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
RequestCookiesView.js 40 this.element.classList.add("request-cookies-view");
54 this._emptyView.show(this.element);
83 this._cookiesTable.show(this.element);
RequestResponseView.js 74 this._emptyView.show(this.element);
84 this.sourceView.show(this.element);
89 this._errorView.show(this.element);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
ResourceView.js 39 this.element.classList.add("resource-view");
118 this.element.classList.add("script-view");
119 this._content = this.element.createChild("div", "script-view-fallback monospace");
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
VertexBuffer.cpp 244 for (unsigned int element = 0; element < mCache.size(); element++)
246 if (mCache[element].type == attrib.type &&
247 mCache[element].size == attrib.size &&
248 mCache[element].stride == ComputeVertexAttributeStride(attrib) &&
249 mCache[element].normalized == attrib.normalized &&
250 mCache[element].pureInteger == attrib.pureInteger)
253 if (mCache[element].attributeOffset == offset)
257 *outStreamOffset = mCache[element].streamOffset
296 VertexElement element = { attrib.type, attrib.size, ComputeVertexAttributeStride(attrib), attrib.normalized, attrib.pureInteger, attributeOffset, streamOffset }; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmppstanzaparser.cc 92 XmlElement *element = builder_.CreateElement(); local
93 psph_->Stanza(element);
94 delete element;
  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
xml_formatted_writer.py 16 Adds a new XML Element as a child to an existing element or the Document.
19 parent: An XML element or the document, where the new element will be
21 name: The name of the new element.
23 element.
24 text: Text content for the new element.
27 The created new element.
33 element = doc.createElement(name)
35 element.setAttribute(key, value
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/validators/
ExemptedClassesValidator.java 34 public boolean isApplicable(UiElement element, Action action) {
35 String className = element.getClassName();
57 public String validate(UiElement element, Action action) {
  /external/fonttools/Lib/fontTools/ttLib/tables/
BitmapGlyphMetrics.py 43 for element in content:
44 if not isinstance(element, tuple):
46 name, attrs, content = element
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
QueueElementTester.java 30 * A generic JUnit test which tests {@code element()} operations on a queue.
42 getQueue().element();
43 fail("emptyQueue.element() should throw");
50 assertEquals("size1Queue.element() should return first element",
51 samples.e0, getQueue().element());
58 assertEquals("sizeManyQueue.element() should return first element",
59 samples.e0, getQueue().element());
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
attrgetownerelement01.java 34 * The "getOwnerElement()" will return the Element node this attribute is attached to or
37 * Retreive the default attribute defaultAttr and check its owner element. Verify if the name
75 Element element; local
76 Element ownerElement;
84 element = (Element) elementList.item(1);
85 attributes = element.getAttributes();
attrgetownerelement02.java 34 * The "getOwnerElement()" will return the Element node this attribute
37 * Create a new element and attribute node, attach the attribute to the element.
38 * Check the value of owner element of the new attribute node
72 Element element; local
73 Element ownerElement;
78 element = doc.createElement("root");
80 newAttr = element.setAttributeNodeNS(attr);
documentgetelementsbytagnameNS02.java 39 * Create a new element having a local name="employeeId" belonging to the namespace "test"
77 Element docElem;
78 Element element; local
83 element = doc.createElementNS("test", "employeeId");
84 appendedChild = docElem.appendChild(element);
documentimportnode01.java 40 * element node, from a list of nodes whose local names are "address" and namespaceURI
77 Element element; local
86 element = (Element) childList.item(1);
87 attr = element.getAttributeNode("street");
documentimportnode02.java 40 * element node which is retreived by its elementId="CANADA", into the another document.
79 Element element; local
90 element = (Element) addresses.item(1);
91 attr = element.getAttributeNodeNS("http://www.nist.gov", "zone");
documentimportnode03.java 40 * "defaultAttr" of the second element node whose namespaceURI="http://www.nist.gov" and
79 Element element; local
88 element = (Element) childList.item(1);
89 attr = element.getAttributeNode("defaultAttr");
documentimportnode04.java 40 * "defaultAttr" of the second element node whose namespaceURI="http://www.nist.gov" and
83 Element element; local
94 element = (Element) childList.item(1);
95 attr = element.getAttributeNode("defaultAttr");
elementgetattributenodens03.java 73 Element element; local
81 element = (Element) childList.item(1);
82 attribute = element.getAttributeNodeNS(nullNS, "defaultAttr");
elementgetattributens02.java 73 Element element; local
80 element = (Element) childList.item(1);
81 attrValue = element.getAttributeNS(nullNS, "defaultAttr");
elementhasattributens01.java 36 * URI is specified on this element or has a default value, false otherwise.
38 * Retreive the first employee element node. Invoke the hasAttributeNS method to check if it
74 Element element; local
79 element = (Element) elementList.item(0);
80 state = element.hasAttributeNS("http://www.w3.org/2000/xmlns/", "xmlns");
elementsetattributenodens02.java 35 * Retreive the street attribute from the second address element node.
73 Element element; local
74 Element element2;
85 element = (Element) elementList.item(1);
86 attribute = element.getAttributeNodeNS(nullNS, "street");
88 element2 = (Element) elementList.item(2);

Completed in 1213 milliseconds

<<21222324252627282930>>