/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/ |
AndroidManifestDescriptors.java | 92 APPLICATION_ELEMENT = createElement("application", null, Mandatory.MANDATORY_LAST); //$NON-NLS-1$ + no child & mandatory 97 USES_SDK_ELEMENT = createElement("uses-sdk", null, Mandatory.MANDATORY); //$NON-NLS-1$ + no child & mandatory 362 // Creates an element with no child and not mandatory 390 * as child to this ElementDescriptor. 452 ElementDescriptor child = existingElementDescs.get(childXmlName); local 453 if (child == null) { 454 child = createElement(childXmlName); 455 existingElementDescs.put(childXmlName, child); 457 children.add(child); 463 child, [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/ |
AndroidPackageRenameParticipant.java | 478 Node child = children.item(i); 479 if (child.getNodeType() == Node.ELEMENT_NODE) { 480 addLayoutReplacements(edits, (Element) child, document); 541 Node child = children.item(i); 542 if (child.getNodeType() == Node.ELEMENT_NODE) { 543 addManifestReplacements(edits, (Element) child, document);
|
AndroidTypeRenameParticipant.java | 465 Node child = children.item(i); local 466 if (child.getNodeType() == Node.ELEMENT_NODE) { 467 addLayoutReplacements(edits, (Element) child, document); 523 Node child = children.item(i); local 524 if (child.getNodeType() == Node.ELEMENT_NODE) { 525 addManifestReplacements(edits, (Element) child, document);
|
/external/dlmalloc/ |
malloc.c | 283 to initialize child lock while holding parent lock. The implementation 2400 struct malloc_tree_chunk* child[2]; member in struct:malloc_tree_chunk [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
SsaRenamer.java | 59 * and used as the initial state for child blocks.<p> 397 for (SsaBasicBlock child : block.getDomChildren()) { 398 if (child != block) { 399 // Don't bother duplicating the array for the first child. 403 startsForBlocks[child.getIndex()] = childStart; 408 // currentMapping is owned by a child now.
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/ |
CommonTreeNodeStream.js | 100 var c, child; 102 child = this.adaptor.getChild(t,c); 103 this.fillBuffer(child);
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
NodeSetDTM.java | 512 * The number of nodes in the list. The range of valid child node indices is 744 // int child = elementAt(i); 746 // if (child == node) 753 // if (!support.getDOMHelper().isNodeAfter(node, child)) 810 int child = elementAt(i); local 812 if (child == node) 820 if (!dtm.isNodeAfter(node, child)) [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
NodeSequence.java | 736 int child = vec.elementAt(i); local 738 if (child == node) 746 if (!dtm.isNodeAfter(node, child))
|
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/ |
import_statement.py | 44 # Update child nodes. 45 for child, value_part in itertools.izip_longest( 47 if child: 49 child.value = value_part
|
/external/chromium-trace/catapult/telemetry/telemetry/testing/ |
run_tests.py | 240 def _SetUpProcess(child, context): # pylint: disable=unused-argument 251 # Typ doesn't keep the DependencyManager initialization in the child 269 android_devices[child.worker_num-1].guid) 273 def _TearDownProcess(child, context): # pylint: disable=unused-argument
|
/external/chromium-trace/catapult/telemetry/telemetry/timeline/ |
memory_dump_event.py | 48 for child in self._children: 49 if child.Match(mapped_file): 50 return child
|
/external/dagger2/compiler/src/it/functional-tests/src/test/java/test/builder/ |
BuilderTest.java | 220 Grandchild child = builder.set(new IntModuleIncludingDoubleAndFloat(21)).build(); local 221 assertThat(child.s()).isEqualTo("sam"); 222 assertThat(child.i()).isEqualTo(21);
|
/external/deqp/executor/ |
xeBatchExecutor.cpp | 324 const TestNode* child = group->getChild(ndx); local 326 if (testSet.hasNode(child)) 331 writeCaseListNode(str, child, testSet);
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
SsaRenamer.java | 60 * and used as the initial state for child blocks.<p> 398 for (SsaBasicBlock child : block.getDomChildren()) { 399 if (child != block) { 400 // Don't bother duplicating the array for the first child. 404 startsForBlocks[child.getIndex()] = childStart; 409 // currentMapping is owned by a child now.
|
/external/droiddriver/src/io/appium/droiddriver/base/ |
BaseUiElement.java | 273 for (E child : children) { 274 if (predicate.apply(child)) { 275 filteredChildren.add(child);
|
/external/elfutils/tests/ |
show-die-info.c | 61 Dwarf_Die child; local 304 if (dwarf_haschildren (die) != 0 && dwarf_child (die, &child) == 0) 305 handle (dbg, &child, n + 1);
|
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/preloader/ |
PreloaderBundleGenerator.java | 94 FileWrapper dest = target.child(classpathFile); 133 target.child(bundle.getKey() + ".txt").writeString(buffer.toString(), false); 156 FileWrapper destFile = destDir.child(srcFile.name());
|
/external/libxml2/ |
schematron.c | 1296 xmlNodePtr child, node; local [all...] |
/external/v8/src/profiler/ |
sampling-heap-profiler.cc | 150 auto child = new AllocationNode(this, name, script_id, start_position); local 151 children_.insert(std::make_pair(id, child)); 152 return child;
|
/frameworks/base/core/java/com/android/internal/widget/ |
DecorCaptionView.java | 59 * First, no matter where the content View gets added, it will always be the first child and the 266 public void addView(View child, int index, ViewGroup.LayoutParams params) { 276 // first child to get the right Z-Ordering. 277 super.addView(child, 0, params); 278 mContent = child;
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/ |
SuggestionParser.java | 309 protected void onAddChildItem(Object parent, Object child) { 310 if (parent instanceof List<?> && child instanceof SuggestionCategory) { 311 ((List<SuggestionCategory>) parent).add((SuggestionCategory) child);
|
/frameworks/support/v7/appcompat/src/android/support/v7/widget/ |
ActionBarContainer.java | 232 public android.view.ActionMode startActionModeForChild(View child, 234 // No starting an action mode for an action bar child! (Where would it go?) 238 public android.view.ActionMode startActionModeForChild(View child, 241 return super.startActionModeForChild(child, callback, type);
|
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/ |
AsyncListUtilLayoutTest.java | 135 assertEquals(context + ", empty child found", 0, getEmptyVisibleChildCount()); 173 View child = mLayoutManager.findViewByPosition(i); local 174 assertTrue(child instanceof TextView); 175 if (((TextView) child).getText() == "") {
|
/packages/apps/Contacts/src/com/android/contacts/detail/ |
PhotoSelectionHandler.java | 226 final ValuesDelta child = RawContactModifier.ensureKindExists( local 228 child.setFromTemplate(false); 229 child.setSuperPrimary(true);
|
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
ICalendarTest.java | 59 ICalendar.Component child = new ICalendar.Component("DUMMY2", parent); local 60 child.addProperty(new ICalendar.Property("prop2", "value2")); 61 parent.addChild(child); 136 String childText = "BEGIN:CHILD\n" + 140 "END:CHILD\n";
|