HomeSort by relevance Sort by last modified time
    Searched defs:Unicode (Results 1 - 25 of 30) sorted by null

1 2

  /external/fonttools/Lib/fontTools/
unicode.py 39 Unicode = _UnicodeBuiltin()
42 global Unicode
43 Unicode = _UnicodeCustom(f)
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Print/
BoxDraw.c 17 Lib functions to support Box Draw Unicode code pages.
31 CHAR16 Unicode;
39 // It also provides a mapping from Unicode to PCANSI or
116 Detects if a Unicode char is for Box Drawing text graphics.
120 Grphic - Unicode char to test.
128 TRUE if Gpaphic is a supported Unicode Box Drawing character.
137 // Unicode drawing code charts are all in the 0x25xx range,
143 for (Table = UnicodeToPcAnsiOrAscii; Table->Unicode != 0x0000; Table++) {
144 if (Graphic == Table->Unicode) {
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/
BoxDraw.c 17 Lib functions to support Box Draw Unicode code pages.
31 CHAR16 Unicode;
39 // It also provides a mapping from Unicode to PCANSI or
116 Detects if a Unicode char is for Box Drawing text graphics.
120 Graphic - Unicode char to test.
128 TRUE if Gpaphic is a supported Unicode Box Drawing character.
137 // Unicode drawing code charts are all in the 0x25xx range,
143 for (Table = UnicodeToPcAnsiOrAscii; Table->Unicode != 0x0000; Table++) {
144 if (Graphic == Table->Unicode) {
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
boxdraw.c 10 Lib functions to support Box Draw Unicode code pages.
21 CHAR16 Unicode;
29 // It also provides a mapping from Unicode to PCANSI or
112 Detects if a Unicode char is for Box Drawing text graphics.
116 Grphic - Unicode char to test.
124 TRUE if Gpaphic is a supported Unicode Box Drawing character.
132 // Unicode drawing code charts are all in the 0x25xx range,
138 for (Table = UnicodeToPcAnsiOrAscii; Table->Unicode != 0x0000; Table++) {
139 if (Graphic == Table->Unicode) {
  /device/linaro/bootloader/edk2/Nt32Pkg/Library/PeiNt32PeCoffExtraActionLib/
PeiNt32PeCoffExtraActionLib.c 81 Convert the passed in Ascii string to Unicode.
83 This function Convert the passed in Ascii string to Unicode.Optionally return
89 @return Pointer to malloc'ed Unicode version of Ascii
99 CHAR16 *Unicode;
102 // Allocate a buffer for unicode string
106 Unicode = mWinNt->HeapAlloc ( mWinNt->GetProcessHeap (),
110 if (Unicode == NULL) {
115 Unicode[Index] = (CHAR16) Ascii[Index];
118 Unicode[Index] = '\0';
124 return Unicode;
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/Console/VgaClassDxe/
VgaClass.h 47 CHAR16 Unicode;
163 Retrieves a Unicode string that is the user readable name of the driver.
166 Unicode string. If the driver specified by This has a user readable name in
182 @param DriverName A pointer to the Unicode string to return.
183 This Unicode string is the name of the
187 @retval EFI_SUCCESS The Unicode string for the Driver specified by
205 Retrieves a Unicode string that is the user readable name of the controller
209 ControllerHandle and ChildHandle in the form of a Unicode string. If the
239 @param ControllerName A pointer to the Unicode string to return.
240 This Unicode string is the name of the
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/Library/DxeNt32PeCoffExtraActionLib/
DxeNt32PeCoffExtraActionLib.c 90 Convert the passed in Ascii string to Unicode.
92 This function Convert the passed in Ascii string to Unicode.Optionally return
98 @return Pointer to malloc'ed Unicode version of Ascii
108 CHAR16 *Unicode;
111 // Allocate a buffer for unicode string
115 Unicode = mWinNt->HeapAlloc ( mWinNt->GetProcessHeap (),
119 if (Unicode == NULL) {
124 Unicode[Index] = (CHAR16) Ascii[Index];
127 Unicode[Index] = '\0';
133 return Unicode;
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/Opal/OpalPasswordDxe/
OpalDriver.c 142 CHAR16 Unicode[MAX_PASSWORD_SIZE + 1];
147 ZeroMem(Unicode, sizeof(Unicode));
185 Unicode[InputLength] = 0;
199 Unicode[InputLength] = 0;
207 Unicode[InputLength] = InputKey.UnicodeChar;
214 Unicode[InputLength] = 0;
242 UnicodeStrToAsciiStrS (Unicode, Ascii, MAX_PASSWORD_SIZE + 1);
243 ZeroMem (Unicode, sizeof (Unicode));
    [all...]
  /external/harfbuzz_ng/test/shaping/
hb_test_tools.py 23 Return the unicode character whose Unicode code is the integer 'i'.
45 return escape_str.decode("unicode-escape")
75 unicode = unicode variable
77 unicode = str variable
80 if not isinstance(s, unicode):
350 self.unicodes = Unicode.parse (l)
480 class Unicode:
494 s = u''.join (unichr (x) for x in Unicode.parse (s)
    [all...]
  /external/skia/src/sfnt/
SkOTTable_name.h 39 Unicode = SkTEndian_SwapBE16(0),
41 ISO = SkTEndian_SwapBE16(2), // Deprecated, use Unicode instead.
51 struct Unicode {
61 } unicode; member in struct:SkOTTableName
63 /** These are Mac encodings, see http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/
64 * for their mappings to unicode.
105 /** Deprecated, use Unicode instead. */
  /external/skqp/src/sfnt/
SkOTTable_name.h 39 Unicode = SkTEndian_SwapBE16(0),
41 ISO = SkTEndian_SwapBE16(2), // Deprecated, use Unicode instead.
51 struct Unicode {
61 } unicode; member in struct:SkOTTableName
63 /** These are Mac encodings, see http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/
64 * for their mappings to unicode.
105 /** Deprecated, use Unicode instead. */
  /device/linaro/bootloader/edk2/Nt32Pkg/Sec/
SecMain.c 337 // Save the size of the memory and make a Unicode filename SystemMemory00, ...
494 as the EFI Print (), as %t, %g, %s as Unicode are not supported.
920 Convert the passed in Ascii string to Unicode.
928 Pointer to malloc'ed Unicode version of Ascii
933 CHAR16 *Unicode;
936 // Allocate a buffer for unicode string
940 Unicode = malloc ((Index + 1) * sizeof (CHAR16));
941 if (Unicode == NULL) {
946 Unicode[Index] = (CHAR16) Ascii[Index];
949 Unicode[Index] = '\0';
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Guid/StatusCodeDataTypeId/
StatusCodeDataTypeId.h 86 CHAR16 *Unicode;
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Include/Protocol/
FrameworkHii.h 289 /// UNICODE string. NumStringPointers determines how many
358 /// The Unicode value for the Key.
359 CHAR16 Unicode;
361 /// The Unicode value for the key with the shift key being held down.
365 /// The Unicode value for the key with the Alt-GR being held down.
369 /// The Unicode value for the key with the Alt-GR and shift keys being held down.
561 @param StringToTest A pointer to a Unicode string.
588 Translates a Unicode character into the corresponding font glyph.
594 @param Source A pointer to a Unicode string.
610 @retval EFI_SUCCESS Found the corresponding font glyph for a Unicode
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Console/TerminalDxe/
Terminal.h 166 UINT16 Unicode;
424 The Unicode string will be converted to terminal expressible data stream
428 @param WString The Null-terminated Unicode string to be displayed
433 @retval EFI_WARN_UNKNOWN_GLYPH Indicates that some of the characters in the Unicode string could not
448 neither valid Unicode drawing characters,
453 @param WString The Null-terminated Unicode string to be tested.
456 @retval EFI_UNSUPPORTED Some of the characters in the Unicode string cannot be rendered.
675 Retrieves a Unicode string that is the user readable name of the driver.
678 Unicode string. If the driver specified by This has a user readable name in
696 @param DriverName[out] A pointer to the Unicode string to return.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Guid/
StatusCodeDataTypeId.h 37 /// A double NULL-terminated Unicode string.
70 /// Unicode formatted string.
72 CHAR16 *Unicode;
82 /// status code. The string can be ASCII, Unicode, or a Human Interface Infrastructure
661 /// A pointer to a NULL-terminated ASCII or Unicode string that represents
  /device/linaro/bootloader/edk2/ShellPkg/Application/Shell/
FileHandleWrappers.c     [all...]
Shell.c     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
xinput.h 211 WCHAR Unicode;
ntddcdrm.h 230 UCHAR Unicode : 1;
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Include/Protocol/
HiiFramework.h 193 // UNICODE string. The NumStringPointers determines how many
364 CHAR16 Unicode;
528 @param StringToTest A pointer to a Unicode string.
553 Translates a Unicode character into the corresponding font glyph.
556 @param Source A pointer to a Unicode string.
885 Translates a Unicode character into the corresponding font glyph.
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Protocol/Hii/
Hii.h 202 // UNICODE string. The NumStringPointers determines how many
384 CHAR16 Unicode;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ufs/UfsBlockIoPei/
UfsHci.h 1288 CHAR16 Unicode[126];
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ufs/UfsPassThruDxe/
UfsPassThruHci.h 1288 CHAR16 Unicode[126];
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Include/Common/
UefiInternalFormRepresentation.h     [all...]

Completed in 462 milliseconds

1 2