OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:attributeNode
(Results
1 - 17
of
17
) sorted by null
/sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
AccessibilityDetector.java
83
Attr
attributeNode
= element.getAttributeNodeNS(ANDROID_URI, ATTR_CONTENT_DESCRIPTION);
84
String attribute =
attributeNode
.getValue();
86
context.report(ISSUE,
attributeNode
, context.getLocation(
attributeNode
),
/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();
/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;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeViewRefactoring.java
252
Node
attributeNode
= attributes.item(i);
254
String name =
attributeNode
.getLocalName();
256
&& ANDROID_URI.equals(
attributeNode
.getNamespaceURI())) {
257
result.add((Attr)
attributeNode
);