Home
last modified time | relevance | path

Searched refs:hasProfile (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/preference/
DContactsPreferenceActivity.java203 boolean hasProfile = false; in onProfileLoaded()
208 hasProfile = cursor.getInt(ProfileQuery.CONTACT_IS_USER_PROFILE) == 1; in onProfileLoaded()
213 if (hasProfile && TextUtils.isEmpty(displayName)) { in onProfileLoaded()
218 fragment.updateMyInfoPreference(hasProfile, displayName, contactId, displayNameSource); in onProfileLoaded()
DDisplayOptionsPreferenceFragment.java264 public void updateMyInfoPreference(boolean hasProfile, String displayName, long contactId, in updateMyInfoPreference() argument
266 final CharSequence summary = !hasProfile ? in updateMyInfoPreference()
272 mHasProfile = hasProfile; in updateMyInfoPreference()
/packages/apps/LegacyCamera/src/com/android/camera/
DCameraSettings.java89 if (CamcorderProfile.hasProfile(cameraId, quality)) { in getDefaultVideoQuality()
458 if (CamcorderProfile.hasProfile(mCameraId, CamcorderProfile.QUALITY_1080P)) { in getSupportedVideoQuality()
461 if (CamcorderProfile.hasProfile(mCameraId, CamcorderProfile.QUALITY_720P)) { in getSupportedVideoQuality()
464 if (CamcorderProfile.hasProfile(mCameraId, CamcorderProfile.QUALITY_480P)) { in getSupportedVideoQuality()
/packages/apps/Camera2/src/com/android/camera/settings/
DSettingsUtil.java338 && CamcorderProfile.hasProfile(cameraId, sVideoQualities[i])) { in getNextSupportedVideoQualityIndex()
/packages/apps/Camera2/src/com/android/camera/
DVideoModule.java765 if (CamcorderProfile.hasProfile(mCameraId, quality) == false) { in readVideoPreferences()