HomeSort by relevance Sort by last modified time
    Searched refs:mWeightSum (Results 1 - 3 of 3) sorted by null

  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
LinearLayoutCompat.java 124 private float mWeightSum;
173 mWeightSum = a.getFloat(R.styleable.LinearLayoutCompat_android_weightSum, -1.0f);
529 return mWeightSum;
545 mWeightSum = Math.max(0.0f, weightSum);
776 float weightSum = mWeightSum > 0.0f ? mWeightSum : totalWeight;
    [all...]
  /packages/apps/Settings/src/com/android/settings/widget/
MatchParentShrinkingLinearLayout.java 148 private float mWeightSum;
206 mWeightSum = a.getFloat(R.styleable.LinearLayout_weightSum, -1.0f);
576 return mWeightSum;
593 mWeightSum = Math.max(0.0f, weightSum);
822 float weightSum = mWeightSum > 0.0f ? mWeightSum : totalWeight;
    [all...]
  /frameworks/base/core/java/android/widget/
LinearLayout.java 197 private float mWeightSum;
273 mWeightSum = a.getFloat(R.styleable.LinearLayout_weightSum, -1.0f);
681 return mWeightSum;
698 mWeightSum = Math.max(0.0f, weightSum);
    [all...]

Completed in 114 milliseconds