HomeSort by relevance Sort by last modified time
    Searched defs:once (Results 1 - 25 of 124) sorted by null

1 2 3 4 5

  /external/skia/src/core/
SkGlobalInitialization_core.cpp 59 static SkOnce once; local
60 once(SkFlattenable::PrivateInitializer::InitCore);
SkOpts.cpp 118 static SkOnce once; local
119 once(init);
SkCpu.cpp 130 static SkOnce once; local
131 once([] { gCachedFeatures = read_cpu_features(); });
  /external/skia/src/fonts/
SkRemotableFontMgr.cpp 19 static SkOnce once; local
21 once([]{ empty = new SkRemotableFontIdentitySet; });
  /external/skia/src/ports/
SkFontConfigInterface_direct_factory.cpp 13 static SkOnce once; local
14 once([]{ singleton = new SkFontConfigInterfaceDirect(); });
SkTLS_pthread.cpp 18 static SkOnce once; local
19 once(pthread_key_create, &gSkTLSKey, SkTLS::Destructor);
  /external/skqp/src/core/
SkGlobalInitialization_core.cpp 59 static SkOnce once; local
60 once(SkFlattenable::PrivateInitializer::InitCore);
SkOpts.cpp 118 static SkOnce once; local
119 once(init);
  /external/skqp/src/fonts/
SkRemotableFontMgr.cpp 19 static SkOnce once; local
21 once([]{ empty = new SkRemotableFontIdentitySet; });
  /external/skqp/src/ports/
SkFontConfigInterface_direct_factory.cpp 13 static SkOnce once; local
14 once([]{ singleton = new SkFontConfigInterfaceDirect(); });
SkTLS_pthread.cpp 18 static SkOnce once; local
19 once(pthread_key_create, &gSkTLSKey, SkTLS::Destructor);
  /external/libvpx/libvpx/vpx_ports/
vpx_once.h 30 * will ensure foo() and bar() are each called only once, but in
44 * of calling func() only once. This must be at global scope because
51 static void once(void (*func)(void)) { function
97 static void once(void (*func)(void)) { function
119 static void once(void (*func)(void)) { function
130 static void once(void (*func)(void)) { function
  /external/skia/tests/
OnceTest.cpp 20 SkOnce once; local
21 once(add_five, &x);
22 once(add_five, &x);
23 once(add_five, &x);
24 once(add_five, &x);
25 once(add_five, &x);
34 SkOnce once; local
36 once([&] { x += 6; });
47 SkOnce once; local
48 once(inc_gX)
    [all...]
  /external/skqp/tests/
OnceTest.cpp 20 SkOnce once; local
21 once(add_five, &x);
22 once(add_five, &x);
23 once(add_five, &x);
24 once(add_five, &x);
25 once(add_five, &x);
34 SkOnce once; local
36 once([&] { x += 6; });
47 SkOnce once; local
48 once(inc_gX)
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/x509/
root.go 10 once sync.Once
16 once.Do(initSystemRoots)
9 once sync.Once var
  /prebuilts/go/linux-x86/src/crypto/x509/
root.go 10 once sync.Once
16 once.Do(initSystemRoots)
9 once sync.Once var
  /external/skia/src/utils/
SkEventTracer.cpp 60 static SkOnce once; local
62 once([] { defaultTracer = new SkDefaultEventTracer; });
  /external/skqp/src/utils/
SkEventTracer.cpp 60 static SkOnce once; local
62 once([] { defaultTracer = new SkDefaultEventTracer; });
  /external/curl/tests/libtest/
lib554.c 67 static int once(char *URL, bool oldstyle) function
218 res = once(URL, TRUE); /* old */
220 res = once(URL, FALSE); /* new */
lib643.c 73 static int once(char *URL, bool oldstyle) function
287 res = once(URL, TRUE); /* old */
289 res = once(URL, FALSE); /* new */
  /external/easymock/src/org/easymock/
IExpectationSetters.java 132 * Expect the last invocation once. This is default in EasyMock.
136 IExpectationSetters<T> once(); method in interface:IExpectationSetters
139 * Expect the last invocation at least once.
  /frameworks/native/libs/graphicsenv/
GraphicsEnv.cpp 26 // TODO(b/37049319) Get this from a header once one exists
86 static std::once_flag once; local
87 std::call_once(once, [this]() {
  /prebuilts/go/darwin-x86/src/mime/
type.go 72 var once sync.Once // guards initMime var
103 once.Do(initMime)
145 once.Do(initMime)
160 once.Do(initMime)
  /prebuilts/go/linux-x86/src/mime/
type.go 72 var once sync.Once // guards initMime var
103 once.Do(initMime)
145 once.Do(initMime)
160 once.Do(initMime)
  /external/selinux/libselinux/src/
checkAccess.c 10 static pthread_once_t once = PTHREAD_ONCE_INIT; variable
42 __selinux_once(once, avc_init_once);

Completed in 2533 milliseconds

1 2 3 4 5