HomeSort by relevance Sort by last modified time
    Searched refs:apps (Results 51 - 75 of 400) sorted by null

1 23 4 5 6 7 8 91011>>

  /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;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/specialaccess/
ManageExternalSourcesActivity.java 17 package com.android.tv.settings.device.apps.specialaccess;
  /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...]
  /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;
  /device/linaro/bootloader/edk2/BaseTools/Source/C/
Makefile 36 all: libs apps install
46 apps: $(APPLICATIONS)
  /external/scrypt/
Android.mk 8 # respective crypto, ssl, and apps directories so
  /packages/apps/Settings/src/com/android/settings/applications/
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 115 private void updatePrefs(ArrayList<AppEntry> apps) {
116 if (apps == null) return;
123 for (int i = 0; i < apps.size(); i++) {
125 new PremiumSmsPreference(apps.get(i), getPrefContext());
129 if (apps.size() != 0) {
151 public void onRebuildComplete(ArrayList<AppEntry> apps) {
152 updatePrefs(apps);
ManageDomainUrls.java 105 public void onRebuildComplete(ArrayList<AppEntry> apps) {
123 // toggle to enable / disable Web Actions [aka Instant Apps]
132 // Determine whether we should show the instant apps account chooser setting
158 rebuildAppList(mDomainAppList, apps);
174 final ArrayList<AppEntry> apps = mSession.rebuild( local
176 if (apps != null) {
177 onRebuildComplete(apps);
181 private void rebuildAppList(PreferenceGroup group, ArrayList<AppEntry> apps) {
183 final int N = apps.size();
185 AppEntry entry = apps.get(i)
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/allapps/
AllAppsContainerView.java 68 * The all apps view container.
133 * Sets the current set of predicted apps.
135 public void setPredictedApps(List<ComponentKey> apps) {
136 mApps.setPredictedApps(apps);
140 * Sets the current set of apps.
142 public void setApps(List<AppInfo> apps) {
143 mApps.setApps(apps);
147 * Adds new apps to the list.
149 public void addApps(List<AppInfo> apps) {
150 mApps.addApps(apps);
    [all...]
AllAppsSearchBarController.java 62 * Sets the references to the apps model and the search result callback.
65 AlphabeticalAppsList apps, ExtendedEditText input,
67 mApps = apps;
194 .appendQueryParameter("c", "apps")
214 * @param apps sorted list of matching components or null if in case of failure.
216 void onSearchResult(String query, ArrayList<ComponentKey> apps);
  /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/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.go 11 // Used by the app package to start all-Go Android apps that are
  /prebuilts/go/linux-x86/src/runtime/
os_android.go 11 // Used by the app package to start all-Go Android apps that are
  /build/make/core/
executable_prefer_symlink.mk 16 # We support both 32 and 64 bit apps, so we will have to
25 # We support only 64 bit apps.
28 # We support only 32 bit apps.
  /packages/apps/Settings/tests/robotests/src/com/android/settings/enterprise/
EnterpriseSetDefaultAppsListPreferenceControllerTest.java 70 private static final String PHONE_TITLE = "Phone apps";
132 ArgumentCaptor<Preference> apps = ArgumentCaptor.forClass(Preference.class); local
133 verify(mScreen, times(2)).addPreference(apps.capture());
135 assertThat(apps.getAllValues().get(0).getTitle()).isEqualTo(BROWSER_TITLE);
136 assertThat(apps.getAllValues().get(0).getSummary()).isEqualTo(APP_1);
138 assertThat(apps.getAllValues().get(1).getTitle()).isEqualTo(PHONE_TITLE);
139 assertThat(apps.getAllValues().get(1).getSummary()).isEqualTo(APP_1 + ", " + APP_2);
  /development/samples/ShortcutDemo/launcher/src/com/example/android/pm/shortcutlauncherdemo/
BaseActivityListFragment.java 54 Log.d(Global.TAG, "Loading apps and shortcuts...");
56 final List<LauncherActivityInfo> apps = new ArrayList<>(); local
61 apps.addAll(getActivities(user));
64 Collections.sort(apps, sLauncherIconComparator);
69 Log.d(Global.TAG, "Apps and shortcuts loaded. (count=" + apps.size() + ")");
71 mAdapter.setList(apps);
  /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
  /packages/apps/Launcher2/src/com/android/launcher2/
AllAppsList.java 29 * Stores the list of all applications for the all apps view.
34 /** The list off all apps. */
37 /** The list of apps that have been added since the last notify() call. */
40 /** The list of apps that have been removed since the last notify() call. */
42 /** The list of apps that have been modified since the last notify() call. */
99 * Remove the apps for the given apk identified by packageName.
173 * Returns whether <em>apps</em> contains <em>component</em> for a specific
176 private static boolean findActivity(List<LauncherActivityInfo> apps, ComponentName component,
178 for (LauncherActivityInfo info : apps) {
188 * Returns whether <em>apps</em> contains <em>component</em> for a specifi
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
AllAppsList.java 34 * Stores the list of all applications for the all apps view.
39 /** The list off all apps. */
42 /** The list of apps that have been added since the last notify() call. */
45 /** The list of apps that have been removed since the last notify() call. */
47 /** The list of apps that have been modified since the last notify() call. */
111 * Remove the apps for the given apk identified by packageName.
125 * Updates the disabled flags of apps matching {@param matcher} based on {@param op}.
198 * Returns whether <em>apps</em> contains <em>component</em>.
200 private static boolean findActivity(List<LauncherActivityInfo> apps,
202 for (LauncherActivityInfo info : apps) {
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/util/
ManagedProfileHeuristic.java 100 public void processUserApps(List<LauncherActivityInfo> apps) {
102 new ManagedProfilePackageHandler().processUserApps(apps, mUser);
112 List<LauncherActivityInstallInfo> apps, UserHandle user, boolean userAppsExisted) {
116 int count = apps.size();
123 LauncherActivityInstallInfo info = apps.get(i);
133 // getting filled with the managed user apps, when it start with a fresh DB (or after
  /frameworks/base/services/core/java/com/android/server/storage/
AppCollector.java 59 * @param volume Volume to check for apps.
122 final List<ApplicationInfo> apps = mPm.getInstalledApplicationsAsUser( local
125 for (int appCount = 0, size = apps.size(); appCount < size; appCount++) {
126 ApplicationInfo app = apps.get(appCount);

Completed in 696 milliseconds

1 23 4 5 6 7 8 91011>>