Lines Matching defs:checkAdd
217 void checkAdd(RawRangeSet RawLHS, RawRange RawRHS, RawRangeSet RawExpected) {
221 void checkAdd(RawRangeSet RawLHS, RawRangeSet RawRHS,
226 void checkAdd(RawRangeSet RawLHS, BaseType RawRHS, RawRangeSet RawExpected) {
401 this->checkAdd({}, 10, {{10, 10}});
402 this->checkAdd({{0, 5}}, 10, {{0, 5}, {10, 10}});
403 this->checkAdd({{0, 5}, {30, 40}}, 10, {{0, 5}, {10, 10}, {30, 40}});
406 this->checkAdd({}, {10, 20}, {{10, 20}});
407 this->checkAdd({{0, 5}}, {10, 20}, {{0, 5}, {10, 20}});
408 this->checkAdd({{0, 5}, {30, 40}}, {10, 20}, {{0, 5}, {10, 20}, {30, 40}});
411 this->checkAdd({{0, 5}}, {{10, 20}}, {{0, 5}, {10, 20}});
413 this->checkAdd({{0, 5}, {30, 40}}, {{10, 20}}, {{0, 5}, {10, 20}, {30, 40}});
414 this->checkAdd({{0, 5}, {30, 40}}, {{10, 20}, {50, 60}},
416 this->checkAdd({{10, 20}, {50, 60}}, {{0, 5}, {30, 40}, {70, 80}},