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

123

/packages/apps/TV/src/com/android/tv/tuner/exoplayer/ffmpeg/
H A DIFfmpegDecoder.aidl24 void decode(long timeUs, in byte[] sample);
H A DFfmpegDecoderClient.java36 * The class connects {@link FfmpegDecoderService} to decode audio samples.
177 public synchronized void decode(SampleHolder sampleHolder) { method in class:FfmpegDecoderClient
184 mService.decode(sampleHolder.timeUs, sampleBytes);
H A DFfmpegDecoderService.java140 public void decode(long timeUs, byte[] sample) { method in class:FfmpegDecoderService.FfmpegDecoder
142 // If minijail is not setup, we don't run decode for better security.
145 mDecoder.decode(timeUs, sample);
/packages/inputmethods/LatinIME/native/jni/tests/dictionary/structure/v4/content/
H A Dprobability_entry_test.cpp33 ProbabilityEntry::decode(encodedEntry, false /* hasHistoricalInfo */);
50 ProbabilityEntry::decode(encodedEntry, true /* hasHistoricalInfo */);
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/utils/
H A DUtility.java52 return decode(ASCII, b);
65 private static String decode(Charset charset, byte[] b) { method in class:Utility
69 final CharBuffer cb = charset.decode(ByteBuffer.wrap(b));
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
H A DCellBroadcastChannelManager.java92 mStartId = Integer.decode(channelRange.substring(0, dashIndex).trim());
93 mEndId = Integer.decode(channelRange.substring(dashIndex + 1).trim());
96 mStartId = mEndId = Integer.decode(channelRange);
/packages/apps/TV/src/com/android/tv/tuner/exoplayer/audio/
H A DAudioDecoder.java33 public abstract void decode(SampleHolder sampleHolder); method in class:AudioDecoder
42 * Clear previous decode state if any. Prepares to decode samples of the specified encoding.
43 * This method should be called before using decode.
/packages/apps/Camera2/src/com/android/camera/captureintent/
H A DPictureDecoder.java33 public static Bitmap decode( method in class:PictureDecoder
/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.java60 public static Bitmap decode(JobContext jc, FileDescriptor fd, Options options) { method in class:DecodeUtils
77 public static Bitmap decode(JobContext jc, byte[] bytes, Options options) { method in class:DecodeUtils
78 return decode(jc, bytes, 0, bytes.length, options);
81 public static Bitmap decode(JobContext jc, byte[] bytes, int offset, method in class:DecodeUtils
257 Bitmap bitmap = decode(jc, data, offset, length, options);
266 Log.w(TAG, "decode fail with a given bitmap, try decode to a new bitmap");
269 return decode(jc, data, offset, length, options);
284 Bitmap bitmap = DecodeUtils.decode(jc, fileDescriptor, options);
293 Log.w(TAG, "decode fai
[all...]
/packages/apps/TV/src/com/android/exoplayer2/ext/ffmpeg/
H A DFfmpegAudioDecoder.java68 public void decode(long timeUs, byte[] sample) { method in class:FfmpegAudioDecoder
74 mDecoder.decode(mInputBuffer, mOutputBuffer, !mStarted);
91 * Clear previous decode state if any. Prepares to decode samples of the specified encoding.
92 * This method should be called before using decode.
/packages/apps/TV/src/com/android/tv/data/
H A DWatchedHistoryManager.java64 WatchedRecord record = decode(
132 decode(mSharedPreferences.getString(getSharedPreferencesKey(i),
140 WatchedRecord record = decode(mSharedPreferences.getString(
225 return decode(mSharedPreferences.getString(getSharedPreferencesKey(index), null));
272 WatchedRecord decode(String encodedString) { method in class:WatchedHistoryManager
/packages/apps/TV/libs/
H A Dexoplayer_v2_ext_ffmpeg.jar ... .android.exoplayer2.ext.ffmpeg.FfmpegDecoderException decode (com.google.android.exoplayer2.decoder. ...
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DQueryParameterUtils.java71 return Uri.decode(value);
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/content/
H A Dlanguage_model_dict_content.cpp72 ProbabilityEntry::decode(result.mValue, mHasHistoricalInfo);
128 return ProbabilityEntry::decode(result.mValue, mHasHistoricalInfo);
181 ProbabilityEntry::decode(entry.value(), mHasHistoricalInfo);
340 ProbabilityEntry::decode(entry.value(), mHasHistoricalInfo);
438 ProbabilityEntry::decode(entry.value(), mHasHistoricalInfo);
H A Dprobability_entry.h116 static ProbabilityEntry decode(const uint64_t encodedEntry, const bool hasHistoricalInfo) { function in class:latinime::ProbabilityEntry
/packages/apps/Settings/src/com/android/settings/fuelgauge/anomaly/
H A DAnomalyDetectionPolicy.java174 .map(String::trim).map(Uri::decode).collect(Collectors.toSet());
/packages/apps/Settings/tests/robotests/src/com/android/settings/core/codeinspection/
H A DClassScanner.java56 loadClassFromDirectory(new File(URLDecoder.decode(url.getPath(), "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/services/Car/service/src/com/android/car/
H A DICarImpl.java459 propId = Integer.decode(property);
460 zoneId = Integer.decode(zone);
481 propId = Integer.decode(property);
482 eventValue = Integer.decode(value);
/packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
H A DAbstractAvatarDrawable.java199 decode();
203 private void decode() { method in class:AbstractAvatarDrawable
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
H A Dencodingstest.cpp266 static unsigned inline decode(unsigned* state, unsigned* codep, unsigned byte) { function
281 // decode(&state, &codepoint, *s++);
301 if (!decode(&state, &decodedCodepoint, (unsigned char)*s)) {
358 if (!decode(&state, &decodedCodepoint, (unsigned char)*s))
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
H A DLaunchConversationActivity.java114 return URLDecoder.decode(p.substring(5), "UTF-8");
/packages/apps/Messaging/src/com/android/messaging/util/
H A DBuglePrefsImpl.java77 return byteValue == null ? null : Base64.decode(byteValue, Base64.DEFAULT);
/packages/apps/TV/tests/unit/src/com/android/tv/data/
H A DWatchedHistoryManagerTest.java125 WatchedRecord sameRecord = mWatchedHistoryManager.decode(

Completed in 1620 milliseconds

123