Searched defs:mWeightSum (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DLinearLayout.java166 private float mWeightSum; field in class:LinearLayout
220 mWeightSum = a.getFloat(R.styleable.LinearLayout_weightSum, -1.0f);
590 return mWeightSum;
607 mWeightSum = Math.max(0.0f, weightSum);
836 float weightSum = mWeightSum > 0.0f ? mWeightSum : totalWeight;
1218 float weightSum = mWeightSum > 0.0f ? mWeightSum : totalWeight;
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DLinearLayoutCompat.java121 private float mWeightSum; field in class:LinearLayoutCompat
170 mWeightSum = a.getFloat(R.styleable.LinearLayoutCompat_android_weightSum, -1.0f);
525 return mWeightSum;
541 mWeightSum = Math.max(0.0f, weightSum);
771 float weightSum = mWeightSum > 0.0f ? mWeightSum : totalWeight;
1155 float weightSum = mWeightSum > 0.0f ? mWeightSum : totalWeight;

Completed in 10 milliseconds