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

<<11121314151617181920>>

  /external/icu/android_icu4j/runner/src/main/java/android/icu/junit/
IcuTestGroupRunner.java 90 protected Description describeChild(Runner child) {
91 return child.getDescription();
95 protected void runChild(Runner child, RunNotifier notifier) {
96 child.run(notifier);
  /external/icu/icu4c/source/common/
locutil.h 29 static UBool isFallbackOf(const UnicodeString& root, const UnicodeString& child);
  /external/junit/src/junit/framework/
JUnit4TestAdapterCache.java 39 for (Description child : description.getChildren())
40 suite.addTest(asTest(child));
74 for (Description child : description.getChildren()) {
75 returnThis.add(asTest(child));
  /external/junit/src/org/junit/internal/runners/
ErrorReportingRunner.java 49 private Description describeCause(Throwable child) {
54 private void runCause(Throwable child, RunNotifier notifier) {
55 Description description= describeCause(child);
57 notifier.fireTestFailure(new Failure(description, child));
  /external/parameter-framework/upstream/parameter/
ComponentInstance.cpp 127 // Create child elements
128 for (size_t child = 0; child < arrayLength; child++) {
130 CComponent *pChildComponent = new CComponent(std::to_string(child), this);
  /frameworks/base/core/java/android/widget/
Gallery.java 81 * How long the transition animation should run when a child view changes
92 * Left most edge of a child seen so far during layout.
97 * Right most edge of a child seen so far during layout.
144 * The currently selected item's child.
180 * If true, mFirstPosition is the position of the rightmost child, and
186 * Offset between the center of the selected child view and the center of the Gallery.
274 * Sets how long the transition animation should run when a child view
309 protected boolean getChildStaticTransformation(View child, Transformation t) {
312 t.setAlpha(child == mSelectedChild ? 1.0f : mUnselectedAlpha);
373 int getChildHeight(View child) {
502 final View child = getChildAt(n); local
518 final View child = getChildAt(n); local
597 View child = getChildAt(i); local
856 View child; local
1305 View child = getChildAt(childPosition); local
1328 View child = mSelectedChild = getChildAt(mSelectedPosition - mFirstPosition); local
    [all...]
ActionMenuView.java 163 final View child = getChildAt(i); local
164 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
209 final View child = getChildAt(i); local
210 if (child.getVisibility() == GONE) continue;
212 final boolean isGeneratedItem = child instanceof ActionMenuItemView;
218 child.setPadding(mGeneratedItemPadding, 0, mGeneratedItemPadding, 0);
221 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
228 lp.preventEdgeOffset = isGeneratedItem && ((ActionMenuItemView) child).hasText();
233 final int cellsUsed = measureChildForCells(child, cellSize, cellsAvailable,
241 maxChildHeight = Math.max(maxChildHeight, child.getMeasuredHeight())
258 final View child = getChildAt(i); local
284 final View child = getChildAt(i); local
330 final View child = getChildAt(i); local
366 final View child = getChildAt(i); local
721 final View child = getChildAt(childIndex); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
ListItemFocusablesFarApartTest.java 46 * Get the child of a list item.
48 * @param index The index of the child.
57 View child = listItem.getChildAt(index); local
58 return child.getTop() + listItem.getTop();
63 View child = listItem.getChildAt(index); local
64 return child.getBottom() + listItem.getTop();
  /frameworks/support/compat/api21/android/support/v4/view/
ViewParentCompatLollipop.java 27 public static boolean onStartNestedScroll(ViewParent parent, View child, View target,
30 return parent.onStartNestedScroll(child, target, nestedScrollAxes);
38 public static void onNestedScrollAccepted(ViewParent parent, View child, View target,
41 parent.onNestedScrollAccepted(child, target, nestedScrollAxes);
  /frameworks/support/core-ui/java/android/support/v4/view/
NestedScrollingParentHelper.java 58 public void onNestedScrollAccepted(View child, View target, int axes) {
  /frameworks/support/design/tests/src/android/support/design/testutils/
CoordinatorLayoutUtils.java 32 public boolean layoutDependsOn(CoordinatorLayout parent, View child, View dependency) {
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ControlBar.java 25 public void onChildFocusedListener(View child, View focused);
58 public void requestChildFocus (View child, View focused) {
59 super.requestChildFocus(child, focused);
61 mOnChildFocusedListener.onChildFocusedListener(child, focused);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_nodeappendchilddocfragment.java 32 * all its content is added to the child list of this node.
73 Node child; local
100 child = (Node) childList.item(indexN100A2);
101 nodeType = (int) child.getNodeType();
104 childName = child.getNodeName();
hc_nodeinsertbefore.java 71 Node child; local
94 child = (Node) childList.item(indexN10091);
95 nodeType = (int) child.getNodeType();
98 childName = child.getNodeName();
hc_nodeinsertbeforenewchildexists.java 72 Node child; local
94 child = (Node) childList.item(indexN1008C);
95 nodeType = (int) child.getNodeType();
98 childName = child.getNodeName();
hc_noderemovechildnode.java 34 * Retrieve the second p element and remove its first child.
36 * children and the first child should now be the child
70 Node child; local
95 child = (Node) childList.item(indexN10098);
96 nodeType = (int) child.getNodeType();
97 childName = child.getNodeName();
hc_textparseintolistofelements.java 31 * Retrieve the textual data from the last child of the
36 * EntityReferences containing one child.
68 Node child; local
89 child = (Node) childList.item(indexN1007C);
90 value = child.getNodeValue();
93 grandChild = child.getFirstChild();
nodeappendchilddocfragment.java 69 Node child; local
96 child = (Node) childList.item(indexN1009F);
97 nodeType = (int) child.getNodeType();
100 childName = child.getNodeName();
textparseintolistofelements.java 31 * Retrieve the textual data from the last child of the
36 * EntityReferences containing one child.
69 Node child; local
90 child = (Node) childList.item(indexN1007F);
91 value = child.getNodeValue();
94 grandChild = child.getFirstChild();
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ActionMenuView.java 168 final View child = getChildAt(i); local
169 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
214 final View child = getChildAt(i); local
215 if (child.getVisibility() == GONE) continue;
217 final boolean isGeneratedItem = child instanceof ActionMenuItemView;
223 child.setPadding(mGeneratedItemPadding, 0, mGeneratedItemPadding, 0);
226 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
233 lp.preventEdgeOffset = isGeneratedItem && ((ActionMenuItemView) child).hasText();
238 final int cellsUsed = measureChildForCells(child, cellSize, cellsAvailable,
246 maxChildHeight = Math.max(maxChildHeight, child.getMeasuredHeight())
263 final View child = getChildAt(i); local
289 final View child = getChildAt(i); local
335 final View child = getChildAt(i); local
371 final View child = getChildAt(i); local
734 final View child = getChildAt(childIndex); local
    [all...]
  /cts/tests/core/runner/src/com/android/cts/core/runner/
TestFilter.java 118 Description child = children.get(0); local
119 String methodName = child.getMethodName();
121 return child;
  /development/samples/devbytes/animation/ListViewRemovalAnimation/src/com/example/android/listviewremovalanimation/
ListViewRemovalAnimation.java 182 View child = listview.getChildAt(i); local
183 if (child != viewToRemove) {
186 mItemIdTopMap.put(itemId, child.getTop());
200 final View child = listview.getChildAt(i);
204 int top = child.getTop();
208 child.setTranslationY(delta);
209 child.animate().setDuration(MOVE_DURATION).translationY(0);
211 child.animate().withEndAction(new Runnable() {
225 int childHeight = child.getHeight() + listview.getDividerHeight();
228 child.setTranslationY(delta)
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
BaseTree.js 3 * instead of the child-sibling approach in v2. A flat tree (a list) is
44 /** Add t as child of this node.
46 * Warning: if t has no children, but child does
47 * and child isNil then this routine moves children to t via
48 * t.children = child.children; i.e., without copying the array.
57 throw new Error("attempt to add child list to itself");
66 // handle double-link stuff for each child of nil root
79 else { // child is not nil (don't care about children)
103 throw new Error("Can't set single child to a list");
121 // walk rest and decrement their child indexe
    [all...]
  /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...]
  /external/bison/lib/
spawn-pipe.c 95 /* Open a pipe connected to a child process.
98 * parent -> fd[1] -> STDIN_FILENO -> child if pipe_stdin
99 * parent <- fd[0] <- STDOUT_FILENO <- child if pipe_stdout
103 * pipe_stdin and prog_stdin together determine the child's standard input.
104 * pipe_stdout and prog_stdout together determine the child's standard output.
129 int child; local
147 * parent -> ofd[1] -> ofd[0] -> child if pipe_stdin
148 * parent <- ifd[0] <- ifd[1] <- child if pipe_stdout
160 child = -1;
162 /* Create standard file handles of child process. *
    [all...]

Completed in 1135 milliseconds

<<11121314151617181920>>