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

  /packages/apps/Settings/src/com/android/settings/
ActivityPicker.java 371 int iconHeight = icon.getIntrinsicHeight();
373 if (iconWidth > 0 && iconHeight > 0) {
374 if (width < iconWidth || height < iconHeight) {
375 final float ratio = (float) iconWidth / iconHeight;
377 if (iconWidth > iconHeight) {
379 } else if (iconHeight > iconWidth) {
402 } else if (iconWidth < width && iconHeight < height) {
409 final int y = (height - iconHeight) / 2;
410 icon.setBounds(x, y, x + iconWidth, y + iconHeight);
  /frameworks/base/core/java/android/app/
LauncherActivity.java 277 final int iconHeight = icon.getIntrinsicHeight();
286 if (width < iconWidth || height < iconHeight) {
287 final float ratio = (float) iconWidth / iconHeight;
289 if (iconWidth > iconHeight) {
291 } else if (iconHeight > iconWidth) {
312 } else if (iconWidth < width && iconHeight < height) {
319 final int y = (height - iconHeight) / 2;
320 icon.setBounds(x, y, x + iconWidth, y + iconHeight);
  /bootable/recovery/
ui.c 102 int iconHeight = gr_get_height(icon);
104 int iconY = (gr_fb_height() - iconHeight) / 2;
105 gr_blit(icon, 0, 0, iconWidth, iconHeight, iconX, iconY);
115 int iconHeight = gr_get_height(gBackgroundIcon[BACKGROUND_ICON_INSTALLING]);
120 int dy = (3*gr_fb_height() + iconHeight - 2*height)/4;
  /external/webkit/WebCore/rendering/
RenderFileUploadControl.cpp 47 const int iconHeight = 16;
225 int iconY = ty + borderTop() + paddingTop() + (contentHeight() - iconHeight) / 2;
233 m_fileChooser->icon()->paint(paintInfo.context, IntRect(iconX, iconY, iconWidth, iconHeight));
  /development/samples/Home/src/com/example/android/home/
Home.java 631 final int iconHeight = icon.getIntrinsicHeight();
639 if (width > 0 && height > 0 && (width < iconWidth || height < iconHeight)) {
640 final float ratio = (float) iconWidth / iconHeight;
642 if (iconWidth > iconHeight) {
644 } else if (iconHeight > iconWidth) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinKeyboard.java 590 final int iconHeight = mSpaceAutoCompletionIndicator.getIntrinsicHeight();
592 int y = height - iconHeight;
593 mSpaceAutoCompletionIndicator.setBounds(x, y, x + iconWidth, y + iconHeight);
597 final int iconHeight = mSpaceIcon.getIntrinsicHeight();
599 int y = height - iconHeight;
600 mSpaceIcon.setBounds(x, y, x + iconWidth, y + iconHeight);
    [all...]

Completed in 578 milliseconds