Home
last modified time | relevance | path

Searched refs:decode_str (Results 1 – 3 of 3) sorted by relevance

/third_party/ffmpeg/libavformat/
Did3v2.c242 static int decode_str(AVFormatContext *s, AVIOContext *pb, int encoding, in decode_str() function
348 if (decode_str(s, pb, encoding, &dst, &taglen) < 0) { in read_ttag()
361 if (decode_str(s, pb, encoding, &dst, &taglen) < 0) { in read_ttag()
410 if (decode_str(s, pb, encoding, &descriptor, &taglen) < 0) in read_uslt()
413 if (decode_str(s, pb, encoding, &text, &taglen) < 0) in read_uslt()
453 if (decode_str(s, pb, encoding, &dst, &taglen) < 0) { in read_comment()
466 if (decode_str(s, pb, encoding, &dst, &taglen) < 0) { in read_comment()
506 if (decode_str(s, pb, ID3v2_ENCODING_ISO8859, &geob_data->mime_type, in read_geobtag()
512 if (decode_str(s, pb, encoding, &geob_data->file_name, &taglen) < 0 || in read_geobtag()
517 if (decode_str(s, pb, encoding, &geob_data->description, &taglen) < 0 || in read_geobtag()
[all …]
/third_party/protobuf/src/google/protobuf/stubs/
Dstrutil_unittest.cc445 string decode_str; in TEST() local
483 decode_str.clear(); in TEST()
485 StringPiece(encode_buffer, cypher_length), &decode_str)); in TEST()
488 EXPECT_EQ(base64_tests[i].plain_length, decode_str.length()); in TEST()
491 EXPECT_EQ(plaintext, decode_str); in TEST()
/third_party/python/Parser/
Dtokenizer.c645 decode_str(const char *input, int single, struct tok_state *tok) in decode_str() function
711 decoded = decode_str(str, exec_input, tok); in PyTokenizer_FromString()