Searched defs:getLength (Results 1 - 25 of 28) sorted by relevance

12

/libcore/luni/src/main/java/org/w3c/dom/
H A DDOMImplementationList.java41 public int getLength(); method in interface:DOMImplementationList
H A DNodeList.java39 public int getLength(); method in interface:NodeList
H A DDOMStringList.java40 public int getLength(); method in interface:DOMStringList
H A DCharacterData.java64 public int getLength(); method in interface:CharacterData
H A DNameList.java47 public int getLength(); method in interface:NameList
H A DNamedNodeMap.java99 public int getLength(); method in interface:NamedNodeMap
/libcore/luni/src/main/java/org/xml/sax/
H A DAttributeList.java40 * for (int i = 0; i < atts.getLength(); i++) {
49 * <p>(Note that the result of getLength() will be zero if there
92 public abstract int getLength ();
109 * @see #getLength
132 * @see #getLength
148 * @see #getLength
91 public abstract int getLength (); method in interface:AttributeList
H A DAttributes.java92 public abstract int getLength ();
102 * @see #getLength
114 * @see #getLength
126 * @see #getLength
149 * @see #getLength
165 * @see #getLength
91 public abstract int getLength (); method in interface:Attributes
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DNodeListImpl.java50 public int getLength() { method in class:NodeListImpl
H A DCharacterDataImpl.java61 public int getLength() { method in class:CharacterDataImpl
H A DElementImpl.java326 public int getLength() { method in class:ElementImpl.ElementAttrNamedNodeMapImpl
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DStackTest.java179 public int getLength() { method in class:StackTest.BugStack
/libcore/luni/src/main/java/org/apache/harmony/xml/
H A DExpatAttributes.java34 public abstract int getLength(); method in class:ExpatAttributes
49 if (index < 0 || index >= getLength()) {
56 return (index < 0 || index >= getLength())
62 return (index < 0 || index >= getLength())
68 return (index < 0 || index >= getLength()) ? null : CDATA;
72 return (index < 0 || index >= getLength())
/libcore/luni/src/main/java/org/xml/sax/helpers/
H A DAttributeListImpl.java117 int count = atts.getLength();
199 * @see org.xml.sax.AttributeList#getLength method in class:AttributeListImpl
201 public int getLength() {
H A DAttributesImpl.java91 * @see org.xml.sax.Attributes#getLength method in class:AttributesImpl
93 public int getLength ()
351 length = atts.getLength();
H A DXMLReaderAdapter.java468 * @see org.xml.sax.AttributeList#getLength
470 public int getLength ()
472 return attributes.getLength();
466 public int getLength () method in class:XMLReaderAdapter.AttributesAdapter
/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/net/
H A DDatagramPacket.java246 public synchronized int getLength() { method in class:DatagramPacket
265 * @see #getLength
359 * @see #getLength
387 * @see #getLength
/libcore/ojluni/src/main/java/java/lang/reflect/
H A DArray.java133 public static int getLength(Object array) { method in class:Array
/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/ojluni/src/main/java/java/io/
H A DFileSystem.java146 public abstract long getLength(File f); method in class:FileSystem
H A DUnixFileSystem.java264 public long getLength(File f) { method in class:UnixFileSystem
/libcore/ojluni/src/main/java/java/text/
H A DBidi.java201 if (lineStart < 0 || lineLimit < 0 || lineStart > lineLimit || lineLimit > getLength()) {
203 "limit=" + lineLimit + ", length=" + getLength() + ")");
209 // .getLength() for example and return a correct value instead of an IllegalStateException
250 public int getLength() { method in class:Bidi
251 return bidiBase.getLength();
337 return (bidiBase.countRuns() == 0 ? bidiBase.getLength() : bidiBase.getRunLimit(run));
400 + " length: " + bidiBase.getLength() + " runs: " + bidiBase.getRunCount() + "]";
/libcore/ojluni/src/main/java/sun/security/util/
H A DDerInputStream.java195 return buffer.getInteger(getLength(buffer));
207 return buffer.getBigInteger(getLength(buffer), false);
221 return buffer.getBigInteger(getLength(buffer), true);
233 return buffer.getInteger(getLength(buffer));
244 return buffer.getBitString(getLength(buffer));
255 int length = getLength(buffer) - 1;
286 int length = getLength(buffer);
427 int len = getLength(lenByte, buffer);
444 len = DerInputStream.getLength(buffer);
562 int length = getLength(buffe
602 int getLength() throws IOException { method in class:DerInputStream
613 static int getLength(InputStream in) throws IOException { method in class:DerInputStream
624 static int getLength(int lenByte, InputStream in) throws IOException { method in class:DerInputStream
[all...]

Completed in 2236 milliseconds

12