Searched refs:getLength (Results 101 - 125 of 155) sorted by relevance

1234567

/libcore/dom/src/test/java/org/w3c/domts/level1/core/
H A Dhc_nodereplacechildnewchildexists.java91 for (int indexN10094 = 0; indexN10094 < childList.getLength(); indexN10094++) {
H A Dnodeappendchilddocfragment.java95 for (int indexN1009F = 0; indexN1009F < childList.getLength(); indexN1009F++) {
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
H A DgetElementsByTagNameNS03.java99 for (int indexN10076 = 0; indexN10076 < elementList.getLength(); indexN10076++) {
H A DgetElementsByTagNameNS10.java102 for (int indexN1007E = 0; indexN1007E < elementList.getLength(); indexN1007E++) {
/libcore/luni/src/test/java/libcore/xml/
H A DNodeTest.java85 for (int i = 0; i < children.getLength(); i++) {
H A DJaxenXPathTestSuite.java169 if (valueOfElements.getLength() == 1) {
190 assertEquals(Integer.parseInt(count), result.getLength());
298 for (int i = 0; i < nodeList.getLength(); i++) {
H A DNamespacedAttributesLookupTest.java119 for (int i = 0; i < attributes.getLength(); i++) {
H A DSimpleParserTest.java118 for (int i = 0; i < atts.getLength(); i++) {
132 for (int i = 0; i < atts.getLength(); i++) {
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/support/
H A DMyExemptionMechanismSpi.java45 public static final int getLength() { method in class:MyExemptionMechanismSpi
/libcore/ojluni/src/main/java/java/io/
H A DFileSystem.java152 public abstract long getLength(File f); method in class:FileSystem
/libcore/ojluni/src/main/java/java/util/prefs/
H A DXmlSupport.java214 if (elements == null || elements.getLength() != 1) {
297 ArrayList<Element> elements = new ArrayList<>(xmlKids.getLength());
298 for (int i = 0; i < xmlKids.getLength(); ++i) {
413 for (int i=0, numEntries=entries.getLength(); i<numEntries; i++) {
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
H A DDocumentBuilderTest.java249 assertEquals(2, d.getChildNodes().getLength());
309 assertEquals(2, d.getChildNodes().getLength());
371 assertEquals(2, d.getChildNodes().getLength());
432 assertEquals(4, d.getChildNodes().getLength());
496 assertEquals(2, d.getChildNodes().getLength());
/libcore/luni/src/test/java/tests/org/w3c/dom/
H A DDocumentImportNode.java311 addressElemLen = (int) addressElemChildren.getLength();
312 importedLen = (int) importedChildren.getLength();
327 importedLen = (int) importedList.getLength();
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DDocumentImpl.java168 for (int i = 0; i < attributes.getLength(); i++) {
224 for (int i = 0; i < list.getLength(); i++) {
300 for (int i = 0; i < list.getLength(); i++) {
307 for (int i = 0; i < attributes.getLength(); i++) {
H A DNodeImpl.java512 for (int i = 0, length = attributes.getLength(); i < length; i++) {
577 for (int i = 0, length = attributes.getLength(); i < length; i++) {
679 if (a.getLength() != b.getLength()) {
682 for (int i = 0; i < a.getLength(); i++) {
/libcore/luni/src/main/java/org/xml/sax/helpers/
H A DParserAdapter.java499 int length = qAtts.getLength();
890 * @see org.xml.sax.Attributes#getLength
892 public int getLength ()
894 return qAtts.getLength();
983 int max = atts.getLength();
887 public int getLength () method in class:ParserAdapter.AttributeListAdapter
H A DAttributesImpl.java91 * @see org.xml.sax.Attributes#getLength method in class:AttributesImpl
93 public int getLength ()
351 length = atts.getLength();
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
H A DExemptionMechanismSpiTest.java92 int len = MyExemptionMechanismSpi.getLength();
/libcore/ojluni/src/main/java/java/net/
H A DDatagramPacket.java235 public synchronized int getLength() { method in class:DatagramPacket
254 * @see #getLength
348 * @see #getLength
376 * @see #getLength
/libcore/ojluni/src/main/java/sun/security/util/
H A DDerValue.java260 length = DerInputStream.getLength((lenByte & 0xff), in);
276 length = DerInputStream.getLength(inbuf);
378 length = DerInputStream.getLength((lenByte & 0xff), in);
393 length = DerInputStream.getLength(in);
/libcore/dom/src/test/java/org/w3c/domts/
H A DXercesHTML2DocumentBuilderFactory.java173 public int getLength() { method in class:XercesHTML2DocumentBuilderFactory.HTMLHandler
174 return currentAttributes.getLength();
H A DXercesHTMLDocumentBuilderFactory.java173 public int getLength() { method in class:XercesHTMLDocumentBuilderFactory.HTMLHandler
174 return currentAttributes.getLength();
/libcore/luni/src/main/java/libcore/reflect/
H A DAnnotationMember.java171 int len = Array.getLength(value);
364 if (tag != ARRAY || Array.getLength(value) == 0) {
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
H A DDatagramSocketTest.java158 assertEquals(10, receive.getLength());
164 assertEquals(p1.getLength(), p2.getLength());
168 for (int i = 0; i < p1.getLength(); ++i) {
170 String expected = new String(p1Bytes, p1.getOffset(), p1.getLength(),
172 String actual = new String(p2Bytes, p2.getOffset(), p2.getLength(),
196 assertEquals(sendBytes.length, receive.getLength());
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
H A DArrayTest.java371 * java.lang.reflect.Array#getLength(java.lang.Object)
375 // java.lang.reflect.Array.getLength(java.lang.Object)
378 assertEquals("Returned incorrect length", 1, Array.getLength(x));
380 .getLength(new Object[10000]));
382 Array.getLength(new Object());

Completed in 647 milliseconds

1234567