Searched defs:container (Results 76 - 88 of 88) sorted by relevance

1234

/frameworks/base/tools/aidl/
H A Dgenerate_java_rpc.cpp478 Variable* container = new Variable(RPC_CONTAINER_TYPE, "container"); local
485 ctor->parameters.push_back(container);
490 ctor->statements->Add(new MethodCall("super", 3, container, broker, place));
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
H A DTimePickerDialog.java191 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DAdapterViewICS.java784 protected void dispatchSaveInstanceState(SparseArray<Parcelable> container) { argument
785 dispatchFreezeSelfOnly(container);
792 protected void dispatchRestoreInstanceState(SparseArray<Parcelable> container) { argument
793 dispatchThawSelfOnly(container);
/frameworks/av/media/libstagefright/mp4/
H A DFragmentedMP4Parser.cpp625 // SampleEntry boxes are container boxes that start with a variable
636 // This is a container box.
1041 Container container; local
1042 container.mOffset = offset;
1043 container.mType = type;
1044 container.mExtendsToEOF = (size == 0);
1045 container.mBytesRemaining = size;
1047 mStack.push(container);
1052 const Container &container = mStack.itemAt(mStack.size() - 1); local
1054 return container
1078 Container *container = &mStack.editItemAt(i); local
[all...]
/frameworks/base/core/java/android/app/
H A DContextImpl.java2008 Resources container, String basePackageName, UserHandle user) {
2029 container == null ? null : container.getCompatibilityInfo();
2035 Log.d(TAG, "loaded context has different scaling. Using container's" +
2036 " compatiblity info:" + container.getDisplayMetrics());
2007 init(LoadedApk packageInfo, IBinder activityToken, ActivityThread mainThread, Resources container, String basePackageName, UserHandle user) argument
H A DFragment.java273 * container in the current activity, so the titles fragment's click code will
297 * how you can determine if a fragment placed in a container is no longer
298 * running in a layout with that container and avoid creating its view hierarchy
303 * container. They can also be parsed by the fragment in {@link #onInflate}
312 * <li>If nothing is explicitly supplied, the view ID of the container will
422 // If this Fragment is contained in another Fragment, this is that container.
425 // The optional identifier for this fragment -- either the container ID if it
431 // is the identifier of the parent container it is being added to.
464 // The parent container of the fragment after dynamically added to UI.
673 * the android:id value supplied in a layout or the container vie
1216 onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) argument
1695 performCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) argument
[all...]
/frameworks/base/core/java/android/preference/
H A DPreference.java1701 * Store this Preference hierarchy's frozen state into the given container.
1703 * @param container The Bundle in which to save the instance of this Preference.
1708 public void saveHierarchyState(Bundle container) { argument
1709 dispatchSaveInstanceState(container);
1717 * @param container The Bundle in which to save the instance of this Preference.
1722 void dispatchSaveInstanceState(Bundle container) { argument
1731 container.putParcelable(mKey, state);
1754 * Restore this Preference hierarchy's previously saved state from the given container.
1756 * @param container The Bundle that holds the previously saved state.
1761 public void restoreHierarchyState(Bundle container) { argument
1775 dispatchRestoreInstanceState(Bundle container) argument
[all...]
/frameworks/base/core/java/android/view/
H A DWindow.java419 * Set the container for this window. If not set, the DecorWindow
421 * container to display itself appropriately.
423 * @param container The desired containing Window.
425 public void setContainer(Window container) { argument
426 mContainer = container;
427 if (container != null) {
431 container.mHasChildren = true;
436 * Return the container for this Window.
1177 * Window itself or its container. That is, it is the set of
H A DViewGroup.java454 // Indicates how many of this container's child subtrees contain transient state
2608 protected void dispatchSaveInstanceState(SparseArray<Parcelable> container) { argument
2609 super.dispatchSaveInstanceState(container);
2615 c.dispatchSaveInstanceState(container);
2626 * @param container the container
2628 protected void dispatchFreezeSelfOnly(SparseArray<Parcelable> container) { argument
2629 super.dispatchSaveInstanceState(container);
2636 protected void dispatchRestoreInstanceState(SparseArray<Parcelable> container) { argument
2637 super.dispatchRestoreInstanceState(container);
2656 dispatchThawSelfOnly(SparseArray<Parcelable> container) argument
[all...]
H A DView.java5624 * containers allow the window to use resize mode since the container
5861 * used with a container that covers the entire window, allowing it to
7577 * This is called when a container is going to temporarily detach a child, with
7580 * {@link #onDetachedFromWindow()} when the container is done.
7595 * Called after {@link #onStartTemporaryDetach} when the container is done
8688 // Walk up the hierarchy to determine if we're inside a scrolling container.
8691 // For views inside a scrolling container, delay the pressed feedback for
8700 // Not inside a scrolling container, so show the feedback right away
9002 * views. This ordering change may affect layout, if the parent container
12670 * Store this view hierarchy's frozen state into the given container
12678 saveHierarchyState(SparseArray<Parcelable> container) argument
12693 dispatchSaveInstanceState(SparseArray<Parcelable> container) argument
12744 restoreHierarchyState(SparseArray<Parcelable> container) argument
12760 dispatchRestoreInstanceState(SparseArray<Parcelable> container) argument
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DFragment.java239 // If this Fragment is contained in another Fragment, this is that container.
242 // The optional identifier for this fragment -- either the container ID if it
248 // is the identifier of the parent container it is being added to.
281 // The parent container of the fragment after dynamically added to UI.
507 * the android:id value supplied in a layout or the container view ID
1008 * @param container If non-null, this is the parent view that the fragment's
1016 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
1495 View performCreateView(LayoutInflater inflater, ViewGroup container, argument
1500 return onCreateView(inflater, container, savedInstanceState);
H A DFragmentManager.java161 * from XML or as the container ID when added in a transaction. This first
386 * Callbacks from FragmentManagerImpl to its container.
915 ViewGroup container = null;
917 container = (ViewGroup)mContainer.findViewById(f.mContainerId);
918 if (container == null && !f.mRestored) {
926 f.mContainer = container;
928 f.mSavedFragmentState), container, f.mSavedFragmentState);
932 if (container != null) {
938 container.addView(f.mView);
1866 FragmentContainer container, Fragmen
1865 attachActivity(FragmentActivity activity, FragmentContainer container, Fragment parent) argument
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindow.java242 public final void setContainer(Window container) { argument
243 super.setContainer(container);
2887 // the values are inherited from our container.
2971 throw new RuntimeException("Window couldn't find content container view");

Completed in 623 milliseconds

1234