Home
last modified time | relevance | path

Searched refs:fFullPath (Results 1 – 5 of 5) sorted by relevance

/external/skia/tools/skdiff/
Dskdiff_utils.cpp40 SkDebugf("ERROR: could not create codec for <%s>\n", resource.fFullPath.c_str()); in get_bitmap()
46 SkDebugf("ERROR: could not set bitmap info for <%s>\n", resource.fFullPath.c_str()); in get_bitmap()
56 SkDebugf("ERROR: could not allocate pixels for <%s>\n", resource.fFullPath.c_str()); in get_bitmap()
63 SkDebugf("ERROR: codec failed for basePath <%s>\n", resource.fFullPath.c_str()); in get_bitmap()
157 drp->fDifference.fFullPath = outputDir; in create_and_write_diff_image()
158 drp->fDifference.fFullPath.append(drp->fDifference.fFilename); in create_and_write_diff_image()
162 drp->fWhite.fFullPath = outputDir; in create_and_write_diff_image()
163 drp->fWhite.fFullPath.append(drp->fWhite.fFilename); in create_and_write_diff_image()
167 if (write_bitmap(drp->fDifference.fFullPath, drp->fDifference.fBitmap)) { in create_and_write_diff_image()
172 if (write_bitmap(drp->fWhite.fFullPath, drp->fWhite.fBitmap)) { in create_and_write_diff_image()
Dskdiff_main.cpp345 sk_sp<SkData> fileBits(read_file(resource.fFullPath.c_str())); in get_bounds()
349 SkDebugf("WARNING: couldn't read %s file <%s>\n", name, resource.fFullPath.c_str()); in get_bounds()
431 drp->fBase.fFullPath = basePath; in create_diff_images()
435 drp->fComparison.fFullPath = comparisonPath; in create_diff_images()
449 drp->fBase.fFullPath = basePath; in create_diff_images()
453 drp->fComparison.fFullPath = comparisonPath; in create_diff_images()
467 drp->fBase.fFullPath = basePath; in create_diff_images()
471 drp->fComparison.fFullPath = comparisonPath; in create_diff_images()
474 sk_sp<SkData> baseFileBits(read_file(drp->fBase.fFullPath.c_str())); in create_diff_images()
478 sk_sp<SkData> comparisonFileBits(read_file(drp->fComparison.fFullPath.c_str())); in create_diff_images()
[all …]
Dskdiff_html.cpp189 if (!resource.fFullPath.isEmpty()) { in print_diff_resource_cell()
190 if (!resource.fFullPath.startsWith(PATH_DIV_STR)) { in print_diff_resource_cell()
191 resource.fFullPath.prepend(relativePath); in print_diff_resource_cell()
193 print_link_cell(stream, resource.fFullPath, "N/A"); in print_diff_resource_cell()
206 if (!resource.fFullPath.startsWith(PATH_DIV_STR)) { in print_diff_resource_cell()
207 resource.fFullPath.prepend(relativePath); in print_diff_resource_cell()
209 print_image_cell(stream, resource.fFullPath, height); in print_diff_resource_cell()
Dskdiff_image.cpp29 drp->fBase.fFullPath = baseFile; in create_diff_images()
33 drp->fComparison.fFullPath = comparisonFile; in create_diff_images()
36 sk_sp<SkData> baseFileBits = read_file(drp->fBase.fFullPath.c_str()); in create_diff_images()
40 sk_sp<SkData> comparisonFileBits = read_file(drp->fComparison.fFullPath.c_str()); in create_diff_images()
Dskdiff.h76 DiffResource() : fFilename(), fFullPath(), fBitmap(), fStatus(kUnknown_Status) { } in DiffResource()
81 SkString fFullPath; member