HomeSort by relevance Sort by last modified time
    Searched refs:childValue (Results 1 - 25 of 61) sorted by null

1 2 3

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
characterdataappenddata.java 71 String childValue;
78 childValue = child.getData();
79 childLength = childValue.length();
characterdatagetlength.java 67 String childValue;
73 childValue = child.getData();
74 childLength = childValue.length();
characterdatasetnodevalue.java 66 String childValue;
74 childValue = child.getNodeValue();
75 assertEquals("value", "Marilyn Martin", childValue);
documentgetelementsbytagnamevalue.java 70 String childValue;
75 childValue = firstChild.getNodeValue();
76 assertEquals("documentGetElementsByTagNameValueAssert", "Jeny Oconnor", childValue);
elementnormalize.java 70 String childValue;
77 childValue = firstChild.getNodeValue();
78 assertEquals("elementNormalizeAssert", "Roger\n Jones", childValue);
hc_characterdataappenddata.java 70 String childValue;
77 childValue = child.getData();
78 childLength = childValue.length();
hc_characterdatagetlength.java 66 String childValue;
72 childValue = child.getData();
73 childLength = childValue.length();
hc_characterdatasetnodevalue.java 66 String childValue;
74 childValue = child.getNodeValue();
75 assertEquals("value", "Marilyn Martin", childValue);
hc_documentgetelementsbytagnamevalue.java 69 String childValue;
74 childValue = firstChild.getNodeValue();
75 assertEquals("documentGetElementsByTagNameValueAssert", "Jeny Oconnor", childValue);
hc_nodeclonetruecopytext.java 69 String childValue;
75 childValue = lastChildNode.getNodeValue();
76 assertEquals("cloneContainsText", "35,000", childValue);
nodeclonetruecopytext.java 67 String childValue;
73 childValue = lastChildNode.getNodeValue();
74 assertEquals("nodeCloneTrueCopyTextAssert1", "35,000", childValue);
commentgetcomment.java 68 String childValue;
80 childValue = child.getNodeValue();
81 assertEquals("nodeValue", " This is comment number 1.", childValue);
elementgetelementsbytagnameaccessnodelist.java 64 String childValue;
78 childValue = child.getNodeValue();
79 assertEquals("emp0004", "EMP0004", childValue);
hc_commentgetcomment.java 69 String childValue;
82 childValue = child.getNodeValue();
83 assertEquals("nodeValue", " This is comment number 1.", childValue);
hc_elementnormalize.java 64 String childValue;
79 childValue = firstChild.getNodeValue();
80 assertEquals("elementNormalizeAssert", "56,000,000", childValue);
hc_elementnormalize2.java 65 String childValue;
79 childValue = firstChild.getNodeValue();
80 assertEquals("firstChild", "Yes", childValue);
  /libcore/luni/src/main/java/java/lang/
InheritableThreadLocal.java 25 * creation time. However, subclasses may override {code #childValue(Object)}
49 protected T childValue(T parentValue) {
  /libcore/luni/src/test/java/libcore/java/lang/
OldInheritableThreadLocalTest.java 31 protected Object childValue(Object parentValue) {
59 protected String childValue(String parentValue) {
60 return "childValue";
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
importNode04.java 78 String childValue;
88 childValue = child.getNodeValue();
89 assertEquals("descendant1", "descendant1", childValue);
importNode11.java 78 String childValue;
88 childValue = child.getNodeValue();
89 assertEquals("childValue", "Texas", childValue);
importNode01.java 87 String childValue;
114 childValue = child.getNodeValue();
115 assertEquals("childValue", "importedText", childValue);
  /external/jsoncpp/src/lib_json/
json_writer.cpp 340 const Value &childValue = value[name];
341 writeCommentBeforeValue( childValue );
344 writeValue( childValue );
347 writeCommentAfterValueOnSameLine( childValue );
351 writeCommentAfterValueOnSameLine( childValue );
379 const Value &childValue = value[index];
380 writeCommentBeforeValue( childValue );
386 writeValue( childValue );
390 writeCommentAfterValueOnSameLine( childValue );
394 writeCommentAfterValueOnSameLine( childValue );
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ImportNode.java 105 String childValue;
131 childValue = child.getNodeValue();
132 assertEquals("childValue", "importedText", childValue);
186 String childValue;
196 childValue = child.getNodeValue();
197 assertEquals("descendant1", "descendant1", childValue);
365 // String childValue;
375 // childValue = child.getNodeValue();
376 // assertEquals("childValue", "Texas", childValue)
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
ThreadLocalTest.java 28 protected Integer childValue(Integer parentValue) {
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPNormalizer.java 264 String childValue = currChild.getValue();
265 if (childValue == null || childValue.length() == 0)

Completed in 386 milliseconds

1 2 3