HomeSort by relevance Sort by last modified time
    Searched refs:colorInt (Results 1 - 3 of 3) sorted by null

  /tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/skin/android/parser/
LayoutBean.java 204 Integer colorInt = Integer.decode(value);
205 int blue = colorInt.intValue() & 0xFF;
206 int green = (colorInt.intValue() & 0xFF00) >> 8;
207 int red = (colorInt.intValue() & 0xFF0000) >> 16;
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
LetterQuad.java 36 private int colorInt = 0xFFFFFFFF;
213 this.colorInt = color.asIntRGBA();
390 colors[3] = (byte) (colorInt & 0xff);
391 colors[2] = (byte) ((colorInt >> 8) & 0xff);
392 colors[1] = (byte) ((colorInt >> 16) & 0xff);
393 colors[0] = (byte) ((colorInt >> 24) & 0xff);
450 bb.putInt(colorInt);
451 bb.putInt(colorInt);
452 bb.putInt(colorInt);
453 bb.putInt(colorInt);
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/games/
CubeField.java 69 private int difficulty, Score, colorInt, highCap, lowCap,diffHelp;
116 colorInt = 0;
331 colorInt++;
335 switch (colorInt){
391 colorInt=0;

Completed in 66 milliseconds