HomeSort by relevance Sort by last modified time
    Searched full:attributenode (Results 1 - 18 of 18) sorted by null

  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
AccessibilityDetector.java 91 Attr attributeNode = element.getAttributeNodeNS(ANDROID_URI, ATTR_CONTENT_DESCRIPTION);
92 String attribute = attributeNode.getValue();
94 context.report(ISSUE, attributeNode, context.getLocation(attributeNode),
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_nodecloneattributescopied.js 96 var attributeNode;
121 attributeNode = attributes.item(indexN10076);
122 attributeName = attributeNode.nodeName;
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_nodecloneattributescopied.js 96 var attributeNode;
121 attributeNode = attributes.item(indexN10076);
122 attributeName = attributeNode.nodeName;
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_nodecloneattributescopied.java 67 Node attributeNode;
86 attributeNode = (Node) attributes.item(indexN10076);
87 attributeName = attributeNode.getNodeName();
nodecloneattributescopied.java 70 Node attributeNode;
84 attributeNode = (Node) attributes.item(indexN10065);
85 attributeName = attributeNode.getNodeName();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeViewRefactoring.java 255 Node attributeNode = attributes.item(i);
257 String name = attributeNode.getLocalName();
259 && ANDROID_URI.equals(attributeNode.getNamespaceURI())) {
260 result.add((Attr) attributeNode);
VisualRefactoring.java 421 for (Node attributeNode : attributeNodes) {
422 String prefix = attributeNode.getPrefix();
424 String name = attributeNode.getNodeName();
425 String value = attributeNode.getNodeValue();
447 for (Node attributeNode : attributeNodes) {
448 String prefix = attributeNode.getPrefix();
450 String name = attributeNode.getNodeName();
451 String value = attributeNode.getNodeValue();
487 Node attributeNode = attributes.item(i);
489 String prefix = attributeNode.getPrefix()
    [all...]
ExtractIncludeRefactoring.java 484 for (Node attributeNode : attributeNodes) {
485 String prefix = attributeNode.getPrefix();
488 String name = attributeNode.getNodeName();
492 String value = attributeNode.getNodeValue();
ChangeLayoutRefactoring.java 568 Node attributeNode = attributeMap.item(i);
570 String name = attributeNode.getLocalName();
572 && ANDROID_URI.equals(attributeNode.getNamespaceURI())) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/core/
AndroidTypeRenameParticipant.java 249 Node attributeNode =
251 if (attributeNode instanceof Attr) {
252 Attr attribute = (Attr) attributeNode;
AndroidPackageRenameParticipant.java 361 Node attributeNode = attributes
363 if (attributeNode instanceof Attr) {
364 Attr attribute = (Attr) attributeNode;
AndroidTypeMoveParticipant.java 287 Node attributeNode =
289 if (attributeNode instanceof Attr) {
290 Attr attribute = (Attr) attributeNode;
  /external/webkit/Source/WebCore/xml/
XMLViewer.js 339 function createAttribute(attributeNode)
346 attributeName.textContent = attributeNode.name;
353 attributeValue.textContent = attributeNode.value;
  /external/webkit/Source/WebKit/chromium/public/
WebNode.h 72 AttributeNode,
  /external/webkit/Source/WebKit/chromium/src/
AssertMatchingEnums.cpp 306 COMPILE_ASSERT_MATCHING_ENUM(WebNode::AttributeNode, Node::ATTRIBUTE_NODE);
  /external/webkit/PerformanceTests/SunSpider/tests/parse-only/
jquery-1.3.2.js 1008 var attributeNode = elem.getAttributeNode( "tabIndex" );
1009 return attributeNode && attributeNode.specified
1010 ? attributeNode.value
    [all...]
concat-jquery-mootools-prototype.js 1008 var attributeNode = elem.getAttributeNode( "tabIndex" );
1009 return attributeNode && attributeNode.specified
1010 ? attributeNode.value
    [all...]
  /cts/suite/pts/hostTests/browser/browserlauncher/assets/octane/js/
jquery.js     [all...]

Completed in 1304 milliseconds