Home
last modified time | relevance | path

Searched refs:decode (Results 1 – 25 of 32) sorted by relevance

12

/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
DCellBroadcastConfigService.java58 int startId = Integer.decode(channelRange.substring(0, dashIndex)); in setChannelRange()
59 int endId = Integer.decode(channelRange.substring(dashIndex + 1)); in setChannelRange()
68 int messageId = Integer.decode(channelRange); in setChannelRange()
93 int startId = Integer.decode(channelRange.substring(0, dashIndex)); in isOperatorDefinedEmergencyId()
94 int endId = Integer.decode(channelRange.substring(dashIndex + 1)); in isOperatorDefinedEmergencyId()
99 int emergencyMessageId = Integer.decode(channelRange); in isOperatorDefinedEmergencyId()
/packages/apps/Gallery2/src/com/android/gallery3d/data/
DBitmapPool.java111 public Bitmap decode(JobContext jc, in decode() method in BitmapPool
119 Bitmap bitmap = DecodeUtils.decode(jc, data, offset, length, options); in decode()
131 return DecodeUtils.decode(jc, data, offset, length, options); in decode()
137 public Bitmap decode(JobContext jc, in decode() method in BitmapPool
145 Bitmap bitmap = DecodeUtils.decode(jc, fileDescriptor, options); in decode()
157 return DecodeUtils.decode(jc, fileDescriptor, options); in decode()
DUriSource.java47 String uri = URLDecoder.decode(segment[1]); in createMediaObject()
48 String type = URLDecoder.decode(segment[2]); in createMediaObject()
DDecodeUtils.java51 public static Bitmap decode(JobContext jc, FileDescriptor fd, Options options) { in decode() method in DecodeUtils
67 public static Bitmap decode(JobContext jc, byte[] bytes, Options options) { in decode() method in DecodeUtils
68 return decode(jc, bytes, 0, bytes.length, options); in decode()
71 public static Bitmap decode(JobContext jc, byte[] bytes, int offset, in decode() method in DecodeUtils
DImageCacheRequest.java60 bitmap = MediaItem.getMicroThumbPool().decode(jc, in run()
63 bitmap = MediaItem.getThumbPool().decode(jc, in run()
DMtpImage.java87 return DecodeUtils.decode(jc, thumbnail, null); in requestImage()
/packages/apps/Exchange/exchange2/src/com/android/exchange/utility/
DUriCodec.java150 public static String decode(String s, boolean convertPlus, Charset charset) { in decode() method in UriCodec
202 public static String decode(String s) { in decode() method in UriCodec
203 return decode(s, false, Charsets.UTF_8); in decode()
/packages/apps/Browser/src/com/android/browser/
DDataUri.java49 mData = Base64.decode(mData); in DataUri()
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DQueryParameterUtils.java71 return Uri.decode(value); in getQueryParameter()
/packages/inputmethods/LatinIME/tools/maketext/src/com/android/inputmethod/latin/maketext/
DJarUtils.java47 return new JarFile(URLDecoder.decode(jarPath, "UTF-8")); in getJarFile()
/packages/apps/Settings/src/com/android/settings/vpn2/
DVpnProfile.java63 static VpnProfile decode(String key, byte[] value) { in decode() method in VpnProfile
DVpnSettings.java79 VpnProfile profile = VpnProfile.decode(savedState.getString("VpnKey"), in onCreate()
132 VpnProfile profile = VpnProfile.decode(key, in onResume()
/packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
DMimeUtility.java67 public static String decode(String s) { in decode() method in MimeUtility
75 return decode(unfold(s)); in unfoldAndDecode()
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
DUtility.java156 byte[] decoded = Base64.decode(encoded, Base64.DEFAULT); in base64Decode()
391 private static String decode(Charset charset, byte[] b) { in decode() method in Utility
395 final CharBuffer cb = charset.decode(ByteBuffer.wrap(b)); in decode()
406 return decode(UTF_8, b); in fromUtf8()
416 return decode(ASCII, b); in fromAscii()
/packages/apps/Exchange/tests/src/com/android/exchange/provider/
DExchangeDirectoryProviderTests.java123 new PackedString(Uri.decode(c.getString(GAL_RESULT_COLUMN_LOOKUP_KEY))); in testLookupKeyLogic()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DContactLookupKey.java122 String string = Uri.decode(lookupKey); in parse()
/packages/apps/Exchange/exchange2/tests/src/com/android/exchange/provider/
DExchangeDirectoryProviderTests.java123 new PackedString(Uri.decode(c.getString(GAL_RESULT_COLUMN_LOOKUP_KEY))); in testLookupKeyLogic()
/packages/apps/Email/tests/src/com/android/emailcommon/internet/
DMimeUtilityTest.java134 String result2 = MimeUtility.decode(SHORT_PLAIN); in testEfficientUnfoldAndDecode()
148 String result1 = MimeUtility.decode(SHORT_UNICODE_ENCODED); in testDecodeSimple()
/packages/apps/Gallery2/tests/src/com/android/gallery3d/util/
DProfileTest.java137 mSymbols.put(Integer.decode(fields[0]), fields[1]); in ParsedProfile()
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DHelpers.java210 String decodedContentLocation = Uri.decode(contentLocation);
228 String decodedUrl = Uri.decode(url);
/packages/apps/Calendar/src/com/android/calendar/
DGoogleCalendarUriIntentFilter.java79 byte[] decodedBytes = Base64.decode(eidParam, Base64.DEFAULT); in extractEidAndEmail()
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DTileImageView.java485 boolean decodeComplete = tile.decode(); in decodeTile()
659 boolean decode() { in decode() method in TileImageView.Tile
/packages/apps/Email/src/com/android/email/activity/
DMessageCompose.java2065 to = decode(mailToString.substring(length)); in initializeFromMailTo()
2067 to = decode(mailToString.substring(length, index)); in initializeFromMailTo()
2099 private String decode(String s) throws UnsupportedEncodingException { in decode() method in MessageCompose
2100 return URLDecoder.decode(s, "UTF-8"); in decode()
/packages/apps/Email/src/com/android/email/mail/store/
DImapStore.java563 folder = MODIFIED_UTF_7_CHARSET.decode(ByteBuffer.wrap(Utility.toAscii(name))).toString(); in decodeFolderName()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DResearchLogger.java203 CharBuffer charBuffer = Charset.defaultCharset().decode(byteBuffer); in getContents()

12