/external/python/cpython3/Lib/email/ |
quoprimime.py | 162 quoted-printable character "=" appended to them, so the decoded text will 239 # decoded string with string concatenation, which could be done much more 241 decoded = '' 246 decoded += eol 254 decoded += c 263 decoded += unquote(line[i:i+3]) 267 decoded += c 271 decoded += eol 273 if encoded[-1] not in '\r\n' and decoded.endswith(eol): 274 decoded = decoded[:-1 [all...] |
/external/python/cpython3/Lib/json/ |
__init__.py | 285 result of any object literal decoded with an ordered list of pairs. The 310 result of any object literal decoded with an ordered list of pairs. The 316 of every JSON float to be decoded. By default this is equivalent to 321 of every JSON int to be decoded. By default this is equivalent to
|
/external/webrtc/webrtc/base/ |
stringencode_unittest.cc | 23 unsigned long decoded; member in struct:rtc::Utf8Test 43 unsigned long result = (kTests[i].enclen == 0) ? 0 : kTests[i].decoded; 46 if (kTests[i].decoded == 0) { 55 kTests[i].decoded));
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/ReleaseTest-API/ |
ReleaseTest-API.cc | 62 int16_t decoded[MAX_FRAMESAMPLES << 1]; local 806 stream_len, decoded, speechType); 816 stream_len, decoded, speechType); 848 /* Write decoded speech frame to file */ 850 if (fwrite(decoded, sizeof(int16_t), declen, outp) !=
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
audio_decoder_impl.cc | 71 int16_t* decoded,
|
audio_decoder_unittest.cc | 185 std::vector<int16_t> decoded; local 196 decoded.resize((processed_samples + frame_size_) * channels_, 0); 201 &decoded[processed_samples * channels_], &speech_type); 213 input, decoded, processed_samples, channels_, tolerance, delay); 216 decoded, processed_samples, channels_, channel_diff_tolerance); 218 MseInputOutput(input, decoded, processed_samples, channels_, delay), 223 // decode. Verifies that the decoded result is the same.
|
/external/webrtc/webrtc/modules/video_coding/test/ |
plotReceiveTrace.m | 6 %DEBUG ; ( 8:32:33:375 | 0) VIDEO CODING:-1 ; 5260; Frame decoded: timeStamp=1870511259 decTime=0 maxDecTime=0, at 19965 82 [p, count] = sscanf(message, 'Frame decoded: timeStamp=%lu decTime=%d maxDecTime=%lu, at %lu');
|
/external/webrtc/webrtc/tools/barcode_tools/ |
barcode_decoder.py | 71 The decoding results in a frame_xxxx.txt file for every successfully decoded 72 barcode. This file contains the decoded barcode as 12-digit string (UPC-A 110 print 'Barcode in %s cannot be decoded.' % file_name 124 (effectively the frame number) and barcode is the decoded barcode. The frames 156 """Reads the decoded barcode for a .txt file. 161 (string): The decoded barcode. 170 """Check weather the UPC-A barcode was decoded correctly. 173 it to the check digit that was decoded. 178 (bool): True if the barcode was decoded correctly. 246 help='The YUV file to be decoded. Default: %default' [all...] |
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/ |
hpack_parser.cc | 1246 uint8_t decoded[3]; local 1343 uint8_t decoded[2]; local [all...] |
/build/soong/android/ |
api_levels.go | 85 // * Codenames are decoded.
|
/cts/tests/tests/media/src/android/media/cts/ |
DecoderTestXheAac.java | 386 // Energy drops within the decoded stream are checked by checkEnergyUSAC() within every 454 * @param decSamples the decoded audio samples to be tested 504 // expected number of decoded audio samples 614 // check if the LFE is decoded properly 618 assertTrue(String.format("less samples decoded than expected: %d < %d", [all...] |
/external/zopfli/src/zopflipng/lodepng/ |
lodepng_util.cpp | 43 // Listing chunks is based on the original file, not the decoded png info. 347 int decode(bool& decoded, unsigned long& result, size_t& treepos, unsigned long bit) const 352 decoded = (result < numcodes); 353 treepos = decoded ? 0 : result - numcodes; 397 bool decoded; unsigned long ct; local 401 error = codetree.decode(decoded, ct, treepos, readBitFromStream(bp, in)); 403 if(decoded) return ct;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/ |
tokenizer.c | 770 PyObject *enc, *sysstdin, *decoded, *utf8;
local 786 decoded = PyUnicode_Decode(*inp, strlen(*inp), encoding, NULL);
787 if (decoded == NULL)
790 utf8 = PyUnicode_AsEncodedString(decoded, "utf-8", NULL);
791 Py_DECREF(decoded);
[all...] |
/external/icu/icu4c/source/test/intltest/ |
csdetest.cpp | 189 UChar *decoded = NULL; local 217 decoded = NEW_ARRAY(UChar, testLength); 218 dLength = ucsdet_getUChars(matches[0], decoded, testLength, &status); 220 if (testString.compare(decoded, dLength) != 0) { 225 if(testString[i] != decoded[i]) { 234 DELETE_ARRAY(decoded); [all...] |
/external/cldr/tools/java/org/unicode/cldr/draft/ |
CharacterListCompressor.java | 183 List<Interval> decoded = getStrRangeListFromValueTypePairs(pairs); local 185 return decoded;
|
/external/owasp/sanitizer/src/main/org/owasp/html/ |
CssTokens.java | 64 * embedded escape sequences decoded, except that .</li> 782 int decoded = readCodepoint(); 783 if (decoded == '\\') { 784 decoded = consumeAndDecodeEscapeSequence(); 789 if (decoded >= 0 && isIdentPart(decoded)) { 791 && '0' <= decoded && decoded <= '9') { 800 sb.appendCodePoint(decoded); 801 last = decoded; [all...] |
/cts/tests/video/src/android/video/cts/ |
VideoEncoderDecoderTest.java | 119 // check this many pixels per each decoded frame 1165 YUVValue decoded = new YUVValue(); local [all...] |
/external/openssh/ |
sshkey.c | 3198 struct sshbuf *encoded = NULL, *decoded = NULL; local [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/charsetdet/ |
TestCharsetDetector.java | 449 String decoded = m.getString(); local 451 if (! testString.equals(decoded)) { 455 decoded = stringFromReader(m.getReader()); 457 if (! testString.equals(decoded)) { [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/charsetdet/ |
TestCharsetDetector.java | 446 String decoded = m.getString(); local 448 if (! testString.equals(decoded)) { 452 decoded = stringFromReader(m.getReader()); 454 if (! testString.equals(decoded)) { [all...] |
/external/python/cpython2/Lib/test/ |
test_audioop.py | 247 decoded = audioop.alaw2lin(encoded, w) 248 self.assertEqual(audioop.lin2alaw(decoded, w), encoded) 270 decoded = audioop.ulaw2lin(encoded, w) 271 self.assertEqual(audioop.lin2ulaw(decoded, w), encoded)
|
/external/python/cpython3/Modules/_io/ |
winconsoleio.c | 75 PyObject *decoded; local 78 if (!PyUnicode_FSDecoder(path_or_fd, &decoded)) { 82 decoded_wstr = PyUnicode_AsWideCharString(decoded, NULL); 83 Py_CLEAR(decoded); [all...] |
/external/syzkaller/vendor/golang.org/x/oauth2/jws/ |
jws.go | 124 decoded, err := base64.RawURLEncoding.DecodeString(s[1]) 129 err = json.NewDecoder(bytes.NewBuffer(decoded)).Decode(c)
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
codec.h | 39 void WebRtcIsacfix_DecodePlcImpl(int16_t* decoded,
|
/external/skia/tests/ |
ImageTest.cpp | 164 sk_sp<SkImage> decoded(SkImage::MakeFromEncoded(origEncoded)); 165 if (!decoded) { 169 REPORTER_ASSERT(reporter, decoded); 170 assert_equal(reporter, image, nullptr, decoded.get()); 174 decoded = SkImage::MakeFromEncoded(origEncoded, &ir); 175 REPORTER_ASSERT(reporter, decoded); 176 assert_equal(reporter, image, &ir, decoded.get()); [all...] |