Searched defs:mProfile (Results 1 - 10 of 10) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/
H A DDynamicGrid.java31 private DeviceProfile mProfile; field in class:DynamicGrid
95 mProfile = new DeviceProfile(context, deviceProfiles,
103 return mProfile;
108 "Wd: " + mProfile.minWidthDps + ", Hd: " + mProfile.minHeightDps +
109 ", W: " + mProfile.widthPx + ", H: " + mProfile.heightPx +
110 " [r: " + mProfile.numRows + ", c: " + mProfile.numColumns +
111 ", is: " + mProfile
[all...]
/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DLocalBluetoothProfileManager.java220 final LocalBluetoothProfile mProfile; field in class:LocalBluetoothProfileManager.StateChangedHandler
223 mProfile = profile;
237 Log.i(TAG, "Failed to connect " + mProfile + " device");
240 cachedDevice.onProfileStateChanged(mProfile, newState);
254 PanProfile panProfile = (PanProfile) mProfile;
/packages/apps/Settings/src/com/android/settings/vpn2/
H A DVpnDialog.java45 private final VpnProfile mProfile; field in class:VpnDialog
72 mProfile = profile;
103 mName.setText(mProfile.name);
104 mType.setSelection(mProfile.type);
105 mServer.setText(mProfile.server);
106 if (mProfile.saveLogin) {
107 mUsername.setText(mProfile.username);
108 mPassword.setText(mProfile.password);
110 mSearchDomains.setText(mProfile.searchDomains);
111 mDnsServers.setText(mProfile
[all...]
H A DVpnSettings.java401 private VpnProfile mProfile; field in class:VpnSettings.VpnPreference
409 mProfile = profile;
414 return mProfile;
418 mProfile = profile;
431 setSummary(types[mProfile.type]);
437 setTitle(mProfile.name);
447 (result = mProfile.name.compareTo(another.mProfile.name)) == 0 &&
448 (result = mProfile.type - another.mProfile
[all...]
/packages/services/Telephony/src/com/android/phone/sip/
H A DSipSettings.java80 private SipProfile mProfile; // profile that's being edited field in class:SipSettings
90 SipProfile mProfile; field in class:SipSettings.SipPreference
97 return mProfile;
101 mProfile = p;
109 int profileUid = mProfile.getCallingUid();
110 boolean isPrimary = mProfile.getUriString().equals(
192 if (mProfile != null) {
193 Log.v(TAG, "Removed Profile:" + mProfile.getProfileName());
194 deleteProfile(mProfile);
354 handleProfileClick(((SipPreference) pref).mProfile);
[all...]
/packages/apps/LegacyCamera/src/com/android/camera/
H A DEffectsRecorder.java82 private CamcorderProfile mProfile; field in class:EffectsRecorder
168 mProfile = profile;
408 + mProfile.videoFrameWidth + ", " + mProfile.videoFrameHeight);
412 tmp = mProfile.videoFrameWidth;
413 mProfile.videoFrameWidth = mProfile.videoFrameHeight;
414 mProfile.videoFrameHeight = tmp;
418 "recordingWidth", mProfile.videoFrameWidth,
419 "recordingHeight", mProfile
[all...]
H A DVideoCamera.java214 private CamcorderProfile mProfile; field in class:VideoCamera
601 intent.setDataAndType(mCurrentVideoUri, convertOutputFormatToMimeType(mProfile.fileFormat));
780 mProfile = CamcorderProfile.get(mCameraId, quality);
794 mDesiredPreviewWidth = mProfile.videoFrameWidth;
795 mDesiredPreviewHeight = mProfile.videoFrameHeight;
809 (double) mProfile.videoFrameWidth / mProfile.videoFrameHeight);
819 (double) mProfile.videoFrameWidth / mProfile.videoFrameHeight);
1203 mMediaRecorder.setProfile(mProfile);
[all...]
/packages/apps/Camera/src/com/android/camera/
H A DEffectsRecorder.java140 private CamcorderProfile mProfile; field in class:EffectsRecorder
340 mProfile = profile;
583 int videoFrameWidth = mProfile.videoFrameWidth;
584 int videoFrameHeight = mProfile.videoFrameHeight;
596 "recordingProfile", mProfile,
711 if (mProfile == null) {
916 setInputValue(recorder, "recordingProfile", mProfile);
H A DVideoModule.java188 private CamcorderProfile mProfile; field in class:VideoModule
611 intent.setDataAndType(mCurrentVideoUri, convertOutputFormatToMimeType(mProfile.fileFormat));
744 mProfile = CamcorderProfile.get(mCameraId, quality);
760 mDesiredPreviewWidth = mProfile.videoFrameWidth;
761 mDesiredPreviewHeight = mProfile.videoFrameHeight;
775 (double) mProfile.videoFrameWidth / mProfile.videoFrameHeight);
780 mDesiredPreviewWidth = mProfile.videoFrameWidth;
781 mDesiredPreviewHeight = mProfile.videoFrameHeight;
789 (double) mProfile
[all...]
/packages/apps/Camera2/src/com/android/camera/
H A DVideoModule.java142 private CamcorderProfile mProfile; field in class:VideoModule
449 intent.setDataAndType(mCurrentVideoUri, convertOutputFormatToMimeType(mProfile.fileFormat));
593 mProfile = CamcorderProfile.get(mCameraId, quality);
605 mDesiredPreviewWidth = mProfile.videoFrameWidth;
606 mDesiredPreviewHeight = mProfile.videoFrameHeight;
620 (double) mProfile.videoFrameWidth / mProfile.videoFrameHeight);
631 (double) mProfile.videoFrameWidth / mProfile.videoFrameHeight);
975 mMediaRecorder.setProfile(mProfile);
[all...]

Completed in 255 milliseconds