Searched refs:loop (Results 26 - 50 of 493) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebKit-7537.78.2/gtk/tests/
H A Dtestwebinspector.c28 GMainLoop *loop; variable
33 g_main_loop_quit(loop);
81 if (g_main_loop_is_running(loop))
82 g_main_loop_quit(loop);
88 loop = g_main_loop_new(NULL, TRUE);
96 g_main_loop_run(loop);
112 g_main_loop_run(loop);
120 g_main_loop_run(loop);
125 g_main_loop_unref(loop);
131 loop
[all...]
H A Dtestwebview.c36 GMainLoop* loop; variable
80 g_main_loop_quit(loop);
99 g_main_loop_quit(loop);
120 loop = g_main_loop_new(NULL, TRUE);
131 g_main_loop_run(loop);
142 GMainLoop* loop = (GMainLoop*)data; local
143 g_main_loop_quit(loop);
170 loop = g_main_loop_new(NULL, TRUE);
177 G_CALLBACK(map_event_cb), loop);
178 g_main_loop_run(loop);
[all...]
H A Dtestdownload.c26 GMainLoop* loop; variable
75 g_main_loop_quit(loop);
176 loop = g_main_loop_new(NULL, TRUE);
178 g_main_loop_run(loop);
188 g_main_loop_unref(loop);
216 g_main_loop_quit(loop);
238 loop = g_main_loop_new(NULL, TRUE);
242 g_main_loop_run(loop);
246 g_main_loop_unref(loop);
259 g_main_loop_quit(loop);
[all...]
H A Dtestdomdomwindow.c34 GMainLoop* loop; member in struct:__anon5561
43 if (g_main_loop_is_running(fixture->loop))
44 g_main_loop_quit(fixture->loop);
51 fixture->loop = g_main_loop_new(NULL, TRUE);
62 g_main_loop_unref(fixture->loop);
67 fixture->loop = g_main_loop_new(NULL, TRUE);
75 g_main_loop_run(fixture->loop);
82 g_main_loop_unref(fixture->loop);
154 g_main_loop_run(fixture->loop);
213 g_main_loop_run (fixture->loop);
[all...]
H A Dtestfavicondatabase.c29 GMainLoop *loop; variable
99 g_main_loop_quit(loop);
111 g_main_loop_quit(loop);
124 g_main_loop_quit(loop);
130 g_main_loop_quit(loop);
158 g_main_loop_run(loop);
194 loop = g_main_loop_new(NULL, TRUE);
201 g_main_loop_run(loop);
206 g_main_loop_run(loop);
211 g_main_loop_run(loop);
[all...]
H A Dtestmimehandling.c31 GMainLoop* loop; variable
87 g_main_loop_quit(loop);
130 loop = g_main_loop_new(NULL, TRUE);
141 g_main_loop_run(loop);
152 loop = g_main_loop_new(NULL, TRUE);
169 g_main_loop_run(loop);
/macosx-10.9.5/IOFireWireFamily-455.4.0/IOFireWireFamily.kmodproj/
H A DIOFWWorkLoop.cpp50 IOFWWorkLoop *loop; local
52 loop = OSTypeAlloc( IOFWWorkLoop );
53 if( !loop )
54 return loop;
56 if( !loop->init() )
58 loop->release();
59 loop = NULL;
62 return loop;
/macosx-10.9.5/ruby-104/ruby/sample/
H A Dtsvr.rb11 loop do
/macosx-10.9.5/uucp-11/uucp/lib/
H A Dstrstr.c47 goto loop;
51 loop:;
/macosx-10.9.5/WebCore-7537.78.1/platform/efl/
H A DRunLoopEfl.cpp63 RunLoop* loop = static_cast<RunLoop*>(data); local
66 MutexLocker locker(loop->m_wakeUpEventRequestedLock);
67 loop->m_wakeUpEventRequested = false;
70 loop->performWork();
/macosx-10.9.5/dcerpc-58/www/lib/
H A Dbreadcrumbs.rb12 loop do
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/NVPTX/
H A DNVPTXLowerAggrCopies.cpp34 // Lower MemTransferInst or load-store pair to loop
60 IRBuilder<> loop(loopBB);
61 // The loop index (ind) is a phi node.
62 PHINode *ind = loop.CreatePHI(indType, 0);
67 Value *val = loop.CreateLoad(loop.CreateGEP(srcAddr, ind), srcVolatile);
69 loop.CreateStore(val, loop.CreateGEP(dstAddr, ind), dstVolatile);
72 Value *newind = loop.CreateAdd(ind, ConstantInt::get(indType, 1));
75 loop
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/hash/
H A Dhash_func.c87 * through the loop get the "leftover bytes" (strlen % 8). On every other
100 u_int32_t n, loop; local
112 loop = (len + 8 - 1) >> 3;
131 } while (--loop);
151 u_int32_t h, loop; local
165 loop = (len + 8 - 1) >> 3;
184 } while (--loop);
/macosx-10.9.5/Libc-997.90.3/db/hash/FreeBSD/
H A Dhash_func.c108 * units. On the first time through the loop we get the "leftover bytes"
121 size_t loop; local
129 loop = (len + 8 - 1) >> 3;
156 } while (--loop);
169 size_t loop; local
179 loop = (len + 8 - 1) >> 3;
206 } while (--loop);
/macosx-10.9.5/Security-55471.14.18/libsecurity_cryptkit/ckutils/giantBench/
H A DgiantBench.c121 int loop; local
126 for(loop=0; loop<loops; loop++) {
137 int loop; local
142 for(loop=0; loop<loops; loop++) {
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Ddtfmtrtts.cpp26 // Warning -- makes test run infinite loop!!!
163 // Special infinite loop test mode for finding hard to reproduce errors
328 // We go through this loop until we achieve a match or until
329 // the maximum loop count is reached. We record the points at
332 int loop; local
335 for(loop = 0; loop < DEPTH; ++loop) {
336 if (loop > 0) {
337 d[loop]
[all...]
/macosx-10.9.5/ruby-104/ruby/test/ruby/
H A Dtest_assignment.rb264 a = loop do break; end; assert_nil(a)
265 a = loop do break nil; end; assert_nil(a)
266 a = loop do break 1; end; assert_equal(1, a)
267 a = loop do break []; end; assert_equal([], a)
268 a = loop do break [1]; end; assert_equal([1], a)
269 a = loop do break [nil]; end; assert_equal([nil], a)
270 a = loop do break [[]]; end; assert_equal([[]], a)
271 a = loop do break [*[]]; end; assert_equal([], a)
272 a = loop do break [*[1]]; end; assert_equal([1], a)
273 a = loop d
[all...]
/macosx-10.9.5/ruby-104/ruby/bcc32/
H A Dconfigure.bat13 :loop label
40 goto :loop
46 goto :loop
52 goto :loop
60 goto :loop
68 goto :loop
76 goto :loop
82 goto :loop
89 goto :loop
96 goto :loop
[all...]
/macosx-10.9.5/ruby-104/ruby/win32/
H A Dconfigure.bat11 :loop label
52 goto :loop
58 goto :loop
64 goto :loop
70 goto :loop
76 goto :loop
82 goto :loop
88 goto :loop
99 goto :loop
104 goto :loop
[all...]
/macosx-10.9.5/apache-786.1/httpd/modules/ssl/
H A Dssl_scache_shmcb.c214 unsigned int num_subcache, num_idx, loop; local
319 for (loop = 0; loop < header->subcache_num; loop++) {
320 SHMCBSubcache *subcache = SHMCB_SUBCACHE(header, loop);
446 unsigned int loop, total = 0, cache_total = 0, non_empty_subcaches = 0; local
458 for (loop = 0; loop < header->subcache_num; loop++) {
459 SHMCBSubcache *subcache = SHMCB_SUBCACHE(header, loop);
523 unsigned int loop = 0; local
583 unsigned int loop = 0; local
660 unsigned int loop = 0; local
718 unsigned int loop = 0; local
[all...]
/macosx-10.9.5/CommonCrypto-60049/test/CommonCrypto/
H A DCommonHMacClone.c144 * In this loop we do updates to the ctxOrig up until we
151 diag(" ...cloning at loop %u\n", loopNum);
225 unsigned loop;
249 /* ptext length set in test loop */
286 for(loop=0; loop < loops; loop++) {
293 /* per-loop settings */
295 stagedOrig = isBitSet(1, loop);
296 stagedClone = isBitSet(2, loop);
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-en/
H A Dtimer16 $loop = false
19 $loop = false
24 $loop = true
34 if $loop
59 if $loop
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-jp/
H A Dtimer16 $loop = false
19 $loop = false
24 $loop = true
34 if $loop
59 if $loop
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/system/v6synth/
H A Dtests.sh31 for name in aaaa a6 chain alias2 aaaa.dname loop loop2
57 loop.example. 0 IN CNAME loop.example.
/macosx-10.9.5/remote_cmds-41.90.1/telnet.tproj/
H A Dtn3270.c140 register int loop, c;
163 loop = c;
164 while (loop) {
169 loop--;
171 if ((c = c-loop)) {
175 if (loop) {
139 register int loop, c; local

Completed in 244 milliseconds

1234567891011>>