/external/qemu/android/ |
charmap.h | 18 /* this defines a structure used to describe an Android keyboard charmap */ 37 /* Extracts charmap name from .kcm file name. 38 * Charmap name, extracted by this routine is a name of the kcm file, trimmed 40 * buffer. Here are examples on how this routine extracts charmap name: 46 * kcm_file_path - Path to key charmap file to extract charmap name from. 54 /* Gets a pointer to the default hard-coded charmap */ 57 /* Parse a charmap file and add it to our list. 58 * Key charmap array always contains two maps: one for qwerty, and 60 * be requested with -charmap option. In tha case kcm_file_pat [all...] |
charmap.c | 16 #include "android/charmap.h" 134 /* the following is automatically generated by the 'gen-charmap.py' script 136 * gen-charmap.py qwerty2.kcm 203 /* Custom character map created with -charmap option. */ 396 * kcm_file_path - Path to the charmap file, where paresed line was taken from. 424 derror("Invalid format of charmap file %s. Unknown key %s in line %d", 432 derror("Invalid format of charmap file %s. Invalid display value in line %d", 440 derror("Invalid format of charmap file %s. Invalid number value in line %d", 448 derror("Invalid format of charmap file %s. Invalid base value in line %d", 456 derror("Invalid format of charmap file %s. Invalid caps value in line %d" [all...] |
/external/icu4c/data/mappings/ |
icu-internal-compound-s1.ucm | 15 CHARMAP 25 END CHARMAP
|
noop-cns-11643.ucm | 30 CHARMAP 31 END CHARMAP
|
noop-gb2312_gl.ucm | 31 CHARMAP 32 END CHARMAP
|
noop-iso-ir-165.ucm | 28 CHARMAP 29 END CHARMAP
|
icu-internal-compound-s2.ucm | 15 CHARMAP 95 END CHARMAP
|
icu-internal-compound-s3.ucm | 15 CHARMAP 211 END CHARMAP
|
/external/icu4c/test/testdata/ |
test4x.ucm | 18 CHARMAP 20 END CHARMAP
|
test1.ucm | 17 CHARMAP 35 END CHARMAP
|
test5.ucm | 19 CHARMAP 29 END CHARMAP
|
test1bmp.ucm | 19 CHARMAP 39 END CHARMAP
|
test3.ucm | 20 CHARMAP 60 END CHARMAP
|
test4.ucm | 25 CHARMAP 64 END CHARMAP
|
/development/tools/emulator/skins/WSVGA/ |
layout | 82 charmap qwerty2
|
/development/tools/emulator/skins/WXGA720/ |
layout | 82 charmap qwerty2
|
/development/tools/emulator/skins/WXGA800/ |
layout | 82 charmap qwerty2
|
/external/qemu/ |
gen-charmap.py | 3 # a python script used to generate some C constant tables from a key charmap file 6 # progname file.kcm > charmap-tab.h 13 /* the following is automatically generated by the 'gen-charmap.py' script 15 * gen-charmap.py\ 161 print "usage: progname charmap.kcm [charmap2.kcm ...] > charmap-tab.h" 167 print "%s is not a keyboard charmap name" % filepath
|
/external/qemu/android/skin/ |
keyboard.h | 15 #include "android/charmap.h" 27 /* If kcm_file_path is NULL, create a keyboard using the default built-in qwerty2 charmap */
|
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 );
|
/external/chromium/net/base/ |
escape.cc | 28 class Charmap { 30 Charmap(uint32 b0, uint32 b1, uint32 b2, uint32 b3, 44 // Given text to escape and a Charmap defining which values to escape, 46 // to +, otherwise, if spaces are in the charmap, they are converted to 48 std::string Escape(const std::string& text, const Charmap& charmap, 56 } else if (charmap.Contains(c)) { 197 static const Charmap kQueryCharmap( 213 static const Charmap kPathCharmap( 222 static const Charmap kUrlEscape [all...] |
/external/tcpdump/ |
strcasecmp.c | 31 static u_char charmap[] = { variable 70 register u_char *cm = charmap, 85 register u_char *cm = charmap,
|
/external/freetype/include/freetype/internal/services/ |
svpscmap.h | 5 /* The FreeType PostScript charmap service (specification). */ 51 * Simple unicode -> glyph index charmap built from font glyph names
|
/external/freetype/src/autofit/ |
afindic.c | 40 FT_CharMap oldmap = face->charmap; 46 face->charmap = NULL;
|
/external/freetype/src/base/ |
ftobjs.c | 815 if ( face->charmap ) 942 /* This function finds a Unicode charmap, if there is one. */ 966 * The original TrueType specification(s) only specified charmap 984 * This function has been written to always favor a 32-bit charmap 1014 face->charmap = cur[0]; 1020 /* We do not have any UCS-4 charmap. */ 1036 face->charmap = cur[0]; 1051 /* This function finds the variant selector charmap, if there is one. */ 3299 FT_CharMap charmap = find_variant_selector_charmap( face ); local 3341 FT_CharMap charmap = find_variant_selector_charmap( face ); local 3380 FT_CharMap charmap = find_variant_selector_charmap( face ); local 3408 FT_CharMap charmap = find_variant_selector_charmap( face ); local 3442 FT_CharMap charmap = find_variant_selector_charmap( face ); local [all...] |