/external/chromium_org/third_party/freetype/src/base/ |
ftobjs.c | 847 if ( face->charmap ) 974 /* This function finds a Unicode charmap, if there is one. */ 998 * The original TrueType specification(s) only specified charmap 1016 * This function has been written to always favor a 32-bit charmap 1046 face->charmap = cur[0]; 1052 /* We do not have any UCS-4 charmap. */ 1068 face->charmap = cur[0]; 1083 /* This function finds the variant selector charmap, if there is one. */ 3407 FT_CharMap charmap = find_variant_selector_charmap( face ); local 3449 FT_CharMap charmap = find_variant_selector_charmap( face ); local 3488 FT_CharMap charmap = find_variant_selector_charmap( face ); local 3516 FT_CharMap charmap = find_variant_selector_charmap( face ); local 3550 FT_CharMap charmap = find_variant_selector_charmap( face ); local [all...] |
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/ |
ftobjs.c | 847 if ( face->charmap ) 974 /* This function finds a Unicode charmap, if there is one. */ 998 * The original TrueType specification(s) only specified charmap 1016 * This function has been written to always favor a 32-bit charmap 1046 face->charmap = cur[0]; 1052 /* We do not have any UCS-4 charmap. */ 1068 face->charmap = cur[0]; 3410 FT_CharMap charmap = find_variant_selector_charmap( face ); local 3452 FT_CharMap charmap = find_variant_selector_charmap( face ); local 3491 FT_CharMap charmap = find_variant_selector_charmap( face ); local 3519 FT_CharMap charmap = find_variant_selector_charmap( face ); local 3553 FT_CharMap charmap = find_variant_selector_charmap( face ); local [all...] |
/external/chromium_org/net/base/ |
escape.cc | 31 struct Charmap { 39 // Given text to escape and a Charmap defining which values to escape, 41 // to +, otherwise, if spaces are in the charmap, they are converted to 43 std::string Escape(const std::string& text, const Charmap& charmap, 51 } else if (charmap.Contains(c)) { 272 static const Charmap kQueryCharmap = {{ 278 static const Charmap kPathCharmap = {{ 284 static const Charmap kUrlEscape = {{ 290 static const Charmap kNonASCIICharmap = { [all...] |
/external/qemu/android/skin/ |
keyboard.c | 18 #include "android/charmap.h" 44 const AKeyCharmap* charmap; member in struct:SkinKeyboard 408 return android_charmap_reverse_map_unicode(kb->charmap, unicode, down, 513 kb->charmap = android_get_charmap_by_name(charmap_name); 514 if (!kb->charmap) { 515 // Charmap name was not found. Default to "qwerty2" */ 516 kb->charmap = android_get_charmap_by_name(DEFAULT_ANDROID_CHARMAP); 517 fprintf(stderr, "### warning, skin requires unknown '%s' charmap, reverting to '%s'\n", 518 charmap_name, kb->charmap->name );
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_codeccallbacks.py | 182 # For charmap encodings the replacement string will be 185 # charmap has to have a mapping for "?". 186 charmap = dict([ (ord(c), 2*c.upper()) for c in "abcdefgh"]) 189 self.assertEqual(codecs.charmap_encode(sin, "strict", charmap)[0], sout) 192 self.assertRaises(UnicodeError, codecs.charmap_encode, sin, "strict", charmap) 194 charmap[ord("?")] = "XYZ" 197 self.assertEqual(codecs.charmap_encode(sin, "replace", charmap)[0], sout) 199 charmap[ord("?")] = u"XYZ" 200 self.assertRaises(TypeError, codecs.charmap_encode, sin, "replace", charmap) 202 charmap[ord("?")] = u"XYZ [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_codeccallbacks.py | 182 # For charmap encodings the replacement string will be 185 # charmap has to have a mapping for "?". 186 charmap = dict([ (ord(c), 2*c.upper()) for c in "abcdefgh"]) 189 self.assertEqual(codecs.charmap_encode(sin, "strict", charmap)[0], sout) 192 self.assertRaises(UnicodeError, codecs.charmap_encode, sin, "strict", charmap) 194 charmap[ord("?")] = "XYZ" 197 self.assertEqual(codecs.charmap_encode(sin, "replace", charmap)[0], sout) 199 charmap[ord("?")] = u"XYZ" 200 self.assertRaises(TypeError, codecs.charmap_encode, sin, "replace", charmap) 202 charmap[ord("?")] = u"XYZ [all...] |
/external/chromium_org/third_party/icu/source/data/mappings/ |
icu-internal-compound-s3.ucm | 15 CHARMAP 211 END CHARMAP
|
/external/icu/icu4c/source/data/mappings/ |
icu-internal-compound-s3.ucm | 15 CHARMAP 211 END CHARMAP
|
/external/chromium_org/third_party/freetype/include/freetype/internal/services/ |
svttcmap.h | 68 (*TT_CMap_Info_GetFunc)( FT_CharMap charmap,
|
/external/chromium_org/third_party/freetype/src/sfnt/ |
ttcmap.h | 149 tt_get_cmap_info( FT_CharMap charmap,
|
sfobjs.c | 880 /* Try to set the charmap encoding according to the platform & */ 881 /* encoding ID of each charmap. */ 894 FT_CharMap charmap = root->charmaps[m]; local 897 charmap->encoding = sfnt_find_encoding( charmap->platform_id, 898 charmap->encoding_id ); 901 if ( root->charmap == NULL && 902 charmap->encoding == FT_ENCODING_UNICODE ) 904 /* set 'root->charmap' to the first Unicode encoding we find */ 905 root->charmap = charmap [all...] |
/external/freetype/include/internal/services/ |
svttcmap.h | 68 (*TT_CMap_Info_GetFunc)( FT_CharMap charmap,
|
/external/freetype/src/sfnt/ |
ttcmap.h | 149 tt_get_cmap_info( FT_CharMap charmap,
|
/external/pdfium/core/include/thirdparties/freetype/freetype/internal/services/ |
svttcmap.h | 68 (*TT_CMap_Info_GetFunc)( FT_CharMap charmap,
|
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/internal/services/ |
svttcmap.h | 68 (*TT_CMap_Info_GetFunc)( FT_CharMap charmap,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
charmap.py | 62 name='charmap',
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
charmap.py | 62 name='charmap',
|
/bionic/libc/upstream-openbsd/lib/libc/string/ |
strcasecmp.c | 41 static const u_char charmap[] = { variable 79 const u_char *cm = charmap; 93 const u_char *cm = charmap;
|
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/sfnt/ |
sfobjs.c | 882 /* Try to set the charmap encoding according to the platform & */ 883 /* encoding ID of each charmap. */ 896 FT_CharMap charmap = root->charmaps[m]; local 899 charmap->encoding = sfnt_find_encoding( charmap->platform_id, 900 charmap->encoding_id ); 903 if ( root->charmap == NULL && 904 charmap->encoding == FT_ENCODING_UNICODE ) 906 /* set 'root->charmap' to the first Unicode encoding we find */ 907 root->charmap = charmap [all...] |
/external/qemu/android/ |
main.c | 35 #include "android/charmap.h" 290 /* -charmap is incompatible with -attach-core, because particular 291 * charmap gets set up in the running core. */ 292 if (android_charmap_setup(opts->charmap)) { 1134 char* charmap = avdInfo_getCharmapFile(avd, hw->hw_keyboard_charmap); local [all...] |
/external/chromium_org/third_party/freetype/include/freetype/ |
freetype.h | 463 /* A handle to a given character map. A charmap is used to translate */ 474 /* The currently active charmap is available as `face->charmap'. */ 479 /* @FT_Open_Face), the library looks for a Unicode charmap within */ 958 FT_CharMap charmap; member in struct:FT_FaceRec_ 3109 FT_Get_Charmap_Index( FT_CharMap charmap ); variable [all...] |
tttables.h | 747 FT_Get_CMap_Language_ID( FT_CharMap charmap ); variable 767 FT_Get_CMap_Format( FT_CharMap charmap ); variable [all...] |
/external/freetype/include/ |
freetype.h | 997 FT_CharMap charmap; member in struct:FT_FaceRec_ 3177 FT_Get_Charmap_Index( FT_CharMap charmap ); variable [all...] |
/external/pdfium/core/include/thirdparties/freetype/freetype/ |
freetype.h | 465 /* A handle to a given character map. A charmap is used to translate */
476 /* The currently active charmap is available as `face->charmap'. */
481 /* @FT_Open_Face), the library looks for a Unicode charmap within */
964 FT_CharMap charmap; member in struct:FT_FaceRec_ 3122 FT_Get_Charmap_Index( FT_CharMap charmap ); variable [all...] |
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/ |
freetype.h | 465 /* A handle to a given character map. A charmap is used to translate */ 476 /* The currently active charmap is available as `face->charmap'. */ 481 /* @FT_Open_Face), the library looks for a Unicode charmap within */ 964 FT_CharMap charmap; member in struct:FT_FaceRec_ 3122 FT_Get_Charmap_Index( FT_CharMap charmap ); variable [all...] |