Home
last modified time | relevance | path

Searched defs:decoded (Results 1 – 25 of 189) sorted by relevance

12345678

/external/rust/crates/idna/tests/
Dpunycode_tests.json4 "decoded": "", string
9 "decoded": "Bach", string
14 "decoded": "\u00FC", string
19 "decoded": "\u00FC\u00EB\u00E4\u00F6\u2665", string
24 "decoded": "b\u00FCcher", string
29 … "decoded": "Willst du die Bl\u00FCthe des fr\u00FChen, die Fr\u00FCchte des sp\u00E4teren Jahres", string
34 …"decoded": "\u0644\u064A\u0647\u0645\u0627\u0628\u062A\u0643\u0644\u0645\u0648\u0634\u0639\u0631\u… string
39 "decoded": "\u4ED6\u4EEC\u4E3A\u4EC0\u4E48\u4E0D\u8BF4\u4E2d\u6587", string
44 "decoded": "\u4ED6\u5011\u7232\u4EC0\u9EBD\u4E0D\u8AAA\u4E2D\u6587", string
49 "decoded": "Pro\u010Dprost\u011Bnemluv\u00ED\u010Desky", string
[all …]
/external/guava/guava-tests/test/com/google/common/io/
DBaseEncodingTest.java358 BaseEncoding encoding, String decoded, String encoded) { in testEncodingWithCasing()
360 testEncodingWithSeparators(encoding.upperCase(), decoded, Ascii.toUpperCase(encoded)); in testEncodingWithCasing() local
361 testEncodingWithSeparators(encoding.lowerCase(), decoded, Ascii.toLowerCase(encoded)); in testEncodingWithCasing() local
365 BaseEncoding encoding, String decoded, String encoded) { in testEncodingWithSeparators()
373 decoded, in testEncodingWithSeparators() local
379 private static void testEncoding(BaseEncoding encoding, String decoded, String encoded) { in testEncoding()
384 private static void testEncodes(BaseEncoding encoding, String decoded, String encoded) { in testEncodes()
389 BaseEncoding encoding, String decoded, int offset, int len, String encoded) { in testEncodesWithOffset()
393 private static void testDecodes(BaseEncoding encoding, String encoded, String decoded) { in testDecodes()
398 private static void testDecodesByBytes(BaseEncoding encoding, String encoded, byte[] decoded) { in testDecodesByBytes()
[all …]
/external/guava/android/guava-tests/test/com/google/common/io/
DBaseEncodingTest.java358 BaseEncoding encoding, String decoded, String encoded) { in testEncodingWithCasing()
360 testEncodingWithSeparators(encoding.upperCase(), decoded, Ascii.toUpperCase(encoded)); in testEncodingWithCasing() local
361 testEncodingWithSeparators(encoding.lowerCase(), decoded, Ascii.toLowerCase(encoded)); in testEncodingWithCasing() local
365 BaseEncoding encoding, String decoded, String encoded) { in testEncodingWithSeparators()
373 decoded, in testEncodingWithSeparators() local
379 private static void testEncoding(BaseEncoding encoding, String decoded, String encoded) { in testEncoding()
384 private static void testEncodes(BaseEncoding encoding, String decoded, String encoded) { in testEncodes()
389 BaseEncoding encoding, String decoded, int offset, int len, String encoded) { in testEncodesWithOffset()
393 private static void testDecodes(BaseEncoding encoding, String encoded, String decoded) { in testDecodes()
398 private static void testDecodesByBytes(BaseEncoding encoding, String encoded, byte[] decoded) { in testDecodesByBytes()
[all …]
/external/rust/crates/flate2/tests/
Dempty-read.rs14 let mut decoded = Vec::new(); in deflate_decoder_empty_read() localVariable
27 let mut decoded = Vec::new(); in deflate_encoder_empty_read() localVariable
40 let mut decoded = Vec::new(); in gzip_decoder_empty_read() localVariable
53 let mut decoded = Vec::new(); in gzip_encoder_empty_read() localVariable
66 let mut decoded = Vec::new(); in zlib_decoder_empty_read() localVariable
79 let mut decoded = Vec::new(); in zlib_encoder_empty_read() localVariable
/external/python/cpython3/Modules/
D_codecsmodule.c164 PyObject *codec_tuple(PyObject *decoded, in codec_tuple()
185 PyObject *decoded = PyBytes_DecodeEscape(data->buf, data->len, in _codecs_escape_decode_impl() local
268 PyObject *decoded = PyUnicode_DecodeUTF7Stateful(data->buf, data->len, in _codecs_utf_7_decode_impl() local
288 PyObject *decoded = PyUnicode_DecodeUTF8Stateful(data->buf, data->len, in _codecs_utf_8_decode_impl() local
310 PyObject *decoded = PyUnicode_DecodeUTF16Stateful(data->buf, data->len, in _codecs_utf_16_decode_impl() local
332 PyObject *decoded = PyUnicode_DecodeUTF16Stateful(data->buf, data->len, in _codecs_utf_16_le_decode_impl() local
354 PyObject *decoded = PyUnicode_DecodeUTF16Stateful(data->buf, data->len, in _codecs_utf_16_be_decode_impl() local
384 PyObject *decoded = PyUnicode_DecodeUTF16Stateful(data->buf, data->len, in _codecs_utf_16_ex_decode_impl() local
408 PyObject *decoded = PyUnicode_DecodeUTF32Stateful(data->buf, data->len, in _codecs_utf_32_decode_impl() local
430 PyObject *decoded = PyUnicode_DecodeUTF32Stateful(data->buf, data->len, in _codecs_utf_32_le_decode_impl() local
[all …]
/external/tensorflow/tensorflow/lite/experimental/acceleration/mini_benchmark/
Dlibjpeg_decoder_test.cc64 unsigned char decoded[kDecodedSize]; in TEST() local
86 unsigned char decoded[kDecodedSize]; in TEST() local
126 unsigned char decoded[decoded_size]; in TEST() local
146 unsigned char decoded[kDecodedSize]; in TEST() local
187 std::vector<unsigned char> decoded(decoded_size); in TEST() local
210 unsigned char decoded[300 * 250 * 4]; in TEST() local
230 unsigned char decoded[kDecodedSize]; in TEST() local
266 unsigned char decoded[kDecodedSize / 4]; in TEST() local
306 unsigned char decoded[kDecodedSize * 4]; in TEST() local
339 std::vector<unsigned char> decoded(kImageSize); in TEST() local
[all …]
/external/opencensus-java/api/src/test/java/io/opencensus/trace/
DLowerCaseBase16EncodingTest.java70 private static void testEncoding(String decoded, String encoded) { in testEncoding()
75 private static void testEncodes(String decoded, String encoded) { in testEncodes()
80 private static void testDecodes(String encoded, String decoded) { in testDecodes()
/external/rust/crates/ciborium/tests/
Dcodec.rs303 let decoded: V = from_reader(&bytes[..]).unwrap(); localVariable
308 let decoded: Value = from_reader(&bytes[..]).unwrap(); localVariable
312 let decoded: V = value.deserialized().unwrap(); localVariable
/external/webrtc/modules/audio_coding/codecs/ilbc/
Dilbc.c145 int16_t* decoded, in WebRtcIlbcfix_Decode()
199 int16_t* decoded, in WebRtcIlbcfix_Decode20Ms()
228 int16_t* decoded, in WebRtcIlbcfix_Decode30Ms()
255 int16_t* decoded, in WebRtcIlbcfix_DecodePlc()
271 int16_t* decoded, in WebRtcIlbcfix_NetEqPlc()
Daudio_decoder_ilbc.cc39 int16_t* decoded, in DecodeInternal()
49 size_t AudioDecoderIlbcImpl::DecodePlc(size_t num_frames, int16_t* decoded) { in DecodePlc()
/external/python/cpython3/Modules/cjkcodecs/
D_codecs_jp.c88 Py_UCS4 decoded; in DECODER() local
245 Py_UCS4 code, decoded; in DECODER() local
386 Py_UCS4 decoded; in DECODER() local
512 Py_UCS4 decoded; in DECODER() local
675 Py_UCS4 code, decoded; in DECODER() local
D_codecs_cn.c100 Py_UCS4 decoded; in DECODER() local
161 Py_UCS4 decoded; in DECODER() local
269 Py_UCS4 decoded; in DECODER() local
414 Py_UCS4 decoded; in DECODER() local
D_codecs_tw.c49 Py_UCS4 decoded; in DECODER() local
108 Py_UCS4 decoded; in DECODER() local
D_codecs_kr.c111 Py_UCS4 decoded; in DECODER() local
208 Py_UCS4 decoded; in DECODER() local
365 Py_UCS4 decoded; in DECODER() local
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
DDecodeJob.java108 Resource<T> decoded = loadFromCache(resultKey.getOriginalKey()); in decodeSourceFromCache() local
127 Resource<T> decoded = decodeSource(); in decodeFromSource() local
136 private Resource<Z> transformEncodeAndTranscode(Resource<T> decoded) { in transformEncodeAndTranscode()
166 Resource<T> decoded = null; in decodeSource() local
184 final Resource<T> decoded; in decodeFromSourceData() local
230 private Resource<T> transform(Resource<T> decoded) { in transform()
/external/perfetto/src/traced/probes/android_log/
Dandroid_log_data_source_unittest.cc223 const auto& decoded = event_packet.android_log().events(); in TEST_F() local
275 const auto& decoded = event_packet.android_log().events(); in TEST_F() local
297 const auto& decoded = event_packet.android_log().events(); in TEST_F() local
321 const auto& decoded = event_packet.android_log().events(); in TEST_F() local
405 const auto& decoded = event_packet.android_log().events(); in TEST_F() local
/external/rust/crates/base64/src/read/
Ddecoder_tests.rs88 let mut decoded = Vec::new(); in handles_short_read_from_delegate() localVariable
123 let mut decoded = Vec::new(); in read_in_short_increments() localVariable
154 let mut decoded = Vec::new(); in read_in_short_increments_with_short_delegate_reads() localVariable
190 let mut decoded = Vec::new(); in reports_invalid_last_symbol_correctly() localVariable
240 let mut decoded = Vec::new(); in reports_invalid_byte_correctly() localVariable
/external/webrtc/api/audio_codecs/
Daudio_decoder.cc87 int16_t* decoded, in Decode()
104 int16_t* decoded, in DecodeRedundant()
120 int16_t* decoded, in DecodeRedundantInternal()
130 size_t AudioDecoder::DecodePlc(size_t num_frames, int16_t* decoded) { in DecodePlc()
/external/webrtc/logging/rtc_event_log/encoder/
Dvar_int.cc45 uint64_t decoded = 0; in DecodeVarInt() local
63 uint64_t decoded = 0; in DecodeVarInt() local
/external/rust/crates/base64/tests/
Dtests.rs126 let decoded = decode(&s).unwrap(); in roundtrip_decode_trailing_10_bytes() localVariable
170 let decoded = decode_config(&buf, STANDARD_NO_PAD).unwrap(); in encode_config_slice_can_use_inline_buffer() localVariable
177 let decoded = decode_config(&buf, STANDARD).unwrap(); in encode_config_slice_can_use_inline_buffer() localVariable
/external/webrtc/modules/audio_coding/codecs/isac/
Daudio_decoder_isac_t_impl.h42 int16_t* decoded, in DecodeInternal()
58 size_t AudioDecoderIsacT<T>::DecodePlc(size_t num_frames, int16_t* decoded) { in DecodePlc()
/external/webrtc/modules/audio_coding/codecs/g711/
Dg711_interface.c36 int16_t* decoded, in WebRtcG711_DecodeA()
47 int16_t* decoded, in WebRtcG711_DecodeU()
Daudio_decoder_pcm.cc40 int16_t* decoded, in DecodeInternal()
75 int16_t* decoded, in DecodeInternal()
/external/python/cpython2/Modules/
D_codecsmodule.c240 PyObject *decoded = NULL; in utf_7_decode() local
263 PyObject *decoded = NULL; in utf_8_decode() local
287 PyObject *decoded; in utf_16_decode() local
310 PyObject *decoded = NULL; in utf_16_le_decode() local
334 PyObject *decoded = NULL; in utf_16_be_decode() local
391 PyObject *decoded; in utf_32_decode() local
414 PyObject *decoded; in utf_32_le_decode() local
437 PyObject *decoded; in utf_32_be_decode() local
582 PyObject *decoded = NULL; in mbcs_decode() local
/external/auto/value/src/test/java/com/google/auto/value/processor/
DTypeEncoderTest.java89 String decoded = in assertTypeImportsAndSpellings() local
297 String decoded = in testSimplifyMultipleBounds() local
325 String decoded = in testOuterParameterizedInnerNot() local
347 String decoded = in testOuterParameterizedInnerAlso() local

12345678