OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:areaHeight
(Results
1 - 3
of
3
) sorted by null
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CCombo3.java
501
int
areaHeight
= clientArea.height;
503
Point buttonSize = m_arrow.computeSize(
areaHeight
,
areaHeight
);
504
Point textSize = m_text.computeSize(areaWidth - buttonSize.x,
areaHeight
);
508
m_text.setSize(areaWidth - buttonSize.x, Math.max(textSize.y,
areaHeight
));
/packages/apps/Camera/src/com/android/camera/
FocusOverlayManager.java
517
int
areaHeight
= (int) (focusHeight * areaMultiple);
519
int top = Util.clamp(y -
areaHeight
/ 2, 0, previewHeight -
areaHeight
);
521
RectF rectF = new RectF(left, top, left + areaWidth, top +
areaHeight
);
/packages/apps/LegacyCamera/src/com/android/camera/
FocusManager.java
450
int
areaHeight
= (int)(focusHeight * areaMultiple);
452
int top = Util.clamp(y -
areaHeight
/ 2, 0, previewHeight -
areaHeight
);
454
RectF rectF = new RectF(left, top, left + areaWidth, top +
areaHeight
);
Completed in 257 milliseconds