Home
last modified time | relevance | path

Searched refs:getInput (Results 1 – 25 of 129) sorted by relevance

123456

/external/skqp/src/effects/imagefilters/
DSkComposeImageFilter.cpp28 SkImageFilter* outer = this->getInput(0); in computeFastBounds()
29 SkImageFilter* inner = this->getInput(1); in computeFastBounds()
41 innerClipBounds = this->getInput(0)->filterBounds(ctx.clipBounds(), ctx.ctm(), in onFilterImage()
67 SkASSERT(2 == this->countInputs() && this->getInput(0) && this->getInput(1)); in onMakeColorSpace()
69 auto input0 = xformer->apply(this->getInput(0)); in onMakeColorSpace()
70 auto input1 = xformer->apply(this->getInput(1)); in onMakeColorSpace()
71 if (input0.get() != this->getInput(0) || input1.get() != this->getInput(1)) { in onMakeColorSpace()
79 SkImageFilter* outer = this->getInput(0); in onFilterBounds()
80 SkImageFilter* inner = this->getInput(1); in onFilterBounds()
88 return SkComposeImageFilter::Make(common.getInput(0), common.getInput(1)); in CreateProc()
DSkXfermodeImageFilter.cpp102 return SkXfermodeImageFilter::Make((SkBlendMode)mode, common.getInput(0), in CreateProc()
103 common.getInput(1), &common.cropRect()); in CreateProc()
189 return this->getInput(0) ? this->getInput(0)->filterBounds(src, ctm, dir, inputRect) : src; in onFilterBounds()
192 return this->getInput(1) ? this->getInput(1)->filterBounds(src, ctm, dir, inputRect) : src; in onFilterBounds()
226 auto background = xformer->apply(this->getInput(0)); in onMakeColorSpace()
227 auto foreground = xformer->apply(this->getInput(1)); in onMakeColorSpace()
228 if (background.get() != this->getInput(0) || foreground.get() != this->getInput(1)) { in onMakeColorSpace()
DSkOffsetImageFilter.cpp85 auto input = xformer->apply(this->getInput(0)); in onMakeColorSpace()
86 if (input.get() != this->getInput(0)) { in onMakeColorSpace()
94 SkRect bounds = this->getInput(0) ? this->getInput(0)->computeFastBounds(src) : src; in computeFastBounds()
113 return Make(offset.x(), offset.y(), common.getInput(0), &common.cropRect()); in CreateProc()
DSkColorFilterImageFilter.cpp33 sk_ref_sp(input->getInput(0)), in Make()
53 return Make(std::move(cf), common.getInput(0), &common.cropRect()); in CreateProc()
124 sk_sp<SkImageFilter> input = xformer->apply(this->getInput(0)); in onMakeColorSpace()
126 if (this->getInput(0) != input.get() || fColorFilter != colorFilter) { in onMakeColorSpace()
DSkArithmeticImageFilter.cpp106 return SkArithmeticImageFilter::Make(k[0], k[1], k[2], k[3], enforcePMColor, common.getInput(0), in CreateProc()
107 common.getInput(1), &common.cropRect()); in CreateProc()
241 auto i2 = this->getInput(0) ? this->getInput(0)->filterBounds(src, ctm, dir, nullptr) : src; in onFilterBounds()
242 auto i1 = this->getInput(1) ? this->getInput(1)->filterBounds(src, ctm, dir, nullptr) : src; in onFilterBounds()
438 auto background = xformer->apply(this->getInput(0)); in onMakeColorSpace()
439 auto foreground = xformer->apply(this->getInput(1)); in onMakeColorSpace()
440 if (background.get() != this->getInput(0) || foreground.get() != this->getInput(1)) { in onMakeColorSpace()
DSkDropShadowImageFilter.cpp53 return Make(dx, dy, sigmaX, sigmaY, color, shadowMode, common.getInput(0), &common.cropRect()); in CreateProc()
120 sk_sp<SkImageFilter> input = xformer->apply(this->getInput(0)); in onMakeColorSpace()
122 if (input.get() != this->getInput(0) || color != fColor) { in onMakeColorSpace()
130 SkRect bounds = this->getInput(0) ? this->getInput(0)->computeFastBounds(src) : src; in computeFastBounds()
DSkTileImageFilter.cpp123 auto input = xformer->apply(this->getInput(0)); in onMakeColorSpace()
124 if (input.get() != this->getInput(0)) { in onMakeColorSpace()
152 return Make(src, dst, common.getInput(0)); in CreateProc()
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/pack200/
DPack200CompressorInputStream.java196 return streamBridge.getInput().read(); in read()
201 return streamBridge.getInput().read(b); in read()
206 return streamBridge.getInput().read(b, off, count); in read()
211 return streamBridge.getInput().available(); in available()
217 return streamBridge.getInput().markSupported(); in markSupported()
226 streamBridge.getInput().mark(limit); in mark()
234 streamBridge.getInput().reset(); in reset()
239 return IOUtils.skip(streamBridge.getInput(), count); in skip()
/external/skia/src/effects/imagefilters/
DSkComposeImageFilter.cpp61 return SkImageFilters::Compose(common.getInput(0), common.getInput(1)); in CreateProc()
67 const SkImageFilter* outer = this->getInput(0); in computeFastBounds()
68 const SkImageFilter* inner = this->getInput(1); in computeFastBounds()
79 innerClipBounds = this->getInput(0)->filterBounds(ctx.clipBounds(), ctx.ctm(), in onFilterImage()
115 const SkImageFilter* outer = this->getInput(0); in onFilterBounds()
116 const SkImageFilter* inner = this->getInput(1); in onFilterBounds()
DSkBlendImageFilter.cpp95 return SkImageFilters::Blend((SkBlendMode)mode, common.getInput(0), common.getInput(1), in CreateProc()
181 return this->getInput(0) ? this->getInput(0)->filterBounds(src, ctm, dir, inputRect) : src; in onFilterBounds()
184 return this->getInput(1) ? this->getInput(1)->filterBounds(src, ctm, dir, inputRect) : src; in onFilterBounds()
DSkOffsetImageFilter.cpp68 return SkImageFilters::Offset(offset.x(), offset.y(), common.getInput(0), common.cropRect()); in CreateProc()
130 SkRect bounds = this->getInput(0) ? this->getInput(0)->computeFastBounds(src) : src; in computeFastBounds()
DSkArithmeticImageFilter.cpp122 return SkImageFilters::Arithmetic(k[0], k[1], k[2], k[3], enforcePMColor, common.getInput(0), in CreateProc()
123 common.getInput(1), common.cropRect()); in CreateProc()
266 auto i2 = this->getInput(0) ? this->getInput(0)->filterBounds(src, ctm, dir, nullptr) : src; in onFilterBounds()
267 auto i1 = this->getInput(1) ? this->getInput(1)->filterBounds(src, ctm, dir, nullptr) : src; in onFilterBounds()
/external/skqp/src/core/
DSkLocalMatrixImageFilter.cpp39 return SkLocalMatrixImageFilter::Make(lm, common.getInput(0)); in CreateProc()
57 return this->getInput(0)->filterBounds(src, SkMatrix::Concat(ctm, fLocalM), dir, inputRect); in onFilterBounds()
62 SkASSERT(1 == this->countInputs() && this->getInput(0)); in onMakeColorSpace()
64 auto input = xformer->apply(this->getInput(0)); in onMakeColorSpace()
65 if (input.get() != this->getInput(0)) { in onMakeColorSpace()
DSkMatrixImageFilter.cpp40 return Make(matrix, buffer.read32LE(kLast_SkFilterQuality), common.getInput(0)); in CreateProc()
102 auto input = xformer->apply(this->getInput(0)); in onMakeColorSpace()
103 if (input.get() != this->getInput(0)) { in onMakeColorSpace()
110 SkRect bounds = this->getInput(0) ? this->getInput(0)->computeFastBounds(src) : src; in computeFastBounds()
DSkImageFilter.cpp151 SkImageFilter* input = this->getInput(i); in flatten()
215 SkRect combinedBounds = this->getInput(0) ? this->getInput(0)->computeFastBounds(src) : src; in computeFastBounds()
217 SkImageFilter* input = this->getInput(i); in computeFastBounds()
232 SkImageFilter* input = this->getInput(i); in canComputeFastBounds()
281 if (nullptr != this->getInput(0) || (*filterPtr)->affectsTransparentBlack()) { in asAColorFilter()
294 SkImageFilter* input = this->getInput(i); in canHandleComplexCTM()
412 SkImageFilter* filter = this->getInput(i); in onFilterBounds()
455 SkImageFilter* input = this->getInput(index); in filterInput()
/external/llvm-project/flang/lib/Lower/
DIO.cpp144 builder.createConvert(loc, getIoMsg.getType().getInput(1), in genEndIO()
146 builder.createConvert(loc, getIoMsg.getType().getInput(2), in genEndIO()
242 auto argType = outputFunc.getType().getInput(1); in genOutputItemList()
248 loc, outputFunc.getType().getInput(1), dataLen.first)); in genOutputItemList()
250 loc, outputFunc.getType().getInput(2), dataLen.second)); in genOutputItemList()
314 auto argType = inputFunc.getType().getInput(1); in genInputItemList()
335 builder.createConvert(loc, inputFunc.getType().getInput(2), len)); in genInputItemList()
516 auto val = builder.createConvert(loc, ioFuncTy.getInput(1), expr); in genIntIOOption()
530 auto tup = lowerStringLit(converter, loc, spec, ioFuncTy.getInput(1), in genCharIOOption()
531 ioFuncTy.getInput(2)); in genCharIOOption()
[all …]
DCharacterRuntime.cpp109 auto lptr = builder.createConvert(loc, fTy.getInput(0), lhsBuff); in genRawCharCompare()
110 auto llen = builder.createConvert(loc, fTy.getInput(2), lhsLen); in genRawCharCompare()
111 auto rptr = builder.createConvert(loc, fTy.getInput(1), rhsBuff); in genRawCharCompare()
112 auto rlen = builder.createConvert(loc, fTy.getInput(3), rhsLen); in genRawCharCompare()
/external/skia/src/core/
DSkLocalMatrixImageFilter.cpp38 return SkLocalMatrixImageFilter::Make(lm, common.getInput(0)); in CreateProc()
54 return this->getInput(0)->filterBounds(src, SkMatrix::Concat(ctm, fLocalM), dir, inputRect); in onFilterBounds()
62 return this->getInput(0)->computeFastBounds(bounds); in computeFastBounds()
66 return fLocalM.mapRect(this->getInput(0)->computeFastBounds(localBounds)); in computeFastBounds()
DSkImageFilter.cpp49 const SkImageFilter* SkImageFilter::getInput(int i) const { in getInput() function in SkImageFilter
94 SkRect combinedBounds = this->getInput(0) ? this->getInput(0)->computeFastBounds(src) : src; in computeFastBounds()
96 const SkImageFilter* input = this->getInput(i); in computeFastBounds()
111 const SkImageFilter* input = this->getInput(i); in canComputeFastBounds()
124 if (nullptr != this->getInput(0) || as_CFB(*filterPtr)->affectsTransparentBlack()) { in asAColorFilter()
210 const SkImageFilter* input = this->getInput(i); in flatten()
327 const SkImageFilter_Base* input = as_IFB(this->getInput(i)); in canHandleComplexCTM()
450 const SkImageFilter* filter = this->getInput(i); in onFilterBounds()
480 const SkImageFilter* filter = this->getInput(i); in visitInputLayerBounds()
508 const SkImageFilter* filter = this->getInput(i); in visitOutputLayerBounds()
[all …]
DSkMatrixImageFilter.cpp55 return Make(matrix, sampling, common.getInput(0)); in CreateProc()
116 SkRect bounds = this->getInput(0) ? this->getInput(0)->computeFastBounds(src) : src; in computeFastBounds()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue112/
DParameterisedTypeLoadingTestCase.java34 MyCompositeObject obj = (MyCompositeObject) yamlParser.load(getInput()); in testParameterisedTypeLoading()
46 MyCompositeObject obj = yamlParser.loadAs(getInput(), MyCompositeObject.class); in testJavaBeanLoader()
62 private InputStream getInput() throws IOException { in getInput() method in ParameterisedTypeLoadingTestCase
/external/skia/modules/svg/src/
DSkSVGFilterContext.cpp67 std::tuple<sk_sp<SkImageFilter>, SkSVGColorspace> SkSVGFilterContext::getInput( in getInput() function in SkSVGFilterContext
124 return std::get<1>(this->getInput(ctx, inputType)); in resolveInputColorspace()
129 return std::get<0>(this->getInput(ctx, inputType)); in resolveInput()
135 auto [result, inputCS] = this->getInput(ctx, inputType); in resolveInput()
/external/jimfs/jimfs/src/test/java/com/google/common/jimfs/
DWindowsPathTypeTest.java104 assertThat(expected.getInput()).isEqualTo("\\\\"); in testWindows_uncPaths()
112 assertThat(expected.getInput()).isEqualTo("\\\\host"); in testWindows_uncPaths()
120 assertThat(expected.getInput()).isEqualTo("\\\\host\\"); in testWindows_uncPaths()
128 assertThat(expected.getInput()).isEqualTo("//host"); in testWindows_uncPaths()
/external/skqp/include/effects/
DSkDisplacementMapEffect.h59 const SkImageFilter* getDisplacementInput() const { return getInput(0); } in getDisplacementInput()
60 const SkImageFilter* getColorInput() const { return getInput(1); } in getColorInput()
/external/llvm-project/mlir/lib/Dialect/SDBM/
DSDBM.cpp429 auto getInput = [dialect, this](unsigned matrixPos) -> SDBMInputExpr { in getSDBMExpressions() local
452 auto inputExpr = getInput(i); in getSDBMExpressions()
467 convertDBMElement(1 + i, 1 + j, getInput(i), getInput(j), inequalities, in getSDBMExpressions()
478 equalities.push_back(getInput(position - 1) - stripePair.second); in getSDBMExpressions()
489 getInput(j), inequalities, equalities); in getSDBMExpressions()

123456