Searched refs:mList (Results 1 - 17 of 17) sorted by relevance

/frameworks/base/core/java/android/app/
H A DExpandableListActivity.java159 ExpandableListView mList; field in class:ExpandableListActivity
219 mList = (ExpandableListView)findViewById(com.android.internal.R.id.list);
220 if (mList == null) {
226 mList.setEmptyView(emptyView);
228 mList.setOnChildClickListener(this);
229 mList.setOnGroupExpandListener(this);
230 mList.setOnGroupCollapseListener(this);
245 mList.setAdapter(adapter);
257 return mList;
269 if (mList !
[all...]
H A DListActivity.java185 protected ListView mList; field in class:ListActivity
192 mList.focusableViewAvailable(mList);
241 mList = (ListView)findViewById(com.android.internal.R.id.list);
242 if (mList == null) {
248 mList.setEmptyView(emptyView);
250 mList.setOnItemClickListener(mOnClickListener);
265 mList.setAdapter(adapter);
276 mList.setSelection(position);
283 return mList
[all...]
H A DListFragment.java153 mList.focusableViewAvailable(mList);
165 ListView mList; field in class:ListFragment
212 mList = null;
239 if (mList != null) {
240 mList.setAdapter(adapter);
257 mList.setSelection(position);
265 return mList.getSelectedItemPosition();
273 return mList.getSelectedItemId();
281 return mList;
[all...]
/frameworks/av/media/libstagefright/webm/
H A DLinkedBlockingQueue.h28 List<T> mList; member in class:android::LinkedBlockingQueue
34 while (mList.empty()) {
37 T e = *(mList.begin());
39 mList.erase(mList.begin());
55 return mList.empty();
60 mList.clear();
73 mList.push_back(e);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DCommandQueue.java70 private StatusBarIconList mList; field in class:CommandQueue
106 mList = list;
110 synchronized (mList) {
118 synchronized (mList) {
126 synchronized (mList) {
133 synchronized (mList) {
140 synchronized (mList) {
147 synchronized (mList) {
154 synchronized (mList) {
161 synchronized (mList) {
[all...]
/frameworks/av/include/camera/
H A DCameraParameters2.h120 return mList.add(Pair(key, value));
124 return mList.size();
128 return mList[idx].mKey;
132 return mList[idx].mValue;
144 for (; vectorIdx < mList.size(); ++vectorIdx) {
145 if (mList[vectorIdx].mKey == key) {
160 return mList.removeAt(vectorIdx);
164 mList.clear();
184 Vector<Pair> mList;
/frameworks/base/core/java/android/content/pm/
H A DParceledListSlice.java52 private final List<T> mList; field in class:ParceledListSlice
55 mList = list;
60 mList = new ArrayList<T>(N);
82 mList.add(parcelable);
84 if (DEBUG) Log.d(TAG, "Read inline #" + i + ": " + mList.get(mList.size()-1));
106 mList.add(parcelable);
108 if (DEBUG) Log.d(TAG, "Read extra #" + i + ": " + mList.get(mList.size()-1));
125 return mList;
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DListFragment.java51 mList.focusableViewAvailable(mList);
63 ListView mList; field in class:ListFragment
154 mList = null;
181 if (mList != null) {
182 mList.setAdapter(adapter);
199 mList.setSelection(position);
207 return mList.getSelectedItemPosition();
215 return mList.getSelectedItemId();
223 return mList;
[all...]
/frameworks/base/core/java/android/preference/
H A DPreferenceFragment.java110 private ListView mList; field in class:PreferenceFragment
136 mList.focusableViewAvailable(mList);
215 mList = null;
360 return mList;
365 if (mList != null) {
376 mList = (ListView)rawListView;
377 if (mList == null) {
384 if (mList != null) {
397 mList
[all...]
/frameworks/base/core/java/android/widget/
H A DFastScroller.java95 private final AbsListView mList; field in class:FastScroller
237 mList = listView;
280 final Context context = mList.getContext();
330 final Context context = mList.getContext();
449 mList.resolvePadding();
469 position = mList.isLayoutRtl() ?
509 final int firstVisibleItem = mList.getFirstVisiblePosition();
540 textView.setLayoutDirection(mList.getLayoutDirection());
709 final AbsListView list = mList;
770 mList
[all...]
/frameworks/native/libs/binder/
H A DMemoryDealer.cpp158 LinkedList<chunk_t> mList; member in class:android::SimpleBestFitAllocator
278 mList.insertHead(node);
283 while(!mList.isEmpty()) {
284 delete mList.remove(mList.head());
317 chunk_t* cur = mList.head();
348 mList.insertBefore(free_chunk, split);
359 mList.insertAfter(free_chunk, split);
370 chunk_t* cur = mList.head();
386 mList
[all...]
/frameworks/base/tests/BiDiTests/src/com/android/bidi/
H A DBiDiTestActivity.java41 private ListView mList; field in class:BiDiTestActivity
78 mList = (ListView) findViewById(R.id.testlist);
79 mList.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
80 mList.setFocusableInTouchMode(true);
85 mList.setAdapter(adapter);
87 mList.setOnItemClickListener(mOnClickListener);
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRootsFragment.java62 private ListView mList; field in class:RootsFragment
91 mList = (ListView) view.findViewById(android.R.id.list);
92 mList.setOnItemClickListener(mItemListener);
93 mList.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
120 mList.setAdapter(mAdapter);
128 mList.setAdapter(null);
144 mList.setOnItemLongClickListener(mItemLongClickListener);
146 mList.setOnItemLongClickListener(null);
147 mList.setLongClickable(false);
162 mList
[all...]
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DRenderEngine.cpp318 KeyedVector<Attribute, EGLint> mList; member in class:android::EGLAttributeVector
342 v.mList.add(attribute, value);
345 operator EGLint () const { return v.mList[attribute]; }
349 mList.add(EGL_NONE, EGL_NONE);
353 mList.removeItem(attribute);
360 return mList[attribute];
363 operator EGLint const* () const { return &mList.keyAt(0).v; }
/frameworks/base/core/jni/
H A Dandroid_util_Binder.cpp363 List< sp<JavaDeathRecipient> > mList; member in class:DeathRecipientList
382 mObjectWeak(NULL), mList(list)
417 sp<DeathRecipientList> list = mList.promote();
477 wp<DeathRecipientList> mList; member in class:JavaDeathRecipient
493 if (mList.size() > 0) {
495 for (iter = mList.begin(); iter != mList.end(); iter++) {
505 mList.push_back(recipient);
512 for (iter = mList.begin(); iter != mList
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiServiceImpl.java1465 private List<WifiLock> mList; field in class:WifiServiceImpl.LockList
1468 mList = new ArrayList<WifiLock>();
1472 return !mList.isEmpty();
1476 if (mList.isEmpty()) {
1492 for (int i = 0; i < mLocks.mList.size(); i++) {
1493 ws.add(mLocks.mList.get(i).mWorkSource);
1499 mList.add(lock);
1506 WifiLock ret = mList.remove(index);
1515 int size = mList.size();
1517 if (mList
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DResolverActivity.java257 int count = mAdapter.mList.size();
784 List<DisplayResolveInfo> mList; field in class:ResolverActivity.ResolveListAdapter
796 mList = new ArrayList<DisplayResolveInfo>();
813 return mList.get(mLastChosenPosition);
844 mList.clear();
1021 mLastChosenPosition = mList.size() - 1;
1031 mList.add(dri);
1036 return (filtered ? getItem(position) : mList.get(position)).ri;
1040 DisplayResolveInfo dri = filtered ? getItem(position) : mList.get(position);
1045 int result = mList
[all...]

Completed in 462 milliseconds