Searched refs:list (Results 151 - 175 of 274) sorted by relevance

1234567891011

/frameworks/base/core/java/android/app/
H A DVoiceInteractor.java373 ArrayList<Request> list = new ArrayList<Request>(N);
375 list.add(mActiveRequests.valueAt(i));
377 return list;
/frameworks/base/core/java/android/speech/
H A DSpeechRecognizer.java197 final List<ResolveInfo> list = context.getPackageManager().queryIntentServices(
199 return list != null && list.size() != 0;
/frameworks/base/media/java/android/service/media/
H A DMediaBrowserService.java308 * Implementations must call result.{@link Result#sendResult result.sendResult} with the list
316 * @return The list of children, or null if the id is invalid.
425 void onResultSent(List<MediaBrowser.MediaItem> list) {
426 if (list == null) {
427 throw new IllegalStateException("onLoadChildren sent null list for id "
438 final ParceledListSlice<MediaBrowser.MediaItem> pls = new ParceledListSlice(list);
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DPacManager.java234 String[] list = getPacChangeDelay().split(" ");
235 if (delayIndex < list.length) {
236 return Long.parseLong(list[delayIndex]);
H A DTethering.java100 // upstream type list and the DUN_REQUIRED secure-setting
212 // check if the upstream type list needs to be modified due to secure-settings
683 ArrayList<String> list = new ArrayList<String>();
689 list.add((String)key);
693 String[] retVal = new String[list.size()];
694 for (int i=0; i < list.size(); i++) {
695 retVal[i] = list.get(i);
701 ArrayList<String> list = new ArrayList<String>();
707 list.add((String)key);
711 String[] retVal = new String[list
[all...]
/frameworks/av/media/libmedia/
H A DIOMX.cpp76 virtual status_t listNodes(List<ComponentInfo> *list) { argument
77 list->clear();
85 list->push_back(ComponentInfo());
86 ComponentInfo &info = *--list->end();
543 List<ComponentInfo> list; local
544 listNodes(&list);
546 reply->writeInt32(list.size());
547 for (List<ComponentInfo>::iterator it = list.begin();
548 it != list.end(); ++it) {
/frameworks/base/core/java/android/os/storage/
H A DStorageManager.java566 * Returns list of all mountable volumes.
572 Parcelable[] list = mMountService.getVolumeList();
573 if (list == null) return new StorageVolume[0];
574 int length = list.length;
577 result[i] = (StorageVolume)list[i];
581 Log.e(TAG, "Failed to get volume list", e);
587 * Returns list of paths for all mountable volumes.
/frameworks/base/core/java/android/service/notification/
H A DNotificationListenerService.java372 * Request the list of outstanding notifications (that is, those that are visible to the
382 * Request the list of outstanding notifications (that is, those that are visible to the
402 * same order as the key list.
418 * same order as the key list.
427 List<StatusBarNotification> list = parceledList.getList();
429 int N = list.size();
431 Notification notification = list.get(i).getNotification();
434 return list.toArray(new StatusBarNotification[N]);
734 * the list of active notifications.
800 * Request the list o
[all...]
/frameworks/base/media/java/android/media/browse/
H A DMediaBrowser.java293 * The list of subscriptions is maintained even when not connected and is
301 * @param parentId The id of the parent media item whose list of children
303 * @param callback The callback to receive the list of children.
343 * @param parentId The id of the parent media item whose list of children
352 // Remove from our list.
455 final String parentId, final ParceledListSlice list) {
465 List<MediaItem> data = list.getList();
673 * Called when the list of children is loaded or updated.
810 public void onLoadChildren(final String parentId, final ParceledListSlice list) { argument
813 mediaBrowser.onLoadChildren(this, parentId, list);
454 onLoadChildren(final IMediaBrowserServiceCallbacks callback, final String parentId, final ParceledListSlice list) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/preference/
H A DPreference_Delegate.java81 return (ListView) root.findViewById(android.R.id.list);
/frameworks/compile/libbcc/tools/bcc_strip_attr/
H A Dbcc_strip_attr.cpp34 static cl::list<std::string>
/frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
H A Dsparse_weight_vector.cpp20 #include <list>
25 using std::list;
311 list<double> abs_val_list;
329 for (list<double>::iterator val_iter = abs_val_list.begin();
/frameworks/native/include/android/
H A Dsensor.h207 * Returns the list of available sensors.
209 int ASensorManager_getSensorList(ASensorManager* manager, ASensorList* list);
/frameworks/opt/bitmap/sample/src/com/example/bitmapsample/
H A DMainActivity.java58 mListView = (ListView) findViewById(R.id.list);
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfiguration.java387 * BSSID list on which this configuration was seen.
388 * TODO: prevent this list to grow infinitely, age-out the results
979 ArrayList<ScanResult> list = new ArrayList<ScanResult>(this.scanResultCache.values());
980 if (list.size() != 0) {
982 Collections.sort(list, new Comparator() {
998 ScanResult result = list.get(i);
1005 ArrayList<ScanResult> list = new ArrayList<ScanResult>(this.scanResultCache.values());
1006 if (list.size() != 0) {
1007 Collections.sort(list, new Comparator() {
1033 return list;
[all...]
/frameworks/base/core/java/android/content/pm/
H A DParceledListSlice.java30 * Transfer a large list of Parcelable objects across an IPC. Splits into
54 public ParceledListSlice(List<T> list) { argument
55 mList = list;
119 + actual.getName() + " in list of type "
/frameworks/base/core/java/android/preference/
H A DPreferenceFragment.java372 View rawListView = root.findViewById(android.R.id.list);
391 View rawListView = root.findViewById(android.R.id.list);
394 "Content has view with id attribute 'android.R.id.list' "
401 "'android.R.id.list'");
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DEffectsTest.java96 ListView list = (ListView) findViewById(R.id.effect_list);
97 list.setAdapter(new EffectListAdapter(this, descriptors));
/frameworks/compile/libbcc/tools/bcc_compat/
H A DMain.cpp50 llvm::cl::list<std::string>
119 const llvm::cl::list<std::string> &pBitcodeFiles) {
/frameworks/compile/mclinker/include/mcld/LD/
H A DEhFrame.h18 #include <list>
61 typedef std::list<FDE*> FDEList;
241 // Each eh_frame has a list of CIE, and each CIE has a list of FDE
/frameworks/compile/mclinker/include/mcld/Target/
H A DKeyEntryMap.h13 #include <list>
50 typedef std::list<EntryPair> PairListType;
/frameworks/compile/slang/
H A Dllvm-rs-cc.cpp41 #include <list>
118 typedef std::list<std::pair<const char*, const char*> > NamePairList;
125 * IOFiles - list of (foo.rs, foo.bc) pairs of input/output files.
126 * IOFiles32 - list of input/output pairs for 32-bit compilation.
133 * We populate IOFiles dynamically while working through the list of Inputs.
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DLocationStatsAggregator.java115 String[] list = { CURRENT_LOCATION } ;
116 return list;
/frameworks/rs/cpu_ref/linkloader/android/
H A Dlibrsloader.cpp225 char const **list) {
234 symtab->getFuncNameList(size, list);
223 rsloaderGetFuncNameList(RSExecRef object, size_t size, char const **list) argument
/frameworks/support/v4/java/android/support/v4/app/
H A DListFragment.java75 * Provide default implementation to return a simple list view. Subclasses
78 * is {@link android.R.id#list android.R.id.list} and can optionally
80 * that is to be shown when the list is empty.
123 lv.setId(android.R.id.list);
140 * Attach to list view once the view hierarchy has been created.
149 * Detach from list view.
162 * This method will be called when an item in the list is selected.
169 * @param position The position of the view in the list
176 * Provide the cursor for the list vie
[all...]

Completed in 3578 milliseconds

1234567891011