Home | History | Annotate | Download | only in widget

Lines Matching defs:specSize

995         int specSize =  MeasureSpec.getSize(measureSpec);
1004 // Parent says we can be as big as we want, up to specSize.
1005 // Don't be larger than specSize, and don't be larger than
1007 result = Math.min(Math.min(desiredSize, specSize), maxSize);
1011 result = specSize;