OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CreateProc
(Results
1 - 6
of
6
) 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
...]
/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
...]
/external/chromium_org/third_party/skia/include/gpu/
GrEffectUnitTest.h
41
typedef GrEffectRef* (*
CreateProc
)(SkRandom*,
46
GrEffectTestFactory(
CreateProc
createProc
) {
47
fCreateProc =
createProc
;
61
CreateProc
fCreateProc;
/external/skia/include/gpu/
GrEffectUnitTest.h
41
typedef GrEffectRef* (*
CreateProc
)(SkRandom*,
46
GrEffectTestFactory(
CreateProc
createProc
) {
47
fCreateProc =
createProc
;
61
CreateProc
fCreateProc;
/external/chromium_org/third_party/skia/src/effects/
SkColorFilters.cpp
784
static SkFlattenable*
CreateProc
(SkFlattenableReadBuffer& buffer) {
805
return
CreateProc
;
/external/skia/src/effects/
SkColorFilters.cpp
784
static SkFlattenable*
CreateProc
(SkFlattenableReadBuffer& buffer) {
805
return
CreateProc
;
Completed in 5301 milliseconds