Searched defs:mChildren (Results 1 - 18 of 18) sorted by relevance

/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DRenderableGroup.java33 ArrayList<RenderableBase> mChildren; field in class:RenderableGroup
36 mChildren = new ArrayList<RenderableBase>();
40 mChildren.add(d);
H A DTransform.java31 ArrayList<Transform> mChildren; field in class:Transform
37 mChildren = new ArrayList<Transform>();
42 mChildren.add(t);
54 if (mChildren.size() != 0) {
56 mChildren.size());
59 Allocation[] childrenAllocs = new Allocation[mChildren.size()];
60 for (int i = 0; i < mChildren.size(); i ++) {
61 Transform child = mChildren.get(i);
/frameworks/av/media/libstagefright/webm/
H A DWebmElement.h119 const List<sp<WebmElement> > mChildren; member in struct:android::WebmMaster
/frameworks/base/core/java/android/content/
H A DUriMatcher.java134 mChildren = new ArrayList<UriMatcher>();
142 mChildren = new ArrayList<UriMatcher>();
181 ArrayList<UriMatcher> children = node.mChildren;
203 node.mChildren.add(child);
233 ArrayList<UriMatcher> list = node.mChildren;
281 private ArrayList<UriMatcher> mChildren; field in class:UriMatcher
/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/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
H A DSgTransform.java51 Vector mChildren; field in class:SgTransform
61 mChildren.add(child);
62 child.setParent(this, mChildren.size() - 1);
85 mChildren = new Vector();
90 if (mChildren.size() != 0) {
91 mChildField = new ScriptField_SgTransform(mRS, mChildren.size());
94 for (int i = 0; i < mChildren.size(); i ++) {
95 SgTransform child = (SgTransform)mChildren.get(i);
/frameworks/base/libs/hwui/
H A DDisplayList.h121 // range of included children in DLD::mChildren
153 const Vector<DrawRenderNodeOp*>& children() { return mChildren; }
170 Vector<DrawRenderNodeOp*> mChildren; member in class:android::uirenderer::DisplayListData
/frameworks/base/tools/aapt/
H A DXMLNode.h194 Vector<sp<XMLNode> > mChildren; member in class:XMLNode
/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/base/graphics/java/android/graphics/drawable/
H A DLayerDrawable.java116 mLayerState.mChildren = r;
257 final ChildDrawable[] array = state.mChildren;
292 final ChildDrawable[] layers = mLayerState.mChildren;
305 final int N = st.mChildren != null ? st.mChildren.length : 0;
310 System.arraycopy(st.mChildren, 0, nu, 0, i);
313 st.mChildren = nu;
316 st.mChildren[i] = layer;
363 final ChildDrawable[] layers = mLayerState.mChildren;
380 mLayerState.mChildren[inde
978 ChildDrawable[] mChildren; field in class:LayerDrawable.LayerState
[all...]
H A DVectorDrawable.java545 currentGroup.mChildren.add(path);
554 currentGroup.mChildren.add(path);
562 currentGroup.mChildren.add(newChildGroup);
606 for (int i = 0; i < currentGroup.mChildren.size(); i++) {
607 Object child = currentGroup.mChildren.get(i);
863 final ArrayList<Object> children = currentGroup.mChildren;
891 final ArrayList<Object> children = currentGroup.mChildren;
920 for (int i = 0; i < currentGroup.mChildren.size(); i++) {
921 Object child = currentGroup.mChildren.get(i);
1026 final ArrayList<Object> mChildren field in class:VectorDrawable.VGroup
[all...]
/frameworks/base/media/java/android/media/
H A DTtmlRenderer.java241 for (int i = 0; i < node.mChildren.size(); ++i) {
242 extractText(node.mChildren.get(i), startUs, endUs, out, pTag || inPTag);
274 for (int i = 0; i < node.mChildren.size(); ++i) {
275 extractTtmlFragment(node.mChildren.get(i), startUs, endUs, out);
310 public final List<TtmlNode> mChildren = new ArrayList<TtmlNode>(); field in class:TtmlNode
426 parent.mChildren.add(node);
432 parent.mChildren.add(new TtmlNode(
658 for (int i = 0; i < node.mChildren.size(); ++i) {
659 addTimeEvents(node.mChildren.get(i));
/frameworks/base/services/core/java/com/android/server/content/
H A DContentService.java947 private ArrayList<ObserverNode> mChildren = new ArrayList<ObserverNode>(); field in class:ContentService.ObserverNode
969 if (mChildren.size() > 0) {
977 for (int i=0; i<mChildren.size(); i++) {
979 mChildren.get(i).dumpLocked(fd, pw, args, innerName, prefix,
1027 int N = mChildren.size();
1029 ObserverNode node = mChildren.get(i);
1039 mChildren.add(node);
1045 int size = mChildren.size();
1047 boolean empty = mChildren.get(i).removeObserverLocked(observer);
1049 mChildren
[all...]
/frameworks/base/telecomm/java/android/telecom/
H A DCall.java533 private final List<Call> mChildren = new ArrayList<>(); field in class:Call
534 private final List<Call> mUnmodifiableChildren = Collections.unmodifiableList(mChildren);
706 mChildren.clear();
714 mChildren.add(call);
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
H A DTimePickerDialog.java939 * mChildren are the children that can be reached from this node.
943 private ArrayList<Node> mChildren; field in class:TimePickerDialog.Node
947 mChildren = new ArrayList<Node>();
951 mChildren.add(child);
964 if (mChildren == null) {
967 for (Node child : mChildren) {
/frameworks/base/core/java/android/widget/
H A DTimePickerClockDelegate.java1220 * mChildren are the children that can be reached from this node.
1224 private ArrayList<Node> mChildren; field in class:TimePickerClockDelegate.Node
1228 mChildren = new ArrayList<Node>();
1232 mChildren.add(child);
1245 if (mChildren == null) {
1248 for (Node child : mChildren) {
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntry.java1743 private List<VCardEntry> mChildren; field in class:VCardEntry
2455 if (mChildren == null) {
2456 mChildren = new ArrayList<VCardEntry>();
2458 mChildren.add(child);
2641 return mChildren;
/frameworks/base/core/java/android/view/
H A DViewGroup.java434 private View[] mChildren; field in class:ViewGroup
435 // Number of valid children in the mChildren array, the rest should be null or not
523 mChildren = new View[ARRAY_INITIAL_CAPACITY];
931 final View[] children = mChildren;
959 final View[] children = mChildren;
1021 final View[] children = mChildren;
1039 final View[] children = mChildren;
1057 final View[] children = mChildren;
1071 final View[] children = mChildren;
1088 final View[] children = mChildren;
7116 private final ArrayList<View> mChildren = new ArrayList<View>(); field in class:ViewGroup.ChildListForAccessibility
[all...]

Completed in 622 milliseconds