HomeSort by relevance Sort by last modified time
    Searched refs:child (Results 826 - 850 of 3822) sorted by null

<<31323334353637383940>>

  /packages/apps/TV/src/com/android/tv/guide/
TimelineGridView.java 39 public boolean onRequestChildFocus(RecyclerView parent, State state, View child,
  /packages/apps/TV/src/com/android/tv/menu/
ItemListRowView.java 101 public void onChildSelected(ViewGroup parent, View child, int position, long id) {
102 if (DEBUG) Log.d(TAG, "onChildSelected: child=" + child);
103 if (mSelectedCard == child) {
109 mSelectedCard = (CardView<?>) child;
  /toolchain/binutils/binutils-2.25/gprof/
symtab.h 87 double child; /* How much child time propagates. */
86 double child; \/* How much child time propagates. *\/ member in struct:sym::__anon75369::__anon75370
  /toolchain/binutils/binutils-2.25/include/
fibheap.h 62 struct fibnode *child; member in struct:fibnode
  /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...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3commontreeadaptor.c 60 static void setParent (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE child, pANTLR3_BASE_TREE parent);
61 static pANTLR3_BASE_TREE getParent (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE child);
62 static void setChild (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, ANTLR3_UINT32 i, pANTLR3_BASE_TREE child);
459 setChild (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, ANTLR3_UINT32 i, pANTLR3_BASE_TREE child)
461 t->setChild(t, i, child);
488 setParent (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE child, pANTLR3_BASE_TREE parent)
490 child->setParent(child, parent);
493 getParent (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE child)
495 return child->getParent(child)
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkBinaryRegistry.cpp 175 SparseIndexNode* child = DE_NULL; local
181 child = group->children[childNdx];
186 DE_ASSERT(numWords > 1 || !child);
188 if (!child)
193 child = group->children.back();
197 addToSparseIndex(child, words+1, numWords-1, index);
202 // Prepares sparse index for finalization. Ensures that child with word = 0 is moved
203 // to the end, or one is added if there is no such child already.
221 // Move child with word = 0 to last
257 const SparseIndexNode* child = group->children[childNdx] local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NotificationGroupManager.java 129 for (NotificationData.Entry child : childrenCopy) {
130 onEntryBecomingChild(child);
265 * @return whether a given notification is a child in a group which has a summary
276 // If the suppression of a group changes because the last child was removed, this can
277 // still be called temporarily because the child hasn't been fully removed yet. Let's
308 * but the logical summary, i.e when a child is isolated, it still returns the summary as if
409 // The parent of a suppressed group got huned, lets hun the child!
413 NotificationData.Entry child = iterator.hasNext() ? iterator.next() : null; local
414 if (child == null) {
415 child = getIsolatedChild(sbn.getGroupKey())
    [all...]
  /external/dbus/dbus/
dbus-marshal-recursive-util.c 1556 TestTypeNode *child; local
1682 TestTypeNode *child; local
1890 TestTypeNode *child; local
1944 TestTypeNode *child; local
1982 TestTypeNode *child; local
2899 TestTypeNode *child = link->data; local
2948 TestTypeNode *child = link->data; local
3017 TestTypeNode *child = link->data; local
3052 TestTypeNode *child; local
3093 TestTypeNode *child = link->data; local
3128 TestTypeNode *child; local
3157 TestTypeNode *child = link->data; local
3243 TestTypeNode *child; local
3287 TestTypeNode *child; local
3344 TestTypeNode *child; local
3437 TestTypeNode *child; local
3564 TestTypeNode *child = link->data; local
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
MyGallery.java 48 protected boolean getChildStaticTransformation(View child, Transformation t) {
49 return super.getChildStaticTransformation(child, t);
  /development/tools/idegen/src/com/android/idegen/
Module.java 290 Module child = moduleCache.getAndCacheByName(dependency); local
291 if (child == null) {
294 allDependencies.add(child.getDir().getCanonicalPath());
295 //allDependencies.addAll(child.getAllDependencies());
296 //logger.info("Adding iml " + child.getName() + " " + child.getImlFile());
297 allDependentImlFiles.add(child.getImlFile());
298 //allDependentImlFiles.addAll(child.getAllDependentImlFiles());
308 Module child = moduleCache.getAndCacheByDir(dependency); local
309 if (child != null)
    [all...]
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3basetree.h 47 /// instead of the child-sibling approach in v2. A flat tree (a list) is
69 /// This is used to store the current child index position while descending
83 void (*addChild) (struct ANTLR3_BASE_TREE_struct * tree, void * child);
121 void (*setChild) (struct ANTLR3_BASE_TREE_struct * tree, ANTLR3_UINT32 i, void * child);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
ITreeAdaptor.cs 99 /** <summary>Is tree considered a nil node used to make lists of child nodes?</summary> */
103 * Add a child to the tree t. If child is a flat tree (a list), make all
104 * in list children of t. Warning: if t has no children, but child does
105 * and child isNil then you can decide it is ok to move children to t via
106 * t.children = child.children; i.e., without copying the array. Just
108 * ASTs. Do nothing if t or child is null.
111 void AddChild(object t, object child);
115 * If not a nil root, make oldRoot a child of newRoot.
122 * If newRoot is a nil-rooted single child tree, use the singl
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
ITreeAdaptor`1.cs 87 /** <summary>Is tree considered a nil node used to make lists of child nodes?</summary> */
91 * Add a child to the tree t. If child is a flat tree (a list), make all
92 * in list children of t. Warning: if t has no children, but child does
93 * and child isNil then you can decide it is ok to move children to t via
94 * t.children = child.children; i.e., without copying the array. Just
96 * ASTs. Do nothing if t or child is null.
99 void AddChild(T t, T child);
103 * If not a nil root, make oldRoot a child of newRoot.
110 * If newRoot is a nil-rooted single child tree, use the singl
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeAdaptor.java 84 /** Is tree considered a nil node used to make lists of child nodes? */
87 /** Add a child to the tree t. If child is a flat tree (a list), make all
88 * in list children of t. Warning: if t has no children, but child does
89 * and child isNil then you can decide it is ok to move children to t via
90 * t.children = child.children; i.e., without copying the array. Just
92 * ASTs. Do nothing if t or child is null.
94 public void addChild(Object t, Object child);
97 * If not a nil root, make oldRoot a child of newRoot.
102 * If newRoot is a nil-rooted single child tree, use the singl
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/timeline/
inspector_importer.py 55 for child in raw_inspector_event.get('children', []):
57 thread, child)
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
RSSFeedUpdateEntryTask.java 316 for (Node child=parentEntryNode.getFirstChild(); child != null; child=child.getNextSibling()) {
317 if ("updated".equals(child.getLocalName())) { //$NON-NLS-1$
319 System.out.println(Messages.getString("RSSFeedCommon.Set") + " <" + child.getLocalName()+ ">"+ now+ "</"+ child.getLocalName()+ ">"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$
321 ((Element)child).setTextContent(now);
  /external/guava/guava-tests/test/com/google/common/net/
InternetDomainNameTest.java 291 assertEquals("www.foo.com", domain.child("www").toString());
294 domain.child("www.");
306 // These would throw an exception if leniency were not preserved during parent() and child()
308 InternetDomainName child = parent.child(LOTS_OF_DELTAS); local
309 child.child(LOTS_OF_DELTAS);
316 assertEquals(googleDomain, googleDomain.child("mail").topPrivateDomain());
317 assertEquals(googleDomain, googleDomain.child("foo.bar").topPrivateDomain());
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btAlignedObjectArray.h 375 /* k has child(s) */
378 int child = 2*k; local
380 if ((child < n) && CompareFunc(pArr[child - 1] , pArr[child]))
382 child++;
384 /* pick larger child */
385 if (CompareFunc(temp , pArr[child - 1]))
387 /* move child up */
388 pArr[k - 1] = pArr[child - 1]
    [all...]
  /external/skia/src/gpu/effects/
GrXfermodeFragmentProcessor.cpp 140 enum Child {
145 ComposeOneFragmentProcessor(const GrFragmentProcessor* dst, SkXfermode::Mode mode, Child child)
147 , fChild(child) {
171 Child child() const { return fChild; } function in class:ComposeOneFragmentProcessor
219 Child fChild;
233 ComposeOneFragmentProcessor::Child child = variable
234 args.fFp.cast<ComposeOneFragmentProcessor>().child();
270 ComposeOneFragmentProcessor::Child child = d->fRandom->nextBool() ? local
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
AbsActionBarView.java 303 protected int measureChildView(View child, int availableWidth, int childSpecHeight,
305 child.measure(MeasureSpec.makeMeasureSpec(availableWidth, MeasureSpec.AT_MOST),
308 availableWidth -= child.getMeasuredWidth();
318 protected int positionChild(View child, int x, int y, int contentHeight, boolean reverse) {
319 int childWidth = child.getMeasuredWidth();
320 int childHeight = child.getMeasuredHeight();
324 child.layout(x - childWidth, childTop, x, childTop + childHeight);
326 child.layout(x, childTop, x + childWidth, childTop + childHeight);
SwipeDismissLayout.java 337 * Tests scrollability within child views of v in the direction of dx.
345 * @return true if child views of v can be scrolled by delta of dx.
354 final View child = group.getChildAt(i);
355 if (x + scrollX >= child.getLeft() && x + scrollX < child.getRight() &&
356 y + scrollY >= child.getTop() && y + scrollY < child.getBottom() &&
357 canScroll(child, true, dx, x + scrollX - child.getLeft(),
358 y + scrollY - child.getTop()))
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
NotificationHeaderViewWrapper.java 117 * child is faded automatically and doesn't have to be manually added.
133 View child = stack.pop(); local
134 if (child instanceof ImageView) {
135 ((ImageView) child).setCropToPadding(true);
136 } else if (child instanceof ViewGroup){
137 ViewGroup group = (ViewGroup) child;
148 View child = mNotificationHeader.getChildAt(i); local
149 if (child != mIcon) {
150 mInvertHelper.addTarget(child);
  /frameworks/support/compat/jellybean/android/support/v4/view/accessibility/
AccessibilityNodeInfoCompatJellyBean.java 28 public static void addChild(Object info, View child, int virtualDescendantId) {
29 ((AccessibilityNodeInfo) info).addChild(child, virtualDescendantId);
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewGridLayout.java 94 View child = getChildOnPageAt(count - 1); local
95 int bottom = child.getBottom();

Completed in 745 milliseconds

<<31323334353637383940>>