OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fSaveCount
(Results
1 - 5
of
5
) sorted by null
/external/skia/src/core/
SkCanvasPriv.h
20
int
fSaveCount
;
SkCanvas.cpp
453
fSaveCount
= canvas->getSaveCount();
520
SkASSERT(fCanvas->getSaveCount() ==
fSaveCount
);
546
int
fSaveCount
;
656
fSaveCount
= 1;
[
all
...]
/external/skia/include/core/
SkClipStack.h
21
// stores the stack depth (
fSaveCount
) and clips (fDeque) separately.
23
// (i.e., the
fSaveCount
in force when it was added). Restores are thus
24
// implemented by removing clips from fDeque that have an
fSaveCount
larger
81
int getSaveCount() const { return
fSaveCount
; }
183
int
fSaveCount
; // save count of stack when this element was added.
225
fSaveCount
= saveCount;
294
int getSaveCount() const { return
fSaveCount
; }
454
int
fSaveCount
;
SkCanvas.h
[
all
...]
/external/skia/tests/
PictureTest.cpp
557
,
fSaveCount
(0)
568
++
fSaveCount
;
577
unsigned int getSaveCount() const { return
fSaveCount
; }
582
unsigned int
fSaveCount
;
[
all
...]
Completed in 247 milliseconds