/system/extras/tests/icachetest/ |
icache.S | 15 #define LOOP \ 49 /* each loop iteration is one cache line 52 LOOP LOOP LOOP LOOP LOOP LOOP LOOP LOOP LOOP LOOP LOOP LOOP LOOP LOOP LOOP LOOP [all...] |
icache2.S | 15 #define LOOP \ 35 /* each loop iteration is one cache line 38 LOOP LOOP LOOP LOOP LOOP LOOP LOOP LOOP LOOP LOOP LOOP LOOP LOOP LOOP LOOP LOOP [all...] |
/external/webkit/SunSpider/tests/ubench/ |
LIST | 7 loop-empty-resolve 8 loop-empty 9 loop-sum
|
/external/clearsilver/cs/ |
test_tag.cs | 1 <?int1 loop:x=0,2 ?><?int1 var:x ?> <?cs var:myvar ?><?int1 /loop ?>
|
test7.cs | 2 LOOP Test 5 <?cs loop:x = #1, #5, #2 ?><?cs var:x ?>, <?cs /loop ?> 8 <?cs loop:x = #1, #205, #2 ?><?cs var:x ?>, <?cs /loop ?> 11 <?cs loop:x = #205, #1, "-2" ?><?cs var:x ?>, <?cs /loop ?> 14 <?cs loop:x = #1, #205, #-2 ?><?cs var:x ?>, <?cs /loop ?> 17 <?cs loop:x = var1, var2, var3 ?><?cs var:x ?>, <?cs /loop ? [all...] |
test_splice.cs | 3 <?cs loop:b=0,10 ?> 4 <?cs loop:e=10,0,-1 ?> 6 <?cs /loop ?> 7 <?cs /loop ?>
|
test_iter.cs | 2 <?cs loop:foo = #0,#30 ?> 3 <?cs set:Loop[foo] = foo ?> 4 <?cs /loop ?> 9 <?cs each:foo = Loop ?>
|
test_with.cs | 2 <?cs loop:x=#0,#6 ?> 6 <?cs /loop ?>
|
test19.cs | 2 <?cs loop:a=0,1,1 ?> 3 <?cs loop:b=0,1,1 ?> 9 <?cs /loop ?> 10 <?cs /loop ?>
|
/external/dbus/test/ |
test-utils.c | 5 DBusLoop *loop; member in struct:__anon3421 24 return _dbus_loop_add_watch (cd->loop, 36 _dbus_loop_remove_watch (cd->loop, 54 return _dbus_loop_add_timeout (cd->loop, 64 _dbus_loop_remove_timeout (cd->loop, 73 DBusLoop *loop = data; local 77 while (!_dbus_loop_queue_dispatch (loop, connection)) 88 _dbus_loop_unref (cd->loop); 94 cdata_new (DBusLoop *loop, 103 cd->loop = loop [all...] |
test-utils.h | 12 dbus_bool_t test_connection_setup (DBusLoop *loop, 14 void test_connection_shutdown (DBusLoop *loop,
|
test-shell-service.c | 4 static DBusLoop *loop; variable 19 _dbus_loop_quit (loop); 142 loop = _dbus_loop_new (); 143 if (loop == NULL) 146 if (!test_connection_setup (loop, connection)) 178 _dbus_verbose ("*** Test service entering main loop\n"); 179 _dbus_loop_run (loop); 181 test_connection_shutdown (loop, connection); 187 _dbus_loop_unref (loop); 188 loop = NULL [all...] |
/external/dbus/dbus/ |
dbus-mainloop.h | 2 /* dbus-mainloop.h Main loop utility 40 DBusLoop* _dbus_loop_ref (DBusLoop *loop); 41 void _dbus_loop_unref (DBusLoop *loop); 42 dbus_bool_t _dbus_loop_add_watch (DBusLoop *loop, 47 void _dbus_loop_remove_watch (DBusLoop *loop, 51 dbus_bool_t _dbus_loop_add_timeout (DBusLoop *loop, 56 void _dbus_loop_remove_timeout (DBusLoop *loop, 61 dbus_bool_t _dbus_loop_queue_dispatch (DBusLoop *loop, 64 void _dbus_loop_run (DBusLoop *loop); 65 void _dbus_loop_quit (DBusLoop *loop); [all...] |
dbus-mainloop.c | 2 /* dbus-mainloop.c Main loop utility 174 add_callback (DBusLoop *loop, 177 if (!_dbus_list_append (&loop->callbacks, cb)) 180 loop->callback_list_serial += 1; 185 loop->watch_count += 1; 188 loop->timeout_count += 1; 196 remove_callback (DBusLoop *loop, 204 loop->watch_count -= 1; 207 loop->timeout_count -= 1; 212 _dbus_list_remove_link (&loop->callbacks, link) 219 DBusLoop *loop; local [all...] |
/external/webkit/WebCore/css/ |
WCSSPropertyNames.in | 2 -wap-marquee-loop
|
/external/tcpdump/tests/ |
isakmp2.sh | 3 uudecode isakmp-pointer-loop.puu 6 if (../tcpdump -t -n -r isakmp-pointer-loop.pcap | diff - isakmp2.out)
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Statements/ |
dowhile-005.js | 6 * Test a labeled do...while. Break out of the loop with no label 7 * should break out of the loop, but not out of the label. 9 * Currently causes an infinite loop in the monkey. Uncomment the 34 result2 = "fail: did not hit code after inner loop"; 55 "number of loop iterations", 61 "break out of inner loop", 67 "break out of outer loop",
|
/external/webkit/WebCore/manual-tests/inspector/ |
debugger-step-on-do-while-statements.html | 1 <script src="resources/loop-statements.js"></script> 17 Click the button and when the debugger breaks, set a breakpoint on the first line in the loop 19 The debugger should stop at the beggining of the loop.<br> 24 TEST 1: Click 'continue'. Execution should continue without stopping on the loop breakpoint again.<br> 25 TEST 2: Click 'Step over'. Debugger should step inside the loop to the next statement line. 28 TEST 3: 'Step over' to the end of the loop (and 'while' statement) and step over again. Debugger 29 should go to the beggining of the loop.<br>
|
debugger-step-on-while-statements.html | 1 <script src="resources/loop-statements.js"></script> 17 Click the button and when the debugger breaks, set a breakpoint on the first line in the loop 19 The debugger should stop at the beggining of the loop.<br> 24 TEST 1: Click 'continue'. Execution should continue without stopping on the loop breakpoint again.<br> 25 TEST 2: Click 'Step over'. Debugger should step inside the loop to the next statement line.<br> 27 TEST 4: 'Step over' the statements until reaching the end of the loop. Debugger should 28 step over to the beggingin of the while loop again. Click 'Step into'. Debugger should step into
|
debugger-step-on-for-in-statements.html | 24 Click the button and when the debugger breaks, set a breakpoint on the first line in the loop 26 The debugger should stop at the beggining of the loop.<br> 31 TEST 1: Click 'continue'. Execution should continue without stopping on the loop breakpoint again.<br> 32 TEST 2: Click 'Step over'. Debugger should step inside the loop to the next statement line.<br> 35 the for-in loop again.<br>
|
/system/core/toolbox/ |
umount.c | 8 #include <linux/loop.h> 10 // FIXME - only one loop mount is supported at a time 45 int loop, loop_fd; local 52 loop = is_loop_mount(argv[1]); 58 if (loop) { 59 // free the loop device 62 perror("open loop device failed");
|
/external/webkit/WebKit/gtk/tests/ |
testwebdatasource.c | 58 static void notify_load_status_unreachable_cb(WebKitWebView* view, GParamSpec* pspec, GMainLoop* loop) 76 g_main_loop_quit(loop); 79 static void notify_load_status_cb(WebKitWebView* view, GParamSpec* pspec, GMainLoop* loop) 115 g_main_loop_quit(loop); 118 static gboolean wait_timer_fired(GMainLoop* loop) 121 g_main_loop_quit(loop); 129 GMainLoop* loop; local 133 loop = g_main_loop_new(NULL, TRUE); 134 g_signal_connect(view, "notify::load-status", G_CALLBACK(notify_load_status_cb), loop); 138 waitTimer = g_timeout_add_seconds(defaultTimeout, (GSourceFunc)wait_timer_fired, loop); 147 GMainLoop* loop; local [all...] |
/external/openssl/crypto/engine/ |
enginetest.c | 78 int loop; local 81 loop = 0; 86 loop++, ENGINE_get_id(h), ENGINE_get_name(h)); 101 int loop; local 220 for(loop = 0; loop < 512; loop++) 222 sprintf(buf, "id%i", loop); 224 sprintf(buf, "Fake engine type %i", loop); 226 if(((block[loop] = ENGINE_new()) == NULL) | [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/js1_2/statements/ |
break.js | 48 // 'breaking out of "for" loop' 49 testcases[count++] = new TestCase ( SECTION, 'breaking out of "for" loop', 69 // 'breaking out of a "for" loop with a "label"' 70 testcases[count++] = new TestCase ( SECTION, 'breaking out of a "for" loop with a "label"', 81 // 'breaking out of a "while" loop' 82 testcases[count++] = new TestCase ( SECTION, 'breaking out of a "while" loop', 107 // 'breaking out of a "while" loop with a "label"' 108 testcases[count++] = new TestCase ( SECTION, 'breaking out of a "while" loop with a "label"', 119 // 'breaking out of a "do" loop' 120 testcases[count++] = new TestCase ( SECTION, 'breaking out of a "do" loop', [all...] |
continue.js | 51 // '"continue" in a "for" loop' 52 testcases[count++] = new TestCase ( SECTION, '"continue" in "for" loop', 72 // '"continue" in a "for" loop with a "label"' 73 testcases[count++] = new TestCase ( SECTION, '"continue" in "for" loop with a "label"', 86 // '"continue" in a "while" loop' 87 testcases[count++] = new TestCase ( SECTION, '"continue" in a "while" loop', 114 // '"continue" in a "while" loop with a "label"' 115 testcases[count++] = new TestCase ( SECTION, '"continue" in a "while" loop with a "label"', 129 // '"continue" in a "do" loop' 130 testcases[count++] = new TestCase ( SECTION, '"continue" in a "do" loop', [all...] |