/external/clearsilver/cs/ |
test11.cs | 30 <?cs loop:x=#1,#20 ?><?cs set:foo[x] = x ?><?cs /loop ?> 31 <?cs loop:x=#1,#20 ?><?cs var:foo[x] ?> == <?cs var:x ?> 32 <?cs /loop ?>
|
test_first_last.cs | 22 Testing loop 23 <?cs loop:x = 0, 50, 5 ?> 29 <?cs /loop ?>
|
/external/icu4c/tools/genprops/misc/ |
ucdstrip.pl | 6 # The Perl option -p above runs a while(<>) loop and prints the expression output.
|
/external/icu4c/tools/genprops/ |
ucdstrip.pl | 6 # The Perl option -p above runs a while(<>) loop and prints the expression output.
|
/external/libvpx/ |
usage_cx.dox | 3 The vpx_codec_encode() function is at the core of the decode loop. It
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Statements/ |
dowhile-006.js | 77 "hit code after loop in inner loop", 83 "hit code after loop in outer loop",
|
dowhile-002.js | 47 result2 = "failed: broke out of loop, but not out of labeled block"; 58 "breaking out of a do... while loop", 65 "breaking out of a labeled do...while loop",
|
forin-001.js | 96 * Break out of a for...in loop 131 * Break out of a labeled for...in loop. 160 "verify statements in for loop are evaluated", 166 "verify break out of labeled for...in loop", 178 * Labeled break out of a labeled for...in loop. 206 "verify statements in for loop are evaluated", 212 "verify break out of labeled for...in loop", 224 * Labeled continue from a labeled for...in loop 243 "verify statements in for loop are evaluated", 249 "verify break out of labeled for...in loop", [all...] |
while-004.js | 65 var result2 = "fail: did not execute code after loop, but inside label"; 79 "DoWhile_2: " +description + " - code inside the loop, before the continue should be executed ("+j+")", 91 "DoWhile_2: " +description +" - code after loop but inside label should be executed", 111 result2 = "fail: got to code outside of loop but inside label"; 118 "DoWhile_3: " +description +" - verify break out of loop", 158 "DoWhile_4: " +description +" - verify break out of while loop", 183 var result2 = "fail: did not execute code after loop, but inside label"; 198 "DoWhile_5: " +description + " - continue should not execute statements above the loop", 210 "DoWhile_5: " +description +" - code after loop but inside label should be executed",
|
/dalvik/vm/compiler/ |
Loop.h | 29 bool isCountUpLoop; // count up or down loop 30 OpCode loopBranchOpcode; // OP_IF_XXX for the loop back branch 34 bool bodyIsClean; // loop body cannot throw any exceptions
|
Loop.c | 20 #include "Loop.h" 29 * | loop body (B1) 31 * | loop back (B2) 157 * A loop is considered optimizable if: 159 * 2) The loop back branch compares the BIV with a constant 160 * 3) If it is a count-up loop, the condition is GE/GT, or LE/LT/LEZ/LTZ for 161 * a count-down loop. 163 * Return false if the loop is not optimizable. 176 /* Count up or down loop? */ 178 /* Infinite loop */ [all...] |
/external/dbus/bus/ |
expirelist.c | 41 bus_expire_list_new (DBusLoop *loop, 54 list->loop = loop; 65 if (!_dbus_loop_add_timeout (list->loop, 86 _dbus_loop_remove_timeout (list->loop, list->timeout, 148 * a busy loop) 158 /* We can end the loop, since the connections are in oldest-first order */ 243 DBusLoop *loop; local 254 loop = _dbus_loop_new (); 255 _dbus_assert (loop != NULL) [all...] |
/external/webkit/WebKit/gtk/tests/ |
testwebview.c | 32 GMainLoop* loop; variable 76 g_main_loop_quit(loop); 112 loop = g_main_loop_new(NULL, TRUE); 122 g_main_loop_run(loop); 132 GMainLoop* loop = (GMainLoop*)data; local 133 g_main_loop_quit(loop); 162 loop = g_main_loop_new(NULL, TRUE); 171 G_CALLBACK(map_event_cb), loop); 172 g_main_loop_run(loop); 176 g_main_loop_run(loop); [all...] |
testwebframe.c | 77 static gboolean print_requested_cb(WebKitWebView* webView, WebKitWebFrame* webFrame, GMainLoop* loop) 80 g_main_loop_quit(loop); 84 static void print_timeout(GMainLoop* loop) 86 if (g_main_loop_is_running(loop)) 87 g_main_loop_quit(loop); 104 GMainLoop* loop = g_main_loop_new(NULL, TRUE); local 109 loop); 117 g_timeout_add(1000, (GSourceFunc)print_timeout, loop); 118 g_main_loop_run(loop);
|
/frameworks/base/core/java/android/os/ |
Looper.java | 23 * Class used to run a message loop for a thread. Threads by default do 24 * not have a message loop associated with them; to create one, call 25 * {@link #prepare} in the thread that is to run the loop, and then 26 * {@link #loop} to have it process messages until the loop is stopped. 28 * <p>Most interaction with a message loop is through the 32 * using the separation of {@link #prepare} and {@link #loop} to create an 48 * Looper.loop(); 67 * this looper, before actually starting the loop. Be sure to call 68 * {@link #loop()} after calling this method, and end it by callin 106 public static final void loop() { method in class:Looper [all...] |
/external/chromium/base/ |
message_pump_mac.mm | 47 // Must be called on the run loop thread. 140 // Ideally called on the run loop thread. If other run loops were running 141 // lower on the run loop thread's stack when this object was created, the 185 // Must be called on the run loop thread. 226 // Must be called on the run loop thread. 248 // Called from the run loop. 265 // Called from the run loop. 282 // The NSApplication-based run loop only drains the autorelease pool at each 290 // again as long as the loop is still running. 299 // Called from the run loop [all...] |
message_loop_unittest.cc | 91 MessageLoop loop(message_loop_type); 93 // Add tests to message loop 109 // After all tests, post a message that will shut down the message loop 122 MessageLoop loop(message_loop_type); 124 // Add tests to message loop 140 // After all tests, post a message that will shut down the message loop 189 MessageLoop loop(message_loop_type); 198 loop.PostDelayedTask( 202 loop.Run(); 210 MessageLoop loop(message_loop_type) [all...] |
chrome_application_mac.h | 25 // Controls the state of |handlingSendEvent_| in the event loop so that it is
|
timer_unittest.cc | 78 MessageLoop loop(message_loop_type); 90 MessageLoop loop(message_loop_type); 112 MessageLoop loop(message_loop_type); 124 MessageLoop loop(message_loop_type); 136 MessageLoop loop(message_loop_type); 175 MessageLoop loop(message_loop_type); 191 MessageLoop loop(message_loop_type); 224 MessageLoop loop(message_loop_type); 257 MessageLoop loop(message_loop_type); 338 // message loop does not cause crashes if there were pendin [all...] |
/external/libvpx/vp8/common/arm/armv6/ |
filter_v6.asm | 34 sub r2, r2, r3 ; inside loop increments input array, 35 ; so the height loop only needs to add 59 orr r7, r7, r3, lsr #2 ; construct loop counter 87 ands r10, r7, #0xff ; test loop counter 90 ldrneb r8, [r0, #-2] ; load data for next loop 149 orr r7, r7, r3, lsr #1 ; loop counter 176 ldrne r8, [r0] ; load data for next loop 182 ldr r1, [sp] ; update dst for next loop 184 add r0, r0, #16 ; updata src for next loop 211 sub r2, r2, r3 ; inside loop increments input array [all...] |
/external/dbus/test/ |
test-service.c | 4 static DBusLoop *loop; variable 13 _dbus_loop_quit (loop); 349 loop = _dbus_loop_new (); 350 if (loop == NULL) 353 if (!test_connection_setup (loop, connection)) 385 _dbus_verbose ("*** Test service entering main loop\n"); 386 _dbus_loop_run (loop); 388 test_connection_shutdown (loop, connection); 394 _dbus_loop_unref (loop); 395 loop = NULL [all...] |
/frameworks/base/media/libstagefright/codecs/amrwbenc/inc/ |
p_med_o.h | 20 * Median open-loop lag search *
26 Word16 Pitch_med_ol( /* output: open loop pitch lag */
27 Word16 wsp[], /* input : signal used to compute the open loop pitch */
32 Word16 L_0, /* input : old_ open-loop pitch */
39 Word16 Med_olag( /* output : median of 5 previous open-loop lags */
40 Word16 prev_ol_lag, /* input : previous open-loop lag */
|
/external/v8/test/mjsunit/regress/ |
regress-233.js | 32 function loop(s) { function 33 loop(s.replace(/\s/g, "")); 36 loop("No");
|
/external/genext2fs/ |
test-mount.sh | 41 mount -t ext2 -o ro,loop ext2.img mnt || fail 61 mount -t ext2 -o ro,loop ext2.img mnt || fail 65 egrep -v "(hda|hdb|tty|loop|ram|ubda)" $fname | \ 70 egrep -v "(hda|hdb|tty|loop|ram|ubda)" | \
|
/external/v8/test/cctest/ |
test-thread-termination.cc | 54 v8::Handle<v8::Value> Loop(const v8::Arguments& args) { 107 global->Set(v8::String::New("loop"), v8::FunctionTemplate::New(Loop)); 121 // Run a loop that will be infinite if thread termination does not work. 123 v8::String::New("try { loop(); fail(); } catch(e) { fail(); }"); 132 // itself in a loop that performs no calls. 139 // Run a loop that will be infinite if thread termination does not work. 141 v8::String::New("try { loop(); fail(); } catch(e) { fail(); }"); 168 // Run a loop that will be infinite if thread termination does not work. 170 v8::String::New("try { loop(); fail(); } catch(e) { fail(); }") [all...] |