Home
last modified time | relevance | path

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

/third_party/boost/libs/container/test/
Dset_test.cpp349 const set_t &cset1 = set1; in test_heterogeneous_lookups() local
369 if(*cset1.find(find_me) != 2) in test_heterogeneous_lookups()
379 if(cset1.count(find_me) != 1) in test_heterogeneous_lookups()
389 if(!cset1.contains(find_me)) in test_heterogeneous_lookups()
399 if(*cset1.lower_bound(find_me) != 2) in test_heterogeneous_lookups()
409 if(*cset1.upper_bound(find_me) != 3) in test_heterogeneous_lookups()
419 if(*cset1.equal_range(find_me).second != 3) in test_heterogeneous_lookups()
Dflat_set_test.cpp500 const set_t &cset1 = set1; in test_heterogeneous_lookups() local
520 if(*cset1.find(find_me) != 2) in test_heterogeneous_lookups()
530 if(cset1.count(find_me) != 1) in test_heterogeneous_lookups()
540 if(!cset1.contains(find_me)) in test_heterogeneous_lookups()
550 if(*cset1.lower_bound(find_me) != 2) in test_heterogeneous_lookups()
560 if(*cset1.upper_bound(find_me) != 3) in test_heterogeneous_lookups()
570 if(*cset1.equal_range(find_me).second != 3) in test_heterogeneous_lookups()
/third_party/python/Lib/test/test_email/
Dtest_email.py3243 cset1 = Charset()
3245 eq(cset1, 'us-ascii')
3246 eq(cset1, 'US-ASCII')
3247 eq(cset1, 'Us-AsCiI')
3248 eq('us-ascii', cset1)
3249 eq('US-ASCII', cset1)
3250 eq('Us-AsCiI', cset1)
3251 ne(cset1, 'usascii')
3252 ne(cset1, 'USASCII')
3253 ne(cset1, 'UsAsCiI')
[all …]