OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:appList
(Results
1 - 13
of
13
) sorted by null
/cts/tests/tests/security/src/android/security/cts/
RunningAppProcessInfoTest.java
37
List<ActivityManager.RunningAppProcessInfo>
appList
=
42
"/aaa0fee0d7a8da347a0c47cef5249c70efee209e", (
appList
.size() == 1));
/development/apps/Development/src/com/android/development/
AppHwConfigList.java
82
List<ApplicationInfo>
appList
= mPm.getInstalledApplications(0);
83
for (ApplicationInfo app :
appList
) {
RunningProcesses.java
82
List<ActivityManager.RunningAppProcessInfo>
appList
= am.getRunningAppProcesses();
83
for (ActivityManager.RunningAppProcessInfo app :
appList
) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
PreviewInflater.java
125
final List<ResolveInfo>
appList
= packageManager.queryIntentActivitiesAsUser(
127
if (
appList
.size() == 0) {
133
if (wouldLaunchResolverActivity(resolved,
appList
)) {
164
final List<ResolveInfo>
appList
= packageManager.queryIntentActivitiesAsUser(
166
if (
appList
.size() == 0) {
171
if (resolved == null || wouldLaunchResolverActivity(resolved,
appList
)) {
179
ResolveInfo resolved, List<ResolveInfo>
appList
) {
182
for (int i = 0; i <
appList
.size(); i++) {
183
ResolveInfo tmp =
appList
.get(i);
/hardware/interfaces/contexthub/1.0/vts/functional/
VtsHalContexthubV1_0TargetTest.cpp
242
hidl_vec<HubAppInfo>
appList
;
243
ASSERT_TRUE(waitForCallback(cb->promise.get_future(), &
appList
));
244
for (const HubAppInfo &appInfo :
appList
) {
/external/icu/icu4c/source/samples/layout/
cgnomelayout.c
41
static GSList *
appList
= NULL;
278
appList
= g_slist_prepend(
appList
, app);
295
appList
= g_slist_remove(
appList
, app);
299
if (
appList
== NULL) {
gnomelayout.cpp
51
static GSList *
appList
= NULL;
279
appList
= g_slist_prepend(
appList
, app);
296
appList
= g_slist_remove(
appList
, app);
300
if (
appList
== NULL) {
/frameworks/base/telephony/java/com/android/internal/telephony/
CarrierAppUtils.java
332
List<ApplicationInfo>
appList
= associatedApps.get(carrierAppPackage);
333
if (
appList
== null) {
334
appList
= new ArrayList<>();
335
associatedApps.put(carrierAppPackage,
appList
);
337
appList
.add(ai);
/packages/apps/Settings/tests/robotests/src/com/android/settings/applications/
ManageApplicationsTest.java
180
final ArrayList<ApplicationsState.AppEntry>
appList
= new ArrayList<>();
181
appList
.add(mock(ApplicationsState.AppEntry.class));
182
when(mSession.getAllApps()).thenReturn(
appList
);
239
final ArrayList<ApplicationsState.AppEntry>
appList
= new ArrayList<>();
240
appList
.add(mock(ApplicationsState.AppEntry.class));
241
when(mSession.getAllApps()).thenReturn(
appList
);
/packages/apps/Launcher3/src/com/android/launcher3/
DefaultLayoutParser.java
111
final List<ResolveInfo>
appList
= mPackageManager.queryIntentActivities(
116
if (wouldLaunchResolverActivity(resolved,
appList
)) {
118
final ResolveInfo systemApp = getSingleSystemActivity(
appList
);
140
private ResolveInfo getSingleSystemActivity(List<ResolveInfo>
appList
) {
142
final int N =
appList
.size();
146
appList
.get(i).activityInfo.packageName, 0);
151
systemResolve =
appList
.get(i);
163
List<ResolveInfo>
appList
) {
166
for (int i = 0; i <
appList
.size(); ++i) {
167
ResolveInfo tmp =
appList
.get(i)
[
all
...]
/frameworks/base/tests/MemoryUsage/src/com/android/tests/memoryusage/
MemoryUsageTest.java
134
String
appList
= args.getString(KEY_APPS);
139
if (
appList
== null && procList == null)
141
if (
appList
!= null) {
142
mNameToResultKey.putAll(parseListToMap(
appList
));
/packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/common/
UtilsTest.java
103
List<ApplicationInfo>
appList
= Arrays.asList(
108
.thenReturn(new ParceledListSlice<ApplicationInfo>(
appList
));
/frameworks/base/tests/AppLaunch/src/com/android/tests/applaunch/
AppLaunch.java
402
String
appList
= args.getString(KEY_APPS);
403
if (
appList
== null)
406
String appNames[] =
appList
.split("\\|");
Completed in 313 milliseconds