Home | History | Annotate | Download | only in dm

Lines Matching defs:gms

63 DEFINE_bool(gms, true, "Run GMs?");
64 DEFINE_bool(benches, true, "Run benches? Does not run GMs-as-benches.");
96 static void kick_off_gms(const SkTDArray<GMRegistry::Factory>& gms,
103 tasks->add(SkNEW_ARGS(DM::type, (name, reporter, tasks, gms[i], ## __VA_ARGS__))); \
105 for (int i = 0; i < gms.count(); i++) {
235 SkTDArray<GMRegistry::Factory> gms;
238 append_matching_factories<GM>(GMRegistry::Head(), &gms);
260 SkDebugf("(%d GMs, %d benches) x %d configs, %d tests\n",
261 gms.count(), benches.count(), configs.count(), tests.count());
264 kick_off_gms(gms, configs, *expectations, &reporter, &tasks);