Lines Matching refs:shortName
209 * Assemble shortNamePlusConfig from (surprise!) shortName and configName.
212 * For example, shortName "selftest1" and configName "8888" could be assembled into
215 SkString make_shortname_plus_config(const char *shortName, const char *configName) {
218 name.append(shortName);
220 name.appendf("%s%c%s", configName, SkPATH_SEPARATOR, shortName);
222 name.appendf("%s_%s", shortName, configName);
231 const char *shortName,
235 SkString filename = make_shortname_plus_config(shortName, configName);
246 const char *shortName,
254 filename.append(shortName);
261 return make_filename(path, shortName, configName, renderModeDescriptor,
794 * @param shortName name of test, e.g. "selftest1"
806 const char *shortName, const char *configName,
810 SkString shortNamePlusConfig = make_shortname_plus_config(shortName, configName);
823 SkString path = make_bitmap_filename(fMissingExpectationsPath, shortName,
842 SkString path = make_bitmap_filename(fMismatchPath, shortName, configName,
983 * @param shortName test name, e.g. "selftest1"
990 const char *shortName, const char *configName, const char *renderModeDescriptor,
1003 errors.add(compare_to_expectations(expectations, actualBitmapAndDigest, shortName,
1005 SkString shortNamePlusConfig = make_shortname_plus_config(shortName, configName);
1600 // just the shortName). I think this is actually an
2329 const char* shortName = gm->getName();
2331 if (SkCommandLineFlags::ShouldSkip(FLAGS_match, shortName)) {
2337 SkDebugf("%sdrawing... %s [%d %d]\n", moduloStr.c_str(), shortName,