Home
last modified time | relevance | path

Searched refs:mShape (Results 1 – 2 of 2) sorted by relevance

/packages/modules/NeuralNetworks/common/include/
DCpuOperationUtils.h164 mShape = shape; in initialize()
166 return convertNchwToNhwc(mDataOriginal, shape, &mDataNhwc, &mShape); in initialize()
172 const Shape& getNhwcShape() { return mShape; } in getNhwcShape()
177 Shape mShape; variable
189 mShape = shape; in initialize()
192 mShape.dimensions = {dim[0], dim[2], dim[3], dim[1]}; in initialize()
199 const Shape& getNhwcShape() { return mShape; } in getNhwcShape()
202 return convertNhwcToNchw(mDataNhwc, mShape, mDataOriginal); in commit()
210 Shape mShape; variable
/packages/apps/ThemePicker/src/com/android/customization/model/theme/custom/
DThemeComponentOption.java465 private final LayerDrawable mShape; field in ThemeComponentOption.ShapeOption
485 mShape = new LayerDrawable(new Drawable[]{background, foreground}); in ShapeOption()
486 mShape.setLayerGravity(0, Gravity.CENTER); in ShapeOption()
487 mShape.setLayerGravity(1, Gravity.CENTER); in ShapeOption()
497 Drawable background = mShape.getDrawable(0); in bindThumbnailTile()
500 ShapeDrawable foreground = (ShapeDrawable) mShape.getDrawable(1); in bindThumbnailTile()
513 thumb.setImageDrawable(mShape); in bindThumbnailTile()