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

  /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 167 private float mWeightSum;
223 mWeightSum = a.getFloat(R.styleable.LinearLayout_weightSum, -1.0f);
607 return mWeightSum;
624 mWeightSum = Math.max(0.0f, weightSum);
862 float weightSum = mWeightSum > 0.0f ? mWeightSum : totalWeight;
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
LinearLayoutCompat.java 121 private float mWeightSum;
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;
    [all...]
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat.jar 

Completed in 777 milliseconds