HomeSort by relevance Sort by last modified time
    Searched refs:getLength (Results 1 - 25 of 1489) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/org/w3c/dom/
DOMImplementationList.java 41 public int getLength();
NodeList.java 39 public int getLength();
DOMStringList.java 40 public int getLength();
NameList.java 47 public int getLength();
  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
IPDBStreamData.h 32 virtual uint32_t getLength() = 0;
DirectoryStreamData.h 26 virtual uint32_t getLength() { return File.getNumDirectoryBytes(); }
IndexedStreamData.h 24 uint32_t getLength() override;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/
AttributeListImplTest.java 39 assertEquals(0, empty.getLength());
40 assertEquals(3, multi.getLength());
46 assertEquals(0, ai.getLength());
50 assertEquals(3, ai.getLength());
55 assertEquals(0, ai.getLength());
68 assertEquals(0, attrs.getLength());
71 assertEquals(multi.getLength(), attrs.getLength());
73 for (int i = 0; i < multi.getLength(); i++) {
85 assertEquals(3, attrs.getLength());
    [all...]
  /external/apache-http/android/src/com/android/internal/http/multipart/
PartSource.java 52 long getLength();
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeListBase.java 78 public int getLength() {
  /external/apache-xml/src/main/java/org/apache/xml/utils/res/
CharArrayWrapper.java 39 public int getLength(){
IntArrayWrapper.java 39 public int getLength(){
LongArrayWrapper.java 39 public int getLength(){
StringArrayWrapper.java 39 public int getLength(){
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FatFile.java 55 if (entry.getLength() > cc.getLengthOnDisk()) throw new IOException(
68 public long getLength() {
71 return entry.getLength();
88 if (getLength() == length) return;
118 if (offset + len > getLength()) {
134 * {@link #getLength() length} of this file, an attempt is made to
153 if (lastByte > getLength()) {
203 return getClass().getSimpleName() + " [length=" + getLength() +
  /external/llvm/tools/llvm-pdbdump/
BuiltinDumper.cpp 30 if (Symbol.getLength() == 4)
34 switch (Symbol.getLength()) {
47 switch (Symbol.getLength()) {
  /external/mockito/src/main/java/org/mockito/internal/matchers/
Equality.java 30 return Array.getLength(o1) == Array.getLength(o2);
34 for (int i = 0; i < Array.getLength(o1); i++) {
  /external/llvm/lib/DebugInfo/DWARF/
DWARFTypeUnit.cpp 22 return TypeOffset < getLength();
27 << " length = " << format("0x%08x", getLength())
DWARFCompileUnit.cpp 18 << " length = " << format("0x%08x", getLength())
  /external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
OnePointCrossover.java 86 int length = first.getLength();
87 if (length != second.getLength())
94 ArrayList<T> child1Rep = new ArrayList<T> (first.getLength());
95 ArrayList<T> child2Rep = new ArrayList<T> (second.getLength());
  /external/llvm/include/llvm/DebugInfo/PDB/
IPDBLineNumber.h 29 virtual uint32_t getLength() const = 0;
  /external/llvm/lib/DebugInfo/PDB/Raw/
IndexedStreamData.cpp 19 uint32_t IndexedStreamData::getLength() {
  /libcore/luni/src/main/java/org/xml/sax/
AttributeList.java 40 * 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
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
FsFile.java 42 public long getLength();
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/common/
ResizableIntArrayTests.java 31 assertEquals("new instance length", 0, src.getLength());
44 assertEquals("length after add " + i, i + 1, src.getLength());
71 assertEquals("length after add at " + i, i + 1, src.getLength());
97 assertEquals("legth after add at " + index, index + 1, src.getLength());
101 src.get(src.getLength());
114 assertEquals("length after add " + i, i + 1, src.getLength());
120 assertEquals("length after reset", 0, src.getLength());
127 assertEquals("length after add " + i, i + 1, src.getLength());
145 assertEquals("length after add " + i, i + 1, src.getLength());
151 assertEquals("length after larger setLength", largerLength, src.getLength());
    [all...]

Completed in 1993 milliseconds

1 2 3 4 5 6 7 8 91011>>