Searched refs:child (Results 301 - 325 of 358) sorted by relevance

<<1112131415

/frameworks/base/core/java/android/widget/
H A DDayPickerView.java119 final View child = content.getChildAt(0);
121 addView(child);
H A DFastScroller.java1278 final View child = mList.getChildAt(0);
1280 if (child == null || child.getHeight() == 0) {
1283 incrementalPos = (float) (mList.getPaddingTop() - child.getTop()) / child.getHeight();
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A DVCardEntryTests.java135 VCardEntry child = entries.get(0);
137 assertEquals("test2", child.getDisplayName());
/frameworks/base/core/java/android/app/
H A DActivity.java487 * <p>If a child activity fails for any reason (such as crashing), the parent
872 /** Return the parent activity if this view is an embedded child. */
2093 * it should return either a mapping from child activity id strings to arbitrary objects,
2095 * set of child activities, such as ActivityGroup. The same guarantees and restrictions apply
3415 * This is called when a child activity of this one attempts to navigate up.
3418 * @param child The activity making the call.
3420 public boolean onNavigateUpFromChild(Activity child) { argument
4245 // TODO Consider clearing/flushing other event sources and events for child windows.
4296 throw new RuntimeException("Can't be called from a child");
4332 throw new RuntimeException("Can't be called from a child");
4781 startActivityFromChild(@onNull Activity child, @RequiresPermission Intent intent, int requestCode) argument
4805 startActivityFromChild(@onNull Activity child, @RequiresPermission Intent intent, int requestCode, @Nullable Bundle options) argument
4898 startIntentSenderFromChild(Activity child, IntentSender intent, int requestCode, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags) argument
4912 startIntentSenderFromChild(Activity child, IntentSender intent, int requestCode, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, @Nullable Bundle options) argument
4927 startIntentSenderFromChildFragment(Fragment child, IntentSender intent, int requestCode, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, @Nullable Bundle options) argument
5267 finishFromChild(Activity child) argument
5314 finishActivityFromChild(@onNull Activity child, int requestCode) argument
6490 navigateUpToFromChild(Activity child, Intent upIntent) argument
[all...]
H A DBackStackRecord.java1386 * specific shared elements. This allows developers to target child views of the
1408 * It won't add a child if it is already in views.
1413 return; // This child is already in the list, so all its children are also.
1422 final View child = viewGroup.getChildAt(childIndex);
1423 if (!containedBeforeIndex(views, child, startIndex)) {
1424 views.add(child);
1505 Transition child = set.getTransitionAt(i);
1506 removeTargets(child, views);
1533 Transition child = set.getTransitionAt(i);
1534 addTargets(child, view
[all...]
H A DSearchDialog.java628 View child, ActionMode.Callback callback, int type) {
631 return super.startActionModeForChild(child, callback, type);
627 startActionModeForChild( View child, ActionMode.Callback callback, int type) argument
/frameworks/base/core/java/android/webkit/
H A DWebView.java74 * <p>This must be a child of the <a
1359 * a child node. If a phone number is found, the HitTestResult type is set
1986 public void onChildViewAdded(View parent, View child) {} argument
1995 public void onChildViewRemoved(View p, View child) {} argument
2613 public boolean requestChildRectangleOnScreen(View child, Rect rect, boolean immediate) { argument
2614 return mProvider.getViewDelegate().requestChildRectangleOnScreen(child, rect, immediate);
2662 * @param resultCode The integer result code returned by the child activity
H A DWebViewProvider.java377 public boolean requestChildRectangleOnScreen(View child, Rect rect, boolean immediate); argument
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DTransformsAndAnimationsActivity.java193 protected boolean getChildStaticTransformation(View child, Transformation t) { argument
/frameworks/data-binding/extensions/library/src/main/java/android/databinding/
H A DViewDataBinding.java963 final View child = viewGroup.getChildAt(i);
966 String childTag = (String) child.getTag();
979 bindings[index] = DataBindingUtil.bind(bindingComponent, child,
995 mapBindings(bindingComponent, child, bindings, includes, viewsWithIds, false);
/frameworks/support/design/tests/src/android/support/design/widget/
H A DBottomSheetBehaviorTest.java264 View child = LayoutInflater.from(view.getContext()).inflate(mLayout, parent, false);
265 parent.addView(child);
628 View child = parent.getChildAt(0);
629 assertThat(ViewCompat.isLaidOut(child), is(true));
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DStaggeredGridLayoutManagerTest.java136 assertEquals("first fully visible child should be at position",
139 assertEquals("last fully visible child should be at position",
143 assertEquals("first visible child should be at position",
146 assertEquals("last visible child should be at position",
191 View child = mRecyclerView.getChildAt(i);
192 final int size = config.mOrientation == HORIZONTAL ? child.getWidth()
193 : child.getHeight();
194 assertEquals("child " + i + " should have the size specified in its layout params",
195 sizeMap.get(child).intValue(), size);
634 assertEquals(msg + "[child
[all...]
H A DRecyclerViewLayoutTest.java436 private Rect getTransformedBoundingBox(View child) { argument
438 mRecyclerView.getLayoutManager().getTransformedBoundingBox(child, true, rect);
502 final View child = recyclerView.getChildAt(0);
503 assertThat(child.getScrollY(), CoreMatchers.is(scrollY));
507 recyclerView.requestChildRectangleOnScreen(child, new Rect(3, 4, 5, 6), true);
1754 // first put the hidden child back
2542 assertEquals("ignored child should not be recycled or removed", 2,
2554 assertEquals("ignored child should be removed as well ", 0, lm.getChildCount());
2582 View child = lm.findViewByPosition(pos);
2583 lm.ignoreView(child);
4320 attachViewToParent(View child, int index, ViewGroup.LayoutParams params) argument
[all...]
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java77 * If a child does not specify the row and column indices of the cell it
110 * {@link LayoutParams#setGravity(int) gravity} property of the child's layout parameters.
436 * based on the child's visual characteristics. Each of the
686 private int getTotalMargin(View child, boolean horizontal) { argument
687 return getMargin(child, horizontal, true) + getMargin(child, horizontal, false);
896 private void measureChildWithMargins2(View child, int parentWidthSpec, int parentHeightSpec, argument
899 getTotalMargin(child, true), childWidth);
901 getTotalMargin(child, false), childHeight);
902 child
[all...]
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java517 * Notifies us that our child has been rebuilt, following
545 * We have one child
1077 public void invalidateChild(View child, Rect dirty) { argument
1084 if (DEBUG_DRAW) Log.v(mTag, "Invalidate child: " + dirty);
1172 public boolean getChildVisibleRect(View child, Rect r, android.graphics.Point offset) { argument
1173 if (child != mView) {
1174 throw new RuntimeException("child is not mine, honest!");
1182 public void bringChildToFront(View child) { argument
2469 public void requestTransparentRegion(View child) { argument
2472 if (mView == child) {
3201 requestChildFocus(View child, View focused) argument
3210 clearChildFocus(View child) argument
3246 recomputeViewAttributes(View child) argument
3349 isViewDescendantOf(View child, View parent) argument
6663 childDrawableStateChanged(View child) argument
6667 requestSendAccessibilityEvent(View child, AccessibilityEvent event) argument
6807 notifySubtreeAccessibilityStateChanged(View child, View source, int changeType) argument
6902 requestChildRectangleOnScreen(View child, Rect rectangle, boolean immediate) argument
6921 childHasTransientStateChanged(View child, boolean hasTransientState) argument
6926 onStartNestedScroll(View child, View target, int nestedScrollAxes) argument
6935 onNestedScrollAccepted(View child, View target, int nestedScrollAxes) argument
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java805 * Returns the id of the child at the specified index.
821 * @return The child count.
828 * Get the child at given index.
835 * @param index The child index.
836 * @return The child node.
856 * Adds a child.
863 * @param child The child.
867 public void addChild(View child) { argument
868 addChildInternal(child, UNDEFINED_ITEM_I
877 addChildUnchecked(View child) argument
895 removeChild(View child) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarView.java879 final View child = getChildAt(i);
880 if (child.getVisibility() != GONE &&
881 !(child == mMenuView && mMenuView.getChildCount() == 0) &&
882 child != mUpGoerFive) {
889 final View child = mUpGoerFive.getChildAt(i);
890 if (child.getVisibility() != GONE) {
/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/expr/
H A DExprModelTest.java797 final Expr child = fieldAccess.getChild();
798 assertTrue(child instanceof StaticIdentifierExpr);
799 StaticIdentifierExpr id = (StaticIdentifierExpr) child;
842 final Expr child = methodCall.getTarget();
843 assertTrue(child instanceof StaticIdentifierExpr);
844 StaticIdentifierExpr id = (StaticIdentifierExpr) child;
/frameworks/base/core/jni/
H A Dandroid_graphics_drawable_VectorDrawable.cpp90 VectorDrawable::Node* child = reinterpret_cast<VectorDrawable::Node*>(childPtr); local
91 group->addChild(child);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDessertCaseView.java145 final View child = getChildAt((int) (Math.random() * N));
146 place(child, true);
/frameworks/base/test-runner/src/android/test/
H A DTestRunner.java695 for (String child : children) {
696 rv += countTests(c, child);
/frameworks/base/core/java/android/preference/
H A DGenericInflater.java64 public void addItemFromInflater(T child); argument
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/
H A DGenericInflater.java38 * specific implementation is expected to handle inserting child items into the parent, by
490 protected abstract void onAddChildItem(T parent, T child); argument

Completed in 2599 milliseconds

<<1112131415