Lines Matching refs:CoderInfo
17 int test( CoderInfo::MatchType isReadable_, in test()
18 CoderInfo::MatchType isWritable_, in test()
19 CoderInfo::MatchType isMultiFrame_ ) in test()
22 list<CoderInfo> coderList; in test()
24 list<CoderInfo>::iterator entry = coderList.begin(); in test()
28 if ( isReadable_ != CoderInfo::AnyMatch && in test()
29 (( entry->isReadable() && isReadable_ != CoderInfo::TrueMatch ) || in test()
30 ( !entry->isReadable() && isReadable_ != CoderInfo::FalseMatch )) ) in test()
42 if ( isWritable_ != CoderInfo::AnyMatch && in test()
43 (( entry->isWritable() && isWritable_ != CoderInfo::TrueMatch ) || in test()
44 ( !entry->isWritable() && isWritable_ != CoderInfo::FalseMatch )) ) in test()
56 if ( isMultiFrame_ != CoderInfo::AnyMatch && in test()
57 (( entry->isMultiFrame() && isMultiFrame_ != CoderInfo::TrueMatch ) || in test()
58 ( !entry->isMultiFrame() && isMultiFrame_ != CoderInfo::FalseMatch )) ) in test()
85 CoderInfo coderInfo("GIF"); in main()
104 failures += test(CoderInfo::AnyMatch,CoderInfo::AnyMatch,CoderInfo::AnyMatch); in main()
105 failures += test(CoderInfo::FalseMatch,CoderInfo::FalseMatch,CoderInfo::FalseMatch); in main()
107 failures += test(CoderInfo::TrueMatch,CoderInfo::AnyMatch,CoderInfo::AnyMatch); in main()
108 failures += test(CoderInfo::FalseMatch,CoderInfo::AnyMatch,CoderInfo::AnyMatch); in main()
110 failures += test(CoderInfo::AnyMatch,CoderInfo::TrueMatch,CoderInfo::AnyMatch); in main()
111 failures += test(CoderInfo::AnyMatch,CoderInfo::FalseMatch,CoderInfo::AnyMatch); in main()
113 failures += test(CoderInfo::AnyMatch,CoderInfo::AnyMatch,CoderInfo::TrueMatch); in main()
114 failures += test(CoderInfo::AnyMatch,CoderInfo::AnyMatch,CoderInfo::FalseMatch); in main()