OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SkAutoTCallIProc
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/skia/include/core/
SkTemplates.h
97
/** \class
SkAutoTCallIProc
105
template <typename T, int (*P)(T*)> class
SkAutoTCallIProc
: SkNoncopyable {
107
SkAutoTCallIProc
(T* obj): fObj(obj) {}
108
~
SkAutoTCallIProc
() { if (fObj) P(fObj); }
/external/chromium_org/third_party/skia/src/images/
SkImageDecoder_libgif.cpp
241
SkAutoTCallIProc
<GifFileType, DGifCloseFile> acp(gif);
Completed in 3248 milliseconds