HomeSort by relevance Sort by last modified time
    Searched refs:charmap (Results 1 - 25 of 28) sorted by null

1 2

  /bionic/libc/string/
strcasecmp.c 41 static const u_char charmap[] = { variable
79 const u_char *cm = charmap;
93 const u_char *cm = charmap;
  /external/tcpdump/
strcasecmp.c 31 static u_char charmap[] = { variable
70 register u_char *cm = charmap,
85 register u_char *cm = charmap,
  /external/qemu/android/
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...]
main.c 34 #include "android/charmap.h"
350 /* -charmap is incompatible with -attach-core, because particular
351 * charmap gets set up in the running core. */
352 if (android_charmap_setup(opts->charmap)) {
1114 char* charmap = avdInfo_getCharmapFile(avd, hw->hw_keyboard_charmap); local
    [all...]
cmdline-options.h 138 OPT_PARAM( charmap, "<file>", "use specific key character map")
qemulator.c 140 emulator->keyboard = skin_keyboard_create(opts->charmap, opts->raw_keys);
console.c 53 #include "android/charmap.h"
1984 const AKeyCharmap* charmap; local
    [all...]
  /external/freetype/include/freetype/internal/services/
svttcmap.h 68 (*TT_CMap_Info_GetFunc)( FT_CharMap charmap,
  /external/freetype/src/autofit/
afindic.c 40 FT_CharMap oldmap = face->charmap;
46 face->charmap = NULL;
afglobal.c 83 FT_CharMap old_charmap = face->charmap;
104 /* scan each script in a Unicode charmap */
afcjk.c 550 FT_CharMap oldmap = face->charmap;
556 face->charmap = NULL;
    [all...]
  /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...]
  /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 );
  /device/google/accessory/arduino/USB_Host_Shield/
Max_LCD.cpp 242 void Max_LCD::createChar(uint8_t location, uint8_t charmap[]) {
246 write(charmap[i]);
  /external/freetype/include/freetype/
tttables.h 733 FT_Get_CMap_Language_ID( FT_CharMap charmap ); variable
753 FT_Get_CMap_Format( FT_CharMap charmap ); variable
    [all...]
freetype.h 459 /* A handle to a given character map. A charmap is used to translate */
470 /* The currently active charmap is available as `face->charmap'. */
475 /* @FT_Open_Face), the library looks for a Unicode charmap within */
951 FT_CharMap charmap; member in struct:FT_FaceRec_
3037 FT_Get_Charmap_Index( FT_CharMap charmap ); variable
    [all...]
  /external/freetype/src/sfnt/
ttcmap.h 116 tt_get_cmap_info( FT_CharMap charmap,
sfobjs.c 863 /* Try to set the charmap encoding according to the platform & */
864 /* encoding ID of each charmap. */
877 FT_CharMap charmap = root->charmaps[m]; local
880 charmap->encoding = sfnt_find_encoding( charmap->platform_id,
881 charmap->encoding_id );
884 if ( root->charmap == NULL &&
885 charmap->encoding == FT_ENCODING_UNICODE )
887 /* set 'root->charmap' to the first Unicode encoding we find */
888 root->charmap = charmap
    [all...]
ttcmap.c 201 /***** The following charmap lookup and iteration functions all *****/
252 /* low-bytes within the charmap. Note that the range defined by `first' */
393 /* to test whether the character code is in the charmap */
701 TT_Face face = (TT_Face)cmap->cmap.cmap.charmap.face;
    [all...]
  /external/freetype/include/freetype/internal/
ftobjs.h 124 /* handle to internal charmap object */
127 /* handle to charmap class structure */
130 /* internal charmap object structure */
133 FT_CharMapRec charmap; member in struct:FT_CMapRec_
138 /* typecase any pointer to a charmap handle */
142 #define FT_CMAP_PLATFORM_ID( x ) FT_CMAP( x )->charmap.platform_id
143 #define FT_CMAP_ENCODING_ID( x ) FT_CMAP( x )->charmap.encoding_id
144 #define FT_CMAP_ENCODING( x ) FT_CMAP( x )->charmap.encoding
145 #define FT_CMAP_FACE( x ) FT_CMAP( x )->charmap.face
249 /* create a new charmap and add it to charmap->face *
    [all...]
ftdriver.h 87 (*FT_CharMap_CharIndexFunc)( FT_CharMap charmap,
91 (*FT_CharMap_CharNextFunc)( FT_CharMap charmap,
  /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/freetype/src/cff/
cffdrivr.c 395 * If the charmap is a synthetic Unicode encoding cmap or
403 cff_get_cmap_info( FT_CharMap charmap,
406 FT_CMap cmap = FT_CMAP( charmap );
425 error = service->get_cmap_info( charmap, cmap_info );
cffobjs.c 902 /* Try to synthesize a Unicode charmap if there is none available */
941 /* we didn't find a Unicode charmap -- synthesize one */
955 /* if no Unicode charmap was previously selected, select this one */
956 if ( cffface->charmap == NULL && nn != (FT_UInt)cffface->num_charmaps )
957 cffface->charmap = cffface->charmaps[nn];
    [all...]
  /external/libpcap/
pcap.c 399 static const u_char charmap[] = { variable
469 register const u_char *cm = charmap,

Completed in 568 milliseconds

1 2