Searched refs:decode (Results 1 - 25 of 45) sorted by relevance

12

/packages/inputmethods/LatinIME/native/jni/tests/suggest/policyimpl/dictionary/structure/v4/content/
H A Dprobability_entry_test.cpp33 ProbabilityEntry::decode(encodedEntry, false /* hasHistoricalInfo */);
51 ProbabilityEntry::decode(encodedEntry, true /* hasHistoricalInfo */);
/packages/apps/Browser/src/com/android/browser/
H A DDataUri.java49 mData = Base64.decode(mData);
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DUriSource.java50 String uri = URLDecoder.decode(segment[1], CHARSET_UTF_8);
51 String type = URLDecoder.decode(segment[2], CHARSET_UTF_8);
H A DDecodeUtils.java61 public static Bitmap decode(JobContext jc, FileDescriptor fd, Options options) { method in class:DecodeUtils
78 public static Bitmap decode(JobContext jc, byte[] bytes, Options options) { method in class:DecodeUtils
79 return decode(jc, bytes, 0, bytes.length, options);
82 public static Bitmap decode(JobContext jc, byte[] bytes, int offset, method in class:DecodeUtils
258 Bitmap bitmap = decode(jc, data, offset, length, options);
267 Log.w(TAG, "decode fail with a given bitmap, try decode to a new bitmap");
270 return decode(jc, data, offset, length, options);
285 Bitmap bitmap = DecodeUtils.decode(jc, fileDescriptor, options);
294 Log.w(TAG, "decode fai
[all...]
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
H A DCellBroadcastConfigService.java67 int startId = Integer.decode(channelRange.substring(0, dashIndex).trim());
68 int endId = Integer.decode(channelRange.substring(dashIndex + 1).trim());
77 int messageId = Integer.decode(channelRange.trim());
125 int startId = Integer.decode(channelRange.substring(0, dashIndex).trim());
126 int endId = Integer.decode(channelRange.substring(dashIndex + 1).trim());
131 int emergencyMessageId = Integer.decode(channelRange.trim());
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DQueryParameterUtils.java71 return Uri.decode(value);
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v4/content/
H A Dlanguage_model_dict_content.cpp44 return ProbabilityEntry::decode(result.mValue, mHasHistoricalInfo);
H A Dprobability_entry.h89 static ProbabilityEntry decode(const uint64_t encodedEntry, const bool hasHistoricalInfo) { function in class:latinime::ProbabilityEntry
/packages/apps/Exchange/src/com/android/exchange/utility/
H A DUriCodec.java167 public static String decode(String s, boolean convertPlus, Charset charset) { method in class:UriCodec
219 public static String decode(String s) { method in class:UriCodec
220 return decode(s, false, Misc.UTF_8);
/packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/
H A DJarUtils.java48 return new JarFile(URLDecoder.decode(jarPath, "UTF-8"));
/packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
H A DAccountAvatarDrawable.java174 decode();
186 private void decode() { method in class:AccountAvatarDrawable
H A DContactDrawable.java267 decode();
279 private void decode() { method in class:ContactDrawable
H A DContactResolver.java149 * ContactRequests. But, we do not want to have to wait to decode all of them before updating
186 Trace.beginSection("decode");
217 // Start decode.
219 // Synchronously decode the photo bytes. We are already in a background
227 null, mCache).decode();
243 * We use progress updates to jump to the UI thread so we can decode the batch
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactLookupKey.java122 String string = Uri.decode(lookupKey);
/packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
H A DMimeUtility.java68 public static String decode(String s) { method in class:MimeUtility
76 return decode(unfold(s));
185 * TODO: Need to decode %-escaped strings, as in: filename="ab%22d".
/packages/apps/Email/tests/src/com/android/emailcommon/internet/
H A DMimeUtilityTest.java68 /** strings that use supplemental characters and really stress encode/decode */
130 * Test that decode/unfold is efficient when it can be
134 String result2 = MimeUtility.decode(SHORT_PLAIN);
145 * Test that decode is working for simple strings
148 String result1 = MimeUtility.decode(SHORT_UNICODE_ENCODED);
152 // TODO: tests for decode(String s)
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
H A DCropView.java274 private int decode(int movingEdges, float rotation) { method in class:CropView
374 mScreenCropBounds, mCropObj.isFixedAspect(), decode(mCropObj.getSelectState(), mRotation));
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
H A DImageCrop.java216 private int decode(int movingEdges, float rotation) { method in class:ImageCrop
321 decode(mCropObj.getSelectState(), mGeometry.rotation.value()));
/packages/apps/Calendar/src/com/android/calendar/
H A DGoogleCalendarUriIntentFilter.java77 byte[] decodedBytes = Base64.decode(eidParam, Base64.DEFAULT);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
H A DUtility.java303 private static String decode(Charset charset, byte[] b) { method in class:Utility
307 final CharBuffer cb = charset.decode(ByteBuffer.wrap(b));
318 return decode(UTF_8, b);
328 return decode(ASCII, b);
/packages/apps/Settings/src/com/android/settings/vpn2/
H A DVpnSettings.java111 VpnProfile profile = VpnProfile.decode(savedState.getString("VpnKey"),
581 final VpnProfile profile = VpnProfile.decode(
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DHelpers.java176 String decodedContentLocation = Uri.decode(contentLocation);
194 String decodedUrl = Uri.decode(url);
/packages/apps/Exchange/tests/src/com/android/exchange/provider/
H A DExchangeDirectoryProviderTests.java123 new PackedString(Uri.decode(c.getString(GAL_RESULT_COLUMN_LOOKUP_KEY)));
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/
H A DMessageParser.java346 return Base64.decode(s, Base64.URL_SAFE);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DInstallShortcutReceiver.java130 byte[] iconArray = Base64.decode(iconBase64, Base64.DEFAULT);

Completed in 737 milliseconds

12