/bootable/recovery/recovery_ui/ |
D | vr_ui.cpp | 37 void VrRecoveryUI::DrawSurface(const GRSurface* surface, int sx, int sy, int w, int h, int dx, in DrawSurface() argument 39 gr_blit(surface, sx, sy, w, h, dx + stereo_offset_, dy); in DrawSurface() 40 gr_blit(surface, sx, sy, w, h, dx - stereo_offset_ + ScreenWidth(), dy); in DrawSurface() 69 void VrRecoveryUI::DrawFill(int x, int y, int w, int h) const { in DrawFill() argument 70 gr_fill(x + stereo_offset_, y, w, h); in DrawFill() 71 gr_fill(x - stereo_offset_ + ScreenWidth(), y, w, h); in DrawFill()
|
D | screen_ui.cpp | 608 void ScreenRecoveryUI::DrawSurface(const GRSurface* surface, int sx, int sy, int w, int h, int dx, in DrawSurface() argument 610 gr_blit(surface, sx, sy, w, h, dx, dy); in DrawSurface() 622 void ScreenRecoveryUI::DrawFill(int x, int y, int w, int h) const { in DrawFill() argument 623 gr_fill(x, y, w, h); in DrawFill()
|
/bootable/recovery/tools/recovery_l10n/src/com/android/recovery_l10n/ |
D | Main.java | 232 int w = b.getWidth(); 235 if (w > width) width = w; 254 int w = bm.getWidth(); 256 bm.getPixels(pixels, 0, w, 0, 0, w, h); 262 int right = w; 266 if (pixels[j*w+right-1] != 0xff000000) { 282 if (pixels[j*w+left] != 0xff000000) { 319 out.setPixels(pixels, left, w, 0, p, tw, h);
|
/bootable/recovery/recovery_ui/include/recovery_ui/ |
D | vr_ui.h | 36 void DrawSurface(const GRSurface* surface, int sx, int sy, int w, int h, int dx, 40 void DrawFill(int x, int y, int w, int h) const override;
|
D | screen_ui.h | 63 virtual void DrawSurface(const GRSurface* surface, int sx, int sy, int w, int h, int dx, 67 virtual void DrawFill(int x, int y, int w, int h) const = 0; 324 void DrawSurface(const GRSurface* surface, int sx, int sy, int w, int h, int dx, 326 void DrawFill(int x, int y, int w, int h) const override;
|
/bootable/recovery/ |
D | interlace-frames.py | 44 w, h = sizes.pop() 47 out = Image.new("RGB", (w, h*N)) 49 for i in range(w):
|
/bootable/recovery/minui/ |
D | resources.cpp | 412 int w = (row[1] << 8) | row[0]; in res_create_localized_alpha_surface() local 418 printf(" %20s: %s (%d x %d @ %d)\n", name, loc, w, h, y); in res_create_localized_alpha_surface() 420 auto surface = GRSurface::Create(w, h, w, 1); in res_create_localized_alpha_surface() 427 memcpy(surface->data() + i * w, row.data(), w); in res_create_localized_alpha_surface()
|
D | graphics.cpp | 261 void gr_blit(const GRSurface* source, int sx, int sy, int w, int h, int dx, int dy) { in gr_blit() argument 272 if (outside(dx, dy) || outside(dx + w - 1, dy + h - 1)) return; in gr_blit() 284 for (int x = 0; x < w; x += 1) { in gr_blit() 296 memcpy(dst_p, src_p, w * source->pixel_bytes); in gr_blit()
|
/bootable/recovery/tests/testdata/ |
D | testkey_v4.x509.pem | 23 8eHYvXovJZwXvKFI+ZyS0KBPx8cpfw89RB9qmkxqNBIm8qWb3qBiuBEIPj+NF/7w
|
D | testkey_v2.x509.pem | 24 w/Fvbl/KVD1ZmLHgBKjDMNSh0OB9mSsDWpw=
|
/bootable/recovery/tests/component/ |
D | resources_test.cpp | 96 int w = (row[1] << 8) | row[0]; in TEST_P() local 99 EXPECT_LT(0, w); in TEST_P()
|
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/services/ |
D | PrepareUpdateService.java | 205 Log.w(TAG, String.format("ab_config.property_files doesn't contain %s", in verifyPayloadMetadata() 219 Log.w(TAG, String.format("Downloading %s from %s failed", in verifyPayloadMetadata() 227 Log.w(TAG, "UpdateEngine#verifyPayloadMetadata failed", e); in verifyPayloadMetadata()
|
/bootable/recovery/minui/include/minui/ |
D | minui.h | 136 void gr_blit(const GRSurface* source, int sx, int sy, int w, int h, int dx, int dy);
|
/bootable/recovery/updater_sample/ |
D | README.md | 236 …`adb shell am instrument -w com.example.android.systemupdatersample.tests/android.support.test.run… 240 …-w -e class com.example.android.systemupdatersample.UpdateManagerTest#applyUpdate_appliesPayloadTo…
|