HomeSort by relevance Sort by last modified time
    Searched defs:inputLength (Results 1 - 25 of 43) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketDeflaterTest.cpp 43 const size_t inputLength = strlen(inputData);
45 ASSERT_TRUE(deflater->addBytes(inputData, inputLength));
52 EXPECT_EQ(inputLength, inflater->size());
58 ASSERT_TRUE(deflater->addBytes(inputData, inputLength));
65 EXPECT_EQ(inputLength, inflater->size());
96 const size_t inputLength = strlen(inputData);
101 ASSERT_TRUE(deflater->addBytes(inputData, inputLength));
107 EXPECT_EQ(inputLength, inflater->size());
  /libcore/luni/src/main/java/java/nio/charset/
MalformedInputException.java 33 private int inputLength;
42 this.inputLength = length;
51 return this.inputLength;
56 return "Length: " + inputLength;
UnmappableCharacterException.java 33 private int inputLength;
42 this.inputLength = length;
49 return this.inputLength;
54 return "Length: " + inputLength;
  /external/chromium_org/third_party/icu/source/samples/csdet/
csdet.c 29 int32_t inputLength, match, matchCount = 0;
47 inputLength = (int32_t) fread(buffer, 1, BUFFER_SIZE, file);
52 ucsdet_setText(csd, buffer, inputLength, &status);
  /external/chromium_org/third_party/skia/src/core/
SkFlate.cpp 57 size_t inputLength = src->getLength();
58 if (input == NULL || inputLength == 0) {
64 flateData.avail_in = SkToUInt(inputLength);
  /external/icu/icu4c/source/samples/csdet/
csdet.c 29 int32_t inputLength, match, matchCount = 0;
47 inputLength = (int32_t) fread(buffer, 1, BUFFER_SIZE, file);
52 ucsdet_setText(csd, buffer, inputLength, &status);
  /external/skia/src/core/
SkFlate.cpp 57 size_t inputLength = src->getLength();
58 if (input == NULL || inputLength == 0) {
64 flateData.avail_in = SkToUInt(inputLength);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMTokenList.cpp 208 unsigned inputLength = input.length();
210 output.reserveCapacity(inputLength);
214 while (position < inputLength) {
222 while (position < inputLength && isNotHTMLSpace<UChar>(input[position]))
229 while (position < inputLength && isHTMLSpace<UChar>(input[position]))
239 if (position < inputLength && !output.isEmpty())
  /external/chromium_org/third_party/WebKit/Source/platform/network/
ParsedContentType.cpp 54 unsigned inputLength = input.length();
58 if (tokenEnd >= inputLength)
64 while (tokenEnd < inputLength) {
  /external/chromium_org/third_party/icu/source/test/perf/utrie2perf/
utrie2perf.cpp 55 int32_t inputLength;
56 UPerfTest::getBuffer(inputLength, status);
57 if(U_SUCCESS(status) && inputLength>0) {
  /external/icu/icu4c/source/test/perf/utrie2perf/
utrie2perf.cpp 55 int32_t inputLength;
56 UPerfTest::getBuffer(inputLength, status);
57 if(U_SUCCESS(status) && inputLength>0) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
HanziToPinyin.java 143 final int inputLength = input.length();
152 for (int i = 0; i < inputLength; i++) {
  /external/chromium_org/third_party/icu/source/test/perf/unisetperf/
unisetperf.cpp 59 int32_t inputLength;
60 UPerfTest::getBuffer(inputLength, status);
61 if(U_SUCCESS(status) && inputLength>0) {
  /external/chromium_org/third_party/icu/source/test/perf/utfperf/
utfperf.cpp 86 int32_t inputLength;
87 UPerfTest::getBuffer(inputLength, status);
124 input(testcase.getBuffer()), inputLength(testcase.getBufferLen()),
145 int32_t inputLength;
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/icu/icu4c/source/test/perf/unisetperf/
unisetperf.cpp 59 int32_t inputLength;
60 UPerfTest::getBuffer(inputLength, status);
61 if(U_SUCCESS(status) && inputLength>0) {
  /external/icu/icu4c/source/test/perf/utfperf/
utfperf.cpp 86 int32_t inputLength;
87 UPerfTest::getBuffer(inputLength, status);
124 input(testcase.getBuffer()), inputLength(testcase.getBufferLen()),
145 int32_t inputLength;
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;
  /frameworks/av/media/libmedia/
CharacterEncodingDetector.cpp 176 int32_t inputLength = strlen(s);
188 if (isPrintableAscii(s, inputLength)) {
192 ucsdet_setText(csd, s, inputLength, &status);
  /external/chromium_org/third_party/WebKit/Source/platform/weborigin/
KURL.cpp 104 virtual void ConvertFromUTF16(const url::UTF16Char* input, int inputLength, url::CanonOutput* output) OVERRIDE
106 CString encoded = m_encoding->normalizeAndEncode(String(input, inputLength), WTF::URLEncodedEntitiesForUnencodables);
681 int inputLength = utf8.length();
682 if (buffer.length() < inputLength * 3)
683 buffer.Resize(inputLength * 3);
685 url::EncodeURIComponent(utf8.data(), inputLength, &buffer);
  /external/chromium_org/third_party/icu/source/common/
dictbe.cpp     [all...]
  /external/icu/icu4c/source/common/
dictbe.cpp     [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
regextst.cpp     [all...]
  /external/icu/icu4c/source/test/intltest/
regextst.cpp     [all...]
  /external/chromium_org/third_party/icu/source/i18n/
decimfmt.cpp     [all...]
  /prebuilts/devtools/tools/lib/
commons-compress-1.0.jar 
  /prebuilts/tools/common/commons-compress/
commons-compress-1.0.jar 

Completed in 1971 milliseconds

1 2