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

/packages/apps/Browser/tests/src/com/android/browser/tests/utils/
H A DMockObserverNode.java40 private ArrayList<MockObserverNode> mChildren = new ArrayList<MockObserverNode>(); field in class:MockObserverNode
84 int N = mChildren.size();
86 MockObserverNode node = mChildren.get(i);
95 mChildren.add(node);
100 int size = mChildren.size();
102 boolean empty = mChildren.get(i).removeObserver(observer);
104 mChildren.remove(i);
119 if (mChildren.size() == 0 && mObservers.size() == 0) {
157 int N = mChildren.size();
159 MockObserverNode node = mChildren
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DPath.java32 private IdentityCache<String, Path> mChildren; field in class:Path
41 if (mChildren == null) {
42 mChildren = new IdentityCache<String, Path>();
44 Path p = mChildren.get(segment);
49 mChildren.put(segment, p);
222 if (p.mChildren != null) {
223 ArrayList<String> childrenKeys = p.mChildren.keys();
226 Path child = p.mChildren.get(key);
/packages/apps/Calculator/src/com/android/calculator2/
H A DPanelSwitcher.java35 private View mChildren[] = new View[0]; field in class:PanelSwitcher
93 for (int i = mChildren.length-1; i >= 0 ; --i) {
94 mChildren[i].setVisibility(i==mCurrentView ? View.VISIBLE : View.GONE);
117 mChildren = new View[count];
119 mChildren[i] = getChildAt(i);
137 if (mCurrentView < mChildren.length - 1 && mPreviousMove != LEFT) {
138 mChildren[mCurrentView+1].setVisibility(View.VISIBLE);
139 mChildren[mCurrentView+1].startAnimation(inLeft);
140 mChildren[mCurrentView].startAnimation(outLeft);
141 mChildren[mCurrentVie
[all...]
/packages/apps/Browser/src/com/android/browser/view/
H A DBookmarkExpandableView.java124 BrowserBookmarksAdapter existing = mAdapter.mChildren.get(indexOf);
128 mAdapter.mChildren.remove(indexOf);
129 mAdapter.mChildren.add(indexOf, adapter);
134 mAdapter.mChildren.add(adapter);
215 return mAdapter.mChildren.get(groupPosition);
228 || mAdapter.mChildren.get(groupPosition).getCount() <= childPosition) {
231 long id = mAdapter.mChildren.get(groupPosition).getItemId(childPosition);
269 ArrayList<BrowserBookmarksAdapter> mChildren; field in class:BookmarkExpandableView.BookmarkAccountAdapter
292 mChildren = new ArrayList<BrowserBookmarksAdapter>();
298 mChildren
[all...]
/packages/apps/Launcher2/src/com/android/launcher2/
H A DPagedViewCellLayout.java48 protected PagedViewCellLayoutChildren mChildren; field in class:PagedViewCellLayout
74 mChildren = new PagedViewCellLayoutChildren(context);
75 mChildren.setCellDimensions(mCellWidth, mCellHeight);
76 mChildren.setGap(mWidthGap, mHeightGap);
78 addView(mChildren);
126 mChildren.addView(child, index, lp);
135 mChildren.removeAllViews();
141 mChildren.removeViewAt(index);
148 int childCount = mChildren.getChildCount();
150 mChildren
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DExpandableDictionary.java57 NodeArray mChildren; field in class:ExpandableDictionary.Node
243 if (childNode.mChildren == null) {
244 childNode.mChildren = new NodeArray();
246 addWordRec(childNode.mChildren, word, depth + 1, shortcutTarget, frequency, childNode);
455 final NodeArray children = node.mChildren;
599 if (childNode.mChildren == null) {
600 childNode.mChildren = new NodeArray();
602 return searchWord(childNode.mChildren, word, depth + 1, childNode);
692 if (node.mChildren != null) {
693 Node returnNode = searchNode(node.mChildren, wor
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
H A DFusionDictionary.java102 Node mChildren; field in class:FusionDictionary.CharGroup
116 mChildren = null;
128 mChildren = children;
134 if (null == mChildren) {
135 mChildren = new Node();
137 mChildren.mData.add(n);
400 if (null == currentGroup.mChildren) break;
403 currentNode = currentGroup.mChildren;
431 currentGroup.mChildren = new Node();
432 currentGroup.mChildren
[all...]
/packages/apps/Settings/src/com/android/settings/applications/
H A DRunningState.java562 final ArrayList<MergedItem> mChildren = new ArrayList<MergedItem>(); field in class:RunningState.MergedItem
596 MergedItem child0 = mChildren.get(0);
603 for (int i=0; i<mChildren.size(); i++) {
604 MergedItem child = mChildren.get(i);
639 for (int i=0; i<mChildren.size(); i++) {
640 MergedItem child = mChildren.get(i);
820 userItem.mChildren.clear();
840 userItem.mChildren.add(newItem);
/packages/apps/Browser/src/com/android/browser/
H A DTab.java153 private Vector<Tab> mChildren; field in class:Tab
1332 if (mChildren != null) {
1333 for(Tab t : mChildren) {
1339 mParent.mChildren.remove(this);
1435 if (mChildren == null) {
1436 mChildren = new Vector<Tab>();
1438 mChildren.add(child);
1443 return mChildren;

Completed in 270 milliseconds