/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | PreviewInflater.java | 130 ResolveInfo resolved = packageManager.resolveActivityAsUser(intent, in getWidgetInfo() local 133 if (wouldLaunchResolverActivity(resolved, appList)) { in getWidgetInfo() 136 if (resolved == null || resolved.activityInfo == null) { in getWidgetInfo() 139 return getWidgetInfoFromMetaData(resolved.activityInfo.packageName, in getWidgetInfo() 140 resolved.activityInfo.metaData); in getWidgetInfo() 169 ResolveInfo resolved = packageManager.resolveActivityAsUser(intent, in getTargetActivityInfo() local 171 if (resolved == null || wouldLaunchResolverActivity(resolved, appList)) { in getTargetActivityInfo() 174 return resolved.activityInfo; in getTargetActivityInfo() 179 ResolveInfo resolved, List<ResolveInfo> appList) { in wouldLaunchResolverActivity() argument 184 if (tmp.activityInfo.name.equals(resolved.activityInfo.name) in wouldLaunchResolverActivity() [all …]
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/ |
D | TileUtils.java | 168 for (ResolveInfo resolved : results) { in createCategory() 169 if (!resolved.system) { in createCategory() 173 category.title = resolved.activityInfo.loadLabel(pm); in createCategory() 175 resolved.activityInfo.applicationInfo.packageName) ? resolved.priority : 0; in createCategory() 199 for (ResolveInfo resolved : results) { in getTilesForIntent() 200 if (!resolved.system) { in getTilesForIntent() 204 ActivityInfo activityInfo = resolved.activityInfo; in getTilesForIntent() 209 Log.w(LOG_TAG, "Found " + resolved.activityInfo.name + " for intent " in getTilesForIntent() 224 tile.priority = usePriority ? resolved.priority : 0; in getTilesForIntent()
|
/frameworks/data-binding/developmentPlugins/localizeMavenPlugin/src/main/groovy/android/databinding/ |
D | LocalizeDependenciesTask.groovy | 180 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/libs/hwui/hwui/ |
D | MinikinUtils.cpp | 31 FontStyle resolved = resolvedFace->fStyle; in prepareMinikinPaint() local 37 FontStyle minikinStyle(langListId, minikinVariant, resolved.getWeight(), resolved.getItalic()); in prepareMinikinPaint()
|
/frameworks/native/cmds/installd/ |
D | utils.cpp | 110 auto resolved = StringPrintf("%s/%s", user_path.c_str(), ent->d_name); in create_data_user_ce_package_path() local 112 if (resolved != fallback) { in create_data_user_ce_package_path() 113 LOG(DEBUG) << "Resolved path " << resolved << " for inode " << ce_data_inode in create_data_user_ce_package_path() 118 return resolved; in create_data_user_ce_package_path() 861 auto resolved = StringPrintf("%s/%s", parent.c_str(), ent->d_name); in read_path_inode() local 863 if (resolved != fallback) { in read_path_inode() 864 LOG(DEBUG) << "Resolved path " << resolved << " for inode " << inode in read_path_inode() 869 return resolved; in read_path_inode() 905 auto resolved = read_path_inode(parent, "cache", kXattrInodeCache); in add_cache_files() local 906 strcpy(dirname, resolved.c_str()); in add_cache_files()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | ShortcutService.java | 3040 final List<ResolveInfo> resolved = in queryActivities() local 3043 if (resolved == null || resolved.size() == 0) { in queryActivities() 3047 if (!isInstalled(resolved.get(0).activityInfo)) { in queryActivities() 3050 resolved.removeIf(ACTIVITY_NOT_EXPORTED); in queryActivities() 3051 return resolved; in queryActivities() 3063 final List<ResolveInfo> resolved = in injectGetDefaultMainActivity() local 3065 return resolved.size() == 0 ? null : resolved.get(0).activityInfo.getComponentName(); in injectGetDefaultMainActivity() 3080 final List<ResolveInfo> resolved = in injectIsMainActivity() local 3083 return resolved.size() > 0; in injectIsMainActivity()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | KeyguardBottomAreaView.java | 307 ResolveInfo resolved = resolveCameraIntent(); in updateCameraVisibility() local 308 boolean visible = !isCameraDisabledByDpm() && resolved != null in updateCameraVisibility()
|
/frameworks/base/docs/html/about/versions/ |
D | android-1.1.jd | 20 <li><a href="#resolved-issues">Resolved Issues</a> 145 <h2 id="resolved-issues">Resolved Issues</h2>
|
/frameworks/base/docs/html/training/cloudsave/ |
D | conflict-res.jd | 114 represents the set of levels that player has unlocked, then the resolved data is 249 will be (130, +5). This means the resolved state would be (140, +10). This is 457 is <em>(B:10, C:2, D:14)</em>, then the resolved data will be
|
/frameworks/base/docs/html/guide/topics/resources/ |
D | multilingual-support.jd | 109 <strong>Table 1</strong> is resolved differently:</p>
|
/frameworks/base/core/java/android/widget/ |
D | RemoteViews.java | 1900 int resolved = resolveDimenPixelOffset(target, value); 1901 ((ViewGroup.MarginLayoutParams) layoutParams).setMarginEnd(resolved); 1907 int resolved = resolveDimenPixelOffset(target, value); 1908 ((ViewGroup.MarginLayoutParams) layoutParams).bottomMargin = resolved;
|
/frameworks/base/docs/html/training/custom-views/ |
D | create-view.jd | 169 <li>Resource references within attribute values are not resolved</li>
|
/frameworks/base/docs/html/training/connect-devices-wirelessly/ |
D | nsd.jd | 321 <p>Once the service is resolved, your application receives detailed
|
/frameworks/base/docs/html/guide/practices/ui_guidelines/ |
D | activity_task_design.jd | 667 object, or just an <em>intent</em>, which then gets resolved to a 909 be resolved to a matching external activity — you must handle the case 922 To test whether an intent can be resolved, your code can query the package manager.
|
/frameworks/base/docs/html/guide/topics/connectivity/nfc/ |
D | hce.jd | 232 then forwards that APDU to the resolved service.</p> 415 reader that selects an AID that is resolved to your service. After unlocking,
|
/frameworks/base/docs/html/sdk/ |
D | OLD_RELEASENOTES.jd | 99 …<li>All referenced resources (strings, bitmaps, etc...) are resolved based on the selected configu… 335 <p>The following Known Issues from m3-rc20 have been resolved:</p>
|
/frameworks/base/docs/html/design/patterns/ |
D | notifications_k.jd | 143 condition that is time-critical or needs to be resolved before they can
|
/frameworks/base/docs/html/work/ |
D | guide.jd | 121 request is resolved by calling
|
/frameworks/base/core/java/android/view/ |
D | ViewRootImpl.java | 2998 final boolean resolved = mView.mContext.getTheme().resolveAttribute( in getAccessibilityFocusedDrawable() 3000 if (resolved) { in getAccessibilityFocusedDrawable()
|
/frameworks/base/docs/html/guide/components/ |
D | intents-filters.jd | 293 how it is resolved to an app component. An intent can also supply the following information:</p>
|
/frameworks/base/docs/html/topic/libraries/data-binding/ |
D | index.jd | 305 Alternatively, it will also be resolved to <code>firstName()</code> if that
|
/frameworks/native/docs/ |
D | Doxyfile | 362 # pre-resolved symbols. If the cache is too small doxygen will become slower.
|
/frameworks/data-binding/compiler/src/main/resources/ |
D | NOTICE.txt | 1149 indirectly infringes any patent where such claim is resolved (such as
|