Searched defs:mChildren (Results 1 - 25 of 43) sorted by last modified time

12

/frameworks/support/v17/leanback/src/android/support/v17/leanback/graphics/
H A DCompositeDrawable.java39 final ArrayList<ChildDrawable> mChildren; field in class:CompositeDrawable.CompositeState
42 mChildren = new ArrayList<ChildDrawable>();
46 final int n = other.mChildren.size();
47 mChildren = new ArrayList<ChildDrawable>(n);
49 mChildren.add(new ChildDrawable(other.mChildren.get(k), parent, res));
86 final ArrayList<ChildDrawable> children = mState.mChildren;
102 mState.mChildren.add(new ChildDrawable(drawable, this));
109 mState.mChildren.set(index, new ChildDrawable(drawable, this));
116 return mState.mChildren
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DViewBoundsCheckTest.java57 View[] mChildren; field in class:ViewBoundsCheckTest
63 return mChildren.length;
73 return mChildren[index];
108 mChildren = new View[childrenBound.length];
110 mChildren[i] = new View(mContext);
111 mChildren[i].setLeft(childrenBound[i][0]);
112 mChildren[i].setRight(childrenBound[i][1]);
123 View view = mBoundCheck.findOneViewWithinBoundFlags(0, mChildren.length,
138 View view = mBoundCheck.findOneViewWithinBoundFlags(mChildren.length - 1, -1,
154 View view = mBoundCheck.findOneViewWithinBoundFlags(0, mChildren
[all...]
/frameworks/support/design/tests/src/android/support/design/testutils/
H A DViewStructureImpl.java36 private ViewStructureImpl[] mChildren; field in class:ViewStructureImpl
51 mChildren = new ViewStructureImpl[num];
65 if (mChildren == null) {
69 final int start = mChildren.length;
71 System.arraycopy(mChildren, 0, newArray, 0, start);
72 mChildren = newArray;
78 if (mChildren == null) {
81 return mChildren.length;
85 return mChildren[index];
91 mChildren[inde
[all...]
/frameworks/support/emoji/core/src/android/support/text/emoji/
H A DMetadataRepo.java206 private SparseArray<Node> mChildren; field in class:MetadataRepo.Node
213 mChildren = new SparseArray<>(defaultChildrenSize);
217 return mChildren == null ? null : mChildren.get(key);
227 if (mChildren == null) {
228 mChildren = new SparseArray<>(1);
231 mChildren.put(data.getCodepointAt(start), node);
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/widget/
H A DExploreByTouchHelperActivity.java178 parent.mChildren.add(item.mId);
368 for (Integer id : item.mChildren) {
392 private List<Integer> mChildren = new ArrayList<>(); field in class:ExploreByTouchHelperActivity.CustomView.CustomItem
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DVectorDrawableCompat.java743 currentGroup.mChildren.add(path);
752 currentGroup.mChildren.add(path);
760 currentGroup.mChildren.add(newChildGroup);
804 for (int i = 0; i < currentGroup.mChildren.size(); i++) {
805 Object child = currentGroup.mChildren.get(i);
1145 for (int i = 0; i < currentGroup.mChildren.size(); i++) {
1146 Object child = currentGroup.mChildren.get(i);
1296 final ArrayList<Object> mChildren = new ArrayList<Object>(); field in class:VectorDrawableCompat.VGroup
1330 final ArrayList<Object> children = copy.mChildren;
1335 mChildren
[all...]
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/widget/
H A DExploreByTouchHelperActivity.java178 parent.mChildren.add(item.mId);
368 for (Integer id : item.mChildren) {
392 private List<Integer> mChildren = new ArrayList<>(); field in class:ExploreByTouchHelperActivity.CustomView.CustomItem
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntry.java1745 private List<VCardEntry> mChildren; field in class:VCardEntry
2463 if (mChildren == null) {
2464 mChildren = new ArrayList<VCardEntry>();
2466 mChildren.add(child);
2649 return mChildren;
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/
H A DItemGroup.java76 private List<ItemHierarchy> mChildren = new ArrayList<>(); field in class:ItemGroup
79 * A mapping from the index of an item hierarchy in mChildren, to the first position in which
125 mChildren.add(child);
141 final int childIndex = identityIndexOf(mChildren, child);
146 mChildren.remove(childIndex);
160 if (mChildren.size() == 0) {
166 for (ItemHierarchy item : mChildren) {
170 mChildren.clear();
183 ItemHierarchy item = mChildren.get(itemIndex);
202 return getChildPosition(identityIndexOf(mChildren, chil
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DLegacyPasspointConfigParser.java133 private final List<Node> mChildren; field in class:LegacyPasspointConfigParser.InternalNode
136 mChildren = children;
141 return mChildren;
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
H A DTimePickerDialog.java940 * mChildren are the children that can be reached from this node.
944 private ArrayList<Node> mChildren; field in class:TimePickerDialog.Node
948 mChildren = new ArrayList<Node>();
952 mChildren.add(child);
965 if (mChildren == null) {
968 for (Node child : mChildren) {
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DICalendar.java75 private LinkedList<Component> mChildren = null; field in class:ICalendar.Component
109 if (mChildren == null) {
110 mChildren = new LinkedList<Component>();
112 return mChildren;
130 return mChildren;
207 if (mChildren != null) {
208 for (Component component : mChildren) {
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DExpr.java42 protected List<Expr> mChildren = new ArrayList<Expr>(); field in class:Expr
106 mChildren.add(expr);
112 Collections.addAll(mChildren, children);
175 for (int i = mChildren.size() - 1; i >= 0; i--) {
176 Expr child = mChildren.get(i);
184 for (int i = mChildren.size() - 1; i >= 0; i--) {
185 final Expr child = mChildren.get(i);
263 for (Expr expr : mChildren) {
269 for (Expr child : mChildren) {
281 return mChildren;
[all...]
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/solver/
H A DExecutionPath.java38 private List<ExecutionPath> mChildren = new ArrayList<ExecutionPath>(); field in class:ExecutionPath
117 mChildren.add(path);
137 for (ExecutionPath path : mChildren) {
156 return mChildren;
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/base/wifi/java/android/net/wifi/hotspot2/omadm/
H A DPpsMoParser.java306 private final List<PPSNode> mChildren; field in class:PpsMoParser.InternalNode
309 mChildren = children;
319 return mChildren;
H A DXMLNode.java33 private final List<XMLNode> mChildren; field in class:XMLNode
41 mChildren = new ArrayList<>();
61 mChildren.add(child);
87 return mChildren;
102 mChildren.equals(that.mChildren);
107 return Objects.hash(mTag, mText, mChildren);
/frameworks/base/tests/UiBench/src/com/android/test/uibench/
H A DNotificationShadeActivity.java42 private ArrayList<View> mChildren = new ArrayList<>(); field in class:NotificationShadeActivity.FakeNotificationStackView
77 boolean even = mChildren.size() % 2 == 0;
90 mChildren.add(view);
103 return (int) mChildren.get(mChildrenCount - 1).getTag();
110 for (View v: mChildren) {
120 removeView(mChildren.get(mChildrenCount - 1));
125 if (mChildrenCount == mChildren.size()) {
129 View child = mChildren.get(mChildrenCount - 1);
143 View lastChild = mChildren.get(mChildrenCount - 1);
/frameworks/base/tools/aapt/
H A DXMLNode.h198 Vector<sp<XMLNode> > mChildren; member in class:XMLNode
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/
H A DVectorDrawable_Delegate.java298 group.mChildren.add(VNativeObject.getDelegate(nodePtr));
836 final ArrayList<Object> mChildren = new ArrayList<>(); field in class:VectorDrawable_Delegate.VGroup_Delegate
968 mChildren.stream().filter(child -> child instanceof VNativeObject).forEach(child
977 mChildren.clear();
1093 for (int i = 0; i < currentGroup.mChildren.size(); i++) {
1094 Object child = currentGroup.mChildren.get(i);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DAdapterItem.java33 private List<AdapterItem> mChildren; field in class:AdapterItem
44 if (mChildren == null) {
45 mChildren = new ArrayList<AdapterItem>();
48 mChildren.add(child);
52 if (mChildren != null) {
53 return mChildren;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationChildrenContainer.java65 private final List<ExpandableNotificationRow> mChildren = new ArrayList<>(); field in class:NotificationChildrenContainer
133 int childCount = Math.min(mChildren.size(), NUMBER_OF_CHILDREN_WHEN_CHILDREN_EXPANDED);
135 View child = mChildren.get(i);
180 int childCount = Math.min(mChildren.size(), NUMBER_OF_CHILDREN_WHEN_CHILDREN_EXPANDED);
184 ExpandableNotificationRow child = mChildren.get(i);
238 int newIndex = childIndex < 0 ? mChildren.size() : childIndex;
239 mChildren.add(newIndex, row);
252 int childIndex = mChildren.indexOf(row);
253 mChildren.remove(row);
278 return mChildren
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DLockscreenFragment.java204 private final ArrayList<Item> mChildren = new ArrayList<>(); field in class:LockscreenFragment.App
214 mChildren.add(child);
234 return mChildren.size() != 0 ? mExpanded : null;
241 mChildren.forEach(child -> adapter.addItem(this, child));
243 mChildren.forEach(child -> adapter.remItem(child));
/frameworks/base/services/core/java/com/android/server/content/
H A DContentService.java1261 private ArrayList<ObserverNode> mChildren = new ArrayList<ObserverNode>(); field in class:ContentService.ObserverNode
1283 if (mChildren.size() > 0) {
1291 for (int i=0; i<mChildren.size(); i++) {
1293 mChildren.get(i).dumpLocked(fd, pw, args, innerName, prefix,
1341 int N = mChildren.size();
1343 ObserverNode node = mChildren.get(i);
1353 mChildren.add(node);
1359 int size = mChildren.size();
1361 boolean empty = mChildren.get(i).removeObserverLocked(observer);
1363 mChildren
[all...]

Completed in 3827 milliseconds

12