Searched defs:container (Results 276 - 284 of 284) sorted by relevance

<<1112

/frameworks/base/core/java/android/view/
H A DWindow.java699 * Set the container for this window. If not set, the DecorWindow
701 * container to display itself appropriately.
703 * @param container The desired containing Window.
705 public void setContainer(Window container) { argument
706 mContainer = container;
707 if (container != null) {
711 container.mHasChildren = true;
716 * Return the container for this Window.
1684 * Window itself or its container. That is, it is the set of
H A DViewGroup.java571 // Indicates how many of this container's child subtrees contain transient state
3795 protected void dispatchSaveInstanceState(SparseArray<Parcelable> container) { argument
3796 super.dispatchSaveInstanceState(container);
3802 c.dispatchSaveInstanceState(container);
3813 * @param container the container
3815 protected void dispatchFreezeSelfOnly(SparseArray<Parcelable> container) { argument
3816 super.dispatchSaveInstanceState(container);
3820 protected void dispatchRestoreInstanceState(SparseArray<Parcelable> container) { argument
3821 super.dispatchRestoreInstanceState(container);
3840 dispatchThawSelfOnly(SparseArray<Parcelable> container) argument
[all...]
H A DView.java4829 // themselves at 1/3 the size of their container. It breaks older apps though,
8398 * that can return {@code true} in some cases (like a container with a resource id),
9348 * containers allow the window to use resize mode since the container
9636 * used with a container that covers the entire window, allowing it to
12361 * a container View.
12371 * This is called when a container is going to temporarily detach a child, with
12374 * {@link #onDetachedFromWindow()} when the container is done.
12383 * a container View.
12396 * Called after {@link #onStartTemporaryDetach} when the container is done
13825 // Walk up the hierarchy to determine if we're inside a scrolling container
18498 saveHierarchyState(SparseArray<Parcelable> container) argument
18513 dispatchSaveInstanceState(SparseArray<Parcelable> container) argument
18585 restoreHierarchyState(SparseArray<Parcelable> container) argument
18601 dispatchRestoreInstanceState(SparseArray<Parcelable> container) argument
[all...]
/frameworks/base/core/java/com/android/internal/policy/
H A DPhoneWindow.java337 public final void setContainer(Window container) { argument
338 super.setContainer(container);
2510 // the values are inherited from our container.
2603 throw new RuntimeException("Window couldn't find content container view");
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityStackSupervisor.java236 // at the top of its container (e.g. stack).
690 boolean isFocusable(ConfigurationContainer container, boolean alwaysFocusable) { argument
691 if (container.inSplitScreenPrimaryWindowingMode() && mIsDockMinimized) {
695 return container.getWindowConfiguration().canReceiveKeys() || alwaysFocusable;
3208 * @param onTop Indicates whether container should be place on top or on bottom.
4903 * Internal container to store a match qualifier alongside a WaitResult.
/frameworks/base/core/java/com/android/internal/widget/
H A DRecyclerView.java1215 protected void dispatchSaveInstanceState(SparseArray<Parcelable> container) { argument
1216 dispatchFreezeSelfOnly(container);
1223 protected void dispatchRestoreInstanceState(SparseArray<Parcelable> container) { argument
1224 dispatchThawSelfOnly(container);
3472 // items back to the container). This gives the pre-layout position of APPEARING views
7628 * visible portion of the container but is being laid out in order to inform RecyclerView
7645 * visible portion of the container but is being laid out in order to inform RecyclerView
10023 // scrap container.
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java2778 private void onViewRemovedInternal(View child, ViewGroup container) { argument
2791 container.addTransientView(child, 0);
2792 expandableView.setTransientContainer(container);
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DRecyclerView.java1359 protected void dispatchSaveInstanceState(SparseArray<Parcelable> container) { argument
1360 dispatchFreezeSelfOnly(container);
1367 protected void dispatchRestoreInstanceState(SparseArray<Parcelable> container) { argument
1368 dispatchThawSelfOnly(container);
3821 // items back to the container). This gives the pre-layout position of APPEARING views
8197 * visible portion of the container but is being laid out in order to inform RecyclerView
8214 * visible portion of the container but is being laid out in order to inform RecyclerView
10766 // scrap container.
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 897 milliseconds

<<1112