Searched refs:parent (Results 76 - 100 of 803) sorted by relevance

1234567891011>>

/frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/util/
H A DModuleClassLoader.java34 * @param parent The parent class loader
36 public ModuleClassLoader(String moduleRoot, ClassLoader parent) { argument
37 super(parent);
/frameworks/support/design/tests/src/android/support/design/custom/
H A DTestFloatingBehavior.java37 public boolean layoutDependsOn(CoordinatorLayout parent, TextView child, View dependency) { argument
42 public boolean onDependentViewChanged(CoordinatorLayout parent, TextView child, argument
/frameworks/support/design/tests/src/android/support/design/widget/
H A DCustomSnackbar.java27 public CustomSnackbar(CoordinatorLayout parent, View content, argument
29 super(parent, content, contentViewCallback);
/frameworks/support/frameworks/support/samples/SupportDesignDemos/src/com/example/android/support/design/widget/
H A DCustomSnackbar.java30 public CustomSnackbar(CoordinatorLayout parent, View content, argument
32 super(parent, content, contentViewCallback);
/frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/processor/cache/
H A DCache.kt36 class Cache(val parent: Cache?, val converters: LinkedHashSet<TypeMirror>,
38 val entities: Bucket<EntityKey, Entity> = Bucket(parent?.entities)
39 val pojos: Bucket<PojoKey, Pojo> = Bucket(parent?.pojos)
60 val parent : EmbeddedField?)
/frameworks/support/samples/SupportDesignDemos/src/com/example/android/support/design/widget/
H A DCustomSnackbar.java30 public CustomSnackbar(CoordinatorLayout parent, View content, argument
32 super(parent, content, contentViewCallback);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DActionPresenterSelector.java60 public ViewHolder onCreateViewHolder(ViewGroup parent) { argument
61 View v = LayoutInflater.from(parent.getContext())
62 .inflate(R.layout.lb_action_1_line, parent, false);
63 return new ActionViewHolder(v, parent.getLayoutDirection());
82 public ViewHolder onCreateViewHolder(ViewGroup parent) { argument
83 View v = LayoutInflater.from(parent.getContext())
84 .inflate(R.layout.lb_action_2_lines, parent, false);
85 return new ActionViewHolder(v, parent.getLayoutDirection());
H A DMediaItemActionPresenter.java49 public Presenter.ViewHolder onCreateViewHolder(ViewGroup parent) { argument
50 Context context = parent.getContext();
52 .inflate(R.layout.lb_row_media_item_action, parent, false);
H A DDetailsOverviewLogoPresenter.java83 * @param parent Parent view.
86 public View onCreateView(ViewGroup parent) { argument
87 return LayoutInflater.from(parent.getContext())
88 .inflate(R.layout.lb_fullwidth_details_overview_logo, parent, false);
92 public Presenter.ViewHolder onCreateViewHolder(ViewGroup parent) { argument
93 View view = onCreateView(parent);
/frameworks/base/core/java/android/animation/
H A DLayoutTransition.java269 * Controls whether changing animations automatically animate the parent hierarchy as well.
718 * For every child in the parent, we create a change animation of the appropriate
724 * @param parent The container which is undergoing a change.
725 * @param newView The view being added to or removed from the parent. May be null if the
728 * transition is occurring because an item is being added to or removed from the parent, or
731 private void runChangeTransition(final ViewGroup parent, View newView, final int changeReason) { argument
765 final ViewTreeObserver observer = parent.getViewTreeObserver();
770 int numChildren = parent.getChildCount();
773 final View child = parent.getChildAt(i);
777 setupChangeAnimation(parent, changeReaso
828 setupChangeAnimation(final ViewGroup parent, final int changeReason, Animator baseAnimator, final long duration, final View child) argument
1151 runAppearingTransition(final ViewGroup parent, final View child) argument
1199 runDisappearingTransition(final ViewGroup parent, final View child) argument
1255 addChild(ViewGroup parent, View child, boolean changesLayout) argument
1299 layoutChange(ViewGroup parent) argument
1321 addChild(ViewGroup parent, View child) argument
1329 showChild(ViewGroup parent, View child) argument
1344 showChild(ViewGroup parent, View child, int oldVisibility) argument
1360 removeChild(ViewGroup parent, View child, boolean changesLayout) argument
1399 removeChild(ViewGroup parent, View child) argument
1407 hideChild(ViewGroup parent, View child) argument
1422 hideChild(ViewGroup parent, View child, int newVisibility) argument
1504 final ViewGroup parent; field in class:LayoutTransition.CleanupCallback
1506 CleanupCallback(Map<View, View.OnLayoutChangeListener> listenerMap, ViewGroup parent) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DResourceCursorAdapter.java134 public View newView(Context context, Cursor cursor, ViewGroup parent) { argument
135 return mInflater.inflate(mLayout, parent, false);
139 public View newDropDownView(Context context, Cursor cursor, ViewGroup parent) { argument
140 return mDropDownInflater.inflate(mDropDownLayout, parent, false);
/frameworks/base/tools/aapt2/optimize/
H A DResourceDeduper.cpp47 Node* parent = node->parent(); local
48 if (!parent) {
52 ResourceConfigValue* parent_value = parent->value();
/frameworks/base/wifi/java/android/net/wifi/hotspot2/omadm/
H A DXMLParser.java80 XMLNode parent = mCurrent;
82 mCurrent = new XMLNode(parent, qName);
86 } else if (parent == null) {
89 parent.addChild(mCurrent);
/frameworks/support/design/tests/src/android/support/design/testutils/
H A DCoordinatorLayoutUtils.java32 public boolean layoutDependsOn(CoordinatorLayout parent, View child, View dependency) { argument
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListItemsExpandOnSelection.java41 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
42 TextView result = new ExpandWhenSelectedView(parent.getContext(), desiredHeight);
55 public View convertView(int position, View convertView, ViewGroup parent) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DRowInflaterTask.java40 public void inflate(Context context, ViewGroup parent, NotificationData.Entry entry, argument
46 inflater.inflate(R.layout.status_bar_notification_row, parent, this);
55 public void onInflateFinished(View view, int resid, ViewGroup parent) { argument
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DObservableFieldExpr.java27 ObservableFieldExpr(Expr parent, String name) { argument
28 super(parent, name);
32 public Expr resolveListeners(ModelClass listener, Expr parent) { argument
/frameworks/opt/setupwizard/library/test/robotest/src/com/android/setupwizardlib/robolectric/
H A DSuwLibRobolectricTestRunner.java47 Config parent = super.buildGlobalConfig();
48 updateModuleRootPath(parent);
49 return new Config.Builder(parent)
/frameworks/support/fragment/tests/java/android/support/v4/app/
H A DChildFragmentStateTest.java43 FragmentTestActivity.ParentFragment parent = new ParentFragment();
45 fm.beginTransaction().add(parent, "parent").commit();
47 assertTrue(parent.wasAttachedInTime);
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/widget/
H A DExploreByTouchHelperActivity.java150 * @param top Top coordinate as a fraction of the parent height, range
152 * @param left Left coordinate as a fraction of the parent width, range
154 * @param bottom Bottom coordinate as a fraction of the parent height,
156 * @param right Right coordinate as a fraction of the parent width,
171 * Sets the parent of an CustomItem. This adjusts the bounds so that they are relative to
172 * the specified view, and initializes the parent and child info to point to each either.
174 * @param parent CustomItem that will become the parent node.
176 public void setParentItem(CustomItem item, CustomItem parent) { argument
177 item.mParent = parent;
[all...]
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/widget/
H A DExploreByTouchHelperActivity.java150 * @param top Top coordinate as a fraction of the parent height, range
152 * @param left Left coordinate as a fraction of the parent width, range
154 * @param bottom Bottom coordinate as a fraction of the parent height,
156 * @param right Right coordinate as a fraction of the parent width,
171 * Sets the parent of an CustomItem. This adjusts the bounds so that they are relative to
172 * the specified view, and initializes the parent and child info to point to each either.
174 * @param parent CustomItem that will become the parent node.
176 public void setParentItem(CustomItem item, CustomItem parent) { argument
177 item.mParent = parent;
[all...]
/frameworks/native/cmds/installd/
H A DCacheItem.cpp61 CacheItem* parent = mParent; local
62 while (parent) {
63 res.insert(0, parent->mName);
64 parent = parent->mParent;
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/
H A DSimpleInflater.java35 * and {@link #onAddChildItem(Object, Object)} to attach a child tag to the parent tag.
37 * @param <T> The class where all instances (including child elements) belong to. If parent and
144 private void rInflate(XmlPullParser parser, T parent, final AttributeSet attrs) argument
156 if (onInterceptCreateItem(parser, parent, attrs)) {
163 onAddChildItem(parent, item);
181 * @param parent The item that should be the parent of whatever you create.
186 protected boolean onInterceptCreateItem(XmlPullParser parser, T parent, AttributeSet attrs) argument
191 protected abstract void onAddChildItem(T parent, T child); argument
/frameworks/base/test-runner/src/android/test/
H A DViewAsserts.java329 * @param parent The group whose integrity to check
331 static public void assertGroupIntegrity(ViewGroup parent) { argument
332 final int count = parent.getChildCount();
336 assertNotNull("group should not contain null children", parent.getChildAt(i));
337 assertSame(parent, parent.getChildAt(i).getParent());
344 * @param parent The group
347 static public void assertGroupContains(ViewGroup parent, View child) { argument
348 final int count = parent.getChildCount();
353 if (parent
371 assertGroupNotContains(ViewGroup parent, View child) argument
[all...]
/frameworks/data-binding/extensions/library/src/main/java/android/databinding/
H A DDataBindingUtil.java74 * @param parent Optional view to be the parent of the generated hierarchy
79 * parent parameter. If false, parent is only used to create
87 @Nullable ViewGroup parent, boolean attachToParent) {
88 return inflate(inflater, layoutId, parent, attachToParent, sDefaultComponent);
99 * @param parent Optional view to be the parent of the generated hierarchy
104 * parent parameter. If false, parent i
86 inflate(LayoutInflater inflater, int layoutId, @Nullable ViewGroup parent, boolean attachToParent) argument
111 inflate( LayoutInflater inflater, int layoutId, @Nullable ViewGroup parent, boolean attachToParent, DataBindingComponent bindingComponent) argument
293 bindToAddedViews(DataBindingComponent component, ViewGroup parent, int startChildren, int layoutId) argument
[all...]

Completed in 791 milliseconds

1234567891011>>