Searched defs:inputLength (Results 1 - 14 of 14) sorted by relevance

/external/webkit/Source/WebCore/html/
H A DDOMTokenList.cpp68 unsigned inputLength = input.length(); local
70 output.reserveCapacity(inputLength);
74 while (position < inputLength) {
82 while (position < inputLength && isNotHTMLSpace(input[position]))
88 while (position < inputLength && isHTMLSpace(input[position]))
98 if (position < inputLength && !output.isEmpty())
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DUniscribeHelperTextRun.cpp67 int inputLength,
72 : UniscribeHelper(input, inputLength, isRtl, hfont,
65 UniscribeHelperTextRun( const wchar_t* input, int inputLength, bool isRtl, HFONT hfont, SCRIPT_CACHE* scriptCache, SCRIPT_FONTPROPERTIES* fontProperties) argument
H A DUniscribeHelper.cpp72 int inputLength,
79 , m_inputLength(inputLength)
71 UniscribeHelper(const UChar* input, int inputLength, bool isRtl, HFONT hfont, SCRIPT_CACHE* scriptCache, SCRIPT_FONTPROPERTIES* fontProperties, WORD spaceGlyph) argument
/external/icu4c/samples/csdet/
H A Dcsdet.c29 int32_t inputLength, match, matchCount = 0; local
47 inputLength = (int32_t) fread(buffer, 1, BUFFER_SIZE, file);
52 ucsdet_setText(csd, buffer, inputLength, &status);
/external/skia/src/core/
H A DSkFlate.cpp53 size_t inputLength = src->getLength(); local
54 if (input == NULL || inputLength == 0) {
60 flateData.avail_in = inputLength;
/external/icu4c/test/perf/unisetperf/
H A Dunisetperf.cpp59 int32_t inputLength; local
60 UPerfTest::getBuffer(inputLength, status);
61 if(U_SUCCESS(status) && inputLength>0) {
/external/icu4c/test/perf/utrie2perf/
H A Dutrie2perf.cpp55 int32_t inputLength; local
56 UPerfTest::getBuffer(inputLength, status);
57 if(U_SUCCESS(status) && inputLength>0) {
/external/webkit/Source/WebCore/platform/text/gtk/
H A DTextCodecGtk.cpp450 gsize inputLength = length; local
460 inputLength = length + m_numBufferedBytes;
461 prefixedBytes = static_cast<char*>(fastMalloc(inputLength));
474 input, inputLength,
480 inputLength -= bytesRead;
486 memcpy(m_bufferedBytes, input, inputLength);
487 m_numBufferedBytes = inputLength;
488 inputLength = 0;
494 if (inputLength) {
497 inputLength
531 gsize inputLength = length * sizeof(UChar); local
539 input, inputLength, local
[all...]
/external/webkit/Source/WebCore/platform/text/mac/
H A DTextCodecMac.cpp132 OSStatus TextCodecMac::decode(const unsigned char* inputBuffer, int inputBufferLength, int& inputLength, argument
193 inputLength = bytesRead; member in namespace:WebCore
/external/icu4c/test/perf/utfperf/
H A Dutfperf.cpp86 int32_t inputLength; local
87 UPerfTest::getBuffer(inputLength, status);
124 input(testcase.getBuffer()), inputLength(testcase.getBufferLen()),
145 int32_t inputLength; member in class:Command
175 pInLimit=input+inputLength;
210 if(inputLength!=outputLength) {
211 fprintf(stderr, "error: roundtrip failed, inputLength %d!=outputLength %d\n", inputLength, outputLength);
239 pInLimit=input+inputLength;
/external/icu4c/i18n/
H A Duspoof.cpp389 static UChar *getSkeleton(const USpoofChecker *sc, uint32_t type, const UChar *s, int32_t inputLength, argument
397 requiredCapacity = uspoof_getSkeleton(sc, type, s, inputLength, dest, destCapacity, status);
405 uspoof_getSkeleton(sc, type, s, inputLength, buf, requiredCapacity, status);
H A Ddecimfmt.cpp2307 int32_t inputLength = input.length(); local
2336 while (pos < inputLength &&
2368 if (pos < inputLength &&
2396 if (i >= affixLength || pos >= inputLength) {
/external/webkit/Source/WebCore/platform/
H A DKURLGoogle.cpp72 virtual void ConvertFromUTF16(const url_parse::UTF16Char* input, int inputLength, argument
75 CString encoded = m_encoding->encode(input, inputLength, URLEncodedEntitiesForUnencodables);
806 int inputLength = cstr.length(); local
810 url_util::DecodeURLEscapeSequences(input, inputLength, &unescaped);
848 int inputLength = utf8.length(); local
851 for (int i = 0; i < inputLength; i++) {
/external/icu4c/test/intltest/
H A Dregextst.cpp4299 int32_t inputLength; local
4492 inputLength = matchString.extract(inputChars, inputCapacity, UTF8Converter.getAlias(), status);
4496 inputCapacity = inputLength + 1;
4500 utext_openUTF8(&inputText, inputChars, inputLength, &status);

Completed in 267 milliseconds