Searched refs:currentLength (Results 1 - 14 of 14) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/html/parser/
H A DHTMLEntitySearch.h42 int currentLength() const { return m_currentLength; } function in class:WebCore::HTMLEntitySearch
H A DXSSAuditor.cpp602 for (size_t currentLength = 0; currentLength < decodedSnippet.length(); ++currentLength) {
603 UChar currentChar = decodedSnippet[currentLength];
608 decodedSnippet.truncate(currentLength);
H A DHTMLEntityParser.cpp96 if (entitySearch.mostRecentMatch()->length != entitySearch.currentLength()) {
/macosx-10.9.5/CF-855.17/
H A DCFUnicodeDecomposition.c330 CFIndex currentLength; local
335 currentLength = __CFUniCharRecursivelyDecomposeCharacter(currentChar, convertedChars, MAX_COMP_DECOMP_LEN - length);
336 convertedChars += currentLength;
337 usedLength += (currentLength - 1);
339 currentLength = __CFUniCharRecursivelyCompatibilityDecomposeCharacter(currentChar, convertedChars);
340 convertedChars += currentLength;
341 usedLength += (currentLength - 1);
H A DCFStringEncodings.c713 CFIndex currentLength; local
722 currentLength = (rangeLen > kCFCharConversionBufferLength ? kCFCharConversionBufferLength : rangeLen);
723 CFStringGetCharacters(string, CFRangeMake(rangeLoc, currentLength), charBuf);
726 if ((rangeLen > kCFCharConversionBufferLength) && CFUniCharIsSurrogateHighCharacter(charBuf[kCFCharConversionBufferLength - 1])) --currentLength;
728 streamingMask = ((rangeLen > currentLength) ? kCFStringEncodingPartialInput : 0)|CFStringEncodingStreamIDToMask(streamID);
730 result = CFStringEncodingUnicodeToBytes(encoding, flags|streamingMask, charBuf, currentLength, &numChars, buffer, max, &usedLen);
738 if ((rangeLen > kCFCharConversionBufferLength) && ((currentLength - numChars) < MAX_DECOMP_LEN)) {
739 composedRange = CFStringGetRangeOfComposedCharactersAtIndex(string, rangeLoc + currentLength);
759 currentLength = composedRange.location - lastRangeLoc;
760 CFStringGetCharacters(string, CFRangeMake(lastRangeLoc, currentLength), charBu
[all...]
H A DCFString.c2442 CFIndex currentLength = CFUniCharDecomposeCharacter(character, &(outCharacters[filledLength]), maxBufferLength - filledLength); local
2444 if (0 == currentLength) break; // didn't fit
2446 filledLength += currentLength;
4804 CFIndex currentLength; local
4813 currentLength = 2;
4817 currentLength = 1;
4846 currentLength += 2;
4850 ++currentLength;
4855 currentLength += (currentChar & 0xFFFF0000 ? 2 : 1);
4875 currentLength
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/network/
H A DBlobRegistryImpl.cpp114 long long currentLength = iter->length - offset; local
115 long long newLength = currentLength > length ? length : currentLength;
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLTextAreaElement.cpp306 unsigned currentLength = computeLengthForSubmission(currentValue, numberOfLineBreaksInCurrentValue); local
313 ASSERT(currentLength >= selectionLength);
314 unsigned baseLength = currentLength - selectionLength;
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DTextCheckingHelper.cpp326 int currentLength = TextIterator::rangeLength(paragraphRange.get()); local
328 int currentEndOffset = currentLength;
406 if (lastIteration || totalLengthProcessed + currentLength >= totalRangeLength)
412 totalLengthProcessed += currentLength;
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Ddecimfmt.cpp1577 int currentLength = appendTo.length(); local
1578 int intBegin = currentLength;
1660 currentLength = appendTo.length();
1663 handler.addAttribute(kIntegerField, intBegin, currentLength);
1666 handler.addAttribute(kFractionField, fracBegin, currentLength);
1675 handler.addAttribute(kExponentSymbolField, currentLength, appendTo.length());
1676 currentLength = appendTo.length();
1686 handler.addAttribute(kExponentSignField, currentLength, appendTo.length());
1689 handler.addAttribute(kExponentSignField, currentLength, appendTo.length());
1692 currentLength
1716 int currentLength = appendTo.length(); local
[all...]
/macosx-10.9.5/xnu-2422.115.4/iokit/Kernel/
H A DIONVRAM.cpp120 UInt32 currentLength, currentOffset = 0; local
133 currentLength = ((UInt16 *)(_nvramImage + currentOffset))[1] * 16;
136 partitionLength = currentLength - 16;
155 freePartitionSize = currentLength;
174 currentOffset += currentLength;
/macosx-10.9.5/webdavfs-352.92.2/mount.tproj/
H A Dwebdav_network.c3753 off_t currentLength; local
3756 currentLength = lseek(node->file_fd, 0LL, SEEK_END);
3757 if ( currentLength != -1 )
3760 currentLengthString = CFStringCreateWithFormat(kCFAllocatorDefault, NULL, CFSTR("bytes=%qd-"), currentLength);
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DJSObject.h939 unsigned getNewVectorLength(unsigned currentVectorLength, unsigned currentLength, unsigned desiredLength);
H A DJSObject.cpp2230 ALWAYS_INLINE unsigned JSObject::getNewVectorLength(unsigned currentVectorLength, unsigned currentLength, unsigned desiredLength) argument
2235 unsigned maxInitLength = std::min(currentLength, 100000U);

Completed in 213 milliseconds