Home
last modified time | relevance | path

Searched refs:smallest (Results 1 – 2 of 2) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
DVaryingConfiguration.java250 double smallest = 100; in getDevice() local
260 if (size <= smallest) { in getDevice()
261 smallest = size; in getDevice()
266 double inchesPerBucket = (biggest - smallest) / bucketCount; in getDevice()
269 int overriddenBucket = (int) ((overriddenSize - smallest) / inchesPerBucket); in getDevice()
271 double from = inchesPerBucket * bucket + smallest; in getDevice()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DGridLayoutConverter.java936 int smallest = iterator.next().mY1; in analyzeKnownLayouts() local
938 smallest = Math.min(smallest, iterator.next().mY1); in analyzeKnownLayouts()
941 view.mY2 -= (view.mY1 - smallest); in analyzeKnownLayouts()
942 view.mY1 = smallest; in analyzeKnownLayouts()
947 int smallest = iterator.next().mX1; in analyzeKnownLayouts() local
949 smallest = Math.min(smallest, iterator.next().mX1); in analyzeKnownLayouts()
952 view.mX2 -= (view.mX1 - smallest); in analyzeKnownLayouts()
953 view.mX1 = smallest; in analyzeKnownLayouts()