/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
nodechildnodesappendchild.java | 65 int expectedLength; 71 expectedLength = (int) childList.getLength(); 72 expectedLength += 1; 76 assertEquals("childNodeLength", expectedLength, length);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
ECCurve.java | 42 int expectedLength = (getFieldSize() + 7) / 8; 59 if (encoded.length != (expectedLength + 1)) 65 BigInteger X1 = fromArray(encoded, 1, expectedLength); 74 if (encoded.length != (2 * expectedLength + 1)) 79 BigInteger X1 = fromArray(encoded, 1, expectedLength); 80 BigInteger Y1 = fromArray(encoded, 1 + expectedLength, expectedLength);
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XMLHttpRequest.cpp | [all...] |
/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
BinaryHprofReader.java | 383 int expectedLength = 4 + 4 + 4 + (frames * BinaryHprof.ID_SIZE); 384 if (recordLength != expectedLength) { 386 + expectedLength 436 int expectedLength = 4 + 4 + (samplesCount * (4 + 4)); 437 if (recordLength != expectedLength) { 439 + expectedLength
|
/external/skia/tests/ |
PointTest.cpp | 38 // approximately expectedLength for this (x,y). 40 SkScalar expectedLength) { 48 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(s1, expectedLength));
|
/external/chromium_org/third_party/WebKit/Source/platform/audio/ |
HRTFElevation.cpp | 85 size_t expectedLength = static_cast<size_t>(TotalNumberOfResponses * ResponseFrameSize); 88 bool isBusGood = responseLength == expectedLength && bus->numberOfChannels() == 2; 185 size_t expectedLength = static_cast<size_t>(256 * (sampleRate / 44100.0)); 188 bool isBusGood = responseLength == expectedLength && impulseResponse->numberOfChannels() == 2;
|
/external/chromium_org/third_party/icu/source/test/cintltst/ |
spreptst.c | 760 int32_t srcLength, resultLength, expectedLength; 780 srcLength = resultLength = expectedLength = SPREP_PROFILE_TEST_MAX_LENGTH; 785 expectedLength = u_unescape(profile_test_case[++i], expected, expectedLength); 800 if (resultLength != expectedLength || u_strcmp(result, expected) != 0) {
|
capitst.c | [all...] |
ccapitst.c | [all...] |
cloctst.c | [all...] |
nucnvtst.c | [all...] |
/external/icu4c/test/cintltst/ |
spreptst.c | 760 int32_t srcLength, resultLength, expectedLength; 780 srcLength = resultLength = expectedLength = SPREP_PROFILE_TEST_MAX_LENGTH; 785 expectedLength = u_unescape(profile_test_case[++i], expected, expectedLength); 800 if (resultLength != expectedLength || u_strcmp(result, expected) != 0) {
|
capitst.c | [all...] |
ccapitst.c | [all...] |
cloctst.c | [all...] |
nucnvtst.c | [all...] |
/libcore/luni/src/test/java/libcore/java/util/zip/ |
ZipFileTest.java | 131 int expectedLength = 5; 133 byte[] buffer = new byte[expectedLength]; 153 ze.setCompressedSize(expectedLength - 1); 162 assertEquals(expectedLength, count);
|
/external/chromium_org/v8/test/webkit/fast/js/ |
JSON-parse-reviver.js | 34 shouldBe("currentHolder.length", "" + expectedLength); 79 expectedLength = this.length = 3; 85 expectedLength = this.length = 3; 103 expectedLength = 5;
|
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
BerInputStream.java | 84 * @param expectedLength expected length of full encoding, this includes 87 public BerInputStream(byte[] encoded, int offset, int expectedLength) throws IOException { 96 && (offset + expectedLength) != (this.offset + this.length)) {
|
/external/chromium_org/third_party/WebKit/Source/platform/network/ |
ResourceResponse.h | 60 ResourceResponse(const KURL&, const AtomicString& mimeType, long long expectedLength, const AtomicString& textEncodingName, const String& filename);
|
ResourceResponse.cpp | 72 ResourceResponse::ResourceResponse(const KURL& url, const AtomicString& mimeType, long long expectedLength, const AtomicString& textEncodingName, const String& filename) 75 , m_expectedContentLength(expectedLength)
|
/libcore/dex/src/main/java/com/android/dex/ |
Dex.java | 591 int expectedLength = readUleb128(); 592 String result = Mutf8.decode(this, new char[expectedLength]); 593 if (result.length() != expectedLength) { 594 throw new DexException("Declared length " + expectedLength [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
StringImpl.cpp | 89 size_t expectedLength = std::min(string->length(), kMaxSnippetLength); 90 if (expectedLength == kMaxSnippetLength) 91 expectedLength += 3; // For the "...". 92 ++expectedLength; // For the terminating '\0'. 93 snippet.reserveCapacity(expectedLength); [all...] |
/prebuilts/devtools/tools/lib/ |
ddmlib.jar | |
/prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.2.0/ |
ddmlib-22.2.0.jar | |