Searched refs:b (Results 1 – 11 of 11) sorted by relevance
/bootable/recovery/tools/recovery_l10n/src/com/android/recovery_l10n/ |
D | Main.java | 94 Bitmap b = mText.getDrawingCache(); in run() local 95 savedBitmaps.put(thisLocale, b.copy(Bitmap.Config.ARGB_8888, false)); in run() 178 Button b = (Button) findViewById(R.id.go); in onCreate() local 179 b.setOnClickListener(new View.OnClickListener() { in onCreate() 205 private void saveBitmap(Bitmap b, String filename) { 208 b.compress(Bitmap.CompressFormat.PNG, 100, fos); 215 private int colorFor(byte b) { 216 return 0xff000000 | (b<<16) | (b<<8) | b; 219 private int colorFor(int b) { 220 return 0xff000000 | (b<<16) | (b<<8) | b; [all …]
|
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/ |
D | PayloadSpec.java | 43 public PayloadSpec(Builder b) { in PayloadSpec() argument 44 this.mUrl = b.mUrl; in PayloadSpec() 45 this.mOffset = b.mOffset; in PayloadSpec() 46 this.mSize = b.mSize; in PayloadSpec() 47 this.mProperties = b.mProperties; in PayloadSpec()
|
/bootable/recovery/edify/ |
D | README.md | 51 "a b" 52 a + " " + b 53 "a" + " " + "b" 56 concat(a, " ", "b") 57 "concat"(a, " ", "b") 62 ("con" + "cat")(a, " ", b) # syntax error! 105 concat(a;b;c, d, e;f) # evaluates to "cdf"
|
/bootable/recovery/etc/ |
D | init.rc | 112 mkdir /config/usb_gadget/g1/configs/b.1 0777 shell shell 113 mkdir /config/usb_gadget/g1/configs/b.1/strings/0x409 0770 shell shell 165 rm /config/usb_gadget/g1/configs/b.1/f1 170 write /config/usb_gadget/g1/configs/b.1/strings/0x409/configuration "adb" 171 symlink /config/usb_gadget/g1/functions/ffs.adb /config/usb_gadget/g1/configs/b.1/f1 177 write /config/usb_gadget/g1/configs/b.1/strings/0x409/configuration "adb" 178 symlink /config/usb_gadget/g1/functions/ffs.adb /config/usb_gadget/g1/configs/b.1/f1 184 write /config/usb_gadget/g1/configs/b.1/strings/0x409/configuration "fastboot" 185 symlink /config/usb_gadget/g1/functions/ffs.fastboot /config/usb_gadget/g1/configs/b.1/f1
|
/bootable/recovery/updater_sample/tests/src/com/example/android/systemupdatersample/ |
D | UpdateManagerTest.java | 132 Bundle b = new Bundle(); in mockContextStartServiceAnswer() 133 b.putSerializable( in mockContextStartServiceAnswer() 137 resultReceiver.send(PrepareUpdateService.RESULT_CODE_SUCCESS, b); in mockContextStartServiceAnswer()
|
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/services/ |
D | PrepareUpdateService.java | 279 Bundle b = new Bundle(); in createBundle() local 280 b.putSerializable(BUNDLE_PARAM_PAYLOAD_SPEC, payloadSpec); in createBundle() 281 return b; in createBundle()
|
/bootable/recovery/tests/component/ |
D | updater_test.cpp | 1042 std::string b(4096, 'b'); in GenerateTransferList() local 1053 std::string b_hash = GetSha1(b); in GenerateTransferList() 1075 std::string bdc = b + d + c; in GenerateTransferList() 1086 std::string abcd = a + b + c + d; in GenerateTransferList() 1088 std::string dcb = d + c + b; in GenerateTransferList() 1162 g_source_image = a + b + c + d + e + a + b + c + d + e; in GenerateTransferList() 1163 g_target_image = zero + i + h + g + f + e + d + c + b + a; in GenerateTransferList()
|
/bootable/recovery/minui/include/minui/ |
D | minui.h | 123 void gr_color(unsigned char r, unsigned char g, unsigned char b, unsigned char a);
|
/bootable/recovery/minui/ |
D | graphics.cpp | 210 void gr_color(unsigned char r, unsigned char g, unsigned char b, unsigned char a) { in gr_color() argument 211 uint32_t r32 = r, g32 = g, b32 = b, a32 = a; in gr_color()
|
/bootable/recovery/tools/image_generator/ |
D | ImageGenerator.java | 478 for (byte b : localeBytes) { in encodeTextInfo() 479 info.add((int) b); in encodeTextInfo()
|
/bootable/recovery/ |
D | NOTICE | 110 (b) You must cause any modified files to carry prominent notices
|