Home
last modified time | relevance | path

Searched refs:childLength (Results 1 – 3 of 3) sorted by relevance

/libcore/dom/src/test/java/org/w3c/domts/level1/core/
Dcharacterdatagetlength.java68 int childLength; in runTest() local
74 childLength = childValue.length(); in runTest()
75 assertEquals("characterdataGetLengthAssert", 15, childLength); in runTest()
Dhc_characterdataappenddata.java71 int childLength; in runTest() local
78 childLength = childValue.length(); in runTest()
79 assertEquals("characterdataAppendDataAssert", 24, childLength); in runTest()
/libcore/ojluni/src/main/java/sun/nio/fs/
DUnixPath.java376 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()