Searched refs:intentString (Results 1 – 5 of 5) sorted by relevance
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/backup/ |
D | BackupSettingsHelper.java | 127 String intentString = in isBackupProvidedByManufacturer() local 130 return intentString != null && !intentString.isEmpty(); in isBackupProvidedByManufacturer() 147 String intentString = in getIntentProvidedByManufacturer() local 149 if (intentString != null && !intentString.isEmpty()) { in getIntentProvidedByManufacturer() 151 return Intent.parseUri(intentString, 0); in getIntentProvidedByManufacturer()
|
/packages/apps/Settings/src/com/android/settings/backup/ |
D | BackupSettingsHelper.java | 127 String intentString = in isBackupProvidedByManufacturer() local 130 return intentString != null && !intentString.isEmpty(); in isBackupProvidedByManufacturer() 147 String intentString = in getIntentProvidedByManufacturer() local 149 if (intentString != null && !intentString.isEmpty()) { in getIntentProvidedByManufacturer() 151 return Intent.parseUri(intentString, 0); in getIntentProvidedByManufacturer()
|
/packages/apps/Car/LensPicker/src/com/android/support/car/lenspicker/ |
D | LensPickerUtils.java | 106 String intentString = sharedPrefs.getString(LAST_LAUNCHED_INTENT_KEY, null); in getLastLaunchedAppInfo() local 108 if (facetId == null || packageName == null || intentString == null) { in getLastLaunchedAppInfo() 112 return new AppLaunchInformation(facetId, packageName, intentString); in getLastLaunchedAppInfo() 157 public AppLaunchInformation(String facetId, String packageName, String intentString) { in AppLaunchInformation() argument 160 mIntentString = intentString; in AppLaunchInformation()
|
D | LensPickerTrampolineActivity.java | 170 String intentString = info.getIntentString(); in maybeRelaunchLastIntent() local 175 intentString)); in maybeRelaunchLastIntent() 180 launchIntent = Intent.parseUri(intentString, Intent.URI_INTENT_SCHEME); in maybeRelaunchLastIntent() 182 Log.e(TAG, "Could not parse intent string: " + intentString); in maybeRelaunchLastIntent()
|
/packages/apps/Car/Cluster/src/android/car/cluster/ |
D | MainClusterActivity.java | 430 String intentString = context.getString(R.string.freeNavigationIntent); in getNavigationActivity() local 432 if (intentString == null) { in getNavigationActivity() 436 Log.i(TAG, "Free navigation intent: " + intentString); in getNavigationActivity() 439 Intent intent = Intent.parseUri(intentString, Intent.URI_INTENT_SCHEME); in getNavigationActivity() 458 Log.e(TAG, "Unable to parse free navigation activity intent: '" + intentString + "'"); in getNavigationActivity()
|