Home | History | Annotate | Download | only in tools

Lines Matching refs:success

193     bool success = renderer.render(outputPath, out);
195 if (!success) {
204 return success;
248 bool success = render_picture(inputPath,
253 if (!success || ((FLAGS_validate || FLAGS_writeWholeImage) && bitmap == NULL)) {
275 success = render_picture(inputPath, NULL, *referenceRenderer,
278 if (!success || NULL == referenceBitmap || NULL == referenceBitmap->getPixels()) {
285 if (success && (bitmap->width() != referenceBitmap->width())) {
292 if (success && (bitmap->height() != referenceBitmap->height())) {
300 for (int y = 0; success && y < bitmap->height(); y++) {
301 for (int x = 0; success && x < bitmap->width(); x++) {
339 success = false;
345 return success;