HomeSort by relevance Sort by last modified time
    Searched defs:skin (Results 1 - 20 of 20) sorted by null

  /external/quake/quake/src/QW/client/
skin.c 35 Determines the best skin for the given scoreboard
36 slot, and sets scoreboard->skin
42 skin_t *skin; local
50 s = Info_ValueForKey (sc->userinfo, "skin");
66 sc->skin = &skins[i];
67 Skin_Cache (sc->skin);
78 skin = &skins[numskins];
79 sc->skin = skin;
82 memset (skin, 0, sizeof(*skin))
    [all...]
cl_main.c 74 cvar_t skin = CVAR4("skin","", true, true); variable
1121 Cvar_RegisterVariable (&skin);
gl_model.c 1385 void Mod_FloodFillSkin( byte *skin, int skinwidth, int skinheight )
1387 byte fillcolor = *skin; // assume this is the pixel to fill
1408 //printf( "not filling skin from %d to %d\n", fillcolor, filledcolor );
1419 byte *pos = &skin[x + skinwidth * y];
1427 skin[x + skinwidth * y] = fdc;
1441 byte *skin; local
1446 skin = (byte *)(pskintype + 1);
1456 Mod_FloodFillSkin( skin, pheader->skinwidth, pheader->skinheight );
1463 Sys_Error ("Player skin too large");
1475 // animating skin group. yuck
    [all...]
client.h 26 qboolean failedload; // the name isn't a valid skin
71 // skin information
80 skin_t *skin; member in struct:player_info_s
487 // skin.c
509 byte *Skin_Cache (skin_t *skin);
model.h 256 int skin; member in struct:__anon11588
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
AvdDetailsDialog.java 83 String skin = properties.get(AvdManager.AVD_INI_SKIN_NAME); local
84 if (skin != null) {
85 displayValue(c, "Skin:", skin);
AvdCreationDialog.java 404 // --- skin group
406 label.setText("Skin:");
432 // get the skin info
736 // First try the skin name and if it doesn't work fallback on the skin path
738 String skin = props.get(s == 0 ? AvdManager.AVD_INI_SKIN_NAME local
740 if (skin != null && skin.length() > 0) {
741 Matcher m = AvdManager.NUMERIC_SKIN_SIZE.matcher(skin);
756 if (skin.equals(mSkinCombo.getItem(i)))
1197 File skin = new File(path, skinName); local
    [all...]
  /external/quake/quake/src/WinQuake/
cl_parse.cpp 338 int skin; local
420 skin = MSG_ReadByte();
422 skin = ent->baseline.skin;
423 if (skin != ent->skinnum) {
424 ent->skinnum = skin;
434 ent->skinnum = ent->baseline.skin;
498 ent->baseline.skin = MSG_ReadByte();
684 ent->skinnum = ent->baseline.skin;
gl_model.cpp 1360 void Mod_FloodFillSkin( byte *skin, int skinwidth, int skinheight )
1362 byte fillcolor = *skin; // assume this is the pixel to fill
1383 //printf( "not filling skin from %d to %d\n", fillcolor, filledcolor );
1394 byte *pos = &skin[x + skinwidth * y];
1402 skin[x + skinwidth * y] = fdc;
1417 byte *skin; local
1423 skin = (byte *)(pskintype + 1);
1433 Mod_FloodFillSkin( skin, pheader->skinwidth, pheader->skinheight );
1450 // animating skin group. yuck.
1460 Mod_FloodFillSkin( skin, pheader->skinwidth, pheader->skinheight )
    [all...]
model.h 245 int skin; member in struct:__anon11948
quakedef.h 232 int skin; member in struct:__anon12015
  /gdk/samples/quake/jni/
cl_parse.cpp 338 int skin; local
420 skin = MSG_ReadByte();
422 skin = ent->baseline.skin;
423 if (skin != ent->skinnum) {
424 ent->skinnum = skin;
434 ent->skinnum = ent->baseline.skin;
498 ent->baseline.skin = MSG_ReadByte();
684 ent->skinnum = ent->baseline.skin;
gl_model.cpp 1360 void Mod_FloodFillSkin( byte *skin, int skinwidth, int skinheight )
1362 byte fillcolor = *skin; // assume this is the pixel to fill
1383 //printf( "not filling skin from %d to %d\n", fillcolor, filledcolor );
1394 byte *pos = &skin[x + skinwidth * y];
1402 skin[x + skinwidth * y] = fdc;
1417 byte *skin; local
1423 skin = (byte *)(pskintype + 1);
1433 Mod_FloodFillSkin( skin, pheader->skinwidth, pheader->skinheight );
1450 // animating skin group. yuck.
1460 Mod_FloodFillSkin( skin, pheader->skinwidth, pheader->skinheight )
    [all...]
quakedef.h 232 int skin; member in struct:__anon17620
  /external/quake/quake/src/QW/progs/
progdefs.h 77 float skin; member in struct:__anon11723
  /external/quake/quake/src/QW/server/
progdefs.h 96 float skin; member in struct:__anon11771
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
DefaultSoftKeyboard.java 610 String skin = pref.getString("keyboard_skin", local
612 int id = parent.getResources().getIdentifier(skin, "layout", "jp.co.omronsoft.openwnn");
    [all...]
  /sdk/sdkmanager/app/src/com/android/sdkmanager/
Main.java 955 String skin = properties.get(AvdManager.AVD_INI_SKIN_NAME); local
1060 String skin = mSdkCommandLine.getParamSkin(); local
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/avd/
AvdManager.java 90 * AVD/config.ini key name representing the SDK-relative path of the skin folder, if any,
91 * or a 320x480 like constant for a numeric skin size.
95 public final static String AVD_INI_SKIN_PATH = "skin.path"; //$NON-NLS-1$
97 * AVD/config.ini key name representing an UI name for the skin.
99 * tools to give a friendlier name to the skin.
102 public final static String AVD_INI_SKIN_NAME = "skin.name"; //$NON-NLS-1$
143 * Pattern to match pixel-sized skin "names", e.g. "320x480".
468 * @param skinName the name of the skin. Can be null. Must have been verified by caller.
621 // Now the skin.
627 // Skin name is an actual screen resolution
943 File skin = getSkinPath(skinName, target); local
978 File skin = new File(path, skinName); local
    [all...]
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 689 milliseconds