HomeSort by relevance Sort by last modified time
    Searched refs:getLength (Results 1 - 25 of 1912) 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;
  /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++) {
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
BinaryStream.h 46 virtual uint32_t getLength() = 0;
50 if (Offset > getLength())
52 if (getLength() < DataSize + Offset)
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
BinaryStream.h 46 virtual uint32_t getLength() = 0;
50 if (Offset > getLength())
52 if (getLength() < DataSize + Offset)
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
BinaryStream.h 46 virtual uint32_t getLength() = 0;
50 if (Offset > getLength())
52 if (getLength() < DataSize + Offset)
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
BinaryStream.h 46 virtual uint32_t getLength() = 0;
50 if (Offset > getLength())
52 if (getLength() < DataSize + Offset)
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
BinaryStream.h 46 virtual uint32_t getLength() = 0;
50 if (Offset > getLength())
52 if (getLength() < DataSize + Offset)
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
BinaryStream.h 46 virtual uint32_t getLength() = 0;
50 if (Offset > getLength())
52 if (getLength() < DataSize + Offset)
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
BinaryStream.h 46 virtual uint32_t getLength() = 0;
50 if (Offset > getLength())
52 if (getLength() < DataSize + Offset)
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
BinaryStream.h 46 virtual uint32_t getLength() = 0;
50 if (Offset > getLength())
52 if (getLength() < DataSize + Offset)
  /external/llvm/lib/DebugInfo/DWARF/
DWARFTypeUnit.cpp 22 return TypeOffset < getLength();
27 << " 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());

Completed in 1275 milliseconds

1 2 3 4 5 6 7 8 91011>>