OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:charHeight
(Results
1 - 4
of
4
) sorted by null
/packages/apps/Terminal/src/com/android/terminal/
TerminalView.java
80
int
charHeight
;
104
charHeight
= (int) Math.ceil(fm.descent - fm.top);
253
final int rows = h / mMetrics.
charHeight
;
/external/mesa3d/src/mesa/drivers/windows/gdi/
wgl.c
404
int charWidth,
charHeight
,bmapWidth,bmapHeight,numBytes,res;
416
charHeight
= size.cy;
419
bmapHeight =
charHeight
;
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
TerminalBridge.java
108
public int
charHeight
= -1;
419
charHeight
= (int) Math.ceil(fm.descent - fm.top);
478
newRows = height /
charHeight
;
509
int borderY = (rows *
charHeight
) + 1;
629
canvas.clipRect(c * charWidth, l *
charHeight
, (c + 2) * charWidth, (l + 1)
630
*
charHeight
);
632
canvas.clipRect(c * charWidth, l *
charHeight
, (c + addr) * charWidth, (l + 1)
633
*
charHeight
);
641
(l *
charHeight
) - charTop, defaultPaint);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
PasswordTextView.java
163
int
charHeight
= (bounds.bottom - bounds.top);
171
float charWidth = charState.draw(canvas, currentDrawPosition,
charHeight
, yPosition,
678
public float draw(Canvas canvas, float currentDrawPosition, int
charHeight
, float yPosition,
684
float currYPosition = yPosition +
charHeight
/ 2.0f * currentTextSizeFactor
685
+
charHeight
* currentTextTranslationY * 0.8f;
Completed in 71 milliseconds