/external/skqp/src/effects/imagefilters/ |
D | SkMergeImageFilter.cpp | 33 int inputCount = this->countInputs(); in onFilterImage() 98 SkSTArray<5, sk_sp<SkImageFilter>> inputs(this->countInputs()); in onMakeColorSpace() 100 for (int i = 0; i < this->countInputs(); i++) { in onMakeColorSpace() 106 return SkMergeImageFilter::Make(inputs.begin(), this->countInputs(), in onMakeColorSpace()
|
D | SkColorFilterImageFilter.cpp | 122 SkASSERT(1 == this->countInputs()); in onMakeColorSpace() 134 SkASSERT(1 == this->countInputs()); in onIsColorFilterNode()
|
D | SkComposeImageFilter.cpp | 67 SkASSERT(2 == this->countInputs() && this->getInput(0) && this->getInput(1)); in onMakeColorSpace()
|
D | SkXfermodeImageFilter.cpp | 187 SkASSERT(2 == this->countInputs()); in onFilterBounds() 225 SkASSERT(2 == this->countInputs()); in onMakeColorSpace()
|
D | SkOffsetImageFilter.cpp | 83 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
|
D | SkImageSource.cpp | 136 SkASSERT(0 == this->countInputs()); in onMakeColorSpace()
|
D | SkTileImageFilter.cpp | 121 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
|
D | SkMagnifierImageFilter.cpp | 193 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
|
D | SkDropShadowImageFilter.cpp | 118 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
|
D | SkArithmeticImageFilter.cpp | 237 SkASSERT(2 == this->countInputs()); in onFilterBounds() 437 SkASSERT(2 == this->countInputs()); in onMakeColorSpace()
|
D | SkAlphaThresholdFilter.cpp | 280 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
|
D | SkMatrixConvolutionImageFilter.cpp | 441 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
|
D | SkBlurImageFilter.cpp | 676 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
|
D | SkDisplacementMapEffect.cpp | 361 SkASSERT(2 == this->countInputs()); in onMakeColorSpace()
|
/external/skia/src/core/ |
D | SkImageFilter.cpp | 43 int SkImageFilter::countInputs() const { return as_IFB(this)->fInputs.count(); } in countInputs() function in SkImageFilter 50 SkASSERT(i < this->countInputs()); in getInput() 91 if (0 == this->countInputs()) { in computeFastBounds() 95 for (int i = 1; i < this->countInputs(); i++) { in computeFastBounds() 110 for (int i = 0; i < this->countInputs(); i++) { in canComputeFastBounds() 325 const int count = this->countInputs(); in canHandleComplexCTM() 444 if (this->countInputs() < 1) { in onFilterBounds() 449 for (int i = 0; i < this->countInputs(); ++i) { in onFilterBounds() 470 if (this->countInputs() < 1) { in visitInputLayerBounds() 479 for (int i = 0; i < this->countInputs(); ++i) { in visitInputLayerBounds() [all …]
|
/external/skqp/src/core/ |
D | SkImageFilter.cpp | 212 if (0 == this->countInputs()) { in computeFastBounds() 216 for (int i = 1; i < this->countInputs(); i++) { in computeFastBounds() 231 for (int i = 0; i < this->countInputs(); i++) { in canComputeFastBounds() 292 const int count = this->countInputs(); in canHandleComplexCTM() 406 if (this->countInputs() < 1) { in onFilterBounds() 411 for (int i = 0; i < this->countInputs(); ++i) { in onFilterBounds()
|
D | SkLocalMatrixImageFilter.cpp | 62 SkASSERT(1 == this->countInputs() && this->getInput(0)); in onMakeColorSpace()
|
D | SkMatrixImageFilter.cpp | 101 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
|
/external/skia/include/core/ |
D | SkImageFilter.h | 76 int countInputs() const;
|
/external/skia/src/effects/imagefilters/ |
D | SkMergeImageFilter.cpp | 62 int inputCount = this->countInputs(); in onFilterImage()
|
D | SkColorFilterImageFilter.cpp | 145 SkASSERT(1 == this->countInputs()); in onIsColorFilterNode()
|
D | SkBlendImageFilter.cpp | 179 SkASSERT(2 == this->countInputs()); in onFilterBounds()
|
D | SkArithmeticImageFilter.cpp | 262 SkASSERT(2 == this->countInputs()); in onFilterBounds()
|
/external/skia/samplecode/ |
D | SampleImageFilterDAG.cpp | 73 fInputNodes.reserve_back(fFilter->countInputs()); in FilterNode() 74 for (int i = 0; i < fFilter->countInputs(); ++i) { in FilterNode()
|
/external/skqp/include/core/ |
D | SkImageFilter.h | 205 int countInputs() const { return fInputs.count(); } in countInputs() function
|