Searched refs:mBaselineAlignedChildIndex (Results 1 - 2 of 2) sorted by relevance

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DLinearLayoutCompat.java107 private int mBaselineAlignedChildIndex = -1; field in class:LinearLayoutCompat
173 mBaselineAlignedChildIndex =
421 if (mBaselineAlignedChildIndex < 0) {
425 if (getChildCount() <= mBaselineAlignedChildIndex) {
426 throw new RuntimeException("mBaselineAlignedChildIndex of LinearLayout "
430 final View child = getChildAt(mBaselineAlignedChildIndex);
434 if (mBaselineAlignedChildIndex == 0) {
440 throw new RuntimeException("mBaselineAlignedChildIndex of LinearLayout "
447 // sum([getNextLocationOffset(getChildAt(i)) / i < mBaselineAlignedChildIndex])
478 return mBaselineAlignedChildIndex;
[all...]
/frameworks/base/core/java/android/widget/
H A DLinearLayout.java147 private int mBaselineAlignedChildIndex = -1; field in class:LinearLayout
256 mBaselineAlignedChildIndex =
552 if (mBaselineAlignedChildIndex < 0) {
556 if (getChildCount() <= mBaselineAlignedChildIndex) {
557 throw new RuntimeException("mBaselineAlignedChildIndex of LinearLayout "
561 final View child = getChildAt(mBaselineAlignedChildIndex);
565 if (mBaselineAlignedChildIndex == 0) {
571 throw new RuntimeException("mBaselineAlignedChildIndex of LinearLayout "
578 // sum([getNextLocationOffset(getChildAt(i)) / i < mBaselineAlignedChildIndex])
609 return mBaselineAlignedChildIndex;
[all...]

Completed in 1081 milliseconds