Home
last modified time | relevance | path

Searched refs:countInputs (Results 1 – 20 of 20) sorted by relevance

/external/skia/src/effects/
DSkMergeImageFilter.cpp33 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()
144 for (int i = 0; i < this->countInputs(); ++i) { in toString()
DSkColorFilterImageFilter.cpp122 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
134 SkASSERT(1 == this->countInputs()); in onIsColorFilterNode()
DSkComposeImageFilter.cpp65 SkASSERT(2 == this->countInputs() && this->getInput(0) && this->getInput(1)); in onMakeColorSpace()
DSkOffsetImageFilter.cpp77 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
DSkImageSource.cpp136 SkASSERT(0 == this->countInputs()); in onMakeColorSpace()
DSkTileImageFilter.cpp120 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
DSkDropShadowImageFilter.cpp115 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
DSkAlphaThresholdFilter.cpp265 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
DSkXfermodeImageFilter.cpp177 SkASSERT(2 == this->countInputs()); in onMakeColorSpace()
DSkMagnifierImageFilter.cpp441 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
DSkMatrixConvolutionImageFilter.cpp387 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
DSkArithmeticImageFilter.cpp457 SkASSERT(2 == this->countInputs()); in onMakeColorSpace()
DSkDisplacementMapEffect.cpp361 SkASSERT(2 == this->countInputs()); in onMakeColorSpace()
DSkMorphologyImageFilter.cpp645 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
DSkLightingImageFilter.cpp1343 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
1498 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
/external/skia/src/core/
DSkImageFilter.cpp264 if (0 == this->countInputs()) { in computeFastBounds()
268 for (int i = 1; i < this->countInputs(); i++) { in computeFastBounds()
283 for (int i = 0; i < this->countInputs(); i++) { in canComputeFastBounds()
340 const int count = this->countInputs(); in canHandleComplexCTM()
456 if (this->countInputs() < 1) { in onFilterBounds()
461 for (int i = 0; i < this->countInputs(); ++i) { in onFilterBounds()
DSkLocalMatrixImageFilter.cpp61 SkASSERT(1 == this->countInputs() && this->getInput(0)); in onMakeColorSpace()
DSkMatrixImageFilter.cpp100 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
DSkBlurImageFilter.cpp310 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
/external/skia/include/core/
DSkImageFilter.h189 int countInputs() const { return fInputs.count(); } in countInputs() function