HomeSort by relevance Sort by last modified time
    Searched refs:loop (Results 176 - 200 of 509) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/sonivox/arm-wt-22k/lib_src/
ARM-E_mastergain_gnu.s 72 loop: label
95 BGT loop
ARM-E_interpolate_loop_gnu.s 78 ADD pLoopEnd, pLoopEnd, #1 @ need loop end to equal last sample + 1
81 SUBS tmp0, pPhaseAccum, pLoopEnd @ check for loop end
82 ADDGE pPhaseAccum, pLoopStart, tmp0 @ loop back to start
  /external/webkit/Source/WebCore/html/
HTMLMediaElement.idl 69 attribute [Reflect] boolean loop;
  /external/webrtc/src/system_wrappers/source/
file_impl.cc 118 const bool readOnly, const bool loop,
184 _looping = loop;
  /external/yaffs2/yaffs2/
yaffs_qsort.c 85 loop: SWAPINIT(a, es);
153 goto loop;
  /frameworks/base/media/java/android/media/
SoundPool.java 53 * <p>Sounds can be looped by setting a non-zero loop value. A value of -1
54 * causes the sound to loop forever. In this case, the application must
268 * streams is exceeded. A loop value of -1 means loop forever,
269 * a value of 0 means don't loop, other values indicate the
280 * @param loop loop mode (0 = no loop, -1 = loop forever)
285 int priority, int loop, float rate)
    [all...]
  /frameworks/base/media/libmediaplayerservice/
StagefrightPlayer.cpp 157 status_t StagefrightPlayer::setLooping(int loop) {
160 return mPlayer->setLooping(loop);
  /cts/tests/tests/telephony/src/android/telephony/cts/
CellLocationTest.java 97 Looper.loop();
  /external/chromium/chrome/common/extensions/docs/examples/extensions/fx/
bg.js 41 // Map of sounds that play in a continuous loop while an event is happening
121 function playSound(id, loop) {
136 if (loop)
137 sound.loop = loop;
  /external/dnsmasq/src/
util.c 70 int r; int i; int loop; local
75 for (loop = 0;loop < 2;++loop) {
  /external/skia/src/utils/unix/
SkOSWindow_Unix.cpp 89 void SkOSWindow::loop() function in class:SkOSWindow
94 bool loop = true; local
96 while (loop) {
122 loop = false;
  /external/zlib/contrib/masm686/
match.asm 145 ; entering the main loop).
233 ;/* Jump into the main loop. */
246 ; * Here is the inner loop of the function. The function will spend the
247 ; * majority of its time in this loop, and majority of that time will
250 ; * Within this loop:
300 ; * starting the compare loop. So what this code does is skip over 0-3
304 ; * It should be confessed that this loop usually does not represent
348 ;/* have so far, then forget it and return to the lookup loop. */
  /frameworks/base/core/tests/coretests/src/android/content/
ContentQueryMapTest.java 45 Looper.loop();
71 // The cache won't notice changes until the loop runs.
  /frameworks/base/media/libmediaplayerservice/nuplayer/
NuPlayerDriver.h 52 virtual status_t setLooping(int loop);
  /system/media/wilhelm/src/android/
android_GenericMediaPlayer.cpp 349 int32_t loop = 0; local
350 if (msg->findInt32(WHATPARAM_LOOP_LOOPING, &loop)) {
351 if (loop) {
358 (void) mPlayer->setLooping(loop);
  /cts/tests/tests/os/src/android/os/cts/
LooperTest.java 66 method = "loop",
76 Looper.loop();
198 Looper.loop();
241 Looper.loop();
  /external/bluetooth/glib/gio/tests/
sleepy-stream.c 227 static GMainLoop *loop; variable
245 g_main_loop_quit (loop);
274 g_main_loop_run (loop = g_main_loop_new (NULL, FALSE));
  /external/sonivox/arm-hybrid-22k/lib_src/
ARM-E_interpolate_loop_gnu.s 78 ADD pLoopEnd, pLoopEnd, #1 @ need loop end to equal last sample + 1
81 SUBS tmp0, pPhaseAccum, pLoopEnd @ check for loop end
82 ADDGE pPhaseAccum, pLoopStart, tmp0 @ loop back to start
  /external/qemu/distrib/sdl-1.2.12/src/hermes/
x86p_32.asm 44 .L1 ; short loop
103 .L5 ; tail loop
125 .L1 ; short loop
175 .L5 ; tail loop
196 .L1 ; short loop
248 .L5 ; tail loop
271 .L1 ; short loop
342 .L6 ; tail loop
369 .L1 ; short loop
442 .L6 ; tail loop
    [all...]
  /external/chromium/chrome/browser/automation/
automation_provider_win.cc 75 // This task enqueues a mouse event on the event loop, so that the view
127 // loop) have been processed by the time this is sent.
213 MessageLoopForUI* loop = MessageLoopForUI::current(); local
214 bool did_allow_task_nesting = loop->NestableTasksAllowed();
215 loop->SetNestableTasksAllowed(true);
217 loop->Run(&handler);
218 loop->SetNestableTasksAllowed(did_allow_task_nesting);
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
jsilver.sablecc 97 {command} loop = 'loop';
263 | {loop_to} cs_open loop command_delimiter variable assignment expression cs_close
265 [i1]:cs_open slash [i3]:loop [i2]:cs_close
266 // <?cs loop:x=20 ?>...<?cs /loop ?>
273 | {loop} cs_open loop command_delimiter variable assignment
276 [i1]:cs_open slash [i3]:loop [i2]:cs_close
277 // <?cs loop:x=1,20 ?>...<?cs /loop ?
    [all...]
  /external/openssl/apps/
engine.c 296 int loop, res, num = sk_OPENSSL_STRING_num(cmds); local
303 for(loop = 0; loop < num; loop++)
307 cmd = sk_OPENSSL_STRING_value(cmds, loop);
  /external/dbus/bus/
bus.c 56 DBusLoop *loop; member in struct:BusContext
125 return _dbus_loop_add_watch (context->loop,
139 _dbus_loop_remove_watch (context->loop,
161 return _dbus_loop_add_timeout (context->loop,
174 _dbus_loop_remove_timeout (context->loop,
719 context->loop = _dbus_loop_new ();
720 if (context->loop == NULL)
1077 if (context->loop)
1079 _dbus_loop_unref (context->loop);
1080 context->loop = NULL
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
codegen.ml 153 * goto loop
154 * loop:
165 * br endcond, loop, endloop
179 (* Make the new basic block for the loop header, inserting after current
181 let loop_bb = append_block context "loop" the_function in
190 (* Within the loop, the variable is defined equal to the PHI node. If it
198 (* Emit the body of the loop. This, like any other expr, can change the
215 * the body of the loop mutates the variable. *)
224 (* Create the "after loop" block and insert it. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
codegen.ml 103 (* Make the new basic block for the loop header, inserting after current
107 let loop_bb = append_block context "loop" the_function in
119 (* Within the loop, the variable is defined equal to the PHI node. If it
127 (* Emit the body of the loop. This, like any other expr, can change the
149 (* Create the "after loop" block and insert it. *)

Completed in 467 milliseconds

1 2 3 4 5 6 78 91011>>