Searched refs:consumedLength (Results 1 - 8 of 8) sorted by relevance

/macosx-10.9.5/CF-855.17/
H A DCFUnicodePrecomposition.h43 CF_EXPORT bool CFUniCharPrecompose(const UTF16Char *characters, CFIndex length, CFIndex *consumedLength, UTF16Char *precomposed, CFIndex maxLength, CFIndex *filledLength);
H A DCFUnicodeDecomposition.h49 CF_EXPORT bool CFUniCharDecompose(const UTF16Char *src, CFIndex length, CFIndex *consumedLength, void *dst, CFIndex maxLength, CFIndex *filledLength, bool needToReorder, uint32_t dstFormat, bool isHFSPlus);
H A DCFUnicodePrecomposition.c161 bool CFUniCharPrecompose(const UTF16Char *characters, CFIndex length, CFIndex *consumedLength, UTF16Char *precomposed, CFIndex maxLength, CFIndex *filledLength) { argument
275 if (consumedLength) *consumedLength = originalLength - length;
293 if (consumedLength) *consumedLength = originalLength - length;
H A DCFUnicodeDecomposition.c224 bool CFUniCharDecompose(const UTF16Char *src, CFIndex length, CFIndex *consumedLength, void *dst, CFIndex maxLength, CFIndex *filledLength, bool needToReorder, uint32_t dstFormat, bool isHFSPlus) { argument
315 if (consumedLength) *consumedLength = originalLength - length;
H A DCFString.c2266 static CFIndex __CFStringFoldCharacterClusterAtIndex(UTF32Char character, CFStringInlineBuffer *buffer, CFIndex index, CFOptionFlags flags, const uint8_t *langCode, UTF32Char *outCharacters, CFIndex maxBufferLength, CFIndex *consumedLength) { argument
2470 if ((filledLength > 0) && (NULL != consumedLength)) *consumedLength = (currentIndex - index);
4925 CFIndex consumedLength = 1; local
4932 while (consumedLength < mappedLength) {
4933 nextChar = mappedCharacters[consumedLength];
4947 mappedCharacters[consumedLength++] = 0xFFFD;
4949 if (consumedLength < mappedLength) {
4950 tIndex = mappedCharacters[consumedLength] - HANGUL_TBASE;
4954 mappedCharacters[consumedLength
5152 CFIndex consumedLength; local
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/InspectorServer/
H A DHTTPRequest.cpp88 size_t consumedLength = parseHTTPHeader(p, end - p, failureReason, name, value); local
89 if (!consumedLength)
91 p += consumedLength;
/macosx-10.9.5/WebCore-7537.78.1/Modules/websockets/
H A DWebSocketHandshake.cpp412 size_t consumedLength; local
414 for (p = header, consumedLength = 0; consumedLength < headerLength; p++, consumedLength++) {
429 if (consumedLength == headerLength)
476 size_t consumedLength = parseHTTPHeader(p, end - p, m_failureReason, name, value); local
477 if (!consumedLength)
479 p += consumedLength;
/macosx-10.9.5/WebCore-7537.78.1/platform/network/
H A DHTTPParsers.cpp557 size_t consumedLength; local
559 for (p = data, consumedLength = 0; consumedLength < length; p++, consumedLength++) {
570 if (consumedLength == length) {

Completed in 189 milliseconds