Home
last modified time | relevance | path

Searched refs:loop (Results 1 – 25 of 98) sorted by relevance

1234

/haiku/src/apps/mail/
H A DUtilities.cpp71 int32 loop; in cistrcmp() local
74 for (loop = 0; loop < len; loop++) { in cistrcmp()
75 c1 = str1[loop]; in cistrcmp()
78 c2 = str2[loop]; in cistrcmp()
101 int32 loop; in cistrncmp() local
103 for (loop = 0; loop < max; loop++) { in cistrncmp()
167 int32 loop; in linelen() local
169 for (loop = 0; loop < len; loop++) { in linelen()
170 if (str[loop] == '\n') { in linelen()
171 if (!header || loop < 2 in linelen()
[all …]
H A DStatus.cpp114 uint32 loop; in MessageReceived() local
141 for (loop = 0; loop < strlen(name); loop++) { in MessageReceived()
142 if (name[loop] == '/') in MessageReceived()
143 name[loop] = '\\'; in MessageReceived()
H A DMailApp.cpp174 for (int32 loop = 1; loop < argc; loop++) in ArgvReceived() local
176 if (strcmp(argv[loop], "-h") == 0 in ArgvReceived()
177 || strcmp(argv[loop], "--help") == 0) in ArgvReceived()
186 else if (strncmp(argv[loop], "mailto:", 7) == 0) in ArgvReceived()
191 if ((options = strchr(argv[loop],'?')) != NULL) in ArgvReceived()
193 names.Append(argv[loop] + 7, options - argv[loop] - 7); in ArgvReceived()
198 names += argv[loop] + 7; in ArgvReceived()
201 else if (strncmp(argv[loop], "ccto:", 5) == 0) in ArgvReceived()
205 ccNames += argv[loop] + 5; in ArgvReceived()
207 else if (strncmp(argv[loop], "bccto:", 6) == 0) in ArgvReceived()
[all …]
H A DContent.cpp1160 for (int32 loop = 0; loop < size; loop++) { in MessageReceived() local
1161 if (text[loop] == '\n') { in MessageReceived()
1162 Insert(&text[offset], loop - offset + 1); in MessageReceived()
1163 offset = loop + 1; in MessageReceived()
1164 } else if (text[loop] == '\r') { in MessageReceived()
1165 text[loop] = '\n'; in MessageReceived()
1166 Insert(&text[offset], loop - offset + 1); in MessageReceived()
1167 if ((loop + 1 < size) in MessageReceived()
1168 && (text[loop + 1] == '\n')) in MessageReceived()
1169 loop++; in MessageReceived()
[all …]
H A DEnclosures.cpp209 for (int32 loop = 0; loop < fList->CountItems(); loop++) { in MessageReceived() local
210 item = (TListItem *) fList->ItemAt(loop); in MessageReceived()
212 fList->Select(loop); in MessageReceived()
/haiku/src/apps/resedit/
H A DInlineEditor.cpp32 BLooper *loop = (*target)->Looper(); in Filter() local
33 if (loop) { in Filter()
34 BMessenger msgr(loop); in Filter()
/haiku/src/apps/packageinstaller/
H A DPackageStatus.cpp86 BLooper *loop = fParent->Looper(); in MessageReceived() local
87 if (loop != NULL) { in MessageReceived()
88 loop->PostMessage(msg, fParent); in MessageReceived()
/haiku/src/tests/kits/media/playsound/
H A Dplaysound.cpp53 bool loop = false; in main() local
74 loop = true; in main()
108 BFileGameSound snd(file, loop); in main()
/haiku/src/system/libroot/posix/glibc/arch/x86_64/
H A Dmul_1.S31 L(loop):
39 jne L(loop)
H A Dsub_n.S32 L(loop):
38 jne L(loop)
H A Dadd_n.S32 L(loop):
38 jne L(loop)
H A Daddmul_1.S33 L(loop):
43 jne L(loop)
H A Dsubmul_1.S32 L(loop):
43 jne L(loop)
H A Dlshift.S37 L(loop):
52 jge L(loop)
H A Drshift.S39 L(loop):
54 jle L(loop)
/haiku/src/system/boot/platform/atari_m68k/
H A Dstage1.S100 .loop: label
103 bra .loop
/haiku/src/system/libroot/posix/glibc/arch/sparc/
H A Drshift.S36 andcc %o2,4-1,%g4 ! number of limbs in first loop
38 be,pn %xcc,.L0 ! if multiple of 4 limbs, skip first loop
41 sub %o2,%g4,%o2 ! adjust count for main loop
H A Dlshift.S39 andcc %o2,4-1,%g4 ! number of limbs in first loop
41 be,pn %xcc,.L0 ! if multiple of 4 limbs, skip first loop
44 sub %o2,%g4,%o2 ! adjust count for main loop
/haiku/src/tests/system/network/multicast/
H A Dmultisend.c104 int loop = 1; in open_multicast_socket() local
206 if (loop == 0) in open_multicast_socket()
207 if (setsockopt(fd, level, sockopt_l, &loop, sizeof(loop)) < 0) in open_multicast_socket()
/haiku/src/apps/clock/
H A Dcl_view.cpp54 for (short loop = 0; loop <= 8; loop++) { in TOffscreenView() local
55 if ((picH = rsrcs.FindResource('PICT', loop + 4, &len))) { in TOffscreenView()
56 fClockFace[loop] = new BBitmap(theRect, B_CMAP8); in TOffscreenView()
57 fClockFace[loop]->SetBits(picH, len, 0, B_CMAP8); in TOffscreenView()
/haiku/headers/private/app/
H A DLooperList.h57 FindLooperPred(const BLooper* loop) : looper(loop) {} in FindLooperPred()
/haiku/src/tests/kits/game/file_game_sound_test/
H A DFileSoundWindow.cpp27 loop = false; in FileSoundWindow()
110 fileSound = new BFileGameSound(&fileref,loop); in MessageReceived()
242 loop = true; in MessageReceived()
243 else loop = false; in MessageReceived()
/haiku/docs/user/game/
H A DFileGameSound.dox40 background music in a loop.
46 \param looping Whether or not to repeat the sound in a loop.
62 background music in a loop.
68 \param looping Whether or not to repeat the sound in a loop.
87 background music in a loop.
93 \param looping Whether or not to repeat the sound in a loop.
/haiku/src/system/libroot/posix/stdlib/
H A Dqsort.c90 loop: in local_qsort()
173 goto loop; in local_qsort()
184 goto loop; in local_qsort()
/haiku/src/kits/midi/
H A DMidiSynthFile.cpp179 BMidiSynthFile::EnableLooping(bool loop) in EnableLooping() argument
181 fStore->fLooping = loop; in EnableLooping()

1234