OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:appList
(Results
1 - 15
of
15
) sorted by null
/external/chromium/chrome/common/extensions/docs/examples/extensions/app_launcher/
popup.js
54
var
appList
= [];
56
// The index of an app in |
appList
| that should be highlighted.
65
for (var i = 0; i <
appList
.length; i++) {
66
var item =
appList
[i];
71
// Puts only enabled apps from completeList into
appList
.
74
appList
= [];
84
appList
.push(item);
139
if (newIndex >= 0 && newIndex <=
appList
.length - 1) {
147
} else if (newIndex ==
appList
.length - 1) {
183
changeSelection(
appList
.length - 1)
[
all
...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/app_launcher/
popup.js
54
var
appList
= [];
56
// The index of an app in |
appList
| that should be highlighted.
65
for (var i = 0; i <
appList
.length; i++) {
66
var item =
appList
[i];
71
// Puts only enabled apps from completeList into
appList
.
74
appList
= [];
84
appList
.push(item);
121
if (newIndex >= 0 && newIndex <=
appList
.length - 1) {
129
} else if (newIndex ==
appList
.length - 1) {
165
changeSelection(
appList
.length - 1)
[
all
...]
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardActivityLauncher.java
69
final List<ResolveInfo>
appList
= packageManager.queryIntentActivitiesAsUser(
71
if (
appList
.size() == 0) {
79
if (wouldLaunchResolverActivity(resolved,
appList
)) {
262
List<ResolveInfo>
appList
= packageManager.queryIntentActivitiesAsUser(
264
return wouldLaunchResolverActivity(resolved,
appList
);
267
private boolean wouldLaunchResolverActivity(ResolveInfo resolved, List<ResolveInfo>
appList
) {
270
for (int i = 0; i <
appList
.size(); i++) {
271
ResolveInfo tmp =
appList
.get(i);
/external/icu4c/samples/layout/
gnomelayout.cpp
45
static GSList *
appList
= NULL;
273
appList
= g_slist_prepend(
appList
, app);
290
appList
= g_slist_remove(
appList
, app);
294
if (
appList
== NULL) {
cgnomelayout.c
35
static GSList *
appList
= NULL;
272
appList
= g_slist_prepend(
appList
, app);
289
appList
= g_slist_remove(
appList
, app);
293
if (
appList
== NULL) {
/frameworks/ml/bordeaux/learning/predictor_histogram/java/android/bordeaux/learning/
HistogramPredictor.java
255
List<Map.Entry<String, Double> >
appList
=
257
appList
.addAll(appCandidates.entrySet());
258
Collections.sort(
appList
, new Comparator<Map.Entry<String, Double> >() {
266
topK =
appList
.size();
268
return
appList
.subList(0, Math.min(topK,
appList
.size()));
/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
) {
PermissionDetails.java
80
ArrayList<PackageInfo>
appList
= msg.getData().getParcelableArrayList(KEY_APPS_USING_PERM);
81
createAppList(
appList
);
/external/chromium_org/chrome/browser/ui/webui/app_list/
start_page_browsertest.js
41
appList
.startPage.setRecommendedApps(this.recommendedApps_);
/frameworks/base/tests/AppLaunch/src/com/android/tests/applaunch/
AppLaunch.java
140
String
appList
= args.getString(KEY_APPS);
141
if (
appList
== null)
144
String appNames[] =
appList
.split("\\|");
/frameworks/base/tests/MemoryUsage/src/com/android/tests/memoryusage/
MemoryUsageTest.java
93
String
appList
= args.getString(KEY_APPS);
95
if (
appList
== null)
98
String appNames[] =
appList
.split("\\|");
/packages/apps/Settings/src/com/android/settings/
UsageStats.java
65
AppNameComparator(Map<String, CharSequence>
appList
) {
66
mAppLabelList =
appList
;
/external/chromium_org/chrome/browser/resources/chromeos/
drive_internals.js
168
* @param {Object}
appList
Dictionary describing app list.
170
function updateAppList(
appList
) {
171
$('app-list-etag').textContent =
appList
['etag'];
174
for (var i = 0; i <
appList
['items'].length; i++) {
175
var app =
appList
['items'][i];
/build/tools/droiddoc/templates-pdk/assets/
carousel.js
60
var
appList
= document.getElementById("app-list");
82
appList
.appendChild(a);
Completed in 761 milliseconds