Searched refs:resolved (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DPreviewInflater.java130 ResolveInfo resolved = packageManager.resolveActivityAsUser(intent,
133 if (wouldLaunchResolverActivity(resolved, appList)) {
136 if (resolved == null || resolved.activityInfo == null) {
139 return getWidgetInfoFromMetaData(resolved.activityInfo.packageName,
140 resolved.activityInfo.metaData);
154 * {@code null} if it resolved to the resolver activity
169 ResolveInfo resolved = packageManager.resolveActivityAsUser(intent,
171 if (resolved == null || wouldLaunchResolverActivity(resolved, appLis
178 wouldLaunchResolverActivity( ResolveInfo resolved, List<ResolveInfo> appList) argument
[all...]
/frameworks/data-binding/developmentPlugins/localizeMavenPlugin/src/main/groovy/android/databinding/
H A DLocalizeDependenciesTask.groovy180 def resolved;
182 resolved = system.resolveArtifact(session, artifactRequest);
188 def alreadyInGit = isInGit(resolved.artifact.file)
189 println(" |-> resolved ${resolved.artifact.file}. Already in git? $alreadyInGit")
194 def license = ExportLicensesTask.findLicenseFor(resolved.artifact.artifactId)
198 licenses.put(resolved.artifact.artifactId, license)
230 println("skipping $dependency because is already resolved as ${dependencyKey}")
236 File unwanted = new File(resolved.artifact.file.getParentFile(), "_remote.repositories")
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
H A DTileUtils.java291 for (ResolveInfo resolved : results) {
292 if (!resolved.system) {
296 category.title = resolved.activityInfo.loadLabel(pm);
298 resolved.activityInfo.applicationInfo.packageName) ? resolved.priority : 0;
342 for (ResolveInfo resolved : results) {
343 if (!resolved.system) {
347 ActivityInfo activityInfo = resolved.activityInfo;
354 Log.w(LOG_TAG, "Found " + resolved.activityInfo.name + " for intent "
370 tile.priority = usePriority ? resolved
[all...]
/frameworks/native/cmds/installd/
H A Dutils.cpp124 auto resolved = StringPrintf("%s/%s", user_path.c_str(), ent->d_name); local
126 if (resolved != fallback) {
127 LOG(DEBUG) << "Resolved path " << resolved << " for inode " << ce_data_inode
132 return resolved;
735 auto resolved = StringPrintf("%s/%s", parent.c_str(), ent->d_name); local
737 if (resolved != fallback) {
738 LOG(DEBUG) << "Resolved path " << resolved << " for inode " << inode
743 return resolved;
H A DInstalldNativeService.cpp2643 auto resolved = mStorageMounts[path]; local
2644 if (resolved.empty()) {
2646 resolved = path;
2648 return StringPrintf("%s/%u", resolved.c_str(), userid);
/frameworks/base/services/core/java/com/android/server/pm/
H A DShortcutService.java3352 final List<ResolveInfo> resolved;
3355 resolved =
3361 if (resolved == null || resolved.size() == 0) {
3365 if (!isInstalled(resolved.get(0).activityInfo)) {
3369 resolved.removeIf(ACTIVITY_NOT_EXPORTED);
3371 return resolved;
3382 final List<ResolveInfo> resolved =
3384 return resolved.size() == 0 ? null : resolved
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardBottomAreaView.java896 ResolveInfo resolved = resolveCameraIntent();
898 mIconState.isVisible = !isCameraDisabled && resolved != null
/frameworks/data-binding/internal-prebuilts/com/android/databinding/localizemaven/1.1/
H A Dlocalizemaven-1.1.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/ExportLicensesTask$__clinit__closure1$_closure5 ...
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java2062 int resolved = resolveDimenPixelOffset(target, mValue);
2063 ((ViewGroup.MarginLayoutParams) layoutParams).bottomMargin = resolved;
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java3526 final boolean resolved = mView.mContext.getTheme().resolveAttribute(
3528 if (resolved) {

Completed in 313 milliseconds