OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fProxy
(Results
1 - 5
of
5
) sorted by null
/external/skia/src/utils/
SkProxyCanvas.cpp
3
SkProxyCanvas::SkProxyCanvas(SkCanvas* proxy) :
fProxy
(proxy) {
4
SkSafeRef(
fProxy
);
8
SkSafeUnref(
fProxy
);
12
SkRefCnt_SafeAssign(
fProxy
, proxy);
18
return
fProxy
->save(flags);
23
return
fProxy
->saveLayer(bounds, paint, flags);
27
fProxy
->restore();
31
return
fProxy
->translate(dx, dy);
35
return
fProxy
->scale(sx, sy);
39
return
fProxy
->rotate(degrees)
[
all
...]
/external/skia/include/utils/
SkProxyCanvas.h
15
SkProxyCanvas() :
fProxy
(NULL) {}
19
SkCanvas* getProxy() const { return
fProxy
; }
82
SkCanvas*
fProxy
;
/external/skia/src/core/
SkBlitter.cpp
487
Sk3DShader(SkShader* proxy) :
fProxy
(proxy) {
493
SkSafeUnref(
fProxy
);
500
if (
fProxy
) {
501
return
fProxy
->setContext(device, paint, matrix);
509
if (
fProxy
) {
510
fProxy
->shadeSpan(x, y, span, count);
514
if (
fProxy
== NULL) {
528
if (
fProxy
) {
574
if (
fProxy
) {
575
fProxy
->beginSession()
[
all
...]
SkStream.cpp
356
:
fProxy
(proxy)
364
:
fProxy
(proxy)
395
fProxy
->unref();
403
return
fProxy
->rewind();
408
return
fProxy
->getFileName();
421
return
fProxy
->read(buffer, size); // requesting total size
439
return remaining +
fProxy
->read(NULL, size - remaining);
467
s =
fProxy
->read(fBuffer, fBufferSize);
487
actuallyRead +=
fProxy
->read(buffer, size);
501
return
fProxy
->getMemoryBase()
[
all
...]
/external/skia/include/core/
SkStream.h
236
SkStream*
fProxy
;
Completed in 65 milliseconds