Home
last modified time | relevance | path

Searched refs:hasPicture (Results 1 – 11 of 11) sorted by relevance

/external/skia/src/effects/
DSkPictureImageFilter.cpp88 bool hasPicture = (fPicture != nullptr); in flatten() local
89 buffer.writeBool(hasPicture); in flatten()
90 if (hasPicture) { in flatten()
/external/skia/tools/skiaserve/urlhandlers/
DDownloadHandler.cpp24 if (!request->hasPicture()) { in handle()
DOpBoundsHandler.cpp27 if (!request->hasPicture() || commands.count() != 2) { in handle()
DClipAlphaHandler.cpp28 if (!request->hasPicture() || commands.count() != 2) { in handle()
DOpsHandler.cpp26 if (!request->hasPicture() || commands.count() > 1) { in handle()
DDataHandler.cpp28 if (!request->hasPicture() || commands.count() != 2) { in handle()
DInfoHandler.cpp28 if (!request->hasPicture() || commands.count() > 2) { in handle()
DImgHandler.cpp28 if (!request->hasPicture() || commands.count() > 3) { in handle()
DCmdHandler.cpp27 if (!request->hasPicture() || commands.count() > 3) { in handle()
DBreakHandler.cpp28 if (!request->hasPicture() || commands.count() != 4) { in handle()
/external/skia/tools/skiaserve/
DRequest.h48 bool hasPicture() const { return SkToBool(fPicture.get()); } in hasPicture() function