Lines Matching defs:Subset
32 typedef IntegersSubsetGeneric<Int> Subset;
33 typedef IntegersSubsetMapping<unsigned,Subset,Int> Mapping;
42 // Initialize Subset as union of three pairs:
47 Subset TheSubset(Ranges);
61 // Test when subset contains the only item.
66 Subset TheSingleNumber(Ranges);
72 Subset NotASingleNumber(Ranges);
76 // Test when subset contains items that are not a ranges but
83 Subset WithSingleNumberItems(Ranges);
88 // Test size of subset. Note subset itself may be not optimized (improper),
89 // so it may contain duplicates, and the size of subset { {0, 9} {5, 9} }
96 Subset NotOptimizedSubset(Ranges);
101 // getSingleValue(idx) method represents subset as flat numbers collection,
102 // so subset { {0, 3}, {8, 10} } will represented as array
109 Subset OneMoreSubset(Ranges);