Home
last modified time | relevance | path

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

1234

/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()
DStreamBridge.java49 InputStream getInput() throws IOException { in getInput() method in StreamBridge
/external/skia/src/effects/imagefilters/
DSkComposeImageFilter.cpp72 return SkImageFilters::Compose(common.getInput(0), common.getInput(1)); in CreateProc()
78 const SkImageFilter* outer = this->getInput(0); in computeFastBounds()
79 const SkImageFilter* inner = this->getInput(1); in computeFastBounds()
90 innerClipBounds = this->getInput(0)->filterBounds(ctx.clipBounds(), ctx.ctm(), in onFilterImage()
126 const SkImageFilter* outer = this->getInput(0); in onFilterBounds()
127 const SkImageFilter* inner = this->getInput(1); in onFilterBounds()
DSkCropImageFilter.cpp82 return SkMakeCropImageFilter(cropRect, common.getInput(0)); in CreateProc()
163 if (this->getInput(0) && !this->getInput(0)->canComputeFastBounds()) { in computeFastBounds()
168 SkRect inputBounds = this->getInput(0) ? this->getInput(0)->computeFastBounds(bounds) : bounds; in computeFastBounds()
DSkMatrixTransformImageFilter.cpp114 return SkImageFilters::Offset(offset.x(), offset.y(), common.getInput(0), common.cropRect()); in LegacyOffsetCreateProc()
129 return SkImageFilters::MatrixTransform(matrix, sampling, common.getInput(0)); in CreateProc()
147 SkRect bounds = this->getInput(0) ? this->getInput(0)->computeFastBounds(src) : src; in computeFastBounds()
DSkBlendImageFilter.cpp135 return SkImageFilters::Blend(std::move(blender), common.getInput(0), common.getInput(1), in CreateProc()
226 return this->getInput(0) ? this->getInput(0)->filterBounds(src, ctm, dir, inputRect) : src; in onFilterBounds()
229 return this->getInput(1) ? this->getInput(1)->filterBounds(src, ctm, dir, inputRect) : src; in onFilterBounds()
DSkArithmeticImageFilter.cpp149 return SkImageFilters::Arithmetic(k[0], k[1], k[2], k[3], enforcePMColor, common.getInput(0), in CreateProc()
150 common.getInput(1), common.cropRect()); in CreateProc()
289 auto i2 = this->getInput(0) ? this->getInput(0)->filterBounds(src, ctm, dir, nullptr) : src; in onFilterBounds()
290 auto i1 = this->getInput(1) ? this->getInput(1)->filterBounds(src, ctm, dir, nullptr) : src; in onFilterBounds()
DSkDropShadowImageFilter.cpp108 common.getInput(0), common.cropRect()); in CreateProc()
175 SkRect bounds = this->getInput(0) ? this->getInput(0)->computeFastBounds(src) : src; in computeFastBounds()
DSkColorFilterImageFilter.cpp81 std::move(newCF), sk_ref_sp(input->getInput(0)), cropRect)); in ColorFilter()
99 return SkImageFilters::ColorFilter(std::move(cf), common.getInput(0), common.cropRect()); in CreateProc()
/external/skia/src/core/
DSkLocalMatrixImageFilter.cpp42 return SkLocalMatrixImageFilter::Make(lm, common.getInput(0)); in CreateProc()
60 return this->getInput(0)->filterBounds(src, SkMatrix::Concat(ctm, fLocalM), dir, inputRect); in onFilterBounds()
68 return this->getInput(0)->computeFastBounds(bounds); in computeFastBounds()
72 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()
115 const SkImageFilter* input = this->getInput(i); in affectsTransparentBlack()
128 if (nullptr != this->getInput(0) || as_CFB(*filterPtr)->affectsTransparentBlack()) { in asAColorFilter()
212 const SkImageFilter* input = this->getInput(i); in flatten()
338 if (const SkImageFilter_Base* input = as_IFB(this->getInput(i))) { in getCTMCapability()
460 const SkImageFilter* filter = this->getInput(i); in onFilterBounds()
491 const SkImageFilter* filter = this->getInput(i); in visitInputLayerBounds()
523 const SkImageFilter* filter = this->getInput(i); in visitOutputLayerBounds()
[all …]
/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/apache-commons-io/src/test/java/org/apache/commons/io/
DDemuxInputStreamTest.java130 private String getInput(final String threadName) { in getInput() method in DemuxInputStreamTest
166 assertEquals(DATA1, getInput(T1), "Data1"); in testInputStream()
167 assertEquals(DATA2, getInput(T2), "Data2"); in testInputStream()
168 assertEquals(DATA3, getInput(T3), "Data3"); in testInputStream()
169 assertEquals(DATA4, getInput(T4), "Data4"); in testInputStream()
/external/skia/modules/svg/src/
DSkSVGFilterContext.cpp84 std::tuple<sk_sp<SkImageFilter>, SkSVGColorspace> SkSVGFilterContext::getInput( in getInput() function in SkSVGFilterContext
141 return std::get<1>(this->getInput(ctx, inputType)); in resolveInputColorspace()
146 return std::get<0>(this->getInput(ctx, inputType)); in resolveInput()
152 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/antlr/gunit/src/main/java/org/antlr/gunit/swingui/
DTestCaseEditController.java210 ITestCaseInput input = this.currentTestCase.getInput(); in updateInputEditor()
285 if(input.getClass().equals(this.currentTestCase.getInput().getClass())) in OnInputTestCaseTypeChanged()
420 currentTestCase.getInput().setScript(getText()); in caretUpdate()
438 currentTestCase.getInput().setScript(getText()); in caretUpdate()
612 clamp(clampAtNewLine(item.getInput().getScript()), 18)); in getListCellRendererComponent()
618 labIn.setIcon(item.getInput() instanceof TestCaseInputFile ? in getListCellRendererComponent()
/external/clang/test/SemaCXX/
Dreferences.cpp110 string getInput();
113 string &s = getInput(); // expected-error{{lvalue reference}} in test9()
/external/tensorflow/tensorflow/compiler/xla/mlir/transforms/runtime/
Dtype_converter.cc123 Expected<std::unique_ptr<Type>> converted = Convert(type.getInput(i)); in Convert()
124 if (!converted) return error("input", i, type.getInput(i)); in Convert()
/external/icu/android_icu4j/src/main/java/android/icu/message2/
DFormattedPlaceholder.java50 public Object getInput() { in getInput() method in FormattedPlaceholder
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/changes/
DChangeSetPerformer.java122 copyStream(change.getInput(), out, change.getEntry()); in perform()
169 copyStream(change.getInput(), out, change.getEntry()); in perform()
DChange.java81 InputStream getInput() { in getInput() method in Change
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/message2/
DFormattedPlaceholder.java48 public Object getInput() { in getInput() method in FormattedPlaceholder
/external/tensorflow/tensorflow/dtensor/mlir/
Dspmd_expansion.cc73 .setType(function.getFunctionType().getInput(argument_index)); in UpdateFunctionInputShape()
206 function.getFunctionType().getInput(argument_index)); in UpdateFunctionArgsUsingLayout()
218 .getInput(argument_index) in UpdateFunctionArgsUsingLayout()
/external/antlr/gunit/src/main/java/org/antlr/gunit/swingui/model/
DTestCase.java44 public ITestCaseInput getInput() { in getInput() method in TestCase
/external/tensorflow/tensorflow/compiler/mlir/lite/utils/
Dperception_ops_utils.cc222 func_.getFunctionType().getInput(0).dyn_cast_or_null<RankedTensorType>(); in VerifySignature()
229 func_.getFunctionType().getInput(1).dyn_cast_or_null<RankedTensorType>(); in VerifySignature()

1234