HomeSort by relevance Sort by last modified time
    Searched defs:child (Results 376 - 400 of 654) sorted by null

<<11121314151617181920>>

  /prebuilt/ndk/android-ndk-r7/platforms/android-8/arch-x86/usr/include/linux/
ioport.h 23 struct resource *parent, *sibling, *child; member in struct:resource
  /prebuilt/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/linux/
ioport.h 23 struct resource *parent, *sibling, *child; member in struct:resource
  /prebuilt/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/linux/
ioport.h 23 struct resource *parent, *sibling, *child; member in struct:resource
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/formatting/
XmlPrettyPrinterTest.java 76 Node child = children.item(i); local
77 Node result = findNode(child, nodeName);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
LayoutTestBase.java 59 * should be its child index; if not, pass in -1
142 for (INode child : targetNode.getChildren()) {
143 childrenIds.add(child.getStringAttr(ANDROID_URI, ATTR_ID));
TestNode.java 69 public TestNode add(TestNode child) {
70 mChildren.add(child);
71 child.mParent = this;
77 for (TestNode child : children) {
78 mChildren.add(child);
79 child.mParent = this;
155 TestNode child = new TestNode(viewFqcn); local
157 mChildren.add(child);
159 mChildren.add(index, child);
161 child.mParent = this
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
SdkRepoSource.java 208 for (Node child = oldDoc.getFirstChild(); child != null; child = child.getNextSibling()) {
209 if (child.getNodeType() == Node.ELEMENT_NODE) {
211 String name = child.getNodeName();
218 NamedNodeMap attrs = child.getAttributes();
227 oldRoot = child;
403 * element child in a root XML node.
411 Node child = after == null ? rootNode.getFirstChild() : after.getNextSibling(); local
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
ScrollViewTest.java 139 + "ScrollView#addView(View) when there is already one child in the view.")
150 fail("ScrollView can host only one direct child");
164 + "ScrollView#addView(View, int) when there is already one child in the view.")
175 fail("ScrollView can host only one direct child");
190 fail("ScrollView can host only one direct child");
200 fail("ScrollView can host only one direct child");
214 + " one child in the view or the layoutparams is null")
227 fail("ScrollView can host only one direct child");
252 + " one child in the view or the layoutparams is null")
265 fail("ScrollView can host only one direct child");
405 MyView child = new MyView(mActivity); local
431 MyView child = new MyView(mActivity); local
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ThreadGroupTest.java 177 ThreadGroup child = subgroups.elementAt(i); local
178 assertEquals("Destroyed child can't have children", 0, child
182 child.destroy();
187 assertTrue("Destroyed child can't be destroyed again", passed);
193 ThreadGroup child = new ThreadGroup(testRoot, "daemon child"); local
195 // If we destroy the last daemon's child, the daemon should get destroyed
197 child.destroy();
201 child.destroy()
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
NewHdfParser.java 79 Data child = data.createChild(name); local
85 child.setAttribute(key, value);
88 return child;
532 Data child = handleNodeCreation(state.currentNode, element); local
534 state.currentNode = child;
543 Data child = handleNodeCreation(state.currentNode, element); local
544 child.setValue(value);
548 Data child = handleNodeCreation(state.currentNode, element); local
551 child.setValue(src.getValue());
553 child.setValue("")
558 Data child = handleNodeCreation(state.currentNode, element); local
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ScrollingTabContainerView.java 172 final View child = mTabLayout.getChildAt(i); local
174 child.setSelected(isSelected);
496 final View child = mTabLayout.getChildAt(i); local
497 child.setSelected(child == view);
  /packages/apps/Contacts/src/com/android/contacts/model/
EntityDelta.java 155 * Get the {@link ValuesDelta} child marked as {@link Data#IS_PRIMARY},
211 * Return the list of child {@link ValuesDelta} from our optimized map,
232 for (ValuesDelta child : mimeEntries) {
234 if (onlyVisible && !child.isVisible()) continue;
302 for (ValuesDelta child : mimeEntries) {
304 if (!other.containsEntry(child)) return false;
316 for (ValuesDelta child : mimeEntries) {
317 // Contained if we find any child that matches
318 if (child.equals(entry)) return true;
330 for (ValuesDelta child : mimeEntries)
496 final ValuesDelta child = source.<ValuesDelta> readParcelable(loader); local
    [all...]
EntityModifier.java 113 // Create child when none exists and valid kind
114 final ValuesDelta child = insertChild(state, kind); local
116 child.setFromTemplate(true);
332 * Insert a new child of kind {@link DataKind} into the given
347 * Insert a new child of kind {@link DataKind} into the given
368 final ValuesDelta child = ValuesDelta.fromAfter(after); local
369 state.addEntry(child);
370 return child;
556 final ValuesDelta child = EntityModifier.insertChild(state, kindOrg); local
560 child.put(Organization.COMPANY, company)
573 final ValuesDelta child = EntityModifier.insertChild(state, kindNotes); local
592 final ValuesDelta child = state.getPrimaryEntry(StructuredName.CONTENT_ITEM_TYPE); local
647 final ValuesDelta child = parseExtras(state, kind, extras, Insert.POSTAL_TYPE, local
895 final ValuesDelta child = EntityModifier.insertChild(state, kind, editType); local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
DragLayer.java 120 for (AppWidgetResizeFrame child: mResizeFrames) {
121 child.getHitRect(hitRect);
123 if (child.beginResizeIfPointInRegion(x - child.getLeft(), y - child.getTop())) {
124 mCurrentResizeFrame = child;
266 public void getLocationInDragLayer(View child, int[] loc) {
269 getDescendantCoordRelativeToSelf(child, loc);
369 View child = getChildAt(i); local
370 final FrameLayout.LayoutParams flp = (FrameLayout.LayoutParams) child.getLayoutParams()
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
EntityDelta.java 147 * Get the {@link ValuesDelta} child marked as {@link Data#IS_PRIMARY},
203 * Return the list of child {@link ValuesDelta} from our optimized map,
224 for (ValuesDelta child : mimeEntries) {
226 if (onlyVisible && !child.isVisible()) continue;
282 for (ValuesDelta child : mimeEntries) {
284 if (!other.containsEntry(child)) return false;
296 for (ValuesDelta child : mimeEntries) {
297 // Contained if we find any child that matches
298 if (child.equals(entry)) return true;
310 for (ValuesDelta child : mimeEntries)
467 final ValuesDelta child = source.<ValuesDelta> readParcelable(loader); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasViewInfo.java 207 * Returns all the children of the canvas view info where each child corresponds to a
407 // and purposes it is its layout child that is the real root so treat that one as the
563 /** Adds the given {@link CanvasViewInfo} as a new last child of this view */
564 private void addChild(CanvasViewInfo child) {
565 mChildren.add(child);
568 /** Adds the given {@link CanvasViewInfo} as a child at the given index */
569 private void addChildAt(int index, CanvasViewInfo child) {
570 mChildren.add(index, child);
574 * Removes the given {@link CanvasViewInfo} from the child list of this view, and
577 * @param child the child to be remove
977 ViewInfo child = children.get(index); local
1032 infoMap.put(child.getUiViewNode(), child); local
1117 ViewInfo child = children.get(index); local
    [all...]
  /cts/tests/src/android/widget/cts/util/
ExpandableListScenario.java 209 final int child = ExpandableListView.getPackedPositionChild(packedPosition); local
210 if (child >= mGroups.get(group).children.size() || child < 0) {
245 * Create a view for a group or child position.
247 * @param packedPosition The packed position (has type, group pos, and optionally child pos).
269 * least one child.
273 * @param atLeastOneChild The group must have at least one child, or false
373 name = "Child " + id;
  /external/antlr/src/org/antlr/runtime/debug/
DebugTreeAdaptor.java 78 // walk the tree and emit create and add child events
85 /** ^(A B C): emit create A, create B, add child, ...*/
90 Object child = adaptor.getChild(t, i); local
91 simulateTreeConstruction(child);
92 dbg.addChild(t, child);
112 public void addChild(Object t, Object child) {
113 if ( t==null || child==null ) {
116 adaptor.addChild(t,child);
117 dbg.addChild(t, child);
130 public void addChild(Object t, Token child) {
    [all...]
  /external/antlr/src/org/antlr/runtime/tree/
BufferedTreeNodeStream.java 160 Object child = adaptor.getChild(t,c); local
161 fillBuffer(child);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemApplyTemplates.java 188 * Perform a query if needed, and call transformNode for each child.
260 int child; local
261 while (DTM.NULL != (child = sourceNodes.nextNode()))
263 currentNodes.setTop(child);
264 currentExpressionNodes.setTop(child);
266 if(xctxt.getDTM(child) != dtm)
268 dtm = xctxt.getDTM(child);
271 final int exNodeType = dtm.getExpandedTypeID(child);
273 final int nodeType = dtm.getNodeType(child);
277 ElemTemplate template = tl.getTemplateFast(xctxt, child, exNodeType, mode,
296 transformer.pushPairCurrentMatched(sroot.getDefaultTextRule(), child); local
    [all...]
ElemForEach.java 317 * Perform a query if needed, and call transformNode for each child.
360 int child; local
362 while (DTM.NULL != (child = sourceNodes.nextNode()))
364 currentNodes.setTop(child);
365 currentExpressionNodes.setTop(child);
367 if ((child & DTMManager.IDENT_DTM_DEFAULT) != docID)
369 dtm = xctxt.getDTM(child);
370 docID = child & DTMManager.IDENT_DTM_DEFAULT;
373 //final int exNodeType = dtm.getExpandedTypeID(child);
374 final int nodeType = dtm.getNodeType(child);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
NodeSet.java 356 * The number of nodes in the list. The range of valid child node indices is
584 Node child = (Node) elementAt(i); local
586 if (child == node)
593 if (!DOM2Helper.isNodeAfter(node, child))
650 Node child = (Node) elementAt(i); local
652 if (child == node)
659 if (!DOM2Helper.isNodeAfter(node, child))
    [all...]
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/bluetooth/bluez/tools/
rfcomm.c 295 pid_t child; local
298 child = waitpid(-1, &status, WNOHANG);
299 if (child == pid || (child < 0 && errno != EAGAIN))
  /external/bluetooth/glib/gio/
gdummyfile.c 347 GFile *child; local
357 child = _g_dummy_file_new (str->str);
372 child = _g_dummy_file_new (uri);
376 return child;

Completed in 3607 milliseconds

<<11121314151617181920>>