HomeSort by relevance Sort by last modified time
    Searched refs:CreateProc (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/third_party/skia/src/core/
SkTLS.h 15 * Maintains a per-thread cache, using a CreateProc as the key into that cache.
19 typedef void* (*CreateProc)();
23 * If Get() has previously been called with this CreateProc, then this
24 * returns its cached data, otherwise it returns NULL. The CreateProc is
28 static void* Find(CreateProc);
31 * Return the cached data that was returned by the CreateProc. This proc
33 * cached (per-thread), using the CreateProc as a key to look it up.
39 static void* Get(CreateProc, DeleteProc);
43 * the cached data associated with this CreateProc. If no associated cached
46 static void Delete(CreateProc);
    [all...]
SkTLS.cpp 15 SkTLS::CreateProc fCreateProc;
51 void* SkTLS::Get(CreateProc createProc, DeleteProc deleteProc) {
52 if (NULL == createProc) {
61 if (rec->fCreateProc == createProc) {
75 rec->fData = createProc();
76 rec->fCreateProc = createProc;
81 void* SkTLS::Find(CreateProc createProc) {
82 if (NULL == createProc) {
    [all...]
  /external/skia/src/core/
SkTLS.h 15 * Maintains a per-thread cache, using a CreateProc as the key into that cache.
19 typedef void* (*CreateProc)();
23 * If Get() has previously been called with this CreateProc, then this
24 * returns its cached data, otherwise it returns NULL. The CreateProc is
28 static void* Find(CreateProc);
31 * Return the cached data that was returned by the CreateProc. This proc
33 * cached (per-thread), using the CreateProc as a key to look it up.
39 static void* Get(CreateProc, DeleteProc);
43 * the cached data associated with this CreateProc. If no associated cached
46 static void Delete(CreateProc);
    [all...]
SkTLS.cpp 15 SkTLS::CreateProc fCreateProc;
51 void* SkTLS::Get(CreateProc createProc, DeleteProc deleteProc) {
52 if (NULL == createProc) {
61 if (rec->fCreateProc == createProc) {
75 rec->fData = createProc();
76 rec->fCreateProc = createProc;
81 void* SkTLS::Find(CreateProc createProc) {
82 if (NULL == createProc) {
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkFlattenable.h 19 SkFlattenable::Registrar(#flattenable, flattenable::CreateProc);
33 virtual Factory getFactory() SK_OVERRIDE { return CreateProc; } \
34 static SkFlattenable* CreateProc(SkFlattenableReadBuffer& buffer) { \
  /external/skia/include/core/
SkFlattenable.h 19 SkFlattenable::Registrar(#flattenable, flattenable::CreateProc);
33 virtual Factory getFactory() SK_OVERRIDE { return CreateProc; } \
34 static SkFlattenable* CreateProc(SkFlattenableReadBuffer& buffer) { \
  /external/chromium_org/third_party/skia/include/gpu/
GrEffectUnitTest.h 41 typedef GrEffectRef* (*CreateProc)(SkMWCRandom*,
46 GrEffectTestFactory(CreateProc createProc) {
47 fCreateProc = createProc;
61 CreateProc fCreateProc;
  /external/skia/include/gpu/
GrEffectUnitTest.h 41 typedef GrEffectRef* (*CreateProc)(SkMWCRandom*,
46 GrEffectTestFactory(CreateProc createProc) {
47 fCreateProc = createProc;
61 CreateProc fCreateProc;
  /external/chromium_org/third_party/skia/include/effects/
SkDashPathEffect.h 52 static SkFlattenable* CreateProc(SkFlattenableReadBuffer&);
  /external/skia/include/effects/
SkDashPathEffect.h 52 static SkFlattenable* CreateProc(SkFlattenableReadBuffer&);
  /external/skia/gm/
imagefiltersbase.cpp 38 FailImageFilter::CreateProc);
60 IdentityImageFilter::CreateProc);
  /external/chromium_org/third_party/skia/src/effects/
SkColorFilters.cpp 481 static SkFlattenable* CreateProc(SkFlattenableReadBuffer& buffer) {
502 return CreateProc;
SkDashPathEffect.cpp 532 return fInitialDashLength < 0 ? NULL : CreateProc;
546 SkFlattenable* SkDashPathEffect::CreateProc(SkFlattenableReadBuffer& buffer) {
  /external/skia/src/effects/
SkColorFilters.cpp 481 static SkFlattenable* CreateProc(SkFlattenableReadBuffer& buffer) {
502 return CreateProc;
SkDashPathEffect.cpp 532 return fInitialDashLength < 0 ? NULL : CreateProc;
546 SkFlattenable* SkDashPathEffect::CreateProc(SkFlattenableReadBuffer& buffer) {

Completed in 1420 milliseconds