/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
D | DecodeUtils.java | 61 public static Bitmap decode(JobContext jc, FileDescriptor fd, Options options) { in decode() method in DecodeUtils 78 public static Bitmap decode(JobContext jc, byte[] bytes, Options options) { in decode() method in DecodeUtils 79 return decode(jc, bytes, 0, bytes.length, options); in decode() 82 public static Bitmap decode(JobContext jc, byte[] bytes, int offset, in decode() method in DecodeUtils 258 Bitmap bitmap = decode(jc, data, offset, length, options); in decodeUsingPool() 270 return decode(jc, data, offset, length, options); in decodeUsingPool() 285 Bitmap bitmap = DecodeUtils.decode(jc, fileDescriptor, options); in decodeUsingPool() 297 return decode(jc, fileDescriptor, options); in decodeUsingPool()
|
D | UriSource.java | 50 String uri = URLDecoder.decode(segment[1], CHARSET_UTF_8); in createMediaObject() 51 String type = URLDecoder.decode(segment[2], CHARSET_UTF_8); in createMediaObject()
|
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
D | CellBroadcastConfigService.java | 67 int startId = Integer.decode(channelRange.substring(0, dashIndex).trim()); in setChannelRange() 68 int endId = Integer.decode(channelRange.substring(dashIndex + 1).trim()); in setChannelRange() 77 int messageId = Integer.decode(channelRange.trim()); in setChannelRange() 123 int startId = Integer.decode(channelRange.substring(0, dashIndex).trim()); in isEmergencyAlertMessage() 124 int endId = Integer.decode(channelRange.substring(dashIndex + 1).trim()); in isEmergencyAlertMessage() 129 int emergencyMessageId = Integer.decode(channelRange.trim()); in isEmergencyAlertMessage()
|
/packages/apps/Exchange/src/com/android/exchange/utility/ |
D | UriCodec.java | 167 public static String decode(String s, boolean convertPlus, Charset charset) { in decode() method in UriCodec 219 public static String decode(String s) { in decode() method in UriCodec 220 return decode(s, false, Misc.UTF_8); in decode()
|
/packages/apps/UnifiedEmail/src/com/android/bitmap/ |
D | DecodeTask.java | 258 decodeResult = decode(fd, in); in doInBackground() 266 decodeResult = decode(fd, in); in doInBackground() 399 private Bitmap decode(AssetFileDescriptor fd, InputStream in) { in decode() method in DecodeTask
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/ |
D | Utility.java | 383 private static String decode(Charset charset, byte[] b) { in decode() method in Utility 387 final CharBuffer cb = charset.decode(ByteBuffer.wrap(b)); in decode() 398 return decode(UTF_8, b); in fromUtf8() 408 return decode(ASCII, b); in fromAscii()
|
/packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/ |
D | MimeUtility.java | 68 public static String decode(String s) { in decode() method in MimeUtility 76 return decode(unfold(s)); in unfoldAndDecode()
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
D | ImageCrop.java | 216 private int decode(int movingEdges, float rotation) { in decode() method in ImageCrop 321 decode(mCropObj.getSelectState(), mGeometry.rotation.value())); in onDraw()
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/ |
D | CropView.java | 274 private int decode(int movingEdges, float rotation) { in decode() method in CropView 374 … mScreenCropBounds, mCropObj.isFixedAspect(), decode(mCropObj.getSelectState(), mRotation)); in onDraw()
|
/packages/apps/Camera2/src/com/android/camera/crop/ |
D | CropView.java | 273 private int decode(int movingEdges, float rotation) { in decode() method in CropView 373 … mScreenCropBounds, mCropObj.isFixedAspect(), decode(mCropObj.getSelectState(), mRotation)); in onDraw()
|
/packages/apps/Email/tests/src/com/android/emailcommon/internet/ |
D | MimeUtilityTest.java | 134 String result2 = MimeUtility.decode(SHORT_PLAIN); in testEfficientUnfoldAndDecode() 148 String result1 = MimeUtility.decode(SHORT_UNICODE_ENCODED); in testDecodeSimple()
|
/packages/apps/UnifiedEmail/src/com/android/mail/bitmap/ |
D | AttachmentDrawable.java | 182 decode(!onlyRenditionChange); in setImage() 343 private void decode(boolean executeStateChange) { in decode() method in AttachmentDrawable
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
D | Helpers.java | 186 String decodedContentLocation = Uri.decode(contentLocation); 204 String decodedUrl = Uri.decode(url);
|
/packages/apps/Settings/src/com/android/settings/vpn2/ |
D | VpnSettings.java | 95 VpnProfile profile = VpnProfile.decode(savedState.getString("VpnKey"), in onCreate() 552 final VpnProfile profile = VpnProfile.decode( in loadVpnProfiles()
|
/packages/apps/Gallery2/src/com/android/photos/views/ |
D | TiledImageRenderer.java | 499 boolean decodeComplete = tile.decode(); in decodeTile() 682 boolean decode() { in decode() method in TiledImageRenderer.Tile
|
/packages/apps/Launcher3/WallpaperPicker/src/com/android/photos/views/ |
D | TiledImageRenderer.java | 499 boolean decodeComplete = tile.decode(); in decodeTile() 682 boolean decode() { in decode() method in TiledImageRenderer.Tile
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
D | TileImageView.java | 497 boolean decodeComplete = tile.decode(); in decodeTile() 672 boolean decode() { in decode() method in TileImageView.Tile
|
/packages/apps/Browser/src/com/android/browser/ |
D | DataUri.java | 49 mData = Base64.decode(mData); in DataUri()
|
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
D | QueryParameterUtils.java | 71 return Uri.decode(value); in getQueryParameter()
|
/packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/ |
D | JarUtils.java | 46 return new JarFile(URLDecoder.decode(jarPath, "UTF-8")); in getJarFile()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | ContactLookupKey.java | 122 String string = Uri.decode(lookupKey); in parse()
|
/packages/apps/Calendar/src/com/android/calendar/ |
D | GoogleCalendarUriIntentFilter.java | 77 byte[] decodedBytes = Base64.decode(eidParam, Base64.DEFAULT); in extractEidAndEmail()
|
/packages/apps/Exchange/tests/src/com/android/exchange/provider/ |
D | ExchangeDirectoryProviderTests.java | 123 new PackedString(Uri.decode(c.getString(GAL_RESULT_COLUMN_LOOKUP_KEY))); in brokentestLookupKeyLogic()
|
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
D | WebViewContextMenu.java | 208 decodedPhoneExtra = URLDecoder.decode(extra, Charset.defaultCharset().name()); in onCreateContextMenu()
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | InstallShortcutReceiver.java | 172 byte[] iconArray = Base64.decode(iconBase64, Base64.DEFAULT); in getAndClearInstallQueue()
|