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

<<31323334353637383940>>

  /packages/apps/Dialer/src/com/android/dialer/list/
SpeedDialFragment.java 352 Log.d(TAG, "Child count : " + mListView.getChildCount());
355 final View child = mListView.getChildAt(i); local
365 Log.d(TAG, "Saving itemId: " + itemId + " for listview child " + i + " Top: "
366 + child.getTop());
368 mItemIdTopMap.put(itemId, child.getTop());
369 mItemIdLeftMap.put(itemId, child.getLeft());
395 final View child = mListView.getChildAt(i);
409 child, "alpha", 0.0f, 1.0f));
414 final int top = child.getTop();
415 final int left = child.getLeft()
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
CellLayout.java 594 final View child = getChildAt(i); local
595 child.cancelLongPress();
615 public boolean addViewToCellLayout(View child, int index, int childId, LayoutParams params,
620 if (child instanceof BubbleTextView) {
621 BubbleTextView bubbleChild = (BubbleTextView) child;
631 child.setScaleX(getChildrenScale());
632 child.setScaleY(getChildrenScale());
642 child.setId(childId);
644 mShortcutsAndWidgets.addView(child, index, lp);
646 if (markCells) markCellsAsOccupiedForView(child);
720 final View child = mShortcutsAndWidgets.getChildAt(i); local
1017 View child = getChildAt(i); local
1031 View child = getChildAt(i); local
2198 View child = mShortcutsAndWidgets.getChildAt(i); local
2219 View child = mShortcutsAndWidgets.getChildAt(i); local
2247 View child = mShortcutsAndWidgets.getChildAt(i); local
2266 View child = mShortcutsAndWidgets.getChildAt(i); local
2281 View child; field in class:CellLayout.ReorderHintAnimation
2408 View child = mShortcutsAndWidgets.getChildAt(i); local
2515 View child = mShortcutsAndWidgets.getChildAt(i); local
2540 View child = mShortcutsAndWidgets.getChildAt(i); local
    [all...]
  /frameworks/base/core/java/android/animation/
AnimatorSet.java 96 * child animations of this AnimatorSet end. It also determines whether cancel/end
119 // Root of the dependency tree of all the animators in the set. In this tree, parent-child
120 // relationship captures the order of animation (i.e. parent and child will play sequentially),
125 // How long the child animations should last in ms. The default value is negative, which
127 // set, it is passed along to the child animations.
237 * Returns the current list of child Animator objects controlled by this
242 * @return ArrayList<Animator> The list of child animations of this AnimatorSet.
257 * Sets the target object for all current {@link #getChildAnimations() child animations}
291 * Sets the TimeInterpolator for all current {@link #getChildAnimations() child animations}
294 * will cause that interpolator to be set on the child animation
419 Node child = node.mChildNodes.get(i); local
898 Node child = node.mChildNodes.get(i); local
1014 Node child = parent.mChildNodes.get(i); local
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/UsePermissionApp23/src/com/android/cts/usepermission/
BasePermissionsTest.java 382 AccessibilityNodeInfo child = root.getChild(i); local
383 if (child == null) {
386 if (child.getCollectionInfo() != null) {
387 scrollTop(child);
388 result = getNodeTimed(() -> findByText(child, text));
392 while (child.getActionList().contains(AccessibilityAction.ACTION_SCROLL_FORWARD)) {
393 scrollForward(child);
394 result = getNodeTimed(() -> findByText(child, text));
400 result = findByTextInCollection(child, text);
465 AccessibilityNodeInfo child = root.getChild(i) local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/ref/
ref.css 136 .productions > table td:first-child,
137 .productions > table td:last-child {
143 .productions > table td:first-child + td + td {
149 .productions > table td:first-child + td {
182 .realtable thead :first-child {
193 .realtable td:first-child,
194 .realtable th:first-child {
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
BaseLinearLayoutManagerTest.java 467 public void removeAndRecycleView(View child, RecyclerView.Recycler recycler) {
469 Log.d(TAG, "recycling view " + mRecyclerView.getChildViewHolder(child));
471 super.removeAndRecycleView(child, recycler);
515 View child = getChildAt(i); local
516 sb.append("child (ind:").append(i).append(", pos:").append(getPosition(child))
518 mOrientationHelper.getDecoratedStart(child)).append(", end:")
519 .append(mOrientationHelper.getDecoratedEnd(child)).append("]\n");
549 View child = getChildAt(i); local
550 final int childStart = mOrientationHelper.getDecoratedStart(child);
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_signal.py 67 def wait(self, child):
68 """Wait for child to finish, ignoring EINTR."""
71 child.wait()
94 child = ignoring_eintr(subprocess.Popen, ['kill', '-HUP', str(pid)])
95 if child:
96 self.wait(child)
106 del child
108 child = subprocess.Popen(['kill', '-USR1', str(pid)])
110 self.wait(child)
119 child = ignoring_eintr(subprocess.Popen, ['kill', '-USR2', str(pid)]
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_signal.py 67 def wait(self, child):
68 """Wait for child to finish, ignoring EINTR."""
71 child.wait()
94 child = ignoring_eintr(subprocess.Popen, ['kill', '-HUP', str(pid)])
95 if child:
96 self.wait(child)
106 del child
108 child = subprocess.Popen(['kill', '-USR1', str(pid)])
110 self.wait(child)
119 child = ignoring_eintr(subprocess.Popen, ['kill', '-USR2', str(pid)]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_signal.py 67 def wait(self, child):
68 """Wait for child to finish, ignoring EINTR."""
71 child.wait()
94 child = ignoring_eintr(subprocess.Popen, ['kill', '-HUP', str(pid)])
95 if child:
96 self.wait(child)
106 del child
108 child = subprocess.Popen(['kill', '-USR1', str(pid)])
110 self.wait(child)
119 child = ignoring_eintr(subprocess.Popen, ['kill', '-USR2', str(pid)]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_signal.py 67 def wait(self, child):
68 """Wait for child to finish, ignoring EINTR."""
71 child.wait()
94 child = ignoring_eintr(subprocess.Popen, ['kill', '-HUP', str(pid)])
95 if child:
96 self.wait(child)
106 del child
108 child = subprocess.Popen(['kill', '-USR1', str(pid)])
110 self.wait(child)
119 child = ignoring_eintr(subprocess.Popen, ['kill', '-USR2', str(pid)]
    [all...]
  /prebuilts/sdk/current/support/v7/recyclerview/libs/
android-support-v7-recyclerview.jar 
  /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/CSharp3/Sources/Antlr3.Runtime/Tree/
BaseTreeAdaptor.cs 127 // ensure new subtree root has parent/child index set
133 object child = GetChild( t, i );
134 object newSubTree = DupTree( child, t );
141 * Add a child to the tree t. If child is a flat tree (a list), make all
142 * in list children of t. Warning: if t has no children, but child does
143 * and child isNil then you can decide it is ok to move children to t via
144 * t.children = child.children; i.e., without copying the array. Just
149 public virtual void AddChild( object t, object child )
151 if ( t != null && child != null
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Strip.java 155 CommonTree child = (CommonTree)a.getChild(0);
157 tokens.delete(child.token.getTokenIndex());
165 CommonTree child = (CommonTree)a.getChild(0);
167 tokens.delete(child.token.getTokenIndex());
177 CommonTree child = (CommonTree)a.getChild(0);
178 int stop = child.getTokenStopIndex();
179 if ( child.getType()==ANTLRv3Parser.SEMPRED ) {
  /external/mesa3d/src/mapi/glapi/gen/
glX_server_table.py 147 # If all of the child nodes are non-empty leaf nodes, pull
182 for child in children:
183 if child[1] == []:
222 child_index += child[2]
229 for child in children:
230 if child[1] != []:
231 self.dump_tree(child, base_opcode, remaining_bits - M, child_index, depth + 1)
232 child_index += child[2]
249 # child nodes. For leaf nodes, the followign 2^M values are
252 # If an inner node's child index is 0, the child is an empt
    [all...]
  /frameworks/base/core/java/android/widget/
AbsSpinner.java 53 /** Temporary frame to hold a child View's frame rectangle */
238 int getChildHeight(View child) {
239 return child.getMeasuredHeight();
242 int getChildWidth(View child) {
243 return child.getMeasuredWidth();
352 View child = getChildAt(i); local
353 if (child.getVisibility() == View.VISIBLE) {
354 child.getHitRect(frame);
  /system/core/libmemunreachable/tests/
ThreadCapture_test.cpp 189 // child
215 // child init
219 // child cleanup
222 [&](pid_t child){
224 ASSERT_GT(child, 0);
229 ThreadCapture thread_capture(child, heap);
255 // child
292 // child init
310 // child cleanup
314 [&](pid_t child){
    [all...]
  /external/parameter-framework/upstream/tools/xmlGenerator/
EddParser.py 183 def addChild(self, child, append=True) :
184 """ A.addChid(B) -> add B to A child list if B class name is in A white List"""
186 # Will raise an exception if this child is not in the white list
187 self.childWhiteList.index(child.__class__.__name__)
188 # If no exception was raised, add child to child list
191 self.children.append(child)
193 self.children.insert(0, child)
196 # the child class is not in the white list
197 raise ChildNotPermitedError("", self, child)
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
PhaserTest.java 371 Phaser child = new Phaser(parent);
372 assertState(child, 0, 0, 0);
374 assertEquals(0, child.register());
375 assertState(child, 0, 1, 1);
377 assertEquals(0, child.arriveAndDeregister());
378 assertTerminated(child, 1);
384 * the number of parties of child is zero after deregistration
388 Phaser child = new Phaser(parent);
390 assertEquals(0, child.register());
391 assertState(child, 0, 1, 1)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/
pytree.py 192 for i, child in enumerate(self.parent.children):
193 if child is self:
209 for i, child in enumerate(self.parent.children):
210 if child is self:
216 for child in self.children:
217 for x in child.leaves():
251 child nodes, and an optional context keyword argument.
296 for child in self.children:
297 for node in child.post_order():
304 for child in self.children
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/
pytree.py 192 for i, child in enumerate(self.parent.children):
193 if child is self:
209 for i, child in enumerate(self.parent.children):
210 if child is self:
216 for child in self.children:
217 for x in child.leaves():
251 child nodes, and an optional context keyword argument.
296 for child in self.children:
297 for node in child.post_order():
304 for child in self.children
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
pytree.py 192 for i, child in enumerate(self.parent.children):
193 if child is self:
209 for i, child in enumerate(self.parent.children):
210 if child is self:
216 for child in self.children:
217 for x in child.leaves():
251 child nodes, and an optional context keyword argument.
296 for child in self.children:
297 for node in child.post_order():
304 for child in self.children
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
pytree.py 192 for i, child in enumerate(self.parent.children):
193 if child is self:
209 for i, child in enumerate(self.parent.children):
210 if child is self:
216 for child in self.children:
217 for x in child.leaves():
251 child nodes, and an optional context keyword argument.
296 for child in self.children:
297 for node in child.post_order():
304 for child in self.children
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
GridLayoutConverter.java 282 Element child = view.mElement; local
284 List<Attr> attributes = mRefactoring.findLayoutAttributes(child);
290 mRefactoring.removeAttribute(mRootEdit, child, attribute.getNamespaceURI(),
451 private void convert0dipToWrapContent(Element child) {
460 Attr height = child.getAttributeNodeNS(ANDROID_URI, ATTR_LAYOUT_HEIGHT);
465 Attr width = child.getAttributeNodeNS(ANDROID_URI, ATTR_LAYOUT_WIDTH);
484 for (CanvasViewInfo child : info.getChildren()) {
485 CanvasViewInfo result = findViewForElement(child, element);
809 for (CanvasViewInfo child : view.getChildren()) {
810 Element childElement = getElement(child);
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ImportNode.java 50 * Create a child Text node with value "importedText" for the attribute node
53 * whose name matches "elem:attr1" and a child node whose value equals
104 Node child; local
130 child = aNode.getFirstChild();
131 childValue = child.getNodeValue();
185 Node child; local
195 child = aNode.getFirstChild();
196 childValue = child.getNodeValue();
233 Node child; local
246 child = aNode.getFirstChild()
    [all...]

Completed in 1739 milliseconds

<<31323334353637383940>>