Searched defs:proxy (Results 1 - 25 of 644) sorted by last modified time

1234567891011>>

/external/sqlite/dist/orig/
H A Dsqlite3.c6594 ** used as a proxy for the total work done by the prepared statement.
24095 ** * Various locking primitive implementations (all except proxy locking):
24106 ** * Locking primitives for the proxy uber-locking-method. (MacOSX only)
24122 ** 7. proxy locking. (OSX only)
24204 ** Default permissions when creating auto proxy dir
31535 unixFile *proxy = pCtx->lockProxy; local
31574 unixFile *proxy = pCtx->lockProxy; local
31598 unixFile *proxy = pCtx->lockProxy; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c6594 ** used as a proxy for the total work done by the prepared statement.
24095 ** * Various locking primitive implementations (all except proxy locking):
24106 ** * Locking primitives for the proxy uber-locking-method. (MacOSX only)
24129 ** 7. proxy locking. (OSX only)
24211 ** Default permissions when creating auto proxy dir
31555 unixFile *proxy = pCtx->lockProxy; local
31594 unixFile *proxy = pCtx->lockProxy; local
31618 unixFile *proxy = pCtx->lockProxy; local
[all...]
/external/skia/src/core/
H A DSkImageFilter.cpp99 bool SkImageFilter::filterImage(Proxy* proxy, const SkBitmap& src, argument
110 * Give the proxy first shot at the filter. If it returns false, ask
113 if ((proxy && proxy->filterImage(this, src, context, result, offset)) ||
114 this->onFilterImage(proxy, src, context, result, offset)) {
169 bool SkImageFilter::filterImageGPU(Proxy* proxy, const SkBitmap& src, const Context& ctx, argument
176 !this->getInput(0)->getInputResultGPU(proxy, src, ctx, &input, &srcOffset)) {
181 if (!this->applyCropRect(ctx, proxy, input, &srcOffset, &bounds, &input)) {
241 bool SkImageFilter::applyCropRect(const Context& ctx, Proxy* proxy, const SkBitmap& src, argument
263 SkAutoTUnref<SkBaseDevice> device(proxy
326 getInputResultGPU(SkImageFilter::Proxy* proxy, const SkBitmap& src, const Context& ctx, SkBitmap* result, SkIPoint* offset) const argument
[all...]
H A DSkLocalMatrixShader.cpp47 SkShader* SkShader::CreateLocalMatrixShader(SkShader* proxy, const SkMatrix& localMatrix) { argument
49 return SkRef(proxy);
55 SkAutoTUnref<SkShader> otherProxy(proxy->refAsALocalMatrixShader(&otherLocalMatrix));
59 proxy = otherProxy.get();
62 return SkNEW_ARGS(SkLocalMatrixShader, (proxy, *lm));
H A DSkLocalMatrixShader.h17 SkLocalMatrixShader(SkShader* proxy, const SkMatrix& localMatrix) argument
19 , fProxyShader(SkRef(proxy))
/external/skia/src/effects/
H A DSkBicubicImageFilter.cpp83 bool SkBicubicImageFilter::onFilterImage(Proxy* proxy, argument
90 if (getInput(0) && !getInput(0)->filterImage(proxy, source, ctx, &src, &srcOffset)) {
170 bool SkBicubicImageFilter::filterImageGPU(Proxy* proxy, const SkBitmap& src, const Context& ctx, argument
173 if (getInput(0) && !getInput(0)->getInputResultGPU(proxy, src, ctx, &srcBM, offset)) {
H A DSkBitmapSource.cpp47 bool SkBitmapSource::onFilterImage(Proxy* proxy, const SkBitmap&, const Context& ctx, argument
61 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(dstIRect.width(), dstIRect.height()));
H A DSkBlurImageFilter.cpp143 bool SkBlurImageFilter::onFilterImage(Proxy* proxy, argument
148 if (getInput(0) && !getInput(0)->filterImage(proxy, source, ctx, &src, &srcOffset)) {
157 if (!this->applyCropRect(ctx, proxy, src, &srcOffset, &srcBounds, &src)) {
258 bool SkBlurImageFilter::filterImageGPU(Proxy* proxy, const SkBitmap& src, const Context& ctx, argument
263 if (getInput(0) && !getInput(0)->getInputResultGPU(proxy, src, ctx, &input, &srcOffset)) {
267 if (!this->applyCropRect(ctx, proxy, input, &srcOffset, &rect, &input)) {
H A DSkColorFilterImageFilter.cpp101 bool SkColorFilterImageFilter::onFilterImage(Proxy* proxy, const SkBitmap& source, argument
107 if (getInput(0) && !getInput(0)->filterImage(proxy, source, ctx, &src, &srcOffset)) {
116 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(bounds.width(), bounds.height()));
H A DSkComposeImageFilter.cpp16 bool SkComposeImageFilter::onFilterImage(Proxy* proxy, argument
29 return (outer ? outer : inner)->filterImage(proxy, src, ctx, result, offset);
33 return inner->filterImage(proxy, src, ctx, &tmp, offset) &&
34 outer->filterImage(proxy, tmp, ctx, result, offset);
H A DSkDisplacementMapEffect.cpp195 bool SkDisplacementMapEffect::onFilterImage(Proxy* proxy, argument
204 if ((colorInput && !colorInput->filterImage(proxy, src, ctx, &color, &colorOffset)) ||
205 (displInput && !displInput->filterImage(proxy, src, ctx, &displ, &displOffset))) {
219 if (!this->applyCropRect(ctx, proxy, displ, &displOffset, &displBounds, &displ)) {
353 bool SkDisplacementMapEffect::filterImageGPU(Proxy* proxy, const SkBitmap& src, const Context& ctx, argument
357 if (getColorInput() && !getColorInput()->getInputResultGPU(proxy, src, ctx, &colorBM,
364 !getDisplacementInput()->getInputResultGPU(proxy, src, ctx, &displacementBM,
375 if (!this->applyCropRect(ctx, proxy, displacementBM,
H A DSkDropShadowImageFilter.cpp64 bool SkDropShadowImageFilter::onFilterImage(Proxy* proxy, const SkBitmap& source, argument
70 if (getInput(0) && !getInput(0)->filterImage(proxy, source, ctx, &src, &srcOffset))
78 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(bounds.width(), bounds.height()));
H A DSkLightingImageFilter.cpp934 bool SkDiffuseLightingImageFilter::onFilterImage(Proxy* proxy, argument
942 if (input && !input->filterImage(proxy, source, ctx, &src, &srcOffset)) {
950 if (!this->applyCropRect(ctx, proxy, src, &srcOffset, &bounds, &src)) {
1024 bool SkSpecularLightingImageFilter::onFilterImage(Proxy* proxy, argument
1032 if (input && !input->filterImage(proxy, source, ctx, &src, &srcOffset)) {
1041 if (!this->applyCropRect(ctx, proxy, src, &srcOffset, &bounds, &src)) {
H A DSkMatrixConvolutionImageFilter.cpp256 bool SkMatrixConvolutionImageFilter::onFilterImage(Proxy* proxy, argument
263 if (getInput(0) && !getInput(0)->filterImage(proxy, source, ctx, &src, &srcOffset)) {
272 if (!this->applyCropRect(ctx, proxy, src, &srcOffset, &bounds, &src)) {
H A DSkMatrixImageFilter.cpp47 bool SkMatrixImageFilter::onFilterImage(Proxy* proxy, argument
54 if (getInput(0) && !getInput(0)->filterImage(proxy, source, ctx, &src, &srcOffset)) {
72 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(dstBounds.width(), dstBounds.height()));
H A DSkMergeImageFilter.cpp68 bool SkMergeImageFilter::onFilterImage(Proxy* proxy, const SkBitmap& src, argument
83 SkAutoTUnref<SkBaseDevice> dst(proxy->createDevice(bounds.width(), bounds.height()));
97 if (!filter->filterImage(proxy, src, ctx, &tmp, &pos)) {
H A DSkMorphologyImageFilter.cpp141 Proxy* proxy,
148 if (getInput(0) && !getInput(0)->filterImage(proxy, source, ctx, &src, &srcOffset)) {
157 if (!this->applyCropRect(ctx, proxy, src, &srcOffset, &bounds, &src)) {
209 bool SkErodeImageFilter::onFilterImage(Proxy* proxy, argument
220 return this->filterImageGeneric(erodeXProc, erodeYProc, proxy, source, ctx, dst, offset);
223 bool SkDilateImageFilter::onFilterImage(Proxy* proxy, argument
234 return this->filterImageGeneric(dilateXProc, dilateYProc, proxy, source, ctx, dst, offset);
534 Proxy* proxy,
541 if (getInput(0) && !getInput(0)->getInputResultGPU(proxy, src, ctx, &input, &srcOffset)) {
545 if (!this->applyCropRect(ctx, proxy, inpu
139 filterImageGeneric(SkMorphologyImageFilter::Proc procX, SkMorphologyImageFilter::Proc procY, Proxy* proxy, const SkBitmap& source, const Context& ctx, SkBitmap* dst, SkIPoint* offset) const argument
533 filterImageGPUGeneric(bool dilate, Proxy* proxy, const SkBitmap& src, const Context& ctx, SkBitmap* result, SkIPoint* offset) const argument
577 filterImageGPU(Proxy* proxy, const SkBitmap& src, const Context& ctx, SkBitmap* result, SkIPoint* offset) const argument
582 filterImageGPU(Proxy* proxy, const SkBitmap& src, const Context& ctx, SkBitmap* result, SkIPoint* offset) const argument
[all...]
H A DSkOffsetImageFilter.cpp17 bool SkOffsetImageFilter::onFilterImage(Proxy* proxy, const SkBitmap& source, argument
29 if (input && !input->filterImage(proxy, source, ctx, &src, &srcOffset)) {
40 if (input && !input->filterImage(proxy, source, ctx, &src, &srcOffset)) {
49 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(bounds.width(), bounds.height()));
H A DSkPictureImageFilter.cpp61 bool SkPictureImageFilter::onFilterImage(Proxy* proxy, const SkBitmap&, const Context& ctx, argument
78 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(bounds.width(), bounds.height()));
H A DSkRectShaderImageFilter.cpp53 bool SkRectShaderImageFilter::onFilterImage(Proxy* proxy, argument
63 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(bounds.width(),
H A DSkTestImageFilters.cpp24 bool SkDownSampleImageFilter::onFilterImage(Proxy* proxy, const SkBitmap& src, argument
45 SkBaseDevice* dev = proxy->createDevice(dstW, dstH);
60 SkBaseDevice* dev = proxy->createDevice(src.width(), src.height());
H A DSkTileImageFilter.cpp19 bool SkTileImageFilter::onFilterImage(Proxy* proxy, const SkBitmap& src, argument
25 if (input && !input->filterImage(proxy, src, ctx, &source, &srcOffset)) {
55 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(w, h));
H A DSkXfermodeImageFilter.cpp45 bool SkXfermodeImageFilter::onFilterImage(Proxy* proxy, argument
55 !backgroundInput->filterImage(proxy, src, ctx, &background, &backgroundOffset)) {
60 !foregroundInput->filterImage(proxy, src, ctx, &foreground, &foregroundOffset)) {
78 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(bounds.width(), bounds.height()));
106 bool SkXfermodeImageFilter::filterImageGPU(Proxy* proxy, argument
113 if (getInput(0) && !getInput(0)->getInputResultGPU(proxy, src, ctx, &background,
115 return onFilterImage(proxy, src, ctx, result, offset);
120 if (getInput(1) && !getInput(1)->getInputResultGPU(proxy, src, ctx, &foreground,
122 return onFilterImage(proxy, src, ctx, result, offset);
/external/skia/src/fonts/
H A DSkGScalerContext.cpp61 fProxy = face->proxy()->createScalerContext(newDesc);
162 SkGTypeface::SkGTypeface(SkTypeface* proxy, const SkPaint& paint) argument
163 : SkTypeface(proxy->style(), SkTypefaceCache::NewFontID(), false)
164 , fProxy(SkRef(proxy))
H A DSkGScalerContext.h16 SkGTypeface(SkTypeface* proxy, const SkPaint&);
19 SkTypeface* proxy() const { return fProxy; } function in class:SkGTypeface

Completed in 438 milliseconds

1234567891011>>