Home
last modified time | relevance | path

Searched refs:getIn (Results 1 – 21 of 21) sorted by relevance

/external/skia/modules/svg/src/
DSkSVGFeLighting.cpp104 fctx.resolveInput(ctx, this->getIn(), this->resolveColorspace(ctx, fctx)), in makeDistantLight()
117 fctx.resolveInput(ctx, this->getIn(), this->resolveColorspace(ctx, fctx)), in makePointLight()
137 fctx.resolveInput(ctx, this->getIn(), this->resolveColorspace(ctx, fctx)), in makeSpotLight()
157 fctx.resolveInput(ctx, this->getIn(), this->resolveColorspace(ctx, fctx)), in makeDistantLight()
169 fctx.resolveInput(ctx, this->getIn(), this->resolveColorspace(ctx, fctx)), in makePointLight()
188 fctx.resolveInput(ctx, this->getIn(), this->resolveColorspace(ctx, fctx)), in makeSpotLight()
DSkSVGFeDisplacementMap.cpp34 sk_sp<SkImageFilter> in = fctx.resolveInput(ctx, this->getIn()); in onMakeImageFilter()
54 return fctx.resolveInputColorspace(ctx, this->getIn()); in resolveColorspace()
DSkSVGFeOffset.cpp27 fctx.resolveInput(ctx, this->getIn(), this->resolveColorspace(ctx, fctx)); in onMakeImageFilter()
DSkSVGFeGaussianBlur.cpp28 fctx.resolveInput(ctx, this->getIn(), this->resolveColorspace(ctx, fctx)), in onMakeImageFilter()
DSkSVGFeMorphology.cpp27 sk_sp<SkImageFilter> input = fctx.resolveInput(ctx, this->getIn(), colorspace); in onMakeImageFilter()
DSkSVGFeBlend.cpp44 const sk_sp<SkImageFilter> foreground = fctx.resolveInput(ctx, this->getIn(), colorspace); in onMakeImageFilter()
DSkSVGFeComposite.cpp52 const sk_sp<SkImageFilter> foreground = fctx.resolveInput(ctx, this->getIn(), colorspace); in onMakeImageFilter()
DSkSVGFeColorMatrix.cpp96 fctx.resolveInput(ctx, this->getIn(), this->resolveColorspace(ctx, fctx)), in onMakeImageFilter()
/external/skia/modules/svg/include/
DSkSVGFeOffset.h25 std::vector<SkSVGFeInputType> getInputs() const override { return {this->getIn()}; } in getInputs()
DSkSVGFeGaussianBlur.h31 std::vector<SkSVGFeInputType> getInputs() const override { return {this->getIn()}; } in getInputs()
DSkSVGFeMorphology.h37 std::vector<SkSVGFeInputType> getInputs() const override { return {this->getIn()}; } in getInputs()
DSkSVGFeBlend.h34 return {this->getIn(), this->getIn2()}; in getInputs()
DSkSVGFeColorMatrix.h28 std::vector<SkSVGFeInputType> getInputs() const override { return {this->getIn()}; } in getInputs()
DSkSVGFeDisplacementMap.h35 return {this->getIn(), this->getIn2()}; in getInputs()
DSkSVGFeComposite.h33 return {this->getIn(), this->getIn2()}; in getInputs()
DSkSVGFeLighting.h31 std::vector<SkSVGFeInputType> getInputs() const final { return {this->getIn()}; } in getInputs()
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/transport/
DProcessTransport.java40 is = process.getIn(); in ProcessTransport()
/external/sl4a/Common/src/com/googlecode/android_scripting/
DProcess.java105 public InputStream getIn() { in getIn() method in Process
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/
DAnalysis.java9 Object getIn(Node node); in getIn() method
DAnalysisAdapter.java13 public Object getIn(Node node) in getIn() method in AnalysisAdapter
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
DLogcatViewer.java66 BufferedReader br = new BufferedReader(new InputStreamReader(mLogcatProcess.getIn())); in run()