Home
last modified time | relevance | path

Searched refs:retval (Results 1 – 25 of 52) sorted by relevance

123

/libcore/dom/src/test/java/org/w3c/domts/level2/core/
Dhc_nodedocumentfragmentnormalize1.java63 Node retval; in runTest() local
67 retval = docFragment.appendChild(txtNode); in runTest()
69 retval = docFragment.appendChild(txtNode); in runTest()
74 retval = txtNode.getNextSibling(); in runTest()
75 assertNull("singleChild", retval); in runTest()
Dhc_entitiesremovenameditemns1.java62 Node retval; in runTest() local
74 retval = entities.removeNamedItemNS("http://www.w3.org/1999/xhtml", "alpha"); in runTest()
/libcore/dom/src/test/java/org/w3c/domts/level1/core/
Dhc_attrappendchild3.java67 Node retval; in runTest() local
78 retval = docFrag.appendChild(terNode); in runTest()
79 retval = docFrag.appendChild(dayNode); in runTest()
80 retval = titleAttr.appendChild(docFrag); in runTest()
85 value = retval.getNodeValue(); in runTest()
Dhc_attrreplacechild2.java68 Node retval; in runTest() local
78 retval = docFrag.appendChild(terNode); in runTest()
79 retval = docFrag.appendChild(dayNode); in runTest()
82 retval = titleAttr.replaceChild(docFrag, firstChild); in runTest()
87 value = retval.getNodeValue(); in runTest()
Dhc_attrinsertbefore4.java68 Node retval; in runTest() local
80 retval = docFrag.appendChild(terNode); in runTest()
81 retval = docFrag.appendChild(dayNode); in runTest()
83 retval = titleAttr.insertBefore(docFrag, refChild); in runTest()
88 value = retval.getNodeValue(); in runTest()
Dhc_attrinsertbefore3.java68 Node retval; in runTest() local
81 retval = docFrag.appendChild(terNode); in runTest()
82 retval = docFrag.appendChild(dayNode); in runTest()
83 retval = titleAttr.insertBefore(docFrag, refChild); in runTest()
88 value = retval.getNodeValue(); in runTest()
Dhc_attrinsertbefore7.java70 Node retval; in runTest() local
96 retval = docFrag.appendChild(terNode); in runTest()
97 retval = docFrag.appendChild(dayNode); in runTest()
102 retval = titleAttr.insertBefore(docFrag, refChild); in runTest()
Dhc_attrappendchild6.java65 Node retval; in runTest() local
70 retval = titleAttr.appendChild(textNode); in runTest()
75 value = retval.getNodeValue(); in runTest()
Dhc_attrremovechild1.java65 Node retval; in runTest() local
74 retval = titleAttr.removeChild(textNode); in runTest()
79 value = retval.getNodeValue(); in runTest()
Dhc_attrappendchild1.java66 Node retval; in runTest() local
74 retval = titleAttr.appendChild(textNode); in runTest()
79 value = retval.getNodeValue(); in runTest()
Dhc_attrnormalize.java66 Node retval; in runTest() local
75 retval = titleAttr.appendChild(textNode); in runTest()
77 retval = titleAttr.appendChild(textNode); in runTest()
Dhc_attrreplacechild1.java66 Node retval; in runTest() local
76 retval = titleAttr.replaceChild(textNode, firstChild); in runTest()
81 value = retval.getNodeValue(); in runTest()
Dhc_attrinsertbefore1.java66 Node retval; in runTest() local
77 retval = titleAttr.insertBefore(textNode, refChild); in runTest()
82 value = retval.getNodeValue(); in runTest()
Dhc_attrinsertbefore2.java66 Node retval; in runTest() local
77 retval = titleAttr.insertBefore(textNode, refChild); in runTest()
82 value = retval.getNodeValue(); in runTest()
/libcore/ojluni/src/main/java/sun/security/util/
DDerInputBuffer.java55 DerInputBuffer retval = (DerInputBuffer)clone(); in dup() local
57 retval.mark(Integer.MAX_VALUE); in dup()
58 return retval; in dup()
68 byte[] retval = new byte[len]; in toByteArray()
70 System.arraycopy(buf, pos, retval, 0, len); in toByteArray()
71 return retval; in toByteArray()
125 int retval = 0; in hashCode() local
131 retval += buf[p + i] * i; in hashCode()
132 return retval; in hashCode()
212 byte[] retval = new byte[len - 1]; in getBitString()
[all …]
DObjectIdentifier.java390 int retval = 0; in toIntArray() local
392 retval <<= 7; in toIntArray()
394 retval |= (tmp & 0x07f); in toIntArray()
397 if (retval < 80) { in toIntArray()
398 result[which++] = retval / 40; in toIntArray()
399 result[which++] = retval % 40; in toIntArray()
402 result[which++] = retval - 80; in toIntArray()
405 result[which++] = retval; in toIntArray()
448 int retval = 0; in toString() local
450 retval <<= 7; in toString()
[all …]
DDerInputStream.java287 byte[] retval = new byte[length]; in getOctetString()
288 if ((length != 0) && (buffer.read(retval) != length)) in getOctetString()
291 return retval; in getOctetString()
480 DerValue[] retval = new DerValue[max]; in readVector() local
483 retval[i] = vec.elementAt(i); in readVector()
485 return retval; in readVector()
563 byte[] retval = new byte[length]; in readString()
564 if ((length != 0) && (buffer.read(retval) != length)) in readString()
568 return new String(retval, enc); in readString()
/libcore/luni/src/test/java/tests/org/w3c/dom/
DHCNodeDocumentFragmentNormalize.java54 Node retval; in testNodeDocumentFragmentNormalize1() local
59 retval = docFragment.appendChild(txtNode); in testNodeDocumentFragmentNormalize1()
61 retval = docFragment.appendChild(txtNode); in testNodeDocumentFragmentNormalize1()
66 retval = txtNode.getNextSibling(); in testNodeDocumentFragmentNormalize1()
67 assertNull("singleChild", retval); in testNodeDocumentFragmentNormalize1()
/libcore/ojluni/src/main/java/java/security/cert/
DX509CRLEntry.java107 int retval = 0; in hashCode() local
111 retval += entryData[i] * i; in hashCode()
114 return(retval); in hashCode()
116 return(retval); in hashCode()
DX509CRL.java159 int retval = 0; in hashCode() local
163 retval += crlData[i] * i; in hashCode()
165 return retval; in hashCode()
167 return retval; in hashCode()
/libcore/ojluni/src/main/java/javax/security/cert/
DCertificate.java103 int retval = 0; in hashCode() local
107 retval += certData[i] * i; in hashCode()
109 return (retval); in hashCode()
111 return (retval); in hashCode()
/libcore/ojluni/src/main/java/javax/crypto/spec/
DRC5ParameterSpec.java194 int retval = 0; in hashCode() local
197 retval += iv[i] * i; in hashCode()
200 retval += (version + rounds + wordSize); in hashCode()
201 return retval; in hashCode()
DSecretKeySpec.java192 int retval = 0; in hashCode() local
194 retval += this.key[i] * i; in hashCode()
197 return (retval ^= "desede".hashCode()); in hashCode()
199 return (retval ^= in hashCode()
DRC2ParameterSpec.java152 int retval = 0; in hashCode() local
155 retval += iv[i] * i; in hashCode()
158 return (retval += effectiveKeyBits); in hashCode()
/libcore/ojluni/src/main/java/sun/security/x509/
DKeyIdentifier.java137 int retval = 0; in hashCode() local
139 retval += octetString[i] * i; in hashCode()
140 return retval; in hashCode()

123