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

<<11121314151617181920>>

  /external/jsilver/src/com/google/clearsilver/jsilver/data/
NestedMapData.java 40 * the HashMap on the 5th child.
52 // First child (first sibling of children)
54 // Last child (last sibling of children)
88 * Creates a child of this node.
90 * @param chunk name to give the new child node.
97 // If the parent node's child count is 5 or more and it does not have a
108 // If the parent node has a children map, add the new child node to it.
115 // Update previous lastChild to point to new child.
188 * can have a value, a child, and a next peer.
280 * Returns number of child nodes
    [all...]
  /frameworks/base/core/java/android/widget/
TableLayout.java 55 * <code>layout_height</code> attribute can be defined by a child; default value
56 * is {@link android.widget.TableLayout.LayoutParams#WRAP_CONTENT}. If the child
62 * a child cell, it will autoincrement to the next available column. If you skip
66 * <p>Although the typical child of a TableLayout is a TableRow, you can
67 * actually use any View subclass as a direct child of TableLayout. The View
369 * upon child insertion.</p>
374 * @param child the newly added child
376 private void trackCollapsedColumns(View child) {
377 if (child instanceof TableRow)
494 final View child = getChildAt(i); local
590 View child = getChildAt(i); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/util/
ListScenario.java 569 * Have a child of the list view call {@link View#requestRectangleOnScreen(android.graphics.Rect)}.
572 * @param rect The rectangle, in the child's coordinates.
575 final View child = getListView().getChildAt(childIndex); local
577 child.post(new Runnable() {
579 child.requestRectangleOnScreen(rect);
  /frameworks/support/design/src/android/support/design/widget/
CoordinatorLayout.java 67 * <li>As a container for a specific interaction with one or more child views</li>
70 * <p>By specifying {@link CoordinatorLayout.Behavior Behaviors} for child views of a
73 * used as a child of a CoordinatorLayout using the
82 * to an arbitrary descendant of the CoordinatorLayout, but it may not be the anchored child itself
83 * or a descendant of the anchored child. This can be used to place floating views relative to
302 final View child = getChildAt(i); local
303 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
309 * Populate a list with the current child views, sorted such that the topmost views
319 final View child = getChildAt(childIndex); local
320 out.add(child);
342 final View child = topmostChildList.get(i); local
554 final View child = getChildAt(i); local
637 final View child = mDependencySortedChildren.get(i); local
700 final View child = getChildAt(i); local
753 final View child = mDependencySortedChildren.get(i); local
1098 final View child = mDependencySortedChildren.get(i); local
1149 final View child = getChildAt(i); local
1173 final View child = mDependencySortedChildren.get(i); local
1226 final View child = getChildAt(i); local
2549 final View child = getChildAt(i); local
2569 final View child = getChildAt(i); local
    [all...]
FloatingActionButton.java 331 FloatingActionButton child, View dependency) {
337 public boolean onDependentViewChanged(CoordinatorLayout parent, FloatingActionButton child,
340 updateFabTranslationForSnackbar(parent, child, dependency);
344 updateFabVisibility(parent, (AppBarLayout) dependency, child);
350 public void onDependentViewRemoved(CoordinatorLayout parent, FloatingActionButton child,
355 if (ViewCompat.getTranslationY(child) != 0f) {
356 ViewCompat.animate(child)
368 AppBarLayout appBarLayout, FloatingActionButton child) {
370 (CoordinatorLayout.LayoutParams) child.getLayoutParams();
387 child.hide()
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ListViewCompat.java 234 * @param widthMeasureSpec The width measure spec to be given to a child's
236 * @param startPosition The position of the first child to be shown.
237 * @param endPosition The (inclusive) position of the last child to be
238 * shown. Specify {@link #NO_POSITION} if the last child
239 * should be the last available child from the adapter.
281 View child = null; local
287 child = null;
290 child = adapter.getView(i, child, this);
292 // Compute child height spe
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/month/
SimpleDayPickerFragment.java 233 SimpleWeekView child = (SimpleWeekView) mListView.getChildAt(0); local
234 if (child == null) {
237 int julianDay = child.getFirstJulianDay();
406 View child; local
409 // Find a child that's completely in the view
411 child = mListView.getChildAt(i++);
412 if (child == null) {
415 top = child.getTop();
417 Log.d(TAG, "child at " + (i-1) + " has top " + top);
423 if (child != null)
474 SimpleWeekView child = (SimpleWeekView)view.getChildAt(0); local
505 SimpleWeekView child = (SimpleWeekView) view.getChildAt(0); local
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
RawContactDelta.java 152 * Get the {@link ValuesDelta} child marked as {@link Data#IS_PRIMARY},
243 * Return the list of child {@link ValuesDelta} from our optimized map,
264 for (ValuesDelta child : mimeEntries) {
266 if (onlyVisible && !child.isVisible()) continue;
334 for (ValuesDelta child : mimeEntries) {
336 if (!other.containsEntry(child)) return false;
348 for (ValuesDelta child : mimeEntries) {
349 // Contained if we find any child that matches
350 if (child.equals(entry)) return true;
362 for (ValuesDelta child : mimeEntries)
531 final ValuesDelta child = source.<ValuesDelta> readParcelable(loader); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
StatePanelTrack.java 159 StateView child = (StateView) getChildAt(i); local
160 child.resetPosition();
161 if (!mAdapter.contains(child.getState())) {
162 removeView(child);
320 View child = getChildAt(i); local
321 child.getHitRect(frame);
323 return child;
331 View child = getChildAt(i); local
332 if (child == view) {
  /packages/apps/Launcher2/src/com/android/launcher2/
FocusHelper.java 153 // child siblings willy-nilly
154 View child = null; local
166 child = newParent.getChildAt(newParent.getChildCount() - 1);
167 if (child != null) child.requestFocus();
183 child = newParent.getChildAt(0);
184 if (child != null) child.requestFocus();
196 child = parent.getChildAt(newWidgetIndex);
197 if (child != null) child.requestFocus()
313 View child = null; local
    [all...]
  /bionic/tests/
dlext_test.cpp 343 // child process
348 fprintf(stderr, "in child: %s\n", dlerror());
472 pid_t child = fork(); local
473 if (child == 0) {
474 // close the 'wrong' ends of the pipes in the child
486 fprintf(stderr, "in child: %s\n", dlerror());
498 ASSERT_NOERROR(child);
504 // wait for the child to be done
508 // save the child's pid and the parent_done_pipe
509 childpid[i] = child;
    [all...]
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityFocusAndInputFocusSyncTest.java 222 AccessibilityNodeInfo child = current.getChild(i); local
223 if (child != null) {
224 workQueue.offer(child);
  /cts/tests/tests/widget/src/android/widget/cts/
GridViewTest.java 186 View child; local
208 child = mGridView.getChildAt(0); // get the first view.
209 ViewAsserts.assertHorizontalCenterAligned(mGridView, child);
220 child = mGridView.getChildAt(0); // get the first view.
221 ViewAsserts.assertLeftAligned(mGridView, child, mGridView.getListPaddingLeft());
232 child = mGridView.getChildAt(0); // get the first view.
233 ViewAsserts.assertRightAligned(mGridView, child, mGridView.getListPaddingRight());
321 View child; local
356 child = mGridView.getChildAt(NUM_COLUMNS - 1); // get the rightmost view at the first line.
357 childRight[STRETCH_SPACING][INDEX_RIGHTMOST] = child.getRight()
    [all...]
  /development/ndk/platforms/android-3/include/linux/
ioport.h 23 struct resource *parent, *sibling, *child; member in struct:resource
  /development/samples/ApiDemos/src/com/example/android/apis/content/
DocumentsSample.java 291 Uri child = DocumentsContract.buildChildDocumentsUriUsingTree(uri, local
293 Cursor c = cr.query(child, new String[] {
297 log("found child=" + c.getString(0) + ", mime=" + c.getString(1));
  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
InsertionListView.java 112 View child = getChildAt(i); local
115 Rect startRect = new Rect(child.getLeft(), child.getTop(), child.getRight(),
116 child.getBottom());
118 listViewItemDrawables.put(itemID, getBitmapDrawableFromView(child));
192 View child = getChildAt(i);
196 int top = child.getTop();
203 ObjectAnimator animation = ObjectAnimator.ofFloat(child,
210 int childHeight = child.getHeight() + getDividerHeight()
    [all...]
  /development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/
ListViewItemAnimations.java 268 View child = listview.getChildAt(i); local
271 if (child != viewToRemove) {
272 mItemIdTopMap.put(itemId, child.getTop());
288 final View child = listview.getChildAt(i);
292 int top = child.getTop();
297 int childHeight = child.getHeight() + listview.getDividerHeight();
313 moveView(child, 0, 0, delta, 0, endAction);
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3basetreeadaptor.c 49 static void addChild (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, pANTLR3_BASE_TREE child);
50 static void dbgAddChild (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, pANTLR3_BASE_TREE child);
54 static void addChildToken (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, pANTLR3_COMMON_TOKEN child);
55 static void dbgAddChildToken (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, pANTLR3_COMMON_TOKEN child);
166 pANTLR3_BASE_TREE child; local
181 // This will already have been included as a child of another node
187 // For each child of the current tree, define a node using the
193 // Pick up a pointer for the child
195 child = adaptor->getChild(adaptor, t, i);
199 sprintf(buff, "\tn%p[label=\"", child);
271 pANTLR3_BASE_TREE child; local
470 pANTLR3_BASE_TREE child; local
504 pANTLR3_BASE_TREE child; local
    [all...]
antlr3commontreenodestream.c 868 pANTLR3_BASE_TREE child; local
870 child = p->getChild(p, c);
871 tns->toStringWork(tns, child, stop, buf);
917 /// Replace from start to stop child index of parent with t, which might
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
BaseTreeAdaptor.java 86 // ensure new subtree root has parent/child index set
91 Object child = getChild(t, i); local
92 Object newSubTree = dupTree(child, t);
98 /** Add a child to the tree t. If child is a flat tree (a list), make all
99 * in list children of t. Warning: if t has no children, but child does
100 * and child isNil then you can decide it is ok to move children to t via
101 * t.children = child.children; i.e., without copying the array. Just
105 public void addChild(Object t, Object child) {
106 if ( t!=null && child!=null )
    [all...]
TreeWizard.java 194 Object child = adaptor.getChild(t, i); local
195 _index(child, m);
263 Object child = adaptor.getChild(t, i); local
264 _visit(child, t, i, ttype, visitor);
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
TestUtils.java 244 PolicyNode child = new PolicyNode() { local
246 // child
275 s.add(child);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
NamespaceSupport2.java 123 // a child pointer.
470 private Context2 child = null; field in class:Context2
490 * @returns The child Namespace context object, or null if this
495 return child;
517 parent.child = this; // JJK: Doubly-linked
  /external/boringssl/src/crypto/bytestring/
cbs.c 336 CBS child; local
338 if (!CBS_get_optional_asn1(cbs, &child, &present, tag)) {
342 if (!CBS_get_asn1(&child, out, CBS_ASN1_OCTETSTRING) ||
343 CBS_len(&child) != 0) {
357 CBS child; local
359 if (!CBS_get_optional_asn1(cbs, &child, &present, tag)) {
363 if (!CBS_get_asn1_uint64(&child, out) ||
364 CBS_len(&child) != 0) {
375 CBS child, child2; local
377 if (!CBS_get_optional_asn1(cbs, &child, &present, tag))
    [all...]
  /external/boringssl/src/ssl/
ssl_asn1.c 160 CBB cbb, session, child, child2; local
173 !CBB_add_asn1(&session, &child, CBS_ASN1_OCTETSTRING) ||
174 !CBB_add_u16(&child, (uint16_t)(in->cipher->id & 0xffff)) ||
175 !CBB_add_asn1(&session, &child, CBS_ASN1_OCTETSTRING) ||
177 !CBB_add_bytes(&child, in->session_id,
179 !CBB_add_asn1(&session, &child, CBS_ASN1_OCTETSTRING) ||
180 !CBB_add_bytes(&child, in->master_key, in->master_key_length)) {
186 if (!CBB_add_asn1(&session, &child, kTimeTag) ||
187 !CBB_add_asn1_uint64(&child, in->time)) {
194 if (!CBB_add_asn1(&session, &child, kTimeoutTag) |
    [all...]

Completed in 879 milliseconds

<<11121314151617181920>>