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

/frameworks/base/core/java/com/android/internal/app/
H A DLocaleStore.java186 String iso = tm.getSimCountryIso().toUpperCase(Locale.US);
187 if (!iso.isEmpty()) {
188 result.add(iso);
191 iso = tm.getNetworkCountryIso().toUpperCase(Locale.US);
192 if (!iso.isEmpty()) {
193 result.add(iso);
/frameworks/rs/tests/java_api/CannyLive/src/com/android/example/cannylive/
H A DCameraView.java238 int iso = (int) (getIso() * scaleFactor);
239 iso = Math.min(mCameraOps.getIsoMax(), iso);
240 mCameraOps.setIso(Math.max(mCameraOps.getIsoMin(), iso));
264 public void setIso(int iso) { argument
265 mCameraOps.setIso(iso);
H A DCameraOps.java657 public void setIso(int iso) { argument
658 mIso = iso;
/frameworks/rs/tests/java_api/RsCameraDemo/src/com/android/example/rscamera/
H A DCameraView.java237 int iso = (int) (getIso() * scaleFactor);
238 iso = Math.min(mCameraOps.getIsoMax(), iso);
239 mCameraOps.setIso(Math.max(mCameraOps.getIsoMin(), iso));
263 public void setIso(int iso) { argument
264 mCameraOps.setIso(iso);
H A DMainActivity.java50 mISOButton = findViewById(R.id.iso);
H A DCameraOps.java620 public void setIso(int iso) { argument
621 mIso = iso;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DExifInterfaceTest.java116 public final String iso; field in class:ExifInterfaceTest.ExpectedValue
159 iso = getString(typedArray, 25);
310 assertStringTag(exifInterface, ExifInterface.TAG_ISO_SPEED_RATINGS, expectedValue.iso);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DServiceStateTracker.java2873 String iso = "";
2877 iso = MccTable.countryCodeForMcc(Integer.parseInt(mcc));
2882 tm.setNetworkCountryIsoForPhone(mPhone.getPhoneId(), iso);
2885 if (!mNitzUpdatedTime && !mcc.equals("000") && !TextUtils.isEmpty(iso)
2893 List<String> uniqueZoneIds = TimeUtils.getTimeZoneIdsWithUniqueOffsets(iso);
2897 log("pollStateDone: no nitz but one TZ for iso-cc=" + iso
2902 + " mcc=" + mcc + " iso=" + iso);
2907 + " unique offsets for iso
[all...]
H A DMccTable.java60 MccEntry(int mnc, String iso, int smallestDigitsMCC) { argument
61 if (iso == null) {
65 mIso = iso;
453 * http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/index.html
H A DGsmCdmaPhone.java319 // Sets iso country property by retrieving from build-time system property
340 logd("setIsoCountryProperty: clear 'gsm.sim.operator.iso-country'");
343 String iso = "";
345 iso = MccTable.countryCodeForMcc(Integer.parseInt(
353 logd("setIsoCountryProperty: set 'gsm.sim.operator.iso-country' to iso=" + iso);
354 tm.setSimCountryIsoForPhone(mPhoneId, iso);
/frameworks/support/exifinterface/tests/src/android/support/media/
H A DExifInterfaceTest.java251 public final String iso; field in class:ExifInterfaceTest.ExpectedValue
294 iso = getString(typedArray, 25);
766 expectedValue.iso);
/frameworks/base/telephony/java/android/telephony/
H A DTelephonyManager.java5946 public void setSimCountryIso(String iso) { argument
5948 setSimCountryIsoForPhone(phoneId, iso);
5956 public void setSimCountryIsoForPhone(int phoneId, String iso) { argument
5958 TelephonyProperties.PROPERTY_ICC_OPERATOR_ISO_COUNTRY, iso);
6273 * @param iso the ISO country code equivalent of the current registered
6276 public void setNetworkCountryIso(String iso) { argument
6278 setNetworkCountryIsoForPhone(phoneId, iso);
6285 * @param iso the ISO country code equivalent of the current registered
6288 public void setNetworkCountryIsoForPhone(int phoneId, String iso) { argument
6291 TelephonyProperties.PROPERTY_OPERATOR_ISO_COUNTRY, iso);
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
H A DCameraTestUtils.java2081 int iso = exif.getAttributeInt(ExifInterface.TAG_ISO, /*defaultValue*/-1);
2084 collector.expectEquals("Exif TAG_ISO is incorrect", expectedIso, iso);
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_DngCreator.cpp1373 uint16_t iso = static_cast<uint16_t>(tempIso); local
1374 BAIL_IF_INVALID_RET_NULL_SP(writer->addEntry(TAG_ISOSPEEDRATINGS, 1, &iso,

Completed in 336 milliseconds