Home
last modified time | relevance | path

Searched refs:WIDTH (Results 1 – 25 of 47) sorted by relevance

12

/frameworks/base/core/tests/coretests/src/android/text/
DDynamicLayoutTest.java43 private static final int WIDTH = 10000; field in DynamicLayoutTest
48 final DynamicLayout layout = new DynamicLayout(builder, new TextPaint(), WIDTH, in testGetBlocksAlwaysNeedToBeRedrawn_en()
74 final DynamicLayout layout = new DynamicLayout(builder, new TextPaint(), WIDTH, in testGetBlocksAlwaysNeedToBeRedrawn_replacementSpan()
103 final DynamicLayout layout = new DynamicLayout(builder, new TextPaint(), WIDTH, in testGetBlocksAlwaysNeedToBeRedrawn_thai()
128 text.length(), textPaint, WIDTH) in testGetLineExtra_withoutLinespacing()
136 WIDTH, in testGetLineExtra_withoutLinespacing()
158 text.length(), textPaint, WIDTH) in testGetLineExtra_withLinespacing()
167 WIDTH, in testGetLineExtra_withLinespacing()
202 final DynamicLayout layout = new DynamicLayout(spannable, new TextPaint(), WIDTH, in testReflow_afterSpannableEdit()
291 .obtain("", new TextPaint(), WIDTH); in testBuilder_defaultTextDirection()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DMediaArtworkProcessorTest.kt33 private const val WIDTH = 200 constant
63 val artwork = Bitmap.createBitmap(WIDTH, HEIGHT, Bitmap.Config.ARGB_8888) in testProcessArtwork()
76 val artwork = Bitmap.createBitmap(WIDTH, HEIGHT, Bitmap.Config.ARGB_8888) in testCache()
89 val artwork = Bitmap.createBitmap(WIDTH, HEIGHT, Bitmap.Config.ALPHA_8) in testConfig()
100 val artwork = Bitmap.createBitmap(WIDTH, HEIGHT, Bitmap.Config.ARGB_8888) in testRecycledArtwork()
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/graph/
DBatteryMeterDrawableBaseTest.java42 private static final int WIDTH = 40; field in BatteryMeterDrawableBaseTest
60 mBatteryMeterDrawableBase.setBounds(0, 0, WIDTH + 2 * PADDING, HEIGHT + 2 * PADDING); in testDraw_hasPaddingAndBounds_drawWarningInCorrectPosition()
73 mBatteryMeterDrawableBase.setBounds(0, 0, WIDTH + 2 * PADDING, HEIGHT + 2 * PADDING); in testDraw_hasPaddingAndBounds_drawBatteryLevelInCorrectPosition()
/frameworks/base/core/tests/coretests/src/android/hardware/display/
DVirtualDisplayTest.java64 private static final int WIDTH = 720; field in VirtualDisplayTest
94 mImageReader = ImageReader.newInstance(WIDTH, HEIGHT, PixelFormat.RGBA_8888, 2); in setUp()
122 WIDTH, HEIGHT, DENSITY, mSurface, 0); in testPrivateVirtualDisplay()
143 WIDTH, HEIGHT, DENSITY, mSurface, DisplayManager.VIRTUAL_DISPLAY_FLAG_PRESENTATION); in testPrivatePresentationVirtualDisplay()
168 WIDTH, HEIGHT, DENSITY, mSurface, in testPublicPresentationVirtualDisplay()
214 WIDTH, HEIGHT, DENSITY, mSurface, in testSecurePublicPresentationVirtualDisplay()
247 WIDTH, HEIGHT, DENSITY, mSurface, in testTrustedVirtualDisplay()
269 assertEquals("display width must match supplied width", WIDTH, size.x); in assertDisplayRegistered()
/frameworks/native/services/inputflinger/reader/include/
DEventHub.h370 static constexpr size_t WIDTH = sizeof(Element) * CHAR_BIT; variable
372 static constexpr size_t COUNT = (BITS + WIDTH - 1) / WIDTH;
382 return (bit < BITS) ? mData[bit / WIDTH].test(bit % WIDTH) : false; in test()
395 size_t se = startIndex / WIDTH; // Start of element in any()
396 size_t ee = endIndex / WIDTH; // End of element in any()
397 size_t si = startIndex % WIDTH; // Start index in start element in any()
398 size_t ei = endIndex % WIDTH; // End index in end element in any()
401 size_t nBits = se == ee ? ei - si : WIDTH - si; in any()
427 mData[i] = std::bitset<WIDTH>(buffer[i]); in loadFromBuffer()
432 std::array<std::bitset<WIDTH>, COUNT> mData;
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DMultiProducerActivity.java41 private final int WIDTH = 900; field in MultiProducerActivity
62 LayoutParams frameLP = new LayoutParams(WIDTH, HEIGHT, 0, 0); in onCreate()
70 WIDTH - 2 * BORDER_WIDTH, HEIGHT - 2 * BORDER_WIDTH, in onCreate()
81 LayoutParams contentLP = new LayoutParams(WIDTH - 2 * BORDER_WIDTH - CONTENT_GAP, in onCreate()
151 mFrameContent = new ColorPulse(0xFF101010, 0xFF707070, new Rect(0, 0, WIDTH, HEIGHT)); in FakeFrame()
/frameworks/compile/mclinker/include/mcld/ADT/
DSizeTraits.h152 template <size_t WIDTH>
154 uint64_t mask = (~((uint64_t)0)) >> (64 - WIDTH); in signExtend()
155 uint64_t sign_bit = 1 << (WIDTH - 1); in signExtend()
/frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/test/
DBottomScrollViewTest.java88 private static final int WIDTH = 10; field in BottomScrollViewTest.TestChildView
98 setMeasuredDimension(WIDTH, mHeight); in onMeasure()
/frameworks/base/core/tests/coretests/src/android/graphics/
DPathOffsetTest.java34 private static final int WIDTH = 100; field in PathOffsetTest
82 Bitmap bitmap = Bitmap.createBitmap(WIDTH, HEIGHT, Config.ARGB_8888); in drawAndGetBitmap()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/graph/
DThemedBatteryDrawable.kt158 intrinsicWidth = (Companion.WIDTH * density).toInt() in <lambda>()
366 scaleMatrix.setScale((b.right / WIDTH), (b.bottom / HEIGHT)) in <lambda>()
379 Math.max(b.right / WIDTH * PROTECTION_STROKE_WIDTH, PROTECTION_MIN_STROKE_WIDTH) in <lambda>()
415 const val WIDTH = 12f in <lambda>() constant
/frameworks/native/services/surfaceflinger/tests/unittests/
DDisplayTransactionTestHelpers.h247 static constexpr int WIDTH = width;
249 static constexpr ui::Size RESOLUTION{WIDTH, HEIGHT};
294 .WillRepeatedly(DoAll(SetArgPointee<1>(WIDTH), Return(0)));
315 .WillRepeatedly(DoAll(SetArgPointee<1>(WIDTH), Return(0)));
333 EXPECT_CALL(*test->mConsumer, setDefaultBufferSize(WIDTH, HEIGHT))
411 IComposerClient::Attribute::WIDTH, _))
413 DoAll(SetArgPointee<3>(DisplayVariant::WIDTH), Return(Error::NONE)));
627 EXPECT_CALL(*test->mComposer, createVirtualDisplay(Base::WIDTH, Base::HEIGHT, _, _))
DLayerTestUtils.h44 static constexpr uint32_t WIDTH = 100;
DCompositionTest.cpp482 static constexpr uint32_t WIDTH = 100; member
507 result = producer->dequeueBuffer(&slot, &fence, LayerProperties::WIDTH, in enqueueBuffer()
524 Rect(LayerProperties::WIDTH, in enqueueBuffer()
537 layer->setSizeForTest(LayerProperties::WIDTH, LayerProperties::HEIGHT); in setupLatchedBuffer()
539 layer->setDefaultBufferProperties(LayerProperties::WIDTH, LayerProperties::HEIGHT, in setupLatchedBuffer()
566 IComposerClient::Rect({0, 0, LayerProperties::WIDTH, in setupHwcSetGeometryCallExpectations()
589 IComposerClient::FRect({0.f, 0.f, LayerProperties::WIDTH, in setupHwcSetSourceCropBufferCallExpectations()
610 {0, 0, LayerProperties::WIDTH, in setupHwcSetPerFrameCallExpectations()
912 layerDrawingState.crop = Rect(0, 0, LayerProperties::HEIGHT, LayerProperties::WIDTH); in createLayer()
DTunnelModeEnabledReporterTest.cpp61 static constexpr uint32_t WIDTH = 100; member in android::TunnelModeEnabledReporterTest
DRefreshRateSelectionTest.cpp56 static constexpr uint32_t WIDTH = 100; member in android::RefreshRateSelectionTest
DFpsReporterTest.cpp77 static constexpr uint32_t WIDTH = 100; member in android::FpsReporterTest
/frameworks/base/packages/SystemUI/src/com/android/systemui/battery/
DBatterySpecs.kt23 const val BATTERY_WIDTH = ThemedBatteryDrawable.WIDTH
/frameworks/base/services/core/java/com/android/server/wm/
DWindowContainerThumbnail.java26 import static com.android.server.wm.WindowContainerThumbnailProto.WIDTH;
160 proto.write(WIDTH, mWidth); in dumpDebug()
/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
DerrorCalculator.rscript5 int WIDTH;
/frameworks/native/services/inputflinger/benchmarks/
DInputDispatcher_benchmarks.cpp175 static const int32_t WIDTH = 200; member in android::inputdispatcher::FakeWindowHandle
180 : FakeInputReceiver(dispatcher, name), mFrame(Rect(0, 0, WIDTH, HEIGHT)) { in FakeWindowHandle()
/frameworks/base/services/tests/servicestests/src/com/android/server/companion/virtual/
DVirtualDeviceManagerServiceTest.java125 private static final int WIDTH = 900; field in VirtualDeviceManagerServiceTest
410 VENDOR_ID, PRODUCT_ID, BINDER, new Point(WIDTH, HEIGHT))); in createVirtualTouchscreen_noDisplay_failsSecurityException()
450 VENDOR_ID, PRODUCT_ID, BINDER, new Point(WIDTH, HEIGHT))); in createVirtualTouchscreen_noPermission_failsSecurityException()
496 BINDER, new Point(WIDTH, HEIGHT)); in createVirtualTouchscreen_hasDisplay_obtainFileDescriptor()
500 eq(PRODUCT_ID), anyString(), eq(HEIGHT), eq(WIDTH)); in createVirtualTouchscreen_hasDisplay_obtainFileDescriptor()
/frameworks/rs/tests/java_api/RsCameraDemo/src/com/android/example/rscamera/
DMediaStoreSaver.java138 values.put(Images.Thumbnails.WIDTH, thumb.getWidth()); in storeThumbnail()
/frameworks/rs/tests/java_api/CannyLive/src/com/android/example/cannylive/
DMediaStoreSaver.java138 values.put(Images.Thumbnails.WIDTH, thumb.getWidth()); in storeThumbnail()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DAnimatableProperty.java103 public static final AnimatableProperty WIDTH = AnimatableProperty.from( field in AnimatableProperty
/frameworks/base/cmds/bootanimation/
DFORMAT.md25 WIDTH HEIGHT FPS [PROGRESS]
27 * **WIDTH:** animation width (pixels)

12