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

1 2 3 4 5 6

  /libcore/ojluni/src/main/java/java/lang/
InheritableThreadLocal.java 35 * arbitrary function of the parent's by overriding the <tt>childValue</tt>
61 protected T childValue(T parentValue) {
ThreadLocal.java 259 * Method childValue is visibly defined in subclass
266 T childValue(T parentValue) {
391 Object value = key.childValue(e.value);
  /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);
commentgetcomment.java 68 String childValue;
80 childValue = child.getNodeValue();
81 assertEquals("nodeValue", " This is comment number 1.", childValue);
documentgetelementsbytagnamevalue.java 70 String childValue;
75 childValue = firstChild.getNodeValue();
76 assertEquals("documentGetElementsByTagNameValueAssert", "Jeny Oconnor", childValue);
elementgetelementsbytagnameaccessnodelist.java 64 String childValue;
78 childValue = child.getNodeValue();
79 assertEquals("emp0004", "EMP0004", 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);
elementnormalize.java 70 String childValue;
77 childValue = firstChild.getNodeValue();
78 assertEquals("elementNormalizeAssert", "Roger\n Jones", 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/dom/src/test/java/org/w3c/domts/level2/core/
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);
importNode04.java 78 String childValue;
88 childValue = child.getNodeValue();
89 assertEquals("descendant1", "descendant1", childValue);
  /external/caliper/caliper/src/main/java/com/google/caliper/memory/
ObjectExplorer.java 123 Object childValue = Array.get(value, i);
126 visitor.visit(chain.appendArrayIndex(i, childValue));
128 } else if (childValue == null) {
130 visitor.visit(chain.appendArrayIndex(i, childValue));
133 stack.push(chain.appendArrayIndex(i, childValue));
145 Object childValue = null;
147 childValue = field.get(value);
151 if (childValue == null) { // handling nulls
153 visitor.visit(chain.appendField(field, childValue));
157 Chain extendedChain = chain.appendField(field, childValue);
    [all...]
  /external/jsoncpp/src/lib_json/
json_writer.cpp 296 const Value& childValue = value[name];
297 writeCommentBeforeValue(childValue);
300 writeValue(childValue);
302 writeCommentAfterValueOnSameLine(childValue);
306 writeCommentAfterValueOnSameLine(childValue);
327 const Value& childValue = value[index];
328 writeCommentBeforeValue(childValue);
333 writeValue(childValue);
336 writeCommentAfterValueOnSameLine(childValue);
340 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...]
  /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 372 milliseconds

1 2 3 4 5 6