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

  /packages/apps/Settings/src/com/android/settings/widget/
MatchParentShrinkingLinearLayout.java 97 private int mBaselineAlignedChildIndex = -1;
208 mBaselineAlignedChildIndex = a.getInt(
467 if (mBaselineAlignedChildIndex < 0) {
471 if (getChildCount() <= mBaselineAlignedChildIndex) {
472 throw new RuntimeException("mBaselineAlignedChildIndex of LinearLayout "
476 final View child = getChildAt(mBaselineAlignedChildIndex);
480 if (mBaselineAlignedChildIndex == 0) {
486 throw new RuntimeException("mBaselineAlignedChildIndex of LinearLayout "
493 // sum([getNextLocationOffset(getChildAt(i)) / i < mBaselineAlignedChildIndex])
524 return mBaselineAlignedChildIndex;
    [all...]
  /frameworks/base/core/java/android/widget/
LinearLayout.java 146 private int mBaselineAlignedChildIndex = -1;
275 mBaselineAlignedChildIndex =
571 if (mBaselineAlignedChildIndex < 0) {
575 if (getChildCount() <= mBaselineAlignedChildIndex) {
576 throw new RuntimeException("mBaselineAlignedChildIndex of LinearLayout "
580 final View child = getChildAt(mBaselineAlignedChildIndex);
584 if (mBaselineAlignedChildIndex == 0) {
590 throw new RuntimeException("mBaselineAlignedChildIndex of LinearLayout "
597 // sum([getNextLocationOffset(getChildAt(i)) / i < mBaselineAlignedChildIndex])
628 return mBaselineAlignedChildIndex;
    [all...]
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
LinearLayoutCompat.java 109 private int mBaselineAlignedChildIndex = -1;
175 mBaselineAlignedChildIndex =
423 if (mBaselineAlignedChildIndex < 0) {
427 if (getChildCount() <= mBaselineAlignedChildIndex) {
428 throw new RuntimeException("mBaselineAlignedChildIndex of LinearLayout "
432 final View child = getChildAt(mBaselineAlignedChildIndex);
436 if (mBaselineAlignedChildIndex == 0) {
442 throw new RuntimeException("mBaselineAlignedChildIndex of LinearLayout "
449 // sum([getNextLocationOffset(getChildAt(i)) / i < mBaselineAlignedChildIndex])
480 return mBaselineAlignedChildIndex;
    [all...]

Completed in 111 milliseconds