HomeSort by relevance Sort by last modified time
    Searched refs:idAttr (Results 1 - 25 of 35) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/editing/
SplitElementCommand.cpp 66 m_element2->removeAttribute(HTMLNames::idAttr);
95 const AtomicString& id = m_element1->getAttribute(HTMLNames::idAttr);
97 m_element2->setAttribute(HTMLNames::idAttr, id);
InsertParagraphSeparatorCommand.cpp 143 child->removeAttribute(idAttr);
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
TextControlInnerElements.cpp 56 element->setAttribute(idAttr, ShadowElementNames::textFieldContainer());
76 element->setAttribute(idAttr, ShadowElementNames::editingViewPort());
110 element->setAttribute(idAttr, ShadowElementNames::innerEditor());
157 element->setAttribute(idAttr, ShadowElementNames::searchDecoration());
207 element->setAttribute(idAttr, ShadowElementNames::clearButton());
ClearButtonElement.cpp 50 element->setAttribute(idAttr, ShadowElementNames::clearButton());
PickerIndicatorElement.cpp 62 element->setAttribute(idAttr, ShadowElementNames::pickerIndicator());
SpinButtonElement.cpp 59 element->setAttribute(idAttr, ShadowElementNames::spinButton());
SliderThumbElement.cpp 71 element->setAttribute(idAttr, ShadowElementNames::sliderThumb());
DateTimeEditElement.cpp 500 container->setAttribute(idAttr, ShadowElementNames::dateTimeEdit());
  /libcore/luni/src/main/java/org/w3c/dom/
Element.java 427 * @param idAttr The attribute node.
435 public void setIdAttributeNode(Attr idAttr,
  /external/chromium_org/third_party/WebKit/Source/core/dom/
LiveNodeListBase.h 104 return attrName == HTMLNames::idAttr || attrName == HTMLNames::nameAttr;
108 return attrName == HTMLNames::nameAttr || attrName == HTMLNames::idAttr || attrName == HTMLNames::forAttr
Element.h 724 return attributeName == HTMLNames::idAttr;
729 return hasID() ? fastGetAttribute(HTMLNames::idAttr) : nullAtom;
748 setAttribute(HTMLNames::idAttr, value);
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/
ElementImpl.java 168 public void setIdAttributeNode(Attr idAttr, boolean isId)
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFormControlsCollection.cpp 115 ASSERT(attrName == idAttr || attrName == nameAttr);
145 if (HTMLElement* item = firstNamedItem(formControlElements(), imagesElements, idAttr, name))
HTMLCollection.h 161 else if (*attrName == HTMLNames::idAttr || *attrName == HTMLNames::nameAttr)
HTMLTrackElement.cpp 106 } else if (name == idAttr) {
HTMLTextAreaElement.cpp 569 placeholder->setAttribute(idAttr, ShadowElementNames::placeholder());
HTMLElement.cpp     [all...]
HTMLFormElement.cpp 641 if (inDocument() && treeScope().idTargetObserverRegistry().hasObservers(fastGetAttribute(idAttr)))
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGResourcesCache.cpp 196 extensions.addPendingResource(resourceElement->fastGetAttribute(HTMLNames::idAttr), clientElement);
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
ElementImpl.java 412 public void setIdAttributeNode(Attr idAttr, boolean isId) throws DOMException {
413 ((AttrImpl) idAttr).isId = isId;
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
TextFieldInputType.cpp 105 element->setAttribute(idAttr, ShadowElementNames::pickerIndicator());
458 placeholder->setAttribute(idAttr, ShadowElementNames::placeholder());
RangeInputType.cpp 240 track->setAttribute(idAttr, ShadowElementNames::sliderTrack());
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py 835 idAttr = self.getAttributeNode(name)
836 self.setIdAttributeNode(idAttr)
839 idAttr = self.getAttributeNodeNS(namespaceURI, localName)
840 self.setIdAttributeNode(idAttr)
842 def setIdAttributeNode(self, idAttr):
843 if idAttr is None or not self.isSameNode(idAttr.ownerElement):
847 if not idAttr._is_id:
848 idAttr.__dict__['_is_id'] = True
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py 835 idAttr = self.getAttributeNode(name)
836 self.setIdAttributeNode(idAttr)
839 idAttr = self.getAttributeNodeNS(namespaceURI, localName)
840 self.setIdAttributeNode(idAttr)
842 def setIdAttributeNode(self, idAttr):
843 if idAttr is None or not self.isSameNode(idAttr.ownerElement):
847 if not idAttr._is_id:
848 idAttr.__dict__['_is_id'] = True
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTSchema.java     [all...]

Completed in 767 milliseconds

1 2