/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
D | hc_nodedocumentfragmentnormalize1.java | 63 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()
|
D | hc_entitiesremovenameditemns1.java | 62 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/ |
D | hc_attrappendchild3.java | 67 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()
|
D | hc_attrreplacechild2.java | 68 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()
|
D | hc_attrinsertbefore4.java | 68 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()
|
D | hc_attrinsertbefore3.java | 68 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()
|
D | hc_attrinsertbefore7.java | 70 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()
|
D | hc_attrappendchild6.java | 65 Node retval; in runTest() local 70 retval = titleAttr.appendChild(textNode); in runTest() 75 value = retval.getNodeValue(); in runTest()
|
D | hc_attrremovechild1.java | 65 Node retval; in runTest() local 74 retval = titleAttr.removeChild(textNode); in runTest() 79 value = retval.getNodeValue(); in runTest()
|
D | hc_attrappendchild1.java | 66 Node retval; in runTest() local 74 retval = titleAttr.appendChild(textNode); in runTest() 79 value = retval.getNodeValue(); in runTest()
|
D | hc_attrnormalize.java | 66 Node retval; in runTest() local 75 retval = titleAttr.appendChild(textNode); in runTest() 77 retval = titleAttr.appendChild(textNode); in runTest()
|
D | hc_attrreplacechild1.java | 66 Node retval; in runTest() local 76 retval = titleAttr.replaceChild(textNode, firstChild); in runTest() 81 value = retval.getNodeValue(); in runTest()
|
D | hc_attrinsertbefore1.java | 66 Node retval; in runTest() local 77 retval = titleAttr.insertBefore(textNode, refChild); in runTest() 82 value = retval.getNodeValue(); in runTest()
|
D | hc_attrinsertbefore2.java | 66 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/ |
D | DerInputBuffer.java | 55 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 …]
|
D | ObjectIdentifier.java | 390 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 …]
|
D | DerInputStream.java | 287 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/ |
D | HCNodeDocumentFragmentNormalize.java | 54 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/ |
D | X509CRLEntry.java | 107 int retval = 0; in hashCode() local 111 retval += entryData[i] * i; in hashCode() 114 return(retval); in hashCode() 116 return(retval); in hashCode()
|
D | X509CRL.java | 159 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/ |
D | Certificate.java | 103 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/ |
D | RC5ParameterSpec.java | 194 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()
|
D | SecretKeySpec.java | 192 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()
|
D | RC2ParameterSpec.java | 152 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/ |
D | KeyIdentifier.java | 137 int retval = 0; in hashCode() local 139 retval += octetString[i] * i; in hashCode() 140 return retval; in hashCode()
|