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

  /bootable/recovery/
screen_ui.cpp 98 int iconHeight = gr_get_height(surface);
99 gr_blit(surface, 0, 0, iconWidth, iconHeight,
116 int iconHeight = gr_get_height(surface);
121 int iconY = (gr_fb_height() - (iconHeight+textHeight+40)) / 2;
124 int textY = ((gr_fb_height() - (iconHeight+textHeight+40)) / 2) + iconHeight + 40;
126 gr_blit(surface, 0, 0, iconWidth, iconHeight, iconX, iconY);
147 int iconHeight = gr_get_height(backgroundIcon[INSTALLING_UPDATE]);
152 int dy = (3*gr_fb_height() + iconHeight - 2*height)/4;
  /packages/apps/Settings/src/com/android/settings/
ActivityPicker.java 375 int iconHeight = icon.getIntrinsicHeight();
377 if (iconWidth > 0 && iconHeight > 0) {
378 if (width < iconWidth || height < iconHeight) {
379 final float ratio = (float) iconWidth / iconHeight;
381 if (iconWidth > iconHeight) {
383 } else if (iconHeight > iconWidth) {
407 } else if (iconWidth < width && iconHeight < height) {
414 final int y = (height - iconHeight) / 2;
415 icon.setBounds(x, y, x + iconWidth, y + iconHeight);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LintOverlay.java 74 int iconHeight = imageData.height;
89 if (w < iconWidth || h < iconHeight) {
96 y += h - iconHeight;
  /frameworks/base/core/java/android/app/
LauncherActivity.java 282 final int iconHeight = icon.getIntrinsicHeight();
291 if (width < iconWidth || height < iconHeight) {
292 final float ratio = (float) iconWidth / iconHeight;
294 if (iconWidth > iconHeight) {
296 } else if (iconHeight > iconWidth) {
318 } else if (iconWidth < width && iconHeight < height) {
325 final int y = (height - iconHeight) / 2;
326 icon.setBounds(x, y, x + iconWidth, y + iconHeight);
  /external/webkit/Source/WebCore/rendering/
RenderFileUploadControl.cpp 50 const int iconHeight = 16;
256 int iconY = ty + borderTop() + paddingTop() + (contentHeight() - iconHeight) / 2;
264 m_fileChooser->icon()->paint(paintInfo.context, IntRect(iconX, iconY, iconWidth, iconHeight));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardView.java 587 final int iconHeight = icon.getIntrinsicHeight();
588 final int iconY = (keyHeight - iconHeight) / 2;
591 drawIcon(canvas, icon, iconX, iconY, iconWidth, iconHeight);
594 drawIcon(canvas, icon, iconX, iconY, iconWidth, iconHeight);
645 final int iconHeight = icon.getIntrinsicHeight();
647 final int iconY = (keyHeight - iconHeight) / 2;
658 drawIcon(canvas, icon, iconX, iconY, iconWidth, iconHeight);
663 drawRectangle(canvas, iconX, iconY, iconWidth, iconHeight, 0x80c00000, line);
    [all...]
MainKeyboardView.java     [all...]