OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:titleAttr
(Results
26 - 28
of
28
) sorted by null
1
2
/libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_attrreplacechild2.java
63
Attr
titleAttr
;
74
titleAttr
= (Attr) attributes.getNamedItem("title");
80
firstChild =
titleAttr
.getFirstChild();
82
retval =
titleAttr
.replaceChild(docFrag, firstChild);
83
value =
titleAttr
.getValue();
85
value =
titleAttr
.getNodeValue();
89
firstChild =
titleAttr
.getFirstChild();
hc_attrsetvalue1.java
61
Attr
titleAttr
;
70
titleAttr
= (Attr) attributes.getNamedItem("title");
71
firstChild =
titleAttr
.getFirstChild();
73
titleAttr
.setValue("Tomorrow");
75
value =
titleAttr
.getValue();
77
value =
titleAttr
.getNodeValue();
79
firstChild =
titleAttr
.getLastChild();
hc_attrsetvalue2.java
61
Attr
titleAttr
;
71
titleAttr
= (Attr) attributes.getNamedItem("title");
73
retval =
titleAttr
.appendChild(textNode);
74
firstChild =
titleAttr
.getFirstChild();
76
titleAttr
.setValue("Tomorrow");
78
value =
titleAttr
.getValue();
80
value =
titleAttr
.getNodeValue();
82
firstChild =
titleAttr
.getLastChild();
Completed in 51 milliseconds
1
2