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

1 23 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
tree-flow.h 252 /* Use this to terminate the FOR_EACH_IMM_USE_STMT loop early. Failure to
415 extern void debug_loop (struct loop *, int);
625 /* Description of number of iterations of a loop. All the expressions inside
626 the structure can be evaluated at the end of the loop's preheader
627 (and due to ssa form, also anywhere inside the body of the loop). */
636 the loop will exit in the first iteration (i.e.
640 a loop (provided that assumptions == true and
642 of executions of the latch of the loop. */
644 the loop. */
646 /* The simplified shape of the exit condition. The loop exits i
    [all...]
  /external/dbus/bus/
expirelist.c 35 DBusLoop *loop; member in struct:BusExpireList
52 bus_expire_list_new (DBusLoop *loop,
65 list->loop = loop;
76 if (!_dbus_loop_add_timeout (list->loop,
97 _dbus_loop_remove_timeout (list->loop, list->timeout,
170 * a busy loop)
334 DBusLoop *loop; local
345 loop = _dbus_loop_new ();
346 _dbus_assert (loop != NULL)
    [all...]
  /external/v8/test/cctest/
test-utils.cc 144 for (int loop = 0; loop < kLoops; loop++) {
174 for (int loop = 0; loop < kLoops; loop++) {
175 int seq_length = loop % kMaxSequenceSize;
189 for (int loop = 0; loop < kLoops; loop++)
    [all...]
  /system/core/toolbox/
mount.c 14 #include <linux/loop.h>
90 parse_mount_options(char *arg, unsigned long rwflag, struct extra_opts *extra, int* loop, char *loopdev)
94 *loop = 0;
103 if (strncmp(s, "loop=", 5) == 0) {
104 *loop = 1;
109 if (strcmp(s, "loop") == 0) {
110 *loop = 1;
141 do_mount(char *dev, char *dir, char *type, unsigned long rwflag, void *data, int loop,
147 if (loop) {
160 perror("open loop device failed")
277 int loop = 0; local
    [all...]
  /external/chromium/base/
message_loop_unittest.cc 96 MessageLoop loop(message_loop_type);
98 // Add tests to message loop
114 // After all tests, post a message that will shut down the message loop
127 MessageLoop loop(message_loop_type);
129 // Add tests to message loop
145 // After all tests, post a message that will shut down the message loop
194 MessageLoop loop(message_loop_type);
203 loop.PostDelayedTask(
207 loop.Run();
215 MessageLoop loop(message_loop_type)
    [all...]
message_loop.h 62 // HRESULT hr = DoDragDrop(...); // Implicitly runs a modal message loop here.
138 // from within a message loop at some point in the future.
196 // Run the message loop.
210 // run loop you are quiting, so be careful!
230 // Optional call to connect the thread name with this loop.
238 // of recursive message loops. Some unwanted message loop may occurs when
243 // - The thread is running a message loop.
245 // - The task #1 implicitly start a message loop, like a MessageBox in the
248 // loop.
251 // message loop level"
518 MessageLoop* loop = MessageLoop::current(); local
597 MessageLoop* loop = MessageLoop::current(); local
    [all...]
  /external/bluetooth/glib/tests/
mapping-test.c 49 GMainLoop *loop = data; local
56 g_main_loop_quit (loop);
102 GMainLoop *loop; local
106 loop = g_main_loop_new (NULL, FALSE);
111 g_idle_add (check_stop, loop);
112 g_main_loop_run (loop);
  /external/llvm/lib/CodeGen/
CalcSpillWeights.cpp 93 MachineLoop *loop = 0; local
118 // Get loop info for mi.
121 loop = Loops.getLoopFor(mbb);
122 loopDepth = loop ? loop->getLoopDepth() : 0;
123 isExiting = loop ? loop->isLoopExiting(mbb) : false;
131 // Give extra weight to what looks like a loop induction variable update.
  /external/replicaisland/src/com/replica/replicaisland/
SoundSystem.java 82 synchronized public final int play(Sound sound, boolean loop, int priority) {
85 stream = mSoundPool.play(sound.soundId, 1.0f, 1.0f, priority, loop ? -1 : 0, 1.0f);
86 if (loop) {
94 synchronized public final int play(Sound sound, boolean loop, int priority, float volume, float rate) {
97 stream = mSoundPool.play(sound.soundId, volume, volume, priority, loop ? -1 : 0, rate);
98 if (loop) {
SpriteAnimation.java 93 public void setLoop(boolean loop) {
94 mLoop = loop;
  /frameworks/base/services/sensorservice/tests/
sensorservicetest.cpp 83 sp<Looper> loop = new Looper(false); local
84 loop->addFd(q->getFd(), 0, ALOOPER_EVENT_INPUT, receiver, q.get());
88 int32_t ret = loop->pollOnce(-1);
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
CinematicEvent.java 86 * @param loop Set the loop mode for the channel. The loop mode
93 public void setLoopMode(LoopMode loop);
96 * @return The loop mode currently set for the animation. The loop mode
118 * called internally in the update method, place here anything you want to run in the update loop
  /external/libyuv/files/source/
general.cc 90 int loop = 0; local
98 for (i = src_width * crop_height + crop_width; loop < dst_height ;
99 loop++, i += src_width) {
104 loop = 0;
106 loop < halfdst_height; loop++,i += halfsrc_width) {
110 loop = 0;
113 loop < halfdst_height; loop++, i += halfsrc_width) {
  /external/valgrind/main/exp-bbv/tests/ppc32-linux/
million.S 12 bne 0,test_loop # loop until zero
  /external/webkit/Source/WebKit/gtk/tests/
testdownload.c 27 GMainLoop* loop; variable
76 g_main_loop_quit(loop);
177 loop = g_main_loop_new(NULL, TRUE);
179 g_main_loop_run(loop);
189 g_main_loop_unref(loop);
217 g_main_loop_quit(loop);
239 loop = g_main_loop_new(NULL, TRUE);
243 g_main_loop_run(loop);
247 g_main_loop_unref(loop);
testwebresource.c 32 GMainLoop* loop; variable
174 g_main_loop_quit(loop);
186 loop = g_main_loop_new(NULL, TRUE);
201 g_main_loop_run(loop);
214 g_main_loop_unref(loop);
228 g_main_loop_quit(loop);
233 g_main_loop_quit(loop);
247 loop = g_main_loop_new(NULL, TRUE);
261 g_main_loop_run(loop);
265 g_main_loop_run(loop);
    [all...]
  /external/webkit/Source/WebKit/qt/tests/benchmarks/painting/
tst_painting.cpp 28 * Starts an event loop that runs until the given signal is received.
29 Optionally the event loop
37 QEventLoop loop; local
38 QObject::connect(obj, signal, &loop, SLOT(quit()));
42 QObject::connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit()));
46 loop.exec();
  /external/webrtc/src/system_wrappers/source/
file_impl.h 33 bool loop = false,
  /frameworks/rs/
rsPath.h 41 Path(Context *, RsPathPrimitive pp, bool isStatic, Allocation *vtx, Allocation *loop, float q);
  /external/bluetooth/bluez/tools/
ubcsp.c 322 loop; local
327 for (loop = 0; loop < 4; loop ++)
331 if (payload[octet] != ubcsp_le_buffer[loop][octet])
333 /* Bad match, just to loop again */
340 return loop;
342 /* Jumps out of octet loop if we got a bad match */
371 loop; local
471 for (loop = 0; loop < 4; loop ++)
    [all...]
  /cts/tests/tests/telephony/src/android/telephony/cts/
PhoneStateListenerTest.java 88 Looper.loop();
127 Looper.loop();
162 Looper.loop();
197 Looper.loop();
231 Looper.loop();
265 Looper.loop();
300 Looper.loop();
334 Looper.loop();
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
filter-mode.rb 48 * ever match since k=1 look in the QID loop of '.' will make it loop.
182 * ever match since k=1 look in the QID loop of '.' will make it loop.
  /external/chromium/base/files/
file_path_watcher.h 90 // message loop. Since it can also be called more than once, it should
98 void set_message_loop(base::MessageLoopProxy* loop) {
99 message_loop_ = loop;
  /external/chromium/chrome/browser/
spellcheck_message_filter_browsertest.cc 23 explicit TestingSpellCheckMessageFilter(MessageLoopForUI* loop)
24 : loop_(loop) { }
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
toy.ml 17 (* Run the main "interpreter loop" now. *)

Completed in 1863 milliseconds

1 23 4 5 6 7 8 91011>>