Home
last modified time | relevance | path

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

/libcore/dom/src/test/java/org/w3c/domts/level1/core/
Dhc_characterdatagetlength.java67 int childLength; in runTest() local
73 childLength = childValue.length(); in runTest()
74 assertEquals("characterdataGetLengthAssert", 15, childLength); in runTest()
Dcharacterdatagetlength.java68 int childLength; in runTest() local
74 childLength = childValue.length(); in runTest()
75 assertEquals("characterdataGetLengthAssert", 15, childLength); in runTest()
Dcharacterdataappenddata.java72 int childLength; in runTest() local
79 childLength = childValue.length(); in runTest()
80 assertEquals("characterdataAppendDataAssert", 24, childLength); in runTest()
Dhc_characterdataappenddata.java71 int childLength; in runTest() local
78 childLength = childValue.length(); in runTest()
79 assertEquals("characterdataAppendDataAssert", 24, childLength); in runTest()
Dhc_characterdatadeletedatagetlengthanddata.java75 int childLength; in runTest() local
85 childLength = (int) child.getLength(); in runTest()
86 assertEquals("length", 30, childLength); in runTest()
Dcharacterdatadeletedatagetlengthanddata.java76 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/
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()