Searched refs:resolved (Results 1 - 11 of 11) 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/base/libs/hwui/hwui/
H A DMinikinUtils.cpp32 minikin::FontStyle resolved = resolvedFace->fStyle; local
38 minikin::FontStyle minikinStyle(langListId, minikinVariant, resolved.getWeight(),
39 resolved.getItalic());
/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.cpp106 auto resolved = StringPrintf("%s/%s", user_path.c_str(), ent->d_name); local
108 if (resolved != fallback) {
109 LOG(DEBUG) << "Resolved path " << resolved << " for inode " << ce_data_inode
114 return resolved;
740 auto resolved = StringPrintf("%s/%s", parent.c_str(), ent->d_name); local
742 if (resolved != fallback) {
743 LOG(DEBUG) << "Resolved path " << resolved << " for inode " << inode
748 return resolved;
H A DInstalldNativeService.cpp2366 auto resolved = mStorageMounts[path]; local
2367 if (resolved.empty()) {
2369 resolved = path;
2371 return StringPrintf("%s/%u", resolved.c_str(), userid);
/frameworks/base/services/core/java/com/android/server/pm/
H A DShortcutService.java3178 final List<ResolveInfo> resolved;
3181 resolved =
3187 if (resolved == null || resolved.size() == 0) {
3191 if (!isInstalled(resolved.get(0).activityInfo)) {
3195 resolved.removeIf(ACTIVITY_NOT_EXPORTED);
3197 return resolved;
3208 final List<ResolveInfo> resolved =
3210 return resolved.size() == 0 ? null : resolved
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardBottomAreaView.java855 ResolveInfo resolved = resolveCameraIntent();
857 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.java2126 int resolved = resolveDimenPixelOffset(target, value);
2127 ((ViewGroup.MarginLayoutParams) layoutParams).setMarginEnd(resolved);
2133 int resolved = resolveDimenPixelOffset(target, value);
2134 ((ViewGroup.MarginLayoutParams) layoutParams).bottomMargin = resolved;
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java3190 final boolean resolved = mView.mContext.getTheme().resolveAttribute(
3192 if (resolved) {

Completed in 353 milliseconds