| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| Unicode.h | 1 //===- llvm/Support/Unicode.h - Unicode character properties -*- C++ -*-=====// 9 // This file defines functions that allow querying certain properties of Unicode 21 namespace unicode { namespace in namespace:llvm::sys 31 /// of a terminal capable to output Unicode characters. 33 /// All characters from the Unicode code point range are considered printable 37 /// http://www.unicode.org/versions/Unicode6.2.0/UnicodeStandard-6.2.pdf 52 /// with a generic Unicode-capable terminal. 62 /// Fold input unicode character according the Simple unicode case foldin [all...] |
| /src/external/gpl2/gettext/dist/gettext-tools/libuniname/ |
| gen-uninames | 8 (defstruct unicode-char 24 #+UNICODE (setq *default-file-encoding* charset:utf-8) 45 ; Unicode 3.1 the following ranges are used. 68 (push (make-unicode-char :code (transform code) 76 (dolist (name (list* "HANGUL SYLLABLE" "CJK COMPATIBILITY" (mapcar #'unicode-char-name all-chars))) 120 #+UNICODE :external-format #+UNICODE charset:ascii) 124 (format ostream " * Unicode character name table.~%") 197 ;; Compute the word-indices for every unicode-char. 199 (let ((name (unicode-char-name uc) [all...] |
| /src/crypto/external/cpl/trousers/dist/src/tspi/ |
| ssl_ui.c | 16 BYTE *unicode; local 51 unicode = Trspi_Native_To_UNICODE((BYTE *)pin_buf, string_len); 53 memcpy(string, unicode, *string_len); 54 free(unicode);
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| Unicode.cpp | 1 //===- llvm/Support/Unicode.cpp - Unicode character properties -*- C++ -*-===// 10 // Unicode characters. 14 #include "llvm/Support/Unicode.h" 20 namespace unicode { namespace in namespace:llvm::sys 219 /// with a generic Unicode-capable terminal. 233 // http://www.unicode.org/versions/Unicode6.2.0/UnicodeStandard-6.2.pdf 374 } // namespace unicode
|
| /src/external/ibm-public/postfix/dist/src/global/ |
| uxtext.c | 100 int unicode = 0; local 105 unicode = ch; 108 unicode = (ch & 0x1f); 112 unicode = (ch & 0x0f); 116 unicode = (ch & 0x07); 120 unicode = (ch & 0x03); 124 unicode = (ch & 0x01); 133 unicode = unicode << 6 | (ch & 0x3f); 136 vstring_sprintf_append(quoted, "\\x{%02X}", unicode); 161 int unicode = 0; local [all...] |
| /src/external/bsd/mdocml/dist/ |
| chars.c | 39 int unicode; member in struct:ln 461 return ln != NULL ? ln->unicode : -1; 504 if (uc == lines[i].unicode)
|
| mandocdb.c | 1905 * Take a Unicode codepoint and produce its UTF-8 encoding. 1969 int seqlen, unicode; local 2041 unicode = mchars_spec2cp(seq, seqlen); 2042 if (unicode <= 0) 2044 addsz = utf8(unicode, utfbuf);
|
| /src/external/bsd/tmux/dist/ |
| cmd-parse.y | 1495 goto unicode; 1499 goto unicode; 1505 unicode: label
|
| /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/ |
| gtest-filepath.cc | 207 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str()); local 208 const DWORD attributes = GetFileAttributes(unicode); 209 delete [] unicode; 231 LPCWSTR unicode = String::AnsiToUtf16(path.c_str()); local 232 const DWORD attributes = GetFileAttributes(unicode); 233 delete [] unicode; 321 LPCWSTR unicode = String::AnsiToUtf16(removed_sep.c_str()); local 322 int result = CreateDirectory(unicode, nullptr) ? 0 : -1; 323 delete [] unicode;
|
| gtest.cc | 882 WCHAR* unicode = new WCHAR[unicode_length + 1]; local 884 unicode, unicode_length); 885 unicode[unicode_length] = 0; 886 return unicode; 1725 // Utility functions for encoding Unicode text (wide strings) in 1728 // A Unicode code-point can have up to 21 bits, and is encoded in UTF-8 1758 // Converts a Unicode code point to a narrow string in UTF-8 encoding. 1761 // If the code_point is not a valid Unicode code point 1762 // (i.e. outside of Unicode range U+0 to U+10FFFF) it will be converted 1763 // to "(Invalid Unicode 0xXXXXXXXX)" [all...] |
| /src/sys/fs/hfs/ |
| libhfs.h | 234 unichar_t unicode[255]; member in struct:__anon6749
|
| /src/external/gpl2/gettext/dist/gettext-tools/src/ |
| x-perl.c | 1091 unsigned int unicode; local 1097 unicode = unicode_name_character (name); 1098 if (unicode != UNINAME_INVALID) 1104 unicode, 6);
|
| /src/external/gpl2/texinfo/dist/makeinfo/ |
| lang.h | 109 /* Maps an HTML abbreviation to ISO and Unicode codes for a given code. */ 118 unicode_t unicode; /* Unicode in U+ convention */ 117 unicode_t unicode; \/* Unicode in U+ convention *\/ member in struct:__anon9564
|
| /src/external/bsd/less/dist/ |
| screen.c | 144 WCHAR unicode; member in struct:keyRecord 2878 currentKey.unicode = ip.Event.KeyEvent.uChar.UnicodeChar; 2925 * - The unicode code below can return 0 - incorrectly indicating scan code. 2966 if (currentKey.unicode > 0x7f) 2968 utf8_size = WideCharToMultiByte(CP_UTF8, 0, ¤tKey.unicode, 1, (LPSTR) &utf8, sizeof(utf8), NULL, NULL);
|
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_string.c | 1251 * Set a flag for Unicode NFD. Usually iconv cannot correctly 1273 * going to be passed to iconv is a Unicode NFC string since 1274 * a filename in HFS Plus filesystem is a Unicode NFD one and 1284 * will be passed to users is a Unicode NFD string in order to 1894 * assumption that wchar_t was Unicode. 1903 * is really Unicode. 2313 * a Replacement Character in Unicode. 2339 * Unicode conversion functions. 2351 * a unicode character is replaced with U+FFFD. 2352 * See also http://unicode.org/review/pr-121.html Public Review Issue #12 3482 uint32_t unicode; local [all...] |