Searched refs:childLength (Results 1 – 7 of 7) sorted by relevance
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
D | hc_characterdatagetlength.java | 67 int childLength; in runTest() local 73 childLength = childValue.length(); in runTest() 74 assertEquals("characterdataGetLengthAssert", 15, childLength); in runTest()
|
D | characterdatagetlength.java | 68 int childLength; in runTest() local 74 childLength = childValue.length(); in runTest() 75 assertEquals("characterdataGetLengthAssert", 15, childLength); in runTest()
|
D | characterdataappenddata.java | 72 int childLength; in runTest() local 79 childLength = childValue.length(); in runTest() 80 assertEquals("characterdataAppendDataAssert", 24, childLength); in runTest()
|
D | hc_characterdataappenddata.java | 71 int childLength; in runTest() local 78 childLength = childValue.length(); in runTest() 79 assertEquals("characterdataAppendDataAssert", 24, childLength); in runTest()
|
D | hc_characterdatadeletedatagetlengthanddata.java | 75 int childLength; in runTest() local 85 childLength = (int) child.getLength(); in runTest() 86 assertEquals("length", 30, childLength); in runTest()
|
D | characterdatadeletedatagetlengthanddata.java | 76 int childLength; in runTest() local 86 childLength = (int) child.getLength(); in runTest() 87 assertEquals("length", 30, childLength); in runTest()
|
/libcore/ojluni/src/main/java/sun/nio/fs/ |
D | UnixPath.java | 376 int childLength = child.length; in resolve() local 377 if (childLength == 0) in resolve() 383 result = new byte[childLength + 1]; in resolve() 385 System.arraycopy(child, 0, result, 1, childLength); in resolve() 387 result = new byte[baseLength + 1 + childLength]; in resolve() 390 System.arraycopy(child, 0, result, baseLength+1, childLength); in resolve()
|