Home
last modified time | relevance | path

Searched refs:lineLength (Results 1 – 4 of 4) sorted by relevance

/frameworks/ex/common/tools/
Dmake-iana-tld-pattern.py33 self.lineLength = len(TAB)
37 self.lineLength += len(other)
41 if self.lineLength > 90:
45 self.lineLength = len(TAB)
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
DRadialSelectorView.java312 int lineLength = mLineLength; in onDraw() local
313 lineLength -= mSelectionRadius; in onDraw()
314 pointX = mXCenter + (int) (lineLength * Math.sin(mSelectionRadians)); in onDraw()
315 pointY = mYCenter - (int) (lineLength * Math.cos(mSelectionRadians)); in onDraw()
/frameworks/base/core/java/android/widget/
DRadialTimePickerView.java809 final float lineLength = selLength - selRadius; in drawSelector() local
812 final float linePointX = centerX + (int) (lineLength * sin); in drawSelector()
813 final float linePointY = centerY - (int) (lineLength * cos); in drawSelector()
/frameworks/base/core/java/android/view/
DViewGroup.java3394 int lineLength, int lineWidth) { in drawRectCorners() argument
3395 drawCorner(canvas, paint, x1, y1, lineLength, lineLength, lineWidth); in drawRectCorners()
3396 drawCorner(canvas, paint, x1, y2, lineLength, -lineLength, lineWidth); in drawRectCorners()
3397 drawCorner(canvas, paint, x2, y1, -lineLength, lineLength, lineWidth); in drawRectCorners()
3398 drawCorner(canvas, paint, x2, y2, -lineLength, -lineLength, lineWidth); in drawRectCorners()
3464 int lineLength = dipsToPixels(8); in onDebugDraw() local
3470 paint, lineLength, lineWidth); in onDebugDraw()