Searched defs:resolved (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/jni/android/graphics/
H A DMinikinUtils.cpp45 FontStyle resolved = resolvedFace->fStyle; local
52 FontStyle minikinStyle(minikinLang, minikinVariant, resolved.getWeight(), resolved.getItalic());
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DPreviewInflater.java87 ResolveInfo resolved = packageManager.resolveActivityAsUser(intent,
90 if (wouldLaunchResolverActivity(resolved, appList)) {
93 if (resolved == null || resolved.activityInfo == null) {
96 if (resolved.activityInfo.metaData == null || resolved.activityInfo.metaData.isEmpty()) {
99 int layoutId = resolved.activityInfo.metaData.getInt(META_DATA_KEYGUARD_LAYOUT);
103 info.contextPackage = resolved.activityInfo.packageName;
116 ResolveInfo resolved = packageManager.resolveActivityAsUser(intent,
118 return wouldLaunchResolverActivity(resolved, appLis
121 wouldLaunchResolverActivity( ResolveInfo resolved, List<ResolveInfo> appList) argument
[all...]
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardActivityLauncher.java78 ResolveInfo resolved = packageManager.resolveActivityAsUser(intent,
81 if (DEBUG) Log.d(TAG, "getCameraWidgetInfo(): resolved: " + resolved);
82 if (wouldLaunchResolverActivity(resolved, appList)) {
86 if (resolved == null || resolved.activityInfo == null) {
89 if (resolved.activityInfo.metaData == null || resolved.activityInfo.metaData.isEmpty()) {
93 int layoutId = resolved.activityInfo.metaData.getInt(META_DATA_KEYGUARD_LAYOUT);
98 info.contextPackage = resolved
276 wouldLaunchResolverActivity(ResolveInfo resolved, List<ResolveInfo> appList) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DSecureCameraLaunchManager.java238 ResolveInfo resolved = packageManager.resolveActivityAsUser(intent,
242 if (resolved == null || resolved.activityInfo == null) {
248 if (wouldLaunchResolverActivity(resolved, appList)) {
254 if (resolved.activityInfo.metaData == null || resolved.activityInfo.metaData.isEmpty()) {
262 resolved.activityInfo.metaData.getBoolean(META_DATA_WILL_WAIT_FOR_CAMERA_AVAILABLE);
272 private boolean wouldLaunchResolverActivity(ResolveInfo resolved, List<ResolveInfo> appList) { argument
273 // If the list contains the resolved activity, then it can't be the ResolverActivity itself.
276 if (tmp.activityInfo.name.equals(resolved
[all...]

Completed in 8160 milliseconds