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.py36 self.lineLength = len(TAB)
40 self.lineLength += len(other)
44 if self.lineLength > 90:
48 self.lineLength = len(TAB)
/frameworks/minikin/tests/unittest/
DLineBreakerTestHelper.h122 uint32_t lineLength = u16Str.size(); in sameLineBreak() local
127 --lineLength; in sameLineBreak()
133 --lineLength; in sameLineBreak()
135 breakOffset += lineLength; in sameLineBreak()
/frameworks/base/core/java/android/widget/
DRadialTimePickerView.java836 final float lineLength = selLength - selRadius; in drawSelector() local
839 final float linePointX = centerX + (int) (lineLength * sin); in drawSelector()
840 final float linePointY = centerY - (int) (lineLength * cos); in drawSelector()
/frameworks/base/core/java/android/view/
DViewGroup.java4135 int lineLength, int lineWidth) { in drawRectCorners() argument
4136 drawCorner(canvas, paint, x1, y1, lineLength, lineLength, lineWidth); in drawRectCorners()
4137 drawCorner(canvas, paint, x1, y2, lineLength, -lineLength, lineWidth); in drawRectCorners()
4138 drawCorner(canvas, paint, x2, y1, -lineLength, lineLength, lineWidth); in drawRectCorners()
4139 drawCorner(canvas, paint, x2, y2, -lineLength, -lineLength, lineWidth); in drawRectCorners()
4205 int lineLength = dipsToPixels(DEBUG_CORNERS_SIZE_DIP); in onDebugDraw() local
4211 paint, lineLength, lineWidth); in onDebugDraw()