Searched refs:fromUnicode (Results 1 - 5 of 5) sorted by relevance

/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A DtclEncoding.c77 unsigned short **fromUnicode; member in struct:TableEncodingData
80 * Each element of the fromUnicode array
616 dataPtr->fromUnicode = (unsigned short **) ckalloc(size);
617 memset(dataPtr->fromUnicode, 0, size);
620 dataPtr->fromUnicode[0] = (unsigned short *)
621 (dataPtr->fromUnicode + 256);
624 dataPtr->fromUnicode[i] = emptyPage;
629 dataPtr->fromUnicode[0][i] = i;
1796 * Invert toUnicode array to produce the fromUnicode array. Performs a
1799 * pages that would be needed for the fromUnicode arra
2650 unsigned short **fromUnicode; local
[all...]
/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A DtclEncoding.c78 unsigned short **fromUnicode; member in struct:TableEncodingData
81 * Each element of the fromUnicode array
1589 * Invert toUnicode array to produce the fromUnicode array. Performs a
1592 * remembered what pages that would be needed for the fromUnicode array.
1605 dataPtr->fromUnicode = (unsigned short **) ckalloc(size);
1606 memset(dataPtr->fromUnicode, 0, size);
1607 pageMemPtr = (unsigned short *) (dataPtr->fromUnicode + 256);
1620 page = dataPtr->fromUnicode[ch >> 8];
1624 dataPtr->fromUnicode[ch >> 8] = page;
1639 if (dataPtr->fromUnicode[
2448 unsigned short **fromUnicode; local
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Ducnv_cnv.h31 /* this is used in fromUnicode DBCS tables as an "unassigned" marker */
122 * are handled by pivoting, using the toUnicode and fromUnicode functions.
220 * Every converter type must implement toUnicode, fromUnicode, and getNextUChar,
242 UConverterFromUnicode fromUnicode; member in struct:UConverterImpl
H A Ducnv.c827 UConverterFromUnicode fromUnicode; local
850 fromUnicode=cnv->sharedData->impl->fromUnicode;
852 fromUnicode=cnv->sharedData->impl->fromUnicodeWithOffsets;
853 if(fromUnicode==NULL) {
855 fromUnicode=cnv->sharedData->impl->fromUnicode;
904 fromUnicode(pArgs, err);
1112 * Output the fromUnicode overflow buffer.
2137 /* the fromUnicode overflo
[all...]
/macosx-10.9.5/WebKit-7537.78.2/qt/tests/qwebframe/
H A Dtst_qwebframe.cpp1049 QTest::newRow("UTF-16 plain text") << "text/plain; charset=utf-16" << utf16->fromUnicode(str) << str;

Completed in 123 milliseconds