Home
last modified time | relevance | path

Searched refs:teststrings (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Lib/test/
Dstring_tests.py142 teststrings = set()
148 teststrings.add(''.join(entry))
149 teststrings = [self.fixtype(ts) for ts in teststrings]
150 for i in teststrings:
152 for j in teststrings:
203 teststrings = set()
209 teststrings.add(''.join(entry))
210 teststrings = [self.fixtype(ts) for ts in teststrings]
211 for i in teststrings:
212 for j in teststrings:
[all …]
/third_party/ffmpeg/libavfilter/tests/
Dformats.c104 const char *teststrings[] ={ in main() local
134 for ( i = 0; i<FF_ARRAY_ELEMS(teststrings); i++) { in main()
138 ret = ff_parse_channel_layout(&layout, &count, teststrings[i], NULL); in main()
140 … ret ? -1 : 0, layout.order == AV_CHANNEL_ORDER_NATIVE ? layout.u.mask : 0, count, teststrings[i]); in main()