HomeSort by relevance Sort by last modified time
    Searched refs:outputLength (Results 1 - 11 of 11) sorted by null

  /external/harfbuzz/tests/linebreaking/
harfbuzz-qt.cpp 92 char *HB_TextCodec_ConvertFromUnicode(void *codec, const HB_UChar16 *unicode, hb_uint32 length, hb_uint32 *outputLength)
98 if (outputLength)
99 *outputLength = data.length();
  /packages/inputmethods/LatinIME/native/src/
correction.cpp 37 const int inputLength, const unsigned short* output, const int outputLength) {
41 const int lo = outputLength + 1;
65 LOGI("IN = %d, OUT = %d", inputLength, outputLength);
83 const int inputLength, const unsigned short *output, const int outputLength) {
85 // Assuming that dp[0][0] ... dp[outputLength - 1][inputLength] are already calculated,
86 // and calculate dp[ouputLength][0] ... dp[outputLength][inputLength].
87 int *const current = editDistanceTable + outputLength * (inputLength + 1);
88 const int *const prev = editDistanceTable + (outputLength - 1) * (inputLength + 1);
90 outputLength >= 2 ? editDistanceTable + (outputLength - 2) * (inputLength + 1) : NULL
    [all...]
  /external/icu4c/test/intltest/
normconf.h 97 UnicodeString output[], int32_t outputLength);
normconf.cpp 531 UnicodeString output[], int32_t outputLength) {
536 for (i=0; i<outputLength; ++i) {
569 if((i + 1) == outputLength) {
572 errln(UnicodeString("Missing field(s) in ", "") + s + " only " + (i + 1) + " out of " + outputLength);
  /external/webkit/Source/WebCore/platform/text/mac/
TextCodecMac.h 51 void* outputBuffer, int outputBufferLength, int& outputLength);
TextCodecMac.cpp 133 void *outputBuffer, int outputBufferLength, int& outputLength)
194 outputLength = bytesWritten;
  /external/icu4c/test/perf/utfperf/
utfperf.cpp 39 static int32_t utf8Length, encodedLength, outputLength, countInputCodePoints;
182 encodedLength=outputLength=0;
209 outputLength=pOut-output;
210 if(inputLength!=outputLength) {
211 fprintf(stderr, "error: roundtrip failed, inputLength %d!=outputLength %d\n", inputLength, outputLength);
  /external/icu4c/i18n/
uspoof.cpp 388 UChar *dest, int32_t destCapacity, int32_t *outputLength, UErrorCode *status) {
405 *outputLength = requiredCapacity;
512 static UChar * convertFromUTF8(UChar *outBuf, int32_t outBufCapacity, int32_t *outputLength,
518 u_strFromUTF8(dest, outBufCapacity, outputLength, in, inLength, status);
520 dest = static_cast<UChar *>(uprv_malloc(*outputLength * sizeof(UChar)));
526 u_strFromUTF8(dest, *outputLength, NULL, in, inLength, status);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/mac/
NetscapePluginMac.mm 900 ByteCount outputLength;
904 OSStatus status = ConvertFromUnicodeToText(textInfo, inputLength, string.characters(), kNilOptions, 0, 0, 0, 0, maxOutputLength, &inputRead, &outputLength, outputData.data());
  /external/icu4c/test/cintltst/
cmsccoll.c 774 int32_t outputLength;
843 outputLength = (int32_t)strlen(output);
844 if(outputLength > maxOutputLength) {
845 maxOutputLength = outputLength;
846 U_ASSERT(outputLength < sizeof(output));
    [all...]
ccapitst.c     [all...]

Completed in 551 milliseconds