HomeSort by relevance Sort by last modified time
    Searched refs:next (Results 626 - 650 of 4218) sorted by null

<<21222324252627282930>>

  /external/bluetooth/glib/tests/
queue-test.c 33 for (list = queue->head; list != NULL; list = list->next)
35 if (!list->next)
54 for (list = queue->head; list != NULL; list = list->next)
61 link = link->next;
70 for (list = queue->head; list != NULL; list = list->next)
73 link = link->next;
381 qinf->tail = qinf->tail->next;
394 if (qinf->tail && qinf->tail->next)
395 qinf->tail = qinf->tail->next;
403 qinf->head = qinf->head->next;
    [all...]
  /external/quake/quake/src/WinQuake/
cmd.cpp 30 struct cmdalias_s *next; member in struct:cmdalias_s
49 next frame. This allows commands like:
188 // for next frame
351 for (a = cmd_alias ; a ; a=a->next)
364 for (a = cmd_alias ; a ; a=a->next)
376 a->next = cmd_alias;
405 struct cmd_function_s *next; member in struct:cmd_function_s
547 for (cmd=cmd_functions ; cmd ; cmd=cmd->next)
559 cmd->next = cmd_functions;
572 for (cmd=cmd_functions ; cmd ; cmd=cmd->next)
    [all...]
  /libcore/luni/src/main/java/java/util/logging/
FileHandler.java 175 * to find next file
258 int next = 0;
276 while ((next = pattern.indexOf('%', cur)) >= 0) {
277 if (++next < pattern.length()) {
278 switch (value[next]) {
280 sb.append(value, cur, next - cur - 1).append(gen);
284 sb.append(value, cur, next - cur - 1).append(uniqueID);
292 sb.append(value, cur, next - cur - 1).append(tempPath);
298 sb.append(value, cur, next - cur - 1).append(homePath);
304 sb.append(value, cur, next - cur - 1).append('%')
    [all...]
  /libcore/luni/src/test/java/tests/java/sql/
MultiThreadAccessTest.java 73 while (userTab.next()) {
164 assertFalse("The record was not deleted", result.next());
167 assertTrue("The record was not inserted", result.next());
179 assertFalse("The record was not deleted", result.next());
183 assertTrue("The record was not updated", result.next());
210 assertTrue("There is no records with id = " + id, result.next());
224 assertTrue("There is no records with id = " + id, result.next());
246 while (result.next()) {
278 while (result.next()) {
279 while (result.next()) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiElementNodeTest.java 146 UiElementNode application = ui_child_it.next();
168 UiElementNode application = ui_child_it.next();
175 UiElementNode first_permission = ui_child_it.next();
213 UiElementNode application = ui_child_it.next();
220 UiElementNode first_activity = app_child_it.next();
226 UiElementNode second_activity = app_child_it.next();
233 UiElementNode intent_filter = activity_child_it.next();
239 UiElementNode first_provider = app_child_it.next();
245 UiElementNode second_provider = app_child_it.next();
251 UiElementNode first_permission = ui_child_it.next();
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
JSParser.cpp 101 void next(Lexer::LexType lexType = Lexer::IdentifyReservedWords) function
118 next();
231 next();
645 next();
696 next();
743 next();
756 next(); // Always performs automatic semicolon insertion.
764 next();
783 next();
790 next();
    [all...]
  /cts/tools/host/test/com/android/cts/
TestSessionBuilderTests.java 118 TestPackage testPackage = tsl.getTestPackages().iterator().next();
126 TestSuite testSuite = testPackage.getTestSuites().iterator().next();
130 TestCase testCase = testSuite.getTestCases().iterator().next();
134 Test test = testCase.getTests().iterator().next();
211 assertEquals(appPackageName, it.next());
299 TestPackage testPackage = tsl.getTestPackages().iterator().next();
307 TestSuite testSuite = testPackage.getTestSuites().iterator().next();
311 TestCase testCase = testSuite.getTestCases().iterator().next();
315 Test test = testCase.getTests().iterator().next();
380 TestPackage testPackage = tsl.getTestPackages().iterator().next();
    [all...]
  /external/dnsmasq/src/
dnsmasq.h 211 struct bogus_addr *next; member in struct:bogus_addr
217 struct doctor *next; member in struct:doctor
224 struct mx_srv_record *next; member in struct:mx_srv_record
230 struct naptr *next; member in struct:naptr
236 struct txt_record *next; member in struct:txt_record
241 struct ptr_record *next; member in struct:ptr_record
246 struct cname *next; member in struct:cname
252 struct interface_name *next; member in struct:interface_name
257 union bigname *next; /* freelist */ member in union:bigname
261 struct crec *next, *prev, *hash_next member in struct:crec
323 struct serverfd *next; member in struct:serverfd
338 struct server *next; member in struct:server
345 struct irec *next; member in struct:irec
351 struct listener *next; member in struct:listener
359 struct iname *next; member in struct:iname
364 struct resolvc *next; member in struct:resolvc
374 struct hostsfile *next; member in struct:hostsfile
393 struct frec *next; member in struct:frec
423 struct dhcp_lease *next; member in struct:dhcp_lease
428 struct dhcp_netid *next; member in struct:dhcp_netid
433 struct dhcp_netid_list *next; member in struct:dhcp_netid_list
440 struct hwaddr_config *next; member in struct:hwaddr_config
453 struct dhcp_config *next; member in struct:dhcp_config
477 struct dhcp_opt *next; member in struct:dhcp_opt
496 struct dhcp_boot *next; member in struct:dhcp_boot
504 struct pxe_service *next; member in struct:pxe_service
518 struct dhcp_vendor *next; member in struct:dhcp_vendor
526 struct dhcp_mac *next; member in struct:dhcp_mac
531 struct dhcp_bridge *alias, *next; member in struct:dhcp_bridge
537 struct cond_domain *next; member in struct:cond_domain
547 struct dhcp_context *next, *current; member in struct:dhcp_context
573 struct ping_result *next; member in struct:ping_result
593 struct tftp_transfer *next; member in struct:tftp_transfer
    [all...]
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalueiterator/
tst_qscriptvalueiterator.cpp 103 it.next();
120 it.next();
181 it.next();
225 it.next();
232 it.next();
253 it.next();
259 it.next();
262 it.next();
277 it.next();
284 it.next();
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderFlexibleBox.cpp 75 return next();
78 RenderBox* next() function in class:WebCore::FlexBoxIterator
325 child = iterator.next();
369 child = iterator.next();
402 child = iterator.next();
430 child = iterator.next();
474 child = iterator.next();
507 child = iterator.next();
517 child = iterator.next();
522 // If we just couldn't grow/shrink any more, then it's time to transition to the next flex group
    [all...]
  /external/bluetooth/glib/gio/xdgmime/
xdgmime.c 81 XdgDirTimeList *next; member in struct:XdgDirTimeList
86 XdgCallbackList *next; member in struct:XdgCallbackList
105 for (list = dir_time_list; list; list = list->next)
118 list->next = dir_time_list;
125 XdgDirTimeList *next; local
129 next = list->next;
132 list = next;
318 for (list = dir_time_list; list; list = list->next)
396 for (list = dir_time_list; list; list = list->next)
    [all...]
  /bionic/libc/kernel/common/linux/
proc_fs.h 47 struct proc_dir_entry *next, *parent, *subdir; member in struct:proc_dir_entry
57 struct kcore_list *next; member in struct:kcore_list
  /bionic/libc/unistd/
abort.c 70 while (p != NULL && p->next != NULL)
71 p = p->next;
  /cts/tools/signature-tools/test/signature/comparator/util/
AbstractComparatorTest.java 47 return apiDelta.getPackageDeltas().iterator().next();
53 return packageDelta.getClassDeltas().iterator().next();
  /dalvik/vm/mterp/arm-vfp/
fbinop2addr.S 21 GOTO_OPCODE(ip) @ jump to next instruction
fbinopWide2addr.S 22 GOTO_OPCODE(ip) @ jump to next instruction
funop.S 18 GOTO_OPCODE(ip) @ jump to next instruction
funopNarrower.S 18 GOTO_OPCODE(ip) @ jump to next instruction
funopWider.S 18 GOTO_OPCODE(ip) @ jump to next instruction
  /dalvik/vm/mterp/armv5te/
OP_ARRAY_LENGTH.S 15 GOTO_OPCODE(ip) @ jump to next instruction
OP_CONST.S 10 GOTO_OPCODE(ip) @ jump to next instruction
OP_CONST_4.S 10 GOTO_OPCODE(ip) @ execute next instruction
OP_CONST_HIGH16.S 9 GOTO_OPCODE(ip) @ jump to next instruction
OP_CONST_WIDE_16.S 10 GOTO_OPCODE(ip) @ jump to next instruction
OP_CONST_WIDE_32.S 12 GOTO_OPCODE(ip) @ jump to next instruction

Completed in 1506 milliseconds

<<21222324252627282930>>