Lines Matching refs:success
40 * @param success True if the copy succeeded.
46 const bool success, const SkBitmap& src, const SkBitmap& dst,
48 if (success) {
150 bool success = src.deepCopyTo(&dst, gPairs[j].fConfig);
152 if (success != expected) {
156 boolStr(success));
161 if (success != canSucceed) {
165 gConfigName[i], gConfigName[j], boolStr(success),
170 TestIndividualCopy(reporter, gPairs[j].fConfig, success, src, dst);
175 success = subset.copyTo(&subsetCopy, gPairs[j].fConfig);
176 REPORTER_ASSERT(reporter, success == expected);
177 REPORTER_ASSERT(reporter, success == canSucceed);
178 TestIndividualCopy(reporter, gPairs[j].fConfig, success, subset, subsetCopy,
183 success = subset.deepCopyTo(&subsetCopy, gPairs[j].fConfig);
184 REPORTER_ASSERT(reporter, success == expected);
185 REPORTER_ASSERT(reporter, success == canSucceed);
186 TestIndividualCopy(reporter, gPairs[j].fConfig, success, subset, subsetCopy,