Home
last modified time | relevance | path

Searched refs:rowIndex (Results 1 – 14 of 14) sorted by relevance

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/notification/
DZenDurationDialog.java177 private void bindTag(final int currZenDuration, final View row, final int rowIndex) { in bindTag() argument
183 tag.rb = (RadioButton) mZenRadioGroup.getChildAt(rowIndex); in bindTag()
205 updateUi(tag, row, rowIndex); in bindTag()
234 private void updateButtons(ConditionTag tag, View row, int rowIndex) { in updateButtons() argument
238 if (rowIndex == COUNTDOWN_CONDITION_INDEX) { in updateButtons()
242 onClickTimeButton(row, tag, false /*down*/, rowIndex); in updateButtons()
250 onClickTimeButton(row, tag, true /*up*/, rowIndex); in updateButtons()
273 protected void updateUi(ConditionTag tag, View row, int rowIndex) { in updateUi() argument
278 updateButtons(tag, row, rowIndex); in updateUi()
281 switch (rowIndex) { in updateUi()
/frameworks/base/libs/hwui/jni/
DYuvToJpegEncoder.cpp131 uint8_t* vRows, int rowIndex, int width, int height) { in deinterleave() argument
132 int numRows = (height - rowIndex) / 2; in deinterleave()
135 int offset = ((rowIndex >> 1) + row) * fStrides[1]; in deinterleave()
206 uint8_t* vRows, int rowIndex, int width, int height) { in deinterleave() argument
207 int numRows = height - rowIndex; in deinterleave()
210 uint8_t* yuvSeg = yuv + (rowIndex + row) * fStrides[0]; in deinterleave()
DYuvToJpegEncoder.h58 int rowIndex, int width, int height);
71 uint8_t* vRows, int rowIndex, int width, int height);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DColoredShadowsActivity.java39 private void setShadowColors(ViewGroup row, int rowIndex) { in setShadowColors() argument
45 view.setElevation(6.0f * (rowIndex + 1)); in setShadowColors()
/frameworks/base/services/core/java/com/android/server/utils/
DWatchedSparseBooleanMatrix.java349 public boolean valueAt(int rowIndex, int colIndex) { in valueAt() argument
350 validateIndex(rowIndex, colIndex); in valueAt()
351 int r = mMap[rowIndex]; in valueAt()
374 public void setValueAt(int rowIndex, int colIndex, boolean value) { in setValueAt() argument
375 validateIndex(rowIndex, colIndex); in setValueAt()
376 int r = mMap[rowIndex]; in setValueAt()
/frameworks/av/services/camera/libcameraservice/tests/
DNV12Compressor.cpp122 std::vector<uint8_t>& vRows, int rowIndex, int width, int height, int stride) { in deinterleave() argument
123 int numRows = (height - rowIndex) / 2; in deinterleave()
126 int offset = ((rowIndex >> 1) + row) * stride; in deinterleave()
/frameworks/base/core/java/android/view/accessibility/
DAccessibilityNodeInfo.java5612 public static CollectionItemInfo obtain(int rowIndex, int rowSpan, in obtain() argument
5614 return new CollectionItemInfo(rowIndex, rowSpan, columnIndex, columnSpan, heading, in obtain()
5634 public static CollectionItemInfo obtain(int rowIndex, int rowSpan, in obtain() argument
5636 return new CollectionItemInfo(rowIndex, rowSpan, columnIndex, columnSpan, heading, in obtain()
5661 public static CollectionItemInfo obtain(@Nullable String rowTitle, int rowIndex, in obtain() argument
5664 return new CollectionItemInfo(rowTitle, rowIndex, rowSpan, columnTitle, columnIndex, in obtain()
5690 public CollectionItemInfo(int rowIndex, int rowSpan, int columnIndex, int columnSpan, in CollectionItemInfo() argument
5692 this(rowIndex, rowSpan, columnIndex, columnSpan, heading, false); in CollectionItemInfo()
5705 public CollectionItemInfo(int rowIndex, int rowSpan, int columnIndex, int columnSpan, in CollectionItemInfo() argument
5707 this(null, rowIndex, rowSpan, null, columnIndex, columnSpan, in CollectionItemInfo()
[all …]
/frameworks/libs/systemui/iconloaderlib/src/com/android/launcher3/icons/cache/
DIconCacheUpdateHandler.java156 final int rowIndex = c.getColumnIndex(IconDB.COLUMN_ROWID); in updateIconsPerUser() local
164 int rowId = c.getInt(rowIndex); in updateIconsPerUser()
/frameworks/base/core/java/android/inputmethodservice/
DKeyboard.java640 for (int rowIndex = 0; rowIndex < numRows; ++rowIndex) { in resize()
641 Row row = rows.get(rowIndex); in resize()
/frameworks/base/cmds/content/src/com/android/commands/content/
DContent.java669 int rowIndex = 0; in onExecute() local
673 builder.append("Row: ").append(rowIndex).append(" "); in onExecute()
674 rowIndex++; in onExecute()
/frameworks/base/services/tests/PackageManagerServiceTests/server/src/com/android/server/utils/
DWatcherTest.java1126 int rowIndex = b.keyAt(3); in testWatchedSparseBooleanMatrix() local
1128 b.put(rowIndex, colIndex, !b.get(rowIndex, colIndex)); in testWatchedSparseBooleanMatrix()
1134 a.put(rowIndex, colIndex, !a.get(rowIndex, colIndex)); in testWatchedSparseBooleanMatrix()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/startingsurface/
DSplashscreenContentDrawer.java830 int rowIndex = 0; in quantize() local
833 samplePixels[rowIndex] = pixels[i]; in quantize()
834 rowIndex++; in quantize()
/frameworks/base/core/java/android/widget/
DMagnifier.java1140 final int rowIndex = i / 2 / (mMeshWidth + 1); in fillMeshMatrix() local
1143 mMeshLeft[i + 1] = yl + hl * rowIndex / mMeshHeight; in fillMeshMatrix()
1146 mMeshRight[i + 1] = yr + hr * rowIndex / mMeshHeight; in fillMeshMatrix()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/tileimpl/
DQSTileViewImplTest.kt269 assertThat(info.collectionItemInfo.rowIndex).isEqualTo(position) in testCollectionItemInfoHasPosition()