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

1 2 3 4

  /external/skia/src/core/
SkGlobalInitialization_core.cpp 12 static SkOnce once; local
13 once([]{
SkOpts.cpp 130 static SkOnce once; local
131 once(init);
SkCpu.cpp 128 static SkOnce once; local
129 once([] { gCachedFeatures = read_cpu_features(); });
SkDataTable.cpp 82 static SkOnce once; local
83 once([]{ singleton = new SkDataTable(); });
SkMiniRecorder.cpp 104 static SkOnce once; local
109 once([]{ empty = new SkEmptyPicture; });
  /external/skqp/src/core/
SkGlobalInitialization_core.cpp 12 static SkOnce once; local
13 once([]{
SkOpts.cpp 130 static SkOnce once; local
131 once(init);
  /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/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/grpc-grpc/src/core/lib/gpr/
cpu_linux.cc 56 static gpr_once once = GPR_ONCE_INIT; local
57 gpr_once_init(&once, init_num_cpus);
cpu_posix.cc 48 static gpr_once once = GPR_ONCE_INIT; local
49 gpr_once_init(&once, init_ncpus);
68 static gpr_once once = GPR_ONCE_INIT; local
69 gpr_once_init(&once, init_thread_id_key);
  /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...]
  /external/python/httplib2/python2/httplib2/test/
test_ssl_context.py 77 def once(): function in function:HttpsContextTest.test_ssl_hostname_mismatch_repeat
84 once()
85 once()
  /external/skia/src/utils/
SkEventTracer.cpp 59 static SkOnce once; local
61 once([] { defaultTracer = new SkDefaultEventTracer; });
  /external/skqp/src/utils/
SkEventTracer.cpp 59 static SkOnce once; local
61 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.
  /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 761 milliseconds

1 2 3 4