HomeSort by relevance Sort by last modified time
    Searched refs:filterPtr (Results 1 - 5 of 5) sorted by null

  /external/skia/tests/
PaintImageFilterTest.cpp 53 const SkPMColor* filterPtr = filterResult.getAddr32(0, y);
55 for (int x = 0; x < r.width(); ++x, ++filterPtr, ++paintPtr) {
56 REPORTER_ASSERT(reporter, *filterPtr == *paintPtr);
102 const SkPMColor* filterPtr = filterResult.getAddr32(0, y);
104 for (int x = 0; x < r.width(); ++x, ++filterPtr, ++paintPtr) {
105 REPORTER_ASSERT(reporter, *filterPtr == *paintPtr);
  /external/skia/include/core/
SkImageFilter.h 196 * "filterPtr" parameter if it can. Does nothing otherwise.
197 * If this returns false, then the filterPtr is unchanged.
198 * If this returns true, then if filterPtr is not null, it must be set to a ref'd colorfitler
201 bool isColorFilterNode(SkColorFilter** filterPtr) const {
202 return this->onIsColorFilterNode(filterPtr);
206 bool asColorFilter(SkColorFilter** filterPtr) const {
207 return this->isColorFilterNode(filterPtr);
215 bool asAColorFilter(SkColorFilter** filterPtr) const;
393 virtual bool onIsColorFilterNode(SkColorFilter** /*filterPtr*/) const {
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/
VectorDrawable_Delegate.java     [all...]
  /external/skia/src/core/
SkImageFilter.cpp 368 bool SkImageFilter::asAColorFilter(SkColorFilter** filterPtr) const {
369 SkASSERT(nullptr != filterPtr);
370 if (!this->isColorFilterNode(filterPtr)) {
373 if (nullptr != this->getInput(0) || (*filterPtr)->affectsTransparentBlack()) {
374 (*filterPtr)->unref();
  /external/libvncserver/libvncclient/
tight.c 36 #define filterPtrBPP CONCAT2E(filterPtr,BPP)

Completed in 114 milliseconds