Lines Matching full:encoded
92 typedef bool (*InstallEncoded)(SkData* encoded, SkBitmap* dst);
95 This function tests three differently encoded images against the
113 SkAutoDataUnref encoded(create_data_from_bitmap(original, type));
114 REPORTER_ASSERT(reporter, encoded.get() != NULL);
115 if (NULL == encoded.get()) {
119 bool installSuccess = install(encoded.get(), &lazy);
147 static bool install_skCachingPixelRef(SkData* encoded, SkBitmap* dst) {
149 SkNEW_ARGS(SkDecodingImageGenerator, (encoded)), dst);
151 static bool install_skDiscardablePixelRef(SkData* encoded, SkBitmap* dst) {
153 return SkDecodingImageGenerator::Install(encoded, dst, NULL);