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

123456789

/frameworks/base/services/java/com/android/server/
H A DNotificationManagerService.java494 * System-only API for getting a list of current (i.e. not cleared) notifications.
522 * System-only API for getting a list of recent (cleared, no longer shown) notifications.
621 // decode the list of components
764 // no need to check permissions; if your listener binder is in the list,
891 * Allow an INotificationListener to request the list of outstanding notifications seen by
901 ArrayList<StatusBarNotification> list = new ArrayList<StatusBarNotification>();
907 list.add(sbn);
911 return list.toArray(result);
1470 // If the callback fails, this will remove it from the list, so don't
1515 // remove it from the list an
[all...]
H A DTextServicesManagerService.java176 ArrayList<SpellCheckerInfo> list, HashMap<String, SpellCheckerInfo> map,
178 list.clear();
203 list.add(sci);
212 Slog.d(TAG, "buildSpellCheckerMapLocked: " + list.size() + "," + map.size());
175 buildSpellCheckerMapLocked(Context context, ArrayList<SpellCheckerInfo> list, HashMap<String, SpellCheckerInfo> map, TextServicesSettings settings) argument
/frameworks/base/services/java/com/android/server/am/
H A DServiceRecord.java170 void dumpStartList(PrintWriter pw, String prefix, List<StartItem> list, long now) { argument
171 final int N = list.size();
173 StartItem si = list.get(i);
/frameworks/base/services/java/com/android/server/wm/
H A DDisplayContent.java52 /** Z-ordered (bottom-most first) list of all Window objects. Assigned to an element
328 ArrayList<StackBoxInfo> list = new ArrayList<StackBoxInfo>();
330 list.add(getStackBoxInfo(mStackBoxes.get(stackBoxNdx)));
332 return list;
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiMonitor.java816 List<WifiP2pServiceResponse> list = WifiP2pServiceResponse.newInstance(dataString);
817 if (list != null) {
818 mStateMachine.sendMessage(P2P_SERV_DISC_RESP_EVENT, list);
/frameworks/compile/slang/
H A Dllvm-rs-cc.cpp18 #include <list>
137 // The list of target specific features to enable or disable -- this should
138 // be a list of strings starting with by '+' or '-'.
453 std::list<std::pair<const char*, const char*> > IOFiles;
454 std::list<std::pair<const char*, const char*> > DepFiles;
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntry.java1443 public static AndroidCustomData constructAndroidCustomData(List<String> list) { argument
1447 if (list == null) {
1450 } else if (list.size() < 2) {
1451 mimeType = list.get(0);
1454 final int max = (list.size() < VCardConstants.MAX_DATA_COLUMN + 1) ? list.size()
1456 mimeType = list.get(0);
1457 dataList = list.subList(1, max);
2520 * Constructs the list of insert operation for this object. When the
2547 // the RawContact is the first operation that gets inserted into the list
2574 listToString(List<String> list) argument
[all...]
/frameworks/av/cmds/stagefright/
H A Dstagefright.cpp899 List<IOMX::ComponentInfo> list; local
900 omx->listNodes(&list);
902 for (List<IOMX::ComponentInfo>::iterator it = list.begin();
903 it != list.end(); ++it) {
/frameworks/av/include/media/
H A DIOMX.h53 virtual status_t listNodes(List<ComponentInfo> *list) = 0;
/frameworks/av/media/libstagefright/include/
H A DOMX.h36 virtual status_t listNodes(List<ComponentInfo> *list);
/frameworks/base/core/java/android/app/
H A DListFragment.java31 * A fragment that displays a list of items by binding to a data source such as
42 * ListFragment has a default layout that consists of a single list view.
46 * id "@android:id/list" (or {@link android.R.id#list} if it's in code)
49 * display when the list view is empty. This "empty list" notifier must have an
50 * id "android:empty". Note that when an empty view is present, the list view
53 * The following code demonstrates an (ugly) custom list layout. It has a list
66 * &lt;ListView android:id=&quot;@id/android:list
[all...]
H A DContextImpl.java927 final String[] list = getFilesDir().list();
928 return (list != null) ? list : EMPTY_FILE_LIST;
966 final String[] list = getDatabasesDir().list();
967 return (list != null) ? list : EMPTY_FILE_LIST;
/frameworks/base/core/java/android/preference/
H A DPreferenceFragment.java348 View rawListView = root.findViewById(android.R.id.list);
351 "Content has view with id attribute 'android.R.id.list' "
358 "'android.R.id.list'");
/frameworks/base/core/java/com/android/internal/content/
H A DPackageHelper.java195 Log.e(TAG, "Failed to get secure container list with exception" +
229 for (final ZipEntry zipEntry : Collections.list(privateZip.entries())) {
/frameworks/base/core/tests/coretests/src/android/os/
H A DFileUtilsTest.java181 String[] actual = mDir.list();
/frameworks/base/services/java/com/android/server/content/
H A DContentService.java268 final ArrayList<ObserverNode.ObserverEntry> list
270 int numList = list.size();
272 ObserverNode.ObserverEntry oe = list.get(j);
274 list.remove(j);
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DStatusBarTest.java64 mListView = findViewById(android.R.id.list);
98 // View v = findViewById(android.R.id.list);
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.h96 // commits the list
108 // create a work list for numLayers layer. sets HWC_GEOMETRY_CHANGED.
174 * Interface used to implement an iterator to a list
190 * Iterator through a HWCLayer list.
233 // Returns an iterator to the beginning of the layer list
236 // Returns an iterator to the end of the layer list
321 hwc_display_contents_1* list; member in struct:android::HWComposer::DisplayData
/frameworks/av/media/libstagefright/
H A DOMXCodec.cpp189 const MediaCodecList *list = MediaCodecList::getInstance(); local
190 if (list == NULL) {
197 list->findCodecByType(mime, createEncoder, index);
205 const char *componentName = list->getCodecName(matchIndex);
223 entry->mQuirks = getComponentQuirks(list, matchIndex);
237 const MediaCodecList *list, size_t index) {
239 if (list->codecHasQuirk(
243 if (list->codecHasQuirk(
247 if (list->codecHasQuirk(
257 const MediaCodecList *list local
236 getComponentQuirks( const MediaCodecList *list, size_t index) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDessertCaseView.java172 for (int[] list : new int[][] { PASTRIES, RARE_PASTRIES, XRARE_PASTRIES, XXRARE_PASTRIES }) {
173 for (int resid : list) {
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java533 // Stores a list of users whose package restrictions file needs to be updated
1173 * list of process files because dexopt will have been run
1229 String[] frameworkFiles = frameworkDir.list();
1263 String[] files = dalvikCacheDir.list();
1335 * disabled packages list, then it must have been
1366 //clean up list
2729 // Get the list of preferred activities that handle the intent
2792 // it from the preferred activities list, and skip it.
2864 final List<ResolveInfo> list = new ArrayList<ResolveInfo>(1);
2869 list
3223 addPackageHoldingPermissions(ArrayList<PackageInfo> list, PackageSetting ps, String[] permissions, boolean[] tmp, int flags, int userId) argument
4095 hasString(List<String> list, List<String> which) argument
[all...]
/frameworks/av/include/media/stagefright/
H A DOMXCodec.h118 const MediaCodecList *list, size_t index);
226 // A list of indices into mPortStatus[kPortIndexOutput] filled with data.
/frameworks/base/core/java/android/os/
H A DRecoverySystem.java423 String[] names = RECOVERY_DIR.list();
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DDocumentsActivity.java538 final MenuItem list = menu.findItem(R.id.menu_list);
547 list.setVisible(false);
555 list.setVisible(mState.derivedMode != MODE_LIST);
586 list.setVisible(false);
H A DRecentsCreateFragment.java93 mListView = (ListView) view.findViewById(R.id.list);

Completed in 671 milliseconds

123456789