Home
last modified time | relevance | path

Searched refs:iso (Results 1 – 14 of 14) sorted by relevance

/frameworks/base/core/java/com/android/internal/app/
DLocaleStore.java186 String iso = tm.getSimCountryIso().toUpperCase(Locale.US); in getSimCountries() local
187 if (!iso.isEmpty()) { in getSimCountries()
188 result.add(iso); in getSimCountries()
191 iso = tm.getNetworkCountryIso().toUpperCase(Locale.US); in getSimCountries()
192 if (!iso.isEmpty()) { in getSimCountries()
193 result.add(iso); in getSimCountries()
/frameworks/rs/tests/java_api/CannyLive/src/com/android/example/cannylive/
DCameraView.java238 int iso = (int) (getIso() * scaleFactor); in touchScreen() local
239 iso = Math.min(mCameraOps.getIsoMax(), iso); in touchScreen()
240 mCameraOps.setIso(Math.max(mCameraOps.getIsoMin(), iso)); in touchScreen() local
264 public void setIso(int iso) { in setIso() argument
265 mCameraOps.setIso(iso); in setIso()
DCameraOps.java657 public void setIso(int iso) { in setIso() argument
658 mIso = iso; in setIso()
/frameworks/rs/tests/java_api/RsCameraDemo/src/com/android/example/rscamera/
DCameraView.java237 int iso = (int) (getIso() * scaleFactor); in touchScreen() local
238 iso = Math.min(mCameraOps.getIsoMax(), iso); in touchScreen()
239 mCameraOps.setIso(Math.max(mCameraOps.getIsoMin(), iso)); in touchScreen() local
263 public void setIso(int iso) { in setIso() argument
264 mCameraOps.setIso(iso); in setIso()
DMainActivity.java50 mISOButton = findViewById(R.id.iso); in onCreate()
DCameraOps.java620 public void setIso(int iso) {
621 mIso = iso;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
DExifInterfaceTest.java116 public final String iso; field in ExifInterfaceTest.ExpectedValue
159 iso = getString(typedArray, 25); in ExpectedValue()
310 assertStringTag(exifInterface, ExifInterface.TAG_ISO_SPEED_RATINGS, expectedValue.iso); in compareWithExpectedValue()
/frameworks/support/exifinterface/tests/src/android/support/media/
DExifInterfaceTest.java136 public final String iso; field in ExifInterfaceTest.ExpectedValue
179 iso = getString(typedArray, 25); in ExpectedValue()
412 assertStringTag(exifInterface, ExifInterface.TAG_ISO_SPEED_RATINGS, expectedValue.iso); in compareWithExpectedValue()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DMccTable.java60 MccEntry(int mnc, String iso, int smallestDigitsMCC) { in MccEntry() argument
61 if (iso == null) { in MccEntry()
65 mIso = iso; in MccEntry()
DServiceStateTracker.java2796 String iso = ""; in pollStateDone() local
2800 iso = MccTable.countryCodeForMcc(Integer.parseInt(mcc)); in pollStateDone()
2805 tm.setNetworkCountryIsoForPhone(mPhone.getPhoneId(), iso); in pollStateDone() local
2808 if (!mNitzUpdatedTime && !mcc.equals("000") && !TextUtils.isEmpty(iso) in pollStateDone()
2816 ArrayList<TimeZone> uniqueZones = TimeUtils.getTimeZonesWithUniqueOffsets(iso); in pollStateDone()
2820 log("pollStateDone: no nitz but one TZ for iso-cc=" + iso in pollStateDone()
2825 + " mcc=" + mcc + " iso=" + iso); in pollStateDone()
2830 + " unique offsets for iso-cc='" + iso in pollStateDone()
2843 fixTimeZone(iso); in pollStateDone()
3535 String iso = ((TelephonyManager) mPhone.getContext(). in setTimeFromNITZString() local
[all …]
DGsmCdmaPhone.java338 String iso = ""; in setIsoCountryProperty() local
340 iso = MccTable.countryCodeForMcc(Integer.parseInt( in setIsoCountryProperty()
348 logd("setIsoCountryProperty: set 'gsm.sim.operator.iso-country' to iso=" + iso); in setIsoCountryProperty()
349 tm.setSimCountryIsoForPhone(mPhoneId, iso); in setIsoCountryProperty()
/frameworks/base/telephony/java/android/telephony/
DTelephonyManager.java5758 public void setSimCountryIso(String iso) { in setSimCountryIso() argument
5760 setSimCountryIsoForPhone(phoneId, iso); in setSimCountryIso()
5768 public void setSimCountryIsoForPhone(int phoneId, String iso) { in setSimCountryIsoForPhone() argument
5770 TelephonyProperties.PROPERTY_ICC_OPERATOR_ISO_COUNTRY, iso); in setSimCountryIsoForPhone()
6048 public void setNetworkCountryIso(String iso) { in setNetworkCountryIso() argument
6050 setNetworkCountryIsoForPhone(phoneId, iso); in setNetworkCountryIso()
6060 public void setNetworkCountryIsoForPhone(int phoneId, String iso) { in setNetworkCountryIsoForPhone() argument
6063 TelephonyProperties.PROPERTY_OPERATOR_ISO_COUNTRY, iso); in setNetworkCountryIsoForPhone()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
DCameraTestUtils.java2081 int iso = exif.getAttributeInt(ExifInterface.TAG_ISO, /*defaultValue*/-1); in verifyJpegExifExtraTags() local
2084 collector.expectEquals("Exif TAG_ISO is incorrect", expectedIso, iso); in verifyJpegExifExtraTags()
/frameworks/base/core/jni/
Dandroid_hardware_camera2_DngCreator.cpp1373 uint16_t iso = static_cast<uint16_t>(tempIso); in DngCreator_setup() local
1374 BAIL_IF_INVALID_RET_NULL_SP(writer->addEntry(TAG_ISOSPEEDRATINGS, 1, &iso, in DngCreator_setup()