Searched defs:mWeightSum (Results 1 - 2 of 2) sorted by last modified time

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DLinearLayoutCompat.java124 private float mWeightSum; field in class:LinearLayoutCompat
173 mWeightSum = a.getFloat(R.styleable.LinearLayoutCompat_android_weightSum, -1.0f);
529 return mWeightSum;
545 mWeightSum = Math.max(0.0f, weightSum);
775 float weightSum = mWeightSum > 0.0f ? mWeightSum : totalWeight;
1159 float weightSum = mWeightSum > 0.0f ? mWeightSum : totalWeight;
/frameworks/base/core/java/android/widget/
H A DLinearLayout.java198 private float mWeightSum; field in class:LinearLayout
254 mWeightSum = a.getFloat(R.styleable.LinearLayout_weightSum, -1.0f);
662 return mWeightSum;
679 mWeightSum = Math.max(0.0f, weightSum);
922 float remainingWeightSum = mWeightSum > 0.0f ? mWeightSum : totalWeight;
1305 float remainingWeightSum = mWeightSum > 0.0f ? mWeightSum : totalWeight;

Completed in 76 milliseconds