Searched defs:container (Results 1 - 25 of 284) sorted by path

1234567891011>>

/frameworks/av/camera/ndk/
H A DNdkCameraDevice.cpp89 void ACaptureSessionOutputContainer_free(ACaptureSessionOutputContainer* container) { argument
91 if (container != nullptr) {
92 delete container;
184 ACaptureSessionOutputContainer* container, const ACaptureSessionOutput* output) {
186 if (container == nullptr || output == nullptr) {
187 ALOGE("%s: Error: invalid input: container %p, output %p",
188 __FUNCTION__, container, output);
191 auto pair = container->mOutputs.insert(*output);
200 ACaptureSessionOutputContainer* container, const ACaptureSessionOutput* output) {
202 if (container
183 ACaptureSessionOutputContainer_add( ACaptureSessionOutputContainer* container, const ACaptureSessionOutput* output) argument
199 ACaptureSessionOutputContainer_remove( ACaptureSessionOutputContainer* container, const ACaptureSessionOutput* output) argument
[all...]
/frameworks/av/cmds/stagefright/
H A Dmuxer.cpp45 fprintf(stderr, " -w mux into WebM container (default is MP4)\n");
64 MediaMuxer::OutputFormat container = MediaMuxer::OUTPUT_FORMAT_MPEG_4) {
84 sp<MediaMuxer> muxer = new MediaMuxer(fd, container);
240 MediaMuxer::OutputFormat container = MediaMuxer::OUTPUT_FORMAT_MPEG_4; local
259 container = MediaMuxer::OUTPUT_FORMAT_WEBM;
325 enableTrim, trimStartTimeMs, trimEndTimeMs, rotationDegrees, container);
/frameworks/av/drm/mediacas/plugins/clearkey/
H A DClearKeyFetcher.cpp58 EcmContainer container; local
59 status_t status = container.Parse(buffer);
63 ALOGV("descriptor_size=%zu", container.descriptor_size());
69 if (container.descriptor_size() == 2) {
71 bool same_parity = (((container.descriptor(0).id() & 0x01) ^
72 (container.descriptor(1).id() & 0x01)) == 0);
76 container.descriptor(0).ecm().asset_id(),
77 container.descriptor(0).id(),
78 container.descriptor(1).id());
82 *asset_id = container
[all...]
/frameworks/av/packages/MediaComponents/src/com/android/widget/
H A DMediaControlView2Impl.java1615 public View getView(int position, View convertView, ViewGroup container) { argument
1695 public View getView(int position, View convertView, ViewGroup container) { argument
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiScrollable.java53 * @param container a {@link UiSelector} selector to identify the scrollable
57 public UiScrollable(UiSelector container) { argument
58 // wrap the container selector with container so that QueryController can handle
60 super(container);
101 * Searches for a child element in the present scrollable container.
125 * Searches for a child element in the present scrollable container.
153 * Searches for a child element in the present scrollable container that
174 * container. The search first looks for a child element that matches the
196 * Searches for a child element in the present scrollable container
[all...]
H A DUiSelector.java102 static UiSelector patternBuilder(UiSelector container, UiSelector pattern) { argument
104 new UiSelector().containerSelector(container).patternSelector(pattern));
/frameworks/base/core/java/android/animation/
H A DLayoutTransition.java35 * transitions for a layout container, create a LayoutTransition object and set it on any
37 * default animations to run whenever items are added to or removed from that container. To specify
43 * those changes. The changes that trigger the transition are items being added to a container
44 * (referred to as an "appearing" transition) or removed from a container (also known as
48 * items in the container that change due to the add/remove occurrence. Users of
58 * follows: when an item is being added to a layout, the other children of that container will
60 * animate the item being added. Conversely, when an item is removed from a container, the
77 * values of the target being animated (such as one of the items in a layout container that is
91 * interrelationship of the various levels of layout. Also, a container that is being scrolled
94 * may not match the actual locations when the animations finish due to the container
1476 startTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument
1491 endTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument
[all...]
/frameworks/base/core/java/android/app/
H A DContextImpl.java2398 private ContextImpl(@Nullable ContextImpl container, @NonNull ActivityThread mainThread, argument
2430 if (container != null) {
2431 mBasePackageName = container.mBasePackageName;
2432 mOpPackageName = container.mOpPackageName;
2433 setResources(container.mResources);
2434 mDisplay = container.mDisplay;
H A DFragment.java188 * container in the current activity, so the titles fragment's click code will
212 * how you can determine if a fragment placed in a container is no longer
213 * running in a layout with that container and avoid creating its view hierarchy
218 * container. They can also be parsed by the fragment in {@link #onInflate}
227 * <li>If nothing is explicitly supplied, the view ID of the container will
340 // If this Fragment is contained in another Fragment, this is that container.
343 // The optional identifier for this fragment -- either the container ID if it
349 // is the identifier of the parent container it is being added to.
379 // The parent container of the fragment after dynamically added to UI.
620 * the android:id value supplied in a layout or the container vie
1567 onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, Bundle savedInstanceState) argument
2516 performCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) argument
[all...]
H A DFragmentManager.java194 * from XML or as the container ID when added in a transaction. This first
1274 ViewGroup container = null;
1280 + " for a container view with no id"));
1282 container = mContainer.onFindViewById(f.mContainerId);
1283 if (container == null && !f.mRestored) {
1297 f.mContainer = container;
1299 f.mSavedFragmentState), container, f.mSavedFragmentState);
1302 if (container != null) {
1303 container.addView(f.mView);
1392 final ViewGroup container
2953 attachController(FragmentHostCallback<?> host, FragmentContainer container, Fragment parent) argument
[all...]
H A DFragmentState.java68 public Fragment instantiate(FragmentHostCallback host, FragmentContainer container, argument
76 if (container != null) {
77 mInstance = container.instantiate(context, mClassName, mArguments);
H A DListFragment.java196 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
199 container, false);
/frameworks/base/core/java/android/app/slice/
H A DSliceQuery.java61 public static SliceItem findNotContaining(SliceItem container, List<SliceItem> list) { argument
65 if (!contains(container, remove)) {
75 private static boolean contains(SliceItem container, SliceItem item) { argument
76 if (container == null || item == null) return false;
77 return stream(container).filter(s -> (s == item)).findAny().isPresent();
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHostView.java212 protected void dispatchSaveInstanceState(SparseArray<Parcelable> container) { argument
218 container.put(generateId(), bundle);
227 protected void dispatchRestoreInstanceState(SparseArray<Parcelable> container) { argument
228 final Parcelable parcelable = container.get(generateId());
/frameworks/base/core/java/android/preference/
H A DPreference.java1956 * Store this Preference hierarchy's frozen state into the given container.
1958 * @param container The Bundle in which to save the instance of this Preference.
1963 public void saveHierarchyState(Bundle container) { argument
1964 dispatchSaveInstanceState(container);
1972 * @param container The Bundle in which to save the instance of this Preference.
1977 void dispatchSaveInstanceState(Bundle container) { argument
1986 container.putParcelable(mKey, state);
2009 * Restore this Preference hierarchy's previously saved state from the given container.
2011 * @param container The Bundle that holds the previously saved state.
2016 public void restoreHierarchyState(Bundle container) { argument
2030 dispatchRestoreInstanceState(Bundle container) argument
[all...]
H A DPreferenceFragment.java174 public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, argument
187 return inflater.inflate(mLayoutResId, container, false);
220 Bundle container = savedInstanceState.getBundle(PREFERENCES_TAG);
221 if (container != null) {
224 preferenceScreen.restoreHierarchyState(container);
266 Bundle container = new Bundle();
267 preferenceScreen.saveHierarchyState(container);
268 outState.putBundle(PREFERENCES_TAG, container);
H A DPreferenceGroup.java29 * A container for multiple
44 * The container for child {@link Preference}s. This is sorted based on the
312 protected void dispatchSaveInstanceState(Bundle container) { argument
313 super.dispatchSaveInstanceState(container);
318 getPreference(i).dispatchSaveInstanceState(container);
323 protected void dispatchRestoreInstanceState(Bundle container) { argument
324 super.dispatchRestoreInstanceState(container);
329 getPreference(i).dispatchRestoreInstanceState(container);
/frameworks/base/core/java/android/view/
H A DGravity.java22 * larger container.
37 * container, based on the gravity direction being applied. */
45 /** Push object to the top of its container, not changing its size. */
47 /** Push object to the bottom of its container, not changing its size. */
49 /** Push object to the left of its container, not changing its size. */
51 /** Push object to the right of its container, not changing its size. */
54 /** Place object in the vertical center of its container, not changing its
58 * its container. */
61 /** Place object in the horizontal center of its container, not changing its
65 * its container
138 apply(int gravity, int w, int h, Rect container, Rect outRect) argument
159 apply(int gravity, int w, int h, Rect container, Rect outRect, int layoutDirection) argument
186 apply(int gravity, int w, int h, Rect container, int xAdj, int yAdj, Rect outRect) argument
296 apply(int gravity, int w, int h, Rect container, int xAdj, int yAdj, Rect outRect, int layoutDirection) 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...]
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 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
/frameworks/base/core/java/android/webkit/
H A DWebViewFragment.java45 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
/frameworks/base/core/java/android/widget/
H A DAbsSpinner.java374 protected void dispatchRestoreInstanceState(SparseArray<Parcelable> container) { argument
375 super.dispatchRestoreInstanceState(container);
H A DAdapterView.java816 protected void dispatchSaveInstanceState(SparseArray<Parcelable> container) { argument
817 dispatchFreezeSelfOnly(container);
824 protected void dispatchRestoreInstanceState(SparseArray<Parcelable> container) { argument
825 dispatchThawSelfOnly(container);
H A DDatePicker.java498 protected void dispatchRestoreInstanceState(SparseArray<Parcelable> container) { argument
499 dispatchThawSelfOnly(container);

Completed in 458 milliseconds

1234567891011>>