OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:appinfo
(Results
151 - 175
of
279
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/packages/apps/Launcher3/src/com/android/launcher3/
LauncherCallbacks.java
75
public void bindAllApplications(ArrayList<
AppInfo
> apps);
BubbleTextView.java
200
public void applyFromApplicationInfo(
AppInfo
info) {
633
if (info instanceof
AppInfo
) {
634
applyFromApplicationInfo((
AppInfo
) info);
ShortcutInfo.java
143
public ShortcutInfo(
AppInfo
info) {
/packages/apps/Launcher3/src/com/android/launcher3/accessibility/
LauncherAccessibilityDelegate.java
17
import com.android.launcher3.
AppInfo
;
137
if ((item instanceof
AppInfo
) || (item instanceof PendingAddItemInfo)) {
169
if (item instanceof
AppInfo
) {
170
ShortcutInfo info = ((
AppInfo
) item).makeShortcut();
/platform_testing/libraries/launcher-helper/src/android/support/test/launcherhelper/
TvLauncherStrategy.java
440
ApplicationInfo
appInfo
=
445
isGame = (
appInfo
.metaData != null &&
appInfo
.metaData.getBoolean("isGame", false))
446
|| ((
appInfo
.flags & ApplicationInfo.FLAG_IS_GAME) != 0);
LeanbackLauncherStrategy.java
733
ApplicationInfo
appInfo
=
738
isGame = ((
appInfo
.flags & ApplicationInfo.FLAG_IS_GAME) != 0) ||
739
(
appInfo
.metaData != null &&
appInfo
.metaData.getBoolean("isGame", false));
/system/chre/platform/slpi/include/chre/target_platform/
platform_nanoapp_base.h
53
void loadStatic(const struct chreNslNanoappInfo *
appInfo
);
/cts/hostsidetests/os/test-apps/StaticSharedLibConsumerApp1/src/android/os/lib/consumer1/
UseSharedLibraryTest.java
202
ApplicationInfo
appInfo
= InstrumentationRegistry.getInstrumentation()
204
assertEquals(STATIC_LIB_PROVIDER_PKG,
appInfo
.packageName);
/cts/tests/tests/netsecpolicy/src/android/security/
NetworkSecurityPolicyTestBase.java
59
ApplicationInfo
appInfo
= getContext().getApplicationInfo();
62
assertEquals(expectedValue,
appInfo
.flags & ApplicationInfo.FLAG_USES_CLEARTEXT_TRAFFIC);
/packages/apps/Settings/src/com/android/settings/
UsageStatsActivity.java
127
ApplicationInfo
appInfo
= mPm.getApplicationInfo(pkgStats.getPackageName(), 0);
128
String label =
appInfo
.loadLabel(mPm).toString();
/packages/apps/Settings/src/com/android/settings/applications/
WriteSettingsDetails.java
194
ApplicationInfo
appInfo
= packageManager.getApplicationInfo(pkg, 0);
195
if ((
appInfo
.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {