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

/macosx-10.9.5/emacs-92/emacs/lisp/term/
H A Dinternal.el241 (let* ((surrogates IT-character-translations)
256 (while surrogates
257 (setq association (car surrogates))
276 (setq surrogates (cdr surrogates)))))
/macosx-10.9.5/CF-855.17/
H A DCFString.h854 // Maps a UTF-32 character to a pair of UTF-16 surrogate characters. The buffer pointed by surrogates has to have space for at least 2 UTF-16 characters. Returns true if mapped to a surrogate pair.
855 CF_INLINE Boolean CFStringGetSurrogatePairForLongCharacter(UTF32Char character, UniChar *surrogates) { argument
858 if (NULL != surrogates) {
859 surrogates[0] = (UniChar)((character >> 10) + 0xD800UL);
860 surrogates[1] = (UniChar)((character & 0x3FF) + 0xDC00UL);
864 if (NULL != surrogates) *surrogates = (UniChar)character;
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/liblunicode/utbm/
H A DREADME30 Boyer-Moore searches on Unicode UCS2 text (handles high and low surrogates).
/macosx-10.9.5/ICU-511.35/icuSources/test/cintltst/
H A Dbocu1tst.c943 static const UChar surrogates[]={ 0xdc00, 0xd800 }; /* single surrogates, unmatched! */ variable
963 { surrogates, LENGTHOF(surrogates) },
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/liblunicode/ucdata/
H A DREADME9 (and surrogates), case mapping, decomposition lookup, and provides a

Completed in 199 milliseconds