OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:piValue
(Results
1 - 3
of
3
) sorted by null
/libcore/dom/src/test/java/org/w3c/domts/level1/core/
documentcreateprocessinginstruction.java
72
String
piValue
;
80
piValue
= newPINode.getNodeValue();
81
assertEquals("value", "This is a new PI node",
piValue
);
nodeprocessinginstructionnodevalue.java
67
String
piValue
;
71
piValue
= piNode.getNodeValue();
72
assertEquals("value", "PIDATA",
piValue
);
nodeprocessinginstructionsetnodevalue.java
64
String
piValue
;
69
piValue
= piNode.getNodeValue();
70
assertEquals("nodeValue", "Something different",
piValue
);
71
piValue
= ((ProcessingInstruction) /*Node */piNode).getData();
72
assertEquals("data", "Something different",
piValue
);
Completed in 83 milliseconds