OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:child
(Results
226 - 250
of
1770
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_nodeinsertbeforenewchildexists.java
72
Node
child
;
local
94
child
= (Node) childList.item(indexN1008C);
95
nodeType = (int)
child
.getNodeType();
98
childName =
child
.getNodeName();
hc_nodeinsertbeforerefchildnull.java
74
Node
child
;
local
83
child
= employeeNode.getLastChild();
84
childName =
child
.getNodeName();
hc_nodelisttraverselist.java
31
* The range of valid
child
node indices is 0 thru length -1
67
Node
child
;
local
85
child
= (Node) employeeList.item(indexN10073);
86
nodeType = (int)
child
.getNodeType();
87
childName =
child
.getNodeName();
hc_noderemovechildnode.java
34
* Retrieve the second p element and remove its first
child
.
36
* children and the first
child
should now be the
child
70
Node
child
;
local
95
child
= (Node) childList.item(indexN10098);
96
nodeType = (int)
child
.getNodeType();
97
childName =
child
.getNodeName();
hc_nodereplacechild.java
70
Node
child
;
local
80
child
= childList.item(0);
81
childName =
child
.getNodeName();
hc_nodereplacechildnewchildexists.java
69
Node
child
;
local
hc_textparseintolistofelements.java
31
* Retrieve the textual data from the last
child
of the
36
* EntityReferences containing one
child
.
68
Node
child
;
local
89
child
= (Node) childList.item(indexN1007C);
90
value =
child
.getNodeValue();
93
grandChild =
child
.getFirstChild();
nodeappendchilddocfragment.java
69
Node
child
;
local
96
child
= (Node) childList.item(indexN1009F);
97
nodeType = (int)
child
.getNodeType();
100
childName =
child
.getNodeName();
nodecdatasectionnodevalue.java
34
* Retrieve the CDATASection node inside the second
child
76
Node
child
;
local
82
child
= childList.item(1);
84
if ((
child
== null)) {
85
child
= doc.createCDATASection("This is a CDATASection with EntityReference number 2 &ent2;");
87
cdataNodeValue =
child
.getNodeValue();
nodeinsertbefore.java
35
*
child
of the second employee and check the "newChild"
69
Node
child
;
local
119
child
= (Node) childList.item(indexN100DC);
120
childName =
child
.getNodeName();
nodeinsertbeforedocfragment.java
38
* fourth
child
. The second employee should now have two
75
Node
child
;
local
90
child
= childList.item(3);
91
childName =
child
.getNodeName();
93
child
= childList.item(4);
94
childName =
child
.getNodeName();
nodeinsertbeforenewchildexists.java
72
Node
child
;
local
121
child
= (Node) childList.item(indexN100DD);
122
childName =
child
.getNodeName();
nodeinsertbeforerefchildnull.java
74
Node
child
;
local
83
child
= employeeNode.getLastChild();
84
childName =
child
.getNodeName();
nodelisttraverselist.java
31
* The range of valid
child
node indices is 0 thru length -1
67
Node
child
;
local
101
child
= (Node) employeeList.item(indexN100A4);
102
childName =
child
.getNodeName();
noderemovechildnode.java
31
* Retrieve the second employee and remove its first
child
.
33
* children and the first
child
should now be the
child
66
Node
child
;
local
78
child
= childList.item(0);
79
childName =
child
.getNodeName();
nodereplacechild.java
70
Node
child
;
local
80
child
= childList.item(0);
81
childName =
child
.getNodeName();
textparseintolistofelements.java
31
* Retrieve the textual data from the last
child
of the
36
* EntityReferences containing one
child
.
69
Node
child
;
local
90
child
= (Node) childList.item(indexN1007F);
91
value =
child
.getNodeValue();
94
grandChild =
child
.getFirstChild();
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
getElementsByTagNameNS03.java
77
Node
child
;
local
100
child
= (Node) elementList.item(indexN10076);
101
childName =
child
.getNodeName();
getElementsByTagNameNS04.java
77
Node
child
;
local
91
child
= (Node) elementList.item(indexN10059);
92
childName =
child
.getNodeName();
getElementsByTagNameNS10.java
79
Node
child
;
local
103
child
= (Node) elementList.item(indexN1007E);
104
childName =
child
.getNodeName();
getElementsByTagNameNS11.java
78
Node
child
;
local
93
child
= (Node) elementList.item(indexN1005E);
94
childName =
child
.getNodeName();
importNode01.java
41
* Create a
child
Text node with value "importedText" for the attribute node above.
44
* Method should return a node whose name matches "elem:attr1" and a
child
node
86
Node
child
;
local
113
child
= aNode.getFirstChild();
114
childValue =
child
.getNodeValue();
importNode04.java
39
* Create a Comment
child
node for the Document Fragment.
42
* Method should return a node of type DocumentFragment whose
child
has
77
Node
child
;
local
87
child
= aNode.getFirstChild();
88
childValue =
child
.getNodeValue();
importNode06.java
76
Node
child
;
local
89
child
= aNode.getFirstChild();
90
value =
child
.getNodeValue();
importNode12.java
79
Node
child
;
local
94
child
= entity1.getFirstChild();
95
assertNotNull("notnull",
child
);
96
childName =
child
.getNodeName();
Completed in 483 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>