/external/v8/src/mips/ |
builtins-mips.cc | 185 Label loop, entry; local 188 __ bind(&loop); 192 __ Branch(&loop, lt, scratch1, Operand(scratch2)); 295 Label loop, entry; local 298 __ bind(&loop); 303 __ Branch(&loop, lt, elements_array_storage, Operand(elements_array_end)); 417 Label loop, entry; local 420 __ bind(&loop); 429 __ Branch(&loop, lt, t0, Operand(t1)); 914 { Label loop, entry; local 986 Label loop, entry; local 1106 Label loop, entry; local 1435 { Label loop; local 1600 Label entry, loop; local [all...] |
/external/v8/src/x64/ |
builtins-x64.cc | 248 { Label loop, entry; local 252 __ bind(&loop); 257 __ j(below, &loop); 309 Label loop, entry; local 312 __ bind(&loop); 316 __ j(greater_equal, &loop); 471 // Copy arguments to the stack in a loop. 474 Label loop, entry; local 475 __ Set(rcx, 0); // Set loop variable to 0. 477 __ bind(&loop); 744 { Label loop; local 910 Label entry, loop; local 1045 Label loop, entry; local 1136 Label loop, entry; local 1269 Label loop, entry; local [all...] |
/frameworks/av/include/media/ |
SoundPool.h | 95 float rightVolume, int priority, int loop, float rate); 101 int loop() { return mLoop; } function in class:android::SoundEvent 124 int priority, int loop, float rate); 136 void setLoop(int loop); 171 int loop, float rate); 179 void setLoop(int channelID, int loop);
|
/frameworks/base/core/tests/coretests/src/android/webkit/ |
AccessibilityInjectorTest.java | [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/ |
MediaVisualizerTest.java | 616 Looper.loop(); // Blocks forever until Looper.quit() is called.
|
MediaAudioEffectTest.java | [all...] |
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/ |
InputTestsBase.java | 184 // that is to call Looper#loop() on the right looper, so we're going to get the looper 185 // object and call #loop() here. The messages in the handler actually run on the UI 189 // Now, Looper#loop() never exits in normal operation unless the Looper#quit() method 190 // is called, so we need to do that at the right time so that #loop() returns at some 191 // point and we don't end up in an infinite loop. 205 // The only way to get out of Looper#loop() is to call #quit() on it (or on its queue). 208 Looper.loop();
|
/system/core/init/ |
builtins.c | 33 #include <linux/loop.h> 408 } else if (!strncmp(source, "loop@", 5)) { 409 int mode, loop, fd; local 419 sprintf(tmp, "/dev/block/loop%d", n); 420 loop = open(tmp, mode); 421 if (loop < 0) { 425 /* if it is a blank loop device */ 426 if (ioctl(loop, LOOP_GET_STATUS, &info) < 0 && errno == ENXIO) { 427 /* if it becomes our loop device */ 428 if (ioctl(loop, LOOP_SET_FD, fd) >= 0) [all...] |
/cts/suite/audio_quality/client/src/com/android/cts/audiotest/ |
AudioProtocol.java | 484 //Log.d(TAG, "loop"); 485 Looper.loop();
|
/cts/tests/tests/media/src/android/media/cts/ |
AudioEffectTest.java | [all...] |
/cts/tests/tests/mediastress/src/android/mediastress/cts/ |
CodecTest.java | 658 Looper.loop(); // Blocks forever until Looper.quit() is called.
|
/external/dbus/bus/ |
connection.c | 369 DBusLoop *loop = data; local 373 while (!_dbus_loop_queue_dispatch (loop, connection)) 706 * effect on return to the main loop. We call this to free up 713 * only takes effect on return to main loop. 821 /* We can end the loop, since the connections are in oldest-first order */ [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/ |
PerformanceResults.java | 274 loop: while (idx-- >= 0) { 277 if (kind < 2) break loop; local 280 if (kind < 3) break loop; local 283 if (kind < 4) break loop; local
|
/external/iptables/iptables/ |
xtables.c | 1292 const char *loop = name; local 1294 while ((loop = strchr(loop, ',')) != NULL) { 1296 ++loop; /* skip ',' */ 1302 loop = name; 1305 if (loop == NULL) 1307 if (*loop == ',') 1308 ++loop; 1309 if (*loop == '\0') 1311 p = strchr(loop, ','); 1609 const char *loop = name; local [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/ |
TemplateInterpreter.java | 311 * <?cs loop:10 > ... <?cs /loop > command. Loops over a range of numbers, starting at 321 return; // Incrementing the wrong way. Avoid infinite loop. 324 loop(node.getVariable(), 0, end, 1, node.getCommand()); 328 * <?cs loop:0,10 > ... <?cs /loop > command. Loops over a range of numbers. 338 return; // Incrementing the wrong way. Avoid infinite loop. 341 loop(node.getVariable(), start, end, 1, node.getCommand()); 345 * <?cs loop:0,10,2 > ... <?cs /loop > command. Loops over a range of numbers, with 540 private void loop(PVariable loopVar, int start, int end, int incr, PCommand command) { method in class:TemplateInterpreter [all...] |
/external/llvm/lib/Target/MBlaze/ |
MBlazeISelLowering.cpp | 255 // simple loop. The incoming instruction knows the destination vreg to 265 // loop: 268 // bneid samt, loop 273 MachineBasicBlock *loop = F->CreateMachineBasicBlock(LLVM_BB); local 275 F->insert(It, loop); 287 MBB->addSuccessor(loop); 290 // Next, add the finish block as a successor of the loop block 291 loop->addSuccessor(finish); 292 loop->addSuccessor(loop); [all...] |
/external/mesa3d/src/glsl/ |
ir_reader.cpp | 395 } else if (strcmp(tag->value(), "loop") == 0) { 520 ir_read_error(st, list, "expected (loop <counter> <from> <to> " 533 ir_loop *loop = new(ctx) ir_loop; local 534 read_instructions(st, &loop->body_instructions, body_expr, loop); 536 delete loop; 537 loop = NULL; 539 return loop; [all...] |
ir_to_llvm.cpp | 95 std::pair<llvm::BasicBlock*, llvm::BasicBlock*> loop; member in class:ir_to_llvm_visitor 106 : ctx(p_mod->getContext()), mod(p_mod), fun(0), loop(std::make_pair((llvm::BasicBlock*)0, [all...] |
/external/v8/src/ia32/ |
builtins-ia32.cc | 243 { Label loop, entry; local 247 __ bind(&loop); 252 __ j(below, &loop); 304 Label loop, entry; local 307 __ bind(&loop); 311 __ j(greater_equal, &loop); 408 // Copy arguments to the stack in a loop. 409 Label loop, entry; local 412 __ bind(&loop); 418 __ j(not_equal, &loop); 674 { Label loop; local 833 Label entry, loop; local 967 Label loop, entry; local 1063 Label loop, entry, done; local 1234 Label loop, entry; local [all...] |
/external/v8/test/cctest/ |
test-regexp.cc | 1164 Label loop; local 1236 Label loop; local [all...] |
/frameworks/av/libvideoeditor/lvpp/ |
PreviewPlayer.cpp | 206 int32_t loop; local 208 && fileMeta->findInt32(kKeyAutoLoop, &loop) 209 && loop != 0) { [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/ |
CodecTest.java | 683 Looper.loop(); // Blocks forever until Looper.quit() is called.
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/ |
MediaPlayerPerformance.java | 146 Looper.loop();
|
/packages/apps/Email/src/com/android/email/ |
NotificationController.java | 257 // tear down the event loop [all...] |
/packages/apps/Phone/src/com/android/phone/ |
PhoneInterfaceManager.java | 486 Looper.loop();
|