Searched refs:container (Results 1 - 25 of 374) sorted by path

1234567891011>>

/frameworks/av/camera/include/camera/ndk/
H A DNdkCameraDevice.h295 * Create a capture session output container.
297 * <p>The container is used in {@link ACameraDevice_createCaptureSession} method to create a capture
298 * session. Use {@link ACaptureSessionOutputContainer_free} to free the container and its memory
301 * @param container the output {@link ACaptureSessionOutputContainer} will be stored here if the
305 * <li>{@link ACAMERA_OK} if the method call succeeds. The created container will be
306 * filled in container argument.</li>
307 * <li>{@link ACAMERA_ERROR_INVALID_PARAMETER} if container is NULL.</li></ul>
310 /*out*/ACaptureSessionOutputContainer** container);
313 * Free a capture session output container.
315 * @param container th
[all...]
/frameworks/av/camera/ndk/
H A DNdkCameraDevice.cpp89 void ACaptureSessionOutputContainer_free(ACaptureSessionOutputContainer* container) { argument
91 if (container != nullptr) {
92 delete container;
121 ACaptureSessionOutputContainer* container, const ACaptureSessionOutput* output) {
123 if (container == nullptr || output == nullptr) {
124 ALOGE("%s: Error: invalid input: container %p, output %p",
125 __FUNCTION__, container, output);
128 auto pair = container->mOutputs.insert(*output);
137 ACaptureSessionOutputContainer* container, const ACaptureSessionOutput* output) {
139 if (container
120 ACaptureSessionOutputContainer_add( ACaptureSessionOutputContainer* container, const ACaptureSessionOutput* output) argument
136 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/include/camera/ndk/
H A DNdkCameraDevice.h295 * Create a capture session output container.
297 * <p>The container is used in {@link ACameraDevice_createCaptureSession} method to create a capture
298 * session. Use {@link ACaptureSessionOutputContainer_free} to free the container and its memory
301 * @param container the output {@link ACaptureSessionOutputContainer} will be stored here if the
305 * <li>{@link ACAMERA_OK} if the method call succeeds. The created container will be
306 * filled in container argument.</li>
307 * <li>{@link ACAMERA_ERROR_INVALID_PARAMETER} if container is NULL.</li></ul>
310 /*out*/ACaptureSessionOutputContainer** container);
313 * Free a capture session output container.
315 * @param container th
[all...]
/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 DActivityView.java413 public void setVisible(IBinder container, boolean visible) { argument
414 if (DEBUG) Log.v(TAG, "setVisible(): container=" + container + " visible=" + visible +
419 public void onAllActivitiesComplete(IBinder container) { argument
445 ActivityContainerWrapper(IActivityContainer container) { argument
446 mIActivityContainer = container;
H A DBackStackRecord.java448 + fragment + " with tag " + tag + " to container view with no id");
451 throw new IllegalStateException("Can't change container ID of fragment "
735 final int container = op.fragment != null ? op.fragment.mContainerId : 0;
736 if (container != 0 && container != lastContainer) {
737 lastContainer = container;
745 if (thatContainer == container) {
H A DContextImpl.java2295 private ContextImpl(@Nullable ContextImpl container, @NonNull ActivityThread mainThread, argument
2327 if (container != null) {
2328 mBasePackageName = container.mBasePackageName;
2329 mOpPackageName = container.mOpPackageName;
2330 setResources(container.mResources);
2331 mDisplay = container.mDisplay;
H A DFragment.java106 public Fragment instantiate(FragmentHostCallback host, FragmentContainer container, argument
114 if (container != null) {
115 mInstance = container.instantiate(context, mClassName, mArguments);
297 * container in the current activity, so the titles fragment's click code will
321 * how you can determine if a fragment placed in a container is no longer
322 * running in a layout with that container and avoid creating its view hierarchy
327 * container. They can also be parsed by the fragment in {@link #onInflate}
336 * <li>If nothing is explicitly supplied, the view ID of the container will
444 // If this Fragment is contained in another Fragment, this is that container.
447 // The optional identifier for this fragment -- either the container I
1657 onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, Bundle savedInstanceState) argument
2605 performCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) argument
[all...]
H A DFragmentManager.java180 * from XML or as the container ID when added in a transaction. This first
1252 ViewGroup container = null;
1258 + " for a container view with no id"));
1260 container = mContainer.onFindViewById(f.mContainerId);
1261 if (container == null && !f.mRestored) {
1275 f.mContainer = container;
1277 f.mSavedFragmentState), container, f.mSavedFragmentState);
1280 if (container != null) {
1281 container.addView(f.mView);
1370 final ViewGroup container
2946 attachController(FragmentHostCallback<?> host, FragmentContainer container, Fragment parent) argument
[all...]
H A DIActivityContainerCallback.aidl23 oneway void setVisible(IBinder container, boolean visible);
24 oneway void onAllActivitiesComplete(IBinder container);
H A DListFragment.java191 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
194 container, false);
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHostView.java215 protected void dispatchSaveInstanceState(SparseArray<Parcelable> container) { argument
218 container.put(generateId(), jail);
227 protected void dispatchRestoreInstanceState(SparseArray<Parcelable> container) { argument
228 final Parcelable parcelable = container.get(generateId());
/frameworks/base/core/java/android/preference/
H A DEditTextPreference.java133 ViewGroup container = (ViewGroup) dialogView
135 if (container != null) {
136 container.addView(editText, ViewGroup.LayoutParams.MATCH_PARENT,
H A DPreference.java1955 * Store this Preference hierarchy's frozen state into the given container.
1957 * @param container The Bundle in which to save the instance of this Preference.
1962 public void saveHierarchyState(Bundle container) { argument
1963 dispatchSaveInstanceState(container);
1971 * @param container The Bundle in which to save the instance of this Preference.
1976 void dispatchSaveInstanceState(Bundle container) { argument
1985 container.putParcelable(mKey, state);
2008 * Restore this Preference hierarchy's previously saved state from the given container.
2010 * @param container The Bundle that holds the previously saved state.
2015 public void restoreHierarchyState(Bundle container) { argument
2029 dispatchRestoreInstanceState(Bundle container) argument
[all...]
H A DPreferenceActivity.java651 ViewGroup container = (ViewGroup) findViewById(
653 container.setLayoutTransition(new LayoutTransition());
1027 Bundle container = new Bundle();
1028 preferenceScreen.saveHierarchyState(container);
1029 outState.putBundle(PREFERENCES_TAG, container);
1037 Bundle container = state.getBundle(PREFERENCES_TAG);
1038 if (container != null) {
1041 preferenceScreen.restoreHierarchyState(container);
1264 // to hide headers and show the prefs container.
H A DPreferenceFragment.java168 public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, argument
181 return inflater.inflate(mLayoutResId, container, false);
214 Bundle container = savedInstanceState.getBundle(PREFERENCES_TAG);
215 if (container != null) {
218 preferenceScreen.restoreHierarchyState(container);
260 Bundle container = new Bundle();
261 preferenceScreen.saveHierarchyState(container);
262 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.java4557 // themselves at 1/3 the size of their container. It breaks older apps though,
7884 * that can return {@code true} in some cases (like a container with a resource id),
8760 * containers allow the window to use resize mode since the container
9020 * used with a container that covers the entire window, allowing it to
11569 * a container View.
11579 * This is called when a container is going to temporarily detach a child, with
11582 * {@link #onDetachedFromWindow()} when the container is done.
11591 * a container View.
11604 * Called after {@link #onStartTemporaryDetach} when the container is done
13024 // Walk up the hierarchy to determine if we're inside a scrolling container
17528 saveHierarchyState(SparseArray<Parcelable> container) argument
17543 dispatchSaveInstanceState(SparseArray<Parcelable> container) argument
17615 restoreHierarchyState(SparseArray<Parcelable> container) argument
17631 dispatchRestoreInstanceState(SparseArray<Parcelable> container) argument
[all...]
H A DViewGroup.java514 // Indicates how many of this container's child subtrees contain transient state
3697 protected void dispatchSaveInstanceState(SparseArray<Parcelable> container) { argument
3698 super.dispatchSaveInstanceState(container);
3704 c.dispatchSaveInstanceState(container);
3715 * @param container the container
3717 protected void dispatchFreezeSelfOnly(SparseArray<Parcelable> container) { argument
3718 super.dispatchSaveInstanceState(container);
3722 protected void dispatchRestoreInstanceState(SparseArray<Parcelable> container) { argument
3723 super.dispatchRestoreInstanceState(container);
3742 dispatchThawSelfOnly(SparseArray<Parcelable> container) argument
[all...]
H A DWindow.java702 * Set the container for this window. If not set, the DecorWindow
704 * container to display itself appropriately.
706 * @param container The desired containing Window.
708 public void setContainer(Window container) { argument
709 mContainer = container;
710 if (container != null) {
714 container.mHasChildren = true;
719 * Return the container for this Window.
1642 * Window itself or its container. That is, it is the set of

Completed in 2056 milliseconds

1234567891011>>