HomeSort by relevance Sort by last modified time
    Searched refs:apps (Results 26 - 50 of 322) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/permissionpresenterservice/
RuntimePermissionPresenterService.java 76 * Gets the apps that use runtime permissions.
78 * @param system Whether to return only the system apps or only the non-system ones.
134 List<ApplicationInfo> apps = onGetAppsUsingPermissions(system);
135 if (apps != null && !apps.isEmpty()) {
137 result.putParcelableList(RuntimePermissionPresenter.KEY_RESULT, apps);
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
LoaderCustomSupport.java 182 * Helper class to look for interesting changes to the installed apps
234 List<ApplicationInfo> apps = mPm.getInstalledApplications( local
237 if (apps == null) {
238 apps = new ArrayList<ApplicationInfo>();
244 List<AppEntry> entries = new ArrayList<AppEntry>(apps.size());
245 for (int i=0; i<apps.size(); i++) {
246 AppEntry entry = new AppEntry(this, apps.get(i));
263 @Override public void deliverResult(List<AppEntry> apps) {
267 if (apps != null) {
268 onReleaseResources(apps);
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
AppStateBaseBridge.java 84 public void onRebuildComplete(ArrayList<AppEntry> apps) {
140 ArrayList<AppEntry> apps = mAppSession.getAllApps(); local
141 final int N = apps.size();
145 AppEntry app = apps.get(i);
AppOpsCategory.java 95 * Helper class to look for interesting changes to the installed apps
151 @Override public void deliverResult(List<AppOpEntry> apps) {
155 if (apps != null) {
156 onReleaseResources(apps);
159 List<AppOpEntry> oldApps = apps;
160 mApps = apps;
165 super.deliverResult(apps);
217 @Override public void onCanceled(List<AppOpEntry> apps) {
218 super.onCanceled(apps);
220 // At this point we can release the resources associated with 'apps'
    [all...]
PremiumSmsAccess.java 91 private void updatePrefs(ArrayList<AppEntry> apps) {
92 if (apps == null) return;
99 for (int i = 0; i < apps.size(); i++) {
101 new PremiumSmsPreference(apps.get(i), getPrefContext());
105 if (apps.size() != 0) {
127 public void onRebuildComplete(ArrayList<AppEntry> apps) {
128 updatePrefs(apps);
  /packages/apps/StorageManager/src/com/android/storagemanager/deletionhelper/
AppStateBaseBridge.java 84 public void onRebuildComplete(ArrayList<AppEntry> apps) {
140 ArrayList<AppEntry> apps = mAppSession.getAllApps(); local
141 final int N = apps.size();
145 AppEntry app = apps.get(i);
  /packages/apps/Tag/src/com/android/apps/tag/
TagViewer.java 17 package com.android.apps.tag;
19 import com.android.apps.tag.message.NdefMessageParser;
20 import com.android.apps.tag.message.ParsedNdefMessage;
21 import com.android.apps.tag.record.ParsedNdefRecord;
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderCustom.java 180 * Helper class to look for interesting changes to the installed apps
232 List<ApplicationInfo> apps = mPm.getInstalledApplications( local
235 if (apps == null) {
236 apps = new ArrayList<ApplicationInfo>();
242 List<AppEntry> entries = new ArrayList<AppEntry>(apps.size());
243 for (int i=0; i<apps.size(); i++) {
244 AppEntry entry = new AppEntry(this, apps.get(i));
261 @Override public void deliverResult(List<AppEntry> apps) {
265 if (apps != null) {
266 onReleaseResources(apps);
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
PermissionMonitor.java 117 List<PackageInfo> apps = mPackageManager.getInstalledPackages(GET_PERMISSIONS); local
118 if (apps == null) {
119 loge("No apps");
123 for (PackageInfo app : apps) {
149 log("Users: " + mUsers.size() + ", Apps: " + mApps.size());
185 private void update(Set<Integer> users, Map<Integer, Boolean> apps, boolean add) {
188 for (Entry<Integer, Boolean> app : apps.entrySet()) {
248 Map<Integer, Boolean> apps = new HashMap<>(); local
249 apps.put(appUid, hasRestrictedPermission);
250 update(mUsers, apps, true)
265 Map<Integer, Boolean> apps = new HashMap<>(); local
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/
AppsFragment.java 17 package com.android.tv.settings.device.apps;
94 // should only be showing the apps on the internal storage or all apps.
115 public void onRebuildComplete(ArrayList<ApplicationsState.AppEntry> apps) {
116 updateAppList(mSystemPreferenceGroup, apps);
128 public void onRebuildComplete(ArrayList<ApplicationsState.AppEntry> apps) {
129 updateAppList(mDownloadedPreferenceGroup, apps);
186 ArrayList<ApplicationsState.AppEntry> apps = local
188 if (apps != null) {
189 updateAppList(mSystemPreferenceGroup, apps);
194 ArrayList<ApplicationsState.AppEntry> apps = local
    [all...]
AppInfo.java 17 package com.android.tv.settings.device.apps;
  /external/scrypt/
Android.mk 8 # respective crypto, ssl, and apps directories so
  /ndk/build/core/
main.mk 46 # located in apps/<name> where <name> is a liberal name that doesn't
54 NDK_APPS_ROOT := $(NDK_ROOT)/apps
56 # Get the list of apps listed under apps/*
74 # Check that all apps listed in APP do exist
84 # Check that all apps listed in APP have an Application.mk
87 $(eval _application_mk := $(strip $(wildcard $(NDK_ROOT)/apps/$(_app)/Application.mk))) \
93 Missing file: apps/$(_app)/Application.mk !)\
103 The NDK could not find a proper application description under apps/*/Application.mk)
105 Please follow the instructions in docs/NDK-APPS.TXT to write one.
    [all...]
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/tools/
named_entity_trie_generator.js 42 '//(see: http://www.whatwg.org/specs/web-apps/current-work/multipage/tokenization.html#tokenizing-character-references and\n' +
43 '//http://www.whatwg.org/specs/web-apps/current-work/multipage/named-character-references.html#named-character-references)\n' +
  /external/skia/platform_tools/android/bin/
android_install_app 3 # android_install_app: installs the Skia development apps on the device.
71 $ADB ${DEVICE_SERIAL} install -r ${SCRIPT_DIR}/../apps/${APP_LC}/build/outputs/apk/${APP_LC}-${ANDROID_ARCH}-${apk_suffix}
  /frameworks/base/core/java/android/app/
AppImportanceMonitor.java 92 List<ActivityManager.RunningAppProcessInfo> apps = am.getRunningAppProcesses(); local
93 if (apps != null) {
94 for (int i=0; i<apps.size(); i++) {
95 ActivityManager.RunningAppProcessInfo app = apps.get(i);
  /frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/
SmokeTestRunner.java 48 final List<ResolveInfo> apps = ProcessErrorsTest.getLauncherActivities(pm); local
68 for (final ResolveInfo app : apps) {
  /packages/apps/Launcher3/src/com/android/launcher3/allapps/
DefaultAppSearchAlgorithm.java 37 public DefaultAppSearchAlgorithm(List<AppInfo> apps) {
38 mApps = apps;
62 // apps that don't match all of the words in the query.
AllAppsContainerView.java 68 // Don't merge the predicted apps
80 * In addition, we will try and not merge sections that identify apps from different scripts.
100 // Don't merge the predicted apps
105 // Continue merging if the number of hanging apps on the final row is less than some
126 * The all apps view container.
189 * Sets the current set of predicted apps.
191 public void setPredictedApps(List<ComponentKey> apps) {
192 mApps.setPredictedApps(apps);
196 * Sets the current set of apps.
198 public void setApps(List<AppInfo> apps) {
    [all...]
  /packages/apps/Tag/src/com/android/apps/tag/record/
ImageRecord.java 17 package com.android.apps.tag.record;
19 import com.android.apps.tag.R;
MimeRecord.java 17 package com.android.apps.tag.record;
19 import com.android.apps.tag.R;
  /prebuilts/go/darwin-x86/src/runtime/
os_android_arm.go 11 // Used by the app package to start all-Go Android apps that are
  /prebuilts/go/linux-x86/src/runtime/
os_android_arm.go 11 // Used by the app package to start all-Go Android apps that are
  /frameworks/base/core/java/android/content/pm/permission/
RuntimePermissionPresenter.java 43 * app or all apps. This information is dedicated for presentation purposes
78 * @param system Whether to return only the system apps or only the non-system ones.
79 * @param apps The apps using runtime permissions.
81 public void getAppsUsingPermissions(boolean system, @NonNull List<ApplicationInfo> apps) {
131 * Gets the system apps that use runtime permissions. System apps are ones
133 * that are preinstalled on the system image. System apps are ones that
134 * are on the system image, haven't been updated (a.k.a factory apps)
137 * @param system If true only system apps are returned otherwise onl
    [all...]
  /external/valgrind/drd/scripts/
run-splash2 207 run_test ${SPLASH2}/codes/apps/ocean/contiguous_partitions/OCEAN -n258
208 #run_test ${SPLASH2}/codes/apps/ocean/non_contiguous_partitions/OCEAN -n258
212 psep=' ' run_test ${SPLASH2}/codes/apps/radiosity/RADIOSITY -batch -room -ae 5000.0 -en 0.050 -bf 0.10
220 cd ${SPLASH2}/codes/apps/raytrace/inputs
232 cd ${SPLASH2}/codes/apps/water-nsquared
238 cd ${SPLASH2}/codes/apps/water-spatial

Completed in 522 milliseconds

12 3 4 5 6 7 8 91011>>