Home
last modified time | relevance | path

Searched refs:mMaxAllowedRows (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DTileLayout.java45 protected int mMaxAllowedRows = 3; field in TileLayout
135 mMaxAllowedRows = Math.max(1, getResources().getInteger(R.integer.quick_settings_max_rows)); in updateResources()
137 mMaxAllowedRows = Math.max(mMinRows, mMaxAllowedRows - 1); in updateResources()
207 } else if (mRows >= mMaxAllowedRows) { in updateMaxRows()
208 mRows = mMaxAllowedRows; in updateMaxRows()
H A DSideLabelTileLayout.kt30 mMaxAllowedRows = context.resources.getInteger(R.integer.quick_settings_max_rows)
55 mRows = mMaxAllowedRows
H A DQuickQSPanel.java204 mMaxAllowedRows = getResources().getInteger(R.integer.quick_qs_panel_max_rows); in updateResources()