HomeSort by relevance Sort by last modified time
    Searched refs:loop (Results 101 - 125 of 609) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/core/tests/coretests/src/android/os/
HandlerTester.java 64 Looper.loop();
  /packages/apps/VideoEditor/src/com/android/videoeditor/service/
MovieAudioTrack.java 346 * Enable the loop mode for this audio track. Note that only one of the
347 * audio tracks in the timeline can have the loop mode enabled. When looping
351 * @param loop true to enable looping
353 void enableLoop(boolean loop) {
354 mLoop = loop;
365 * Enable the loop mode for this audio track. Note that only one of the
366 * audio tracks in the timeline can have the loop mode enabled. When looping
370 * @param loop true to enable looping
372 public void enableAppLoop(boolean loop) {
373 mAppLoop = loop;
    [all...]
  /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/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toy.ml 19 (* Run the main "interpreter loop" now. *)
  /external/mesa3d/src/pixelflinger2/
llvm_helper.h 139 struct Loop {
143 std::stack<Loop> m_loopStack;
194 BasicBlock *begin = BasicBlock::Create(m_builder.getContext(), name("loop"), function,0);
198 Loop loop; local
199 loop.begin = begin;
200 loop.end = end;
202 m_loopStack.push(loop);
207 Loop loop = m_loopStack.top() local
    [all...]
  /external/openssl/crypto/bn/
bn_div.c 182 int norm_shift,i,loop; local
264 loop=num_n-div_n;
269 wnum.d = &(snum->d[loop]);
272 wnum.dmax = snum->dmax - loop; /* so we don't step out of bounds */
284 if (!bn_wexpand(res,(loop+1))) goto err;
285 res->top=loop-no_branch;
286 resp= &(res->d[loop-1]);
313 for (i=0; i<loop-1; i++, wnump--, resp--)
316 /* the first part of the loop uses the top two words of
bn_prime.pl 9 loop: while ($#primes < $num-1) label
16 next loop if (($p%$primes[$i]) == 0);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/
h264bsdClearMbLayer.s 55 loop label
61 BCS loop
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
h264bsdClearMbLayer.S 55 loop: label
61 BCS loop
  /ndk/tests/device/test-gnustl-full/jni/
Android.mk 17 # This test enters an infinit loop for unknown reasons!
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
antRun.bat 33 rem Slurp the command line arguments. This loop allows for an unlimited number
38 :loop label
42 goto loop
  /external/grub/util/
grub-image 99 # This requires running as root, and using the loop device.
101 while test -e /dev/loop$i; do
102 if /sbin/losetup /dev/loop$i $image; then
109 mount /dev/loop$i $bootdir
110 umount="umount $bootdir && /sbin/losetup -d /dev/loop$i && trap '' 0"
grub-image.in 99 # This requires running as root, and using the loop device.
101 while test -e /dev/loop$i; do
102 if /sbin/losetup /dev/loop$i $image; then
109 mount /dev/loop$i $bootdir
110 umount="umount $bootdir && /sbin/losetup -d /dev/loop$i && trap '' 0"
  /external/webkit/Source/WebKit/gtk/tests/
testdomnode.c 34 GMainLoop* loop; member in struct:__anon15040
39 if (g_main_loop_is_running(fixture->loop))
40 g_main_loop_quit(fixture->loop);
47 fixture->loop = g_main_loop_new(NULL, TRUE);
55 g_main_loop_run(fixture->loop);
61 g_main_loop_unref(fixture->loop);
testmimehandling.c 32 GMainLoop* loop; variable
97 g_main_loop_quit(loop);
143 loop = g_main_loop_new(NULL, TRUE);
154 g_main_loop_run(loop);
165 loop = g_main_loop_new(NULL, TRUE);
182 g_main_loop_run(loop);
testcopyandpaste.c 38 GMainLoop* loop; member in struct:__anon15037
63 fixture->loop = g_main_loop_new(NULL, TRUE);
74 g_main_loop_unref(fixture->loop);
109 g_main_loop_quit(fixture->loop);
134 g_main_loop_run(fixture->loop);
176 g_main_loop_quit(currentFixture->loop);
225 g_main_loop_run(fixture->loop);
testkeyevents.c 40 GMainLoop* loop; member in struct:__anon15044
67 fixture->loop = g_main_loop_new(NULL, TRUE);
78 g_main_loop_unref(fixture->loop);
98 g_main_loop_quit(fixture->loop);
141 g_main_loop_run(fixture->loop);
206 g_main_loop_quit(fixture->loop);
222 g_main_loop_quit(fixture->loop);
  /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);
  /external/bluetooth/glib/glib/
gmain.c 4 * gmain.c: Main loop abstraction, timeouts, and idle functions
144 /* this pipe is used to wake up the main loop when a source is added.
406 g_error ("Cannot create pipe main loop wake-up: %s\n",
523 * for main loop functions when a main loop is not explicitly
549 /* Hooks for adding to the main loop */
676 /* Now wake up the main loop if it is waiting in the poll() */
759 * is a positive integer which is unique within a particular main loop
1019 * Sets the priority of a source. While the main loop is being
2529 GMainLoop *loop; local
    [all...]
  /system/core/libpixelflinger/codeflinger/
disassem.c 582 int loop; local
590 for (loop = 0; loop < 17; ++loop) {
592 if (loop == 16 || !(insn & (1 << loop))) {
597 if (start == loop - 1)
600 di->di_printf("r%d-r%d", start, loop - 1);
604 if (insn & (1 << loop))
605 start = loop;
    [all...]
  /external/chromium/base/
observer_list_unittest.cc 110 loop_ = new MessageLoop(); // Fire up a message loop.
114 //LOG(ERROR) << "Loop 0x" << std::hex << loop_ << " done. " <<
199 MessageLoop loop; local
213 loop.RunAllPending();
220 loop.RunAllPending();
252 MessageLoop loop; local
266 loop.RunAllPending();
269 // A test driver for a multi-threaded notification loop. Runs a number
276 MessageLoop loop; local
306 loop.RunAllPending()
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/audio/
AudioNode.java 66 protected boolean loop = false; field in class:AudioNode
365 return loop;
371 * @param loop True if the audio should keep looping after it is done playing.
373 public void setLooping(boolean loop) {
374 this.loop = loop;
735 oc.write(loop, "looping", false);
769 loop = ic.readBoolean("looping", false);
  /frameworks/av/media/libmedia/
SoundPool.cpp 242 int priority, int loop, float rate)
244 ALOGV("play sampleID=%d, leftVolume=%f, rightVolume=%f, priority=%d, loop=%d, rate=%f",
245 sampleID, leftVolume, rightVolume, priority, loop, rate);
276 channel->play(sample, channelID, leftVolume, rightVolume, priority, loop, rate);
393 void SoundPool::setLoop(int channelID, int loop)
395 ALOGV("setLoop(%d, %d)", channelID, loop);
399 channel->setLoop(loop);
548 float rightVolume, int priority, int loop, float rate)
558 " priority=%d, loop=%d, rate=%f",
560 priority, loop, rate)
661 int loop; local
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
SoundPoolTest.java 146 int loop = 0; local
148 int streamID = mSoundPool.play(sampleID, leftVolume, rightVolume, priority, loop, rate);
162 streamID = mSoundPool.play(sampleID, leftVolume, rightVolume, priority, loop, rate);
164 loop = -1;// loop forever
165 mSoundPool.setLoop(streamID, loop);
  /external/bluetooth/glib/gio/tests/
unix-streams.c 35 GMainLoop *loop; variable
128 g_main_loop_quit (loop);
231 loop = g_main_loop_new (NULL, TRUE);
232 g_main_loop_run (loop);
233 g_main_loop_unref (loop);

Completed in 401 milliseconds

1 2 3 45 6 7 8 91011>>