Searched refs:getLength (Results 1 - 25 of 406) sorted by relevance

1234567891011>>

/external/apache-http/android/src/com/android/internal/http/multipart/
H A DPartSource.java52 long getLength(); method in interface:PartSource
H A DByteArrayPartSource.java66 * @see PartSource#getLength()
68 public long getLength() { method in class:ByteArrayPartSource
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMNodeListBase.java78 public int getLength() { method in class:DTMNodeListBase
H A DDTMNodeList.java124 public int getLength() { method in class:DTMNodeList
125 return (m_iter != null) ? m_iter.getLength() : 0;
/external/apache-xml/src/main/java/org/apache/xml/utils/res/
H A DCharArrayWrapper.java39 public int getLength(){ method in class:CharArrayWrapper
H A DIntArrayWrapper.java39 public int getLength(){ method in class:IntArrayWrapper
H A DLongArrayWrapper.java39 public int getLength(){ method in class:LongArrayWrapper
H A DStringArrayWrapper.java39 public int getLength(){ method in class:StringArrayWrapper
/external/clang/lib/Tooling/Core/
H A DReplacement.cpp74 Start, ReplacementRange.getLength(), ReplacementText);
83 << ReplacementRange.getLength() << ":\"" << ReplacementText << "\"";
90 if (LHS.getLength() != RHS.getLength())
91 return LHS.getLength() < RHS.getLength();
99 LHS.getLength() == RHS.getLength() &&
152 if (I->getOffset() + I->getLength() > Position)
153 NewPosition += I->getOffset() + I->getLength()
[all...]
/external/mockito/src/org/mockito/internal/matchers/
H A DEquality.java28 return Array.getLength(o1) == Array.getLength(o2);
32 for (int i = 0; i < Array.getLength(o1); i++) {
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFTypeUnit.cpp22 return TypeOffset < getLength();
27 << " length = " << format("0x%08x", getLength())
H A DDWARFCompileUnit.cpp18 << " length = " << format("0x%08x", getLength())
/external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
H A DOnePointCrossover.java86 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());
H A DBinaryChromosome.java82 if (getLength() != anotherBc.getLength())
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DTrack.java56 public float getLength(); method in interface:Track
/external/icu/icu4c/source/i18n/
H A Dsortkey.cpp74 : UObject(other), fFlagAndLength(other.getLength()),
141 return getLength() == source.getLength() &&
143 uprv_memcmp(getBytes(), source.getBytes(), getLength()) == 0);
156 int32_t length = other.getLength();
193 int32_t minLength = getLength();
194 int32_t targetLength = target.getLength();
270 fHashCode = computeHashCode(getBytes(), getLength());
/external/hamcrest/src/org/hamcrest/internal/
H A DArrayIterator.java18 return currentIndex < Array.getLength(array);
/external/llvm/include/llvm/DebugInfo/PDB/
H A DPDBSymbolTypeBuiltin.h31 FORWARD_SYMBOL_METHOD(getLength)
/external/skia/tests/
H A DDeflateWStream.cpp45 if (decompressed->getLength() != size) {
47 " %u != %u", i, (unsigned)(decompressed->getLength()),
51 o.writeStream(compressed.get(), compressed->getLength());
61 (uint32_t)(decompressed->getLength()));
H A DPathMeasureTest.cpp25 meas.getLength();
41 meas.getLength();
73 meas.getLength();
85 SkScalar length = meas.getLength();
92 length = meas.getLength();
98 length = meas.getLength();
109 length = meas.getLength();
112 length = meas.getLength();
139 length = meas.getLength();
175 length = meas.getLength();
[all...]
/external/hamcrest/src/org/hamcrest/core/
H A DIsEqual.java48 return Array.getLength(o1) == Array.getLength(o2);
52 for (int i = 0; i < Array.getLength(o1); i++) {
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DAttributesImplSerializer.java75 if (super.getLength() < MAX)
110 int index = super.getLength();
173 int len = super.getLength();
200 int numAtts = atts.getLength();
217 if (super.getLength() < MAX)
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
H A DAttList.java67 // m_lastIndex = m_attrs.getLength() - 1;
82 m_lastIndex = m_attrs.getLength() - 1;
92 public int getLength() method in class:AttList
94 return m_attrs.getLength();
234 for(int i=m_attrs.getLength()-1;i>=0;--i)
255 for(int i=m_attrs.getLength()-1;i>=0;--i)
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DAttList.java58 // m_lastIndex = m_attrs.getLength() - 1;
73 m_lastIndex = m_attrs.getLength() - 1;
83 public int getLength() method in class:AttList
85 return m_attrs.getLength();
225 for(int i=m_attrs.getLength()-1;i>=0;--i)
246 for(int i=m_attrs.getLength()-1;i>=0;--i)
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayReference/
H A DSetValuesTest.java74 for (int j = 0; j < valuesRegion.getLength(); j++) {
81 for (int j = 0; j < valuesRegion.getLength(); j++) {
88 for (int j = 0; j < valuesRegion.getLength(); j++) {
114 int length = valuesRegion.getLength();
147 assertEquals("Invalud returned array length,", length, region.getLength());
148 for (int i = 0; i < region.getLength(); i++) {

Completed in 773 milliseconds

1234567891011>>