Home
last modified time | relevance | path

Searched refs:next (Results 1 – 25 of 93) sorted by relevance

1234

/sdk/emulator/qtools/
Dhash_table.h16 entry *next; member
67 entry_type *ptr, *next; in ~HashTable() local
72 for (ptr = table_[ii]; ptr; ptr = next) { in ~HashTable()
73 next = ptr->next; in ~HashTable()
103 for (entry_type *ptr = table_[pos]; ptr; ptr = ptr->next) { in Update()
119 ptr->next = table_[pos]; in Update()
134 for (entry_type *ptr = table_[pos]; ptr; prev = ptr, ptr = ptr->next) { in Remove()
137 table_[pos] = ptr->next; in Remove()
139 prev->next = ptr->next; in Remove()
156 for (entry_type *ptr = table_[pos]; ptr; ptr = ptr->next) { in Find()
[all …]
Dtrace_reader.cpp18 DexSymList *next; member
77 free_ = free_->next; in AllocFuture()
83 future->next = free_; in FreeFuture()
92 for (ptr = head_; ptr; prev = ptr, ptr = ptr->next) { in InsertFuture()
98 future->next = head_; in InsertFuture()
102 future->next = prev->next; in InsertFuture()
103 prev->next = future; in InsertFuture()
143 futures_[ii].next = &futures_[ii + 1]; in Open()
145 futures_[kMaxNumBasicBlocks - 1].next = 0; in Open()
198 head_ = head_->next; in ReadBB()
[all …]
/sdk/monkeyrunner/test/com/android/monkeyrunner/
DMonkeyRunnerOptionsTest.java48 assertEquals("arg1", i.next()); in testParsingScriptArgument()
49 assertEquals("arg2", i.next()); in testParsingScriptArgument()
56 assertEquals("--arg1", options.getArguments().iterator().next()); in testParsingScriptArgumentWithDashes()
66 assertEquals("arg1", i.next()); in testMixedArgs()
67 assertEquals("--debug=True", i.next()); in testMixedArgs()
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/heap/
DNativeHeapDataImporter.java121 String kw = sc.next(); in getNativeAllocation()
129 kw = sc.next(); in getNativeAllocation()
137 kw = sc.next(); in getNativeAllocation()
151 kw = sc.next(); in getNativeAllocation()
164 String library = sc.next(); in getNativeAllocation()
165 sc.next(); // ignore "---" in getNativeAllocation()
170 filename = sc.next(); in getNativeAllocation()
188 String token = sc.next(); in scanTillSeparator()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/
DUiElementPullParserTest.java180 assertEquals(XmlPullParser.START_TAG, parser.next()); in testParser()
189 assertEquals(XmlPullParser.START_TAG, parser.next()); in testParser()
195 assertEquals(XmlPullParser.END_TAG, parser.next()); in testParser()
198 assertEquals(XmlPullParser.START_TAG, parser.next()); in testParser()
207 assertEquals(XmlPullParser.START_TAG, parser.next()); in testParser()
213 assertEquals(XmlPullParser.END_TAG, parser.next()); in testParser()
216 assertEquals(XmlPullParser.START_TAG, parser.next()); in testParser()
222 assertEquals(XmlPullParser.END_TAG, parser.next()); in testParser()
225 assertEquals(XmlPullParser.END_TAG, parser.next()); in testParser()
229 assertEquals(XmlPullParser.END_TAG, parser.next()); in testParser()
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/manifest/model/
DUiElementNodeTest.java145 UiElementNode application = ui_child_it.next(); in testLoadFrom_NewTree_1_Node()
167 UiElementNode application = ui_child_it.next(); in testLoadFrom_NewTree_2_Nodes()
174 UiElementNode first_permission = ui_child_it.next(); in testLoadFrom_NewTree_2_Nodes()
212 UiElementNode application = ui_child_it.next(); in testLoadFrom_NewTree_N_Nodes()
219 UiElementNode first_activity = app_child_it.next(); in testLoadFrom_NewTree_N_Nodes()
225 UiElementNode second_activity = app_child_it.next(); in testLoadFrom_NewTree_N_Nodes()
232 UiElementNode intent_filter = activity_child_it.next(); in testLoadFrom_NewTree_N_Nodes()
238 UiElementNode first_provider = app_child_it.next(); in testLoadFrom_NewTree_N_Nodes()
244 UiElementNode second_provider = app_child_it.next(); in testLoadFrom_NewTree_N_Nodes()
250 UiElementNode first_permission = ui_child_it.next(); in testLoadFrom_NewTree_N_Nodes()
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
DBasePullParser.java162 public int next() throws XmlPullParserException { in next() method in BasePullParser
203 int eventType = next(); in nextTag()
216 int eventType = next(); in nextText()
219 eventType = next(); in nextText()
235 return next(); in nextToken()
/sdk/emulator/qemud/
Dqemud.c644 Packet* next; member
662 _free_packets = p->next; in packet_alloc()
666 p->next = NULL; in packet_alloc()
681 p->next = _free_packets; in packet_free()
759 FDHandler* next; member
784 f->pref[0] = f->next; in fdhandler_remove()
785 if (f->next) in fdhandler_remove()
786 f->next->pref = f->pref; in fdhandler_remove()
793 f->next = list[0]; in fdhandler_prepend()
796 if (f->next) in fdhandler_prepend()
[all …]
/sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
DWakelockDetector.java221 AbstractInsnNode next = LintUtils.getNextInstruction(from); in add() local
222 if (next != null && next.getType() == AbstractInsnNode.VAR_INSN) { in add()
223 next = LintUtils.getNextInstruction(next); in add()
224 if (next != null && next.getType() == AbstractInsnNode.METHOD_INSN) { in add()
225 MethodInsnNode method = (MethodInsnNode) next; in add()
DAlwaysShowActionDetector.java150 Location next = location; in afterCheckFile() local
152 if (next != null) { in afterCheckFile()
153 location.setSecondary(next); in afterCheckFile()
DApiDetector.java497 AbstractInsnNode next = field.getNext(); in checkSwitchBlock() local
498 if (next == null || next.getOpcode() != Opcodes.INVOKEVIRTUAL) { in checkSwitchBlock()
501 next = next.getNext(); in checkSwitchBlock()
502 if (next == null) { in checkSwitchBlock()
506 switch (next.getOpcode()) { in checkSwitchBlock()
514 IntInsnNode iin = (IntInsnNode) next; in checkSwitchBlock()
DJavaPerformanceDetector.java415 TypeReferencePart type = iterator.next().astTypeReference().astParts().last(); in isOnLayoutMethod()
420 type = iterator.next().astTypeReference().astParts().last(); in isOnLayoutMethod()
468 VariableDefinition next = iterator.next(); in isLayoutMethod() local
469 TypeReferencePart type = next.astTypeReference().astParts().last(); in isLayoutMethod()
DDuplicateIdDetector.java184 Occurrence curr = occurrence.next; in afterCheckProject()
187 curr = curr.next; in afterCheckProject()
411 from.include(layouts.iterator().next()); in IncludeGraph()
581 prev.next = occurrence; in getIds()
612 path.append(iterator.next().getDisplayName()); in findId()
639 public Occurrence next; field in DuplicateIdDetector.Occurrence
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
DPropertySheetPage.java135 Object next = iterator.next(); in selectionChanged() local
136 if (next instanceof CanvasViewInfo) { in selectionChanged()
137 CanvasViewInfo info = (CanvasViewInfo) next; in selectionChanged()
163 Object next = iterator.next(); in selectionChanged() local
164 if (next instanceof CanvasViewInfo) { in selectionChanged()
165 CanvasViewInfo info = (CanvasViewInfo) next; in selectionChanged()
DPropertyFactory.java373 collapsed.add(subProperties.iterator().next()); in sortByOrigin()
495 XmlProperty next = properties.get(j); in sortNatural() local
496 String nextName = next.getName(); in sortNatural()
510 if (next.getCategory() == PropertyCategory.PREFERRED) { in sortNatural()
513 if (next.getDescriptor().isDeprecated()) { in sortNatural()
626 collapsed.add(subProperties.iterator().next()); in sortNatural()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
DApplicationToggle.java217 Node next = mUndoXmlNextNode; in restoreApplicationNode() local
218 if (next == null) { in restoreApplicationNode()
219 next = mUndoXmlNextElement; in restoreApplicationNode()
221 mUndoXmlParent.insertBefore(mUndoXmlNode, next); in restoreApplicationNode()
222 if (next == null) { in restoreApplicationNode()
/sdk/emulator/opengl/tests/event_injector/
Demulator-console.c47 struct Msg* next; // next message in queue. member
60 msg->next = NULL; in msg_alloc()
121 con->out_msg = msg->next; in emulatorConsole_sendOutput()
191 con->out_msg = msg->next; in emulatorConsole_reset()
294 plast = &(*plast)->next; in emulatorConsole_send()
/sdk/lint/libs/lint_api/src/com/android/tools/lint/detector/api/
DLintUtils.java616 AbstractInsnNode next = getNextInstruction(node); in getNextOpcode() local
617 if (next != null) { in getNextOpcode()
618 return next.getOpcode(); in getNextOpcode()
633 AbstractInsnNode next = node; in getNextInstruction() local
635 next = next.getNext(); in getNextInstruction()
636 if (next == null) { in getNextInstruction()
639 int type = next.getType(); in getNextInstruction()
642 return next; in getNextInstruction()
DLocation.java504 Location next = location.getSecondary();
506 while (next != null) {
507 Location nextNext = next.getSecondary();
508 next.setSecondary(location);
509 location = next;
510 next = nextNext;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
DApkInstallManager.java174 ApkInstall install = iterator.next(); in resetInstallationFor()
216 ApkInstall install = iterator.next();
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
DAndroidXmlAutoEditStrategy.java269 IStructuredDocumentRegion next = region.getNext(); in customizeDocumentCommand() local
270 if (next != null && next.getType() == XML_TAG_NAME) { in customizeDocumentCommand()
271 String nextType = next.getRegions().get(0).getType(); in customizeDocumentCommand()
/sdk/anttasks/src/com/android/ant/
DMultiFilesTask.java80 String depFile = depFiles.next().toString(); in processFiles()
163 sourceFiles.put(iterator.next().toString(), folder); in getFilesByNameEntryFilter()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
DInstallDependencyPage.java154 IWizardPage next = wizard.getNextPage(this); in showNextPage() local
155 if (next != null) { in showNextPage()
156 wizard.getContainer().showPage(next); in showNextPage()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
Dcompletion5-expected-completion40.txt110 android:nextFocusLeft : Defines the next view to give focus to when the next focus is FOCUS_LEFT. …
111 android:nextFocusRight : Defines the next view to give focus to when the next focus is FOCUS_RIGHT …
112 android:nextFocusUp : Defines the next view to give focus to when the next focus is FOCUS_UP If the…
113 android:nextFocusDown : Defines the next view to give focus to when the next focus is FOCUS_DOWN If…
114 android:nextFocusForward : Defines the next view to give focus to when the next focus is FOCUS_FORW…
Dcompletion1-expected-completion39.txt110 android:nextFocusLeft : Defines the next view to give focus to when the next focus is FOCUS_LEFT. …
111 android:nextFocusRight : Defines the next view to give focus to when the next focus is FOCUS_RIGHT …
112 android:nextFocusUp : Defines the next view to give focus to when the next focus is FOCUS_UP If the…
113 android:nextFocusDown : Defines the next view to give focus to when the next focus is FOCUS_DOWN If…
114 android:nextFocusForward : Defines the next view to give focus to when the next focus is FOCUS_FORW…

1234