Searched refs:expectedLength (Results 1 - 13 of 13) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/platform/network/win/
H A DResourceResponse.h38 ResourceResponse(const URL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename) argument
39 : ResourceResponseBase(url, mimeType, expectedLength, textEncodingName, filename)
/macosx-10.10/WebCore-7600.1.25/platform/network/curl/
H A DResourceResponse.h42 ResourceResponse(const URL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename) argument
43 : ResourceResponseBase(url, mimeType, expectedLength, textEncodingName, filename),
/macosx-10.10/WebCore-7600.1.25/platform/network/soup/
H A DResourceResponse.h45 ResourceResponse(const URL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename) argument
46 : ResourceResponseBase(url, mimeType, expectedLength, textEncodingName, filename)
/macosx-10.10/WebCore-7600.1.25/platform/network/cf/
H A DResourceResponse.h69 ResourceResponse(const URL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename) argument
70 : ResourceResponseBase(url, mimeType, expectedLength, textEncodingName, filename)
/macosx-10.10/WebCore-7600.1.25/platform/audio/
H A DHRTFElevation.cpp87 size_t expectedLength = static_cast<size_t>(TotalNumberOfResponses * ResponseFrameSize); local
90 bool isBusGood = responseLength == expectedLength && bus->numberOfChannels() == 2;
187 size_t expectedLength = static_cast<size_t>(256 * (sampleRate / 44100.0));
190 bool isBusGood = responseLength == expectedLength && impulseResponse->numberOfChannels() == 2;
/macosx-10.10/ICU-531.30/icuSources/test/cintltst/
H A Dspreptst.c760 int32_t srcLength, resultLength, expectedLength; local
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) {
H A Dcapitst.c2401 const int32_t expectedLength[PREFERRED_SIZE] = { 3, 3, 3, 4, 4, 9, 9, 9, 9, 9, 9, 4, 4, 3, 4, 3 }; local
2403 const int32_t expectedLength[PREFERRED_SIZE] = { 3, 3, 3, 4, 4, 8, 8, 8, 8, 8, 8, 4, 4, 3, 4, 3 }; local
2425 if (size == expectedLength[i]) {
2426 for (n = 0; n < expectedLength[i]; n++) {
2444 log_err("Number of keywords (%d) does not match expected size (%d) for locale: %s\n", size, expectedLength[i], locale);
H A Dccapitst.c2679 int32_t expectedLength; local
2680 char dest[20]; /* longer than longest expectedLength */
2711 expectedLength=6;
2715 expectedLength=16;
2723 &target, dest+expectedLength,
2728 target!=dest+expectedLength || 0!=uprv_memcmp(dest, expected, expectedLength) ||
2729 dest[expectedLength]!=9
H A Dcloctst.c5610 const int32_t expectedLength = getExpectedReturnValue(&maximizeErrors[i]); local
5627 else if (length != expectedLength) {
5628 log_err(" unexpected length for uloc_addLikelySubtags(), minimal \"%s\" expected length %d, but got %d\n", minimal, expectedLength, length);
5644 const int32_t expectedLength = getExpectedReturnValue(&minimizeErrors[i]); local
5661 else if (length != expectedLength) {
5662 log_err(" unexpected length for uloc_minimizeSubtags(), maximal \"%s\" expected length %d, but got %d\n", maximal, expectedLength, length);
H A Dnucnvtst.c1640 static const int32_t expectedLength[] ={ local
1680 if(signatureLength != expectedLength[i]){
1681 log_err("ucnv_detectUnicodeSignature failed for source : %s at index :%i.Expected Length: %i. Got length: %i\n",source,i,signatureLength,expectedLength[i]);
1753 static const int32_t expectedLength[] ={ local
1796 if(signatureLength != expectedLength[i]){
1797 log_err("ucnv_detectUnicodeSignature test2 failed for source : %s at index :%i.Expected Length: %i. Got length: %i\n",source,i,signatureLength,expectedLength[i]);
/macosx-10.10/WebCore-7600.1.25/platform/network/
H A DResourceResponseBase.h140 ResourceResponseBase(const URL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename);
H A DResourceResponseBase.cpp70 ResourceResponseBase::ResourceResponseBase(const URL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename) argument
73 , m_expectedContentLength(expectedLength)
/macosx-10.10/WebCore-7600.1.25/xml/
H A DXMLHttpRequest.cpp1184 long long expectedLength = m_response.expectedContentLength(); local
1185 bool lengthComputable = expectedLength > 0 && m_receivedLength <= expectedLength;
1186 unsigned long long total = lengthComputable ? expectedLength : 0;

Completed in 292 milliseconds