Searched refs:parent (Results 276 - 300 of 377) sorted by relevance

<<111213141516

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DWifiTile.java253 public View createDetailView(Context context, View convertView, ViewGroup parent) { argument
258 mItems = QSDetailItems.convertOrInflate(context, convertView, parent);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFilterGraph.java42 * FilterGraphs may contain sub-graphs that are dependent on the parent graph. These are typically
43 * used when inserting sub-graphs into MetaFilters. When a parent graph is torn down so are its
65 /** The parent graph of this graph, or null it this graph is a root graph. */
196 * @param parentGraph the parent graph of the built sub-graph.
267 * If parent is non-null, build a sub-graph of the specified parent.
271 private FilterGraph buildWithParent(FilterGraph parent) { argument
272 FilterGraph graph = new FilterGraph(mContext, parent);
/frameworks/base/services/core/java/com/android/server/pm/
H A DUserManagerService.java319 checkManageUsersPermission("get the profile parent");
1150 UserInfo parent = null;
1152 parent = getUserInfoLocked(parentId);
1153 if (parent == null) return null;
1180 if (parent != null) {
1181 if (parent.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID) {
1182 parent.profileGroupId = parent.id;
1183 writeUserLocked(parent);
1185 userInfo.profileGroupId = parent
1412 removeDirectoryRecursive(File parent) argument
[all...]
/frameworks/base/core/java/android/app/
H A DFragment.java95 public Fragment instantiate(Activity activity, Fragment parent) { argument
110 mInstance.setIndex(mIndex, parent);
309 * LayoutParams provided when attaching the fragment's view to the parent
314 * so that it can be re-associated with a previous instance if the parent
440 // is the identifier of the parent container it is being added to.
473 // The parent container of the fragment after dynamically added to UI.
645 final void setIndex(int index, Fragment parent) { argument
647 if (parent != null) {
648 mWho = parent.mWho + ":" + mIndex;
834 * returned here will be the parent'
[all...]
H A DLauncherActivity.java150 public View getView(int position, View convertView, ViewGroup parent) { argument
154 com.android.internal.R.layout.activity_list_item_2, parent, false);
H A DLocalActivityManager.java98 * the given <var>parent</var>.
100 * @param parent the host of the embedded activities
104 public LocalActivityManager(Activity parent, boolean singleMode) { argument
106 mParent = parent;
538 * @param finishing set to true if the parent activity has been finished;
/frameworks/base/core/java/android/preference/
H A DPreference.java419 * {@link android.R.id#widget_frame} to be the parent of the specific widget
479 * @param parent The parent that this View will eventually be attached to.
485 public View getView(View convertView, ViewGroup parent) { argument
487 convertView = onCreateView(parent);
502 * @param parent The parent that this View will eventually be attached to.
506 protected View onCreateView(ViewGroup parent) { argument
510 final View layout = layoutInflater.inflate(mLayoutResId, parent, false);
1297 * Called when the implicit parent dependenc
1302 onParentChanged(Preference parent, boolean disableChild) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DSpinner.java873 public View getView(int position, View convertView, ViewGroup parent) { argument
874 return getDropDownView(position, convertView, parent);
877 public View getDropDownView(int position, View convertView, ViewGroup parent) { argument
878 return (mAdapter == null) ? null : mAdapter.getDropDownView(position, convertView, parent);
1069 public void onItemClick(AdapterView parent, View v, int position, long id) {
H A DExpandableListConnector.java441 public View getView(int flatListPos, View convertView, ViewGroup parent) { argument
447 posMetadata.isExpanded(), convertView, parent);
452 posMetadata.position.childPos, isLastChild, convertView, parent);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsPanelView.java147 public View createView(ViewGroup parent) { argument
148 View convertView = mInflater.inflate(mRecentItemLayoutId, parent, false);
166 public View getView(int position, View convertView, ViewGroup parent) { argument
168 convertView = createView(parent);
704 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
/frameworks/support/v4/java/android/support/v4/app/
H A DFragment.java92 public Fragment instantiate(FragmentActivity activity, Fragment parent) { argument
107 mInstance.setIndex(mIndex, parent);
254 // is the identifier of the parent container it is being added to.
287 // The parent container of the fragment after dynamically added to UI.
476 final void setIndex(int index, Fragment parent) { argument
478 if (parent != null) {
479 mWho = parent.mWho + ":" + mIndex;
665 * returned here will be the parent's {@link #getChildFragmentManager()}.
692 * Returns the parent Fragment containing this Fragment. If this Fragment
1029 * @param container If non-null, this is the parent vie
[all...]
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Device.cpp252 // as the threads try to access parent state
2310 Camera3Device::RequestThread::RequestThread(wp<Camera3Device> parent, argument
2314 mParent(parent),
2317 mId(getId(parent)),
2511 // Call parent to set up shutdown
2663 sp<Camera3Device> parent = mParent.promote(); local
2664 if (parent == NULL) {
2671 res = parent->registerInFlight(request.frame_number,
2890 sp<Camera3Device> parent = mParent.promote(); local
2891 if (parent !
2906 sp<Camera3Device> parent = mParent.promote(); local
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DResolverDrawerLayout.java404 private static View findChildUnder(ViewGroup parent, float x, float y) { argument
405 final int childCount = parent.getChildCount();
407 final View child = parent.getChildAt(i);
/frameworks/base/services/print/java/com/android/server/print/
H A DPrintManagerService.java670 UserInfo parent = mUserManager.getProfileParent(userId);
671 if (parent != null) {
672 return parent.getUserHandle().getIdentifier();
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DColladaParser.java227 private void getNode(Element node, Transform parent, String indent) { argument
232 if (parent != null) {
233 parent.appendChild(current);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DGridLayoutManager.java159 ViewParent parent = mView.getParent();
160 if (parent instanceof RecyclerView) {
161 // TODO: we only need invalidate parent if it has ItemDecoration
162 ((RecyclerView) parent).invalidate();
278 * Number of rows requested, can be 0 to be determined by parent size and
1859 public void setSelection(RecyclerView parent, int position) { argument
1860 setSelection(parent, position, false);
1863 public void setSelectionSmooth(RecyclerView parent, int position) { argument
1864 setSelection(parent, position, true);
1871 public void setSelection(RecyclerView parent, in argument
2008 onRequestChildFocus(RecyclerView parent, View child, View focused) argument
2019 requestChildRectangleOnScreen(RecyclerView parent, View view, Rect rect, boolean immediate) argument
[all...]
/frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/matcher/
H A DViewMatchers.java236 ViewParent parent = view.getParent();
237 if (!(parent instanceof ViewGroup)) {
240 ViewGroup parentGroup = (ViewGroup) parent;
580 * or INVISIBLE parent will make all of its children have their effective visibility.
645 * A matcher that accepts a view if and only if the view's parent is accepted by the provided
655 description.appendText("has parent matching: ");
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java201 public void setParent(Object info, View parent); argument
512 public void setParent(Object info, View parent) { argument
878 public void setParent(Object info, View parent) { argument
879 AccessibilityNodeInfoCompatIcs.setParent(info, parent);
1778 * Gets the parent.
1785 * @return The parent.
1792 * Sets the parent.
1799 * @param parent The parent.
1802 public void setParent(View parent) { argument
[all...]
/frameworks/base/core/java/android/transition/
H A DVisibility.java47 private static final String PROPNAME_PARENT = "android:visibility:parent";
179 View parent = (View) values.values.get(PROPNAME_PARENT);
181 return visibility == View.VISIBLE && parent != null;
324 * if a View was simply removed from its parent, then the View will be added
332 * the end scene still has a parent (so its parent hierarchy was removed, but it
333 * was not removed from its parent), then it will be left alone to avoid side-effects from
334 * improperly removing it from its parent. The only exception to this is if
337 * safe to un-parent the starting scene view in order to make it disappear.</p>
361 // endView was removed from its parent
[all...]
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DICalendar.java83 public Component(String name, Component parent) { argument
85 mParent = parent;
97 * Returns the parent of this component.
98 * @return The parent of this component.
463 * parent. Returns whatever component is the current one (to which new
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A DImageProcessingActivity.java394 public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) {
398 public void onNothingSelected(AdapterView parent) {
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
H A DImageProcessingActivity2.java336 public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) {
340 public void onNothingSelected(AdapterView parent) {
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
H A DIPControlsJB.java92 public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) {
96 public void onNothingSelected(AdapterView parent) {
/frameworks/testing/support/src/android/support/test/runner/
H A DAndroidJUnitRunner.java557 Activity parent,
576 parent,
550 newActivity(Class<?> clazz, Context context, IBinder token, Application application, Intent intent, ActivityInfo info, CharSequence title, Activity parent, String id, Object lastNonConfigurationInstance) argument
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java80 * from the parent RecyclerView, either unmodified if no rebinding is required or modified
2485 final ViewParent parent = child.getParent();
2486 if (parent != null && parent != this) {
2631 * {@link LayoutManager} fully detaches the child view from the parent and its window.</p>
3070 * <p>A "scrapped" view is a view that is still attached to its parent RecyclerView but
3556 * <p>"Scrap" views are still attached to their parent RecyclerView but are eligible
3995 * @param parent The ViewGroup into which the new View will be added after it is bound to
4003 public abstract VH onCreateViewHolder(ViewGroup parent, int viewType); argument
4030 public final VH createViewHolder(ViewGroup parent, in argument
5743 requestChildRectangleOnScreen(RecyclerView parent, View child, Rect rect, boolean immediate) argument
5786 onRequestChildFocus(RecyclerView parent, View child, View focused) argument
5807 onRequestChildFocus(RecyclerView parent, State state, View child, View focused) argument
6442 onDraw(Canvas c, RecyclerView parent, State state) argument
6451 onDraw(Canvas c, RecyclerView parent) argument
6463 onDrawOver(Canvas c, RecyclerView parent, State state) argument
6472 onDrawOver(Canvas c, RecyclerView parent) argument
6481 getItemOffsets(Rect outRect, int itemPosition, RecyclerView parent) argument
6499 getItemOffsets(Rect outRect, View view, RecyclerView parent, State state) argument
[all...]

Completed in 4852 milliseconds

<<111213141516