Searched defs:utf8Length (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/third_party/icu/source/common/
H A Dunisetspan.h125 int32_t utf8Length; member in class:UnicodeSetStringSpan
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dconvtest.h46 int32_t utf8Length; member in struct:ConversionCase
/external/icu/icu4c/source/common/
H A Dunisetspan.h125 int32_t utf8Length; member in class:UnicodeSetStringSpan
/external/icu/icu4c/source/test/intltest/
H A Dconvtest.h46 int32_t utf8Length; member in struct:ConversionCase
/external/chromium_org/third_party/icu/source/test/perf/unisetperf/
H A Dunisetperf.cpp50 utf8(NULL), utf8Length(0), countInputCodePoints(0), spanCount(0) {
67 u_strToUTF8(NULL, 0, &utf8Length, buffer, bufferLen, &status);
69 utf8=(char *)malloc(utf8Length);
72 u_strToUTF8(utf8, utf8Length, NULL, buffer, bufferLen, &status);
81 (long)countInputCodePoints, (long)bufferLen, (long)utf8Length, (long)spanCount,
82 (double)countInputCodePoints/spanCount, (double)bufferLen/spanCount, (double)utf8Length/spanCount,
83 (double)utf8Length/countInputCodePoints);
122 int32_t utf8Length; member in class:UnicodeSetPerformanceTest
341 int32_t length=testcase.utf8Length;
387 int32_t length=testcase.utf8Length;
[all...]
/external/chromium_org/third_party/icu/source/test/perf/utrie2perf/
H A Dutrie2perf.cpp49 utf8(NULL), utf8Length(0), countInputCodePoints(0) {
61 u_strToUTF8(NULL, 0, &utf8Length, buffer, bufferLen, &status);
63 utf8=(char *)malloc(utf8Length);
66 u_strToUTF8(utf8, utf8Length, NULL, buffer, bufferLen, &status);
75 (long)countInputCodePoints, (long)bufferLen, (long)utf8Length,
76 (double)utf8Length/countInputCodePoints);
88 int32_t utf8Length; member in class:UTrie2PerfTest
164 UBool isFCD=unorm_checkFCDUTF8((const uint8_t *)testcase.utf8, testcase.utf8Length, NULL);
/external/icu/icu4c/source/test/perf/unisetperf/
H A Dunisetperf.cpp50 utf8(NULL), utf8Length(0), countInputCodePoints(0), spanCount(0) {
67 u_strToUTF8(NULL, 0, &utf8Length, buffer, bufferLen, &status);
69 utf8=(char *)malloc(utf8Length);
72 u_strToUTF8(utf8, utf8Length, NULL, buffer, bufferLen, &status);
81 (long)countInputCodePoints, (long)bufferLen, (long)utf8Length, (long)spanCount,
82 (double)countInputCodePoints/spanCount, (double)bufferLen/spanCount, (double)utf8Length/spanCount,
83 (double)utf8Length/countInputCodePoints);
122 int32_t utf8Length; member in class:UnicodeSetPerformanceTest
341 int32_t length=testcase.utf8Length;
387 int32_t length=testcase.utf8Length;
[all...]
/external/icu/icu4c/source/test/perf/utrie2perf/
H A Dutrie2perf.cpp49 utf8(NULL), utf8Length(0), countInputCodePoints(0) {
61 u_strToUTF8(NULL, 0, &utf8Length, buffer, bufferLen, &status);
63 utf8=(char *)malloc(utf8Length);
66 u_strToUTF8(utf8, utf8Length, NULL, buffer, bufferLen, &status);
75 (long)countInputCodePoints, (long)bufferLen, (long)utf8Length,
76 (double)utf8Length/countInputCodePoints);
88 int32_t utf8Length; member in class:UTrie2PerfTest
164 UBool isFCD=unorm_checkFCDUTF8((const uint8_t *)testcase.utf8, testcase.utf8Length, NULL);
/external/chromium_org/third_party/icu/source/test/perf/utfperf/
H A Dutfperf.cpp39 static int32_t utf8Length, encodedLength, outputLength, countInputCodePoints; variable
89 u_strToUTF8(utf8, (int32_t)sizeof(utf8), &utf8Length, buffer, bufferLen, &status);
268 input8(utf8), input8Length(utf8Length) {
/external/icu/icu4c/source/test/perf/utfperf/
H A Dutfperf.cpp39 static int32_t utf8Length, encodedLength, outputLength, countInputCodePoints; variable
89 u_strToUTF8(utf8, (int32_t)sizeof(utf8), &utf8Length, buffer, bufferLen, &status);
268 input8(utf8), input8Length(utf8Length) {
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dccapitst.c2495 int32_t utf8Length; local
2527 utf8Length=charUTF8Length+length;
2536 &source, utf8+utf8Length,
2561 int32_t utf8Length, expectLength; local
2577 utf8Length=charUTF8Length;
2584 memcpy(utf8+utf8Length, badUTF8[i], length);
2585 utf8Length+=length;
2587 memcpy(utf8+utf8Length, charUTF8, charUTF8Length);
2588 utf8Length+=charUTF8Length;
2599 utf8, utf8Length,
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dccapitst.c2499 int32_t utf8Length; local
2531 utf8Length=charUTF8Length+length;
2540 &source, utf8+utf8Length,
2565 int32_t utf8Length, expectLength; local
2581 utf8Length=charUTF8Length;
2588 memcpy(utf8+utf8Length, badUTF8[i], length);
2589 utf8Length+=length;
2591 memcpy(utf8+utf8Length, charUTF8, charUTF8Length);
2592 utf8Length+=charUTF8Length;
2603 utf8, utf8Length,
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DSerializedScriptValue.cpp366 int utf8Length = string->Utf8Length(); local
367 ASSERT(stringLength >= 0 && utf8Length >= 0);
370 doWriteUint32(static_cast<uint32_t>(utf8Length));
371 ensureSpace(utf8Length);
374 if (stringLength == utf8Length) {
375 string->WriteOneByte(byteAt(m_position), 0, utf8Length, v8StringWriteOptions()); local
378 string->WriteUtf8(buffer, utf8Length, 0, v8StringWriteOptions());
380 m_position += utf8Length;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 475 milliseconds