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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DNitzStateMachine.java247 // zone set explicitly and (3) the iso tells us the country is NOT one that uses
392 String iso = mDeviceState.getNetworkCountryIsoForPhone();
399 } else if (!TextUtils.isEmpty(iso)) {
401 mTimeZoneLookupHelper.lookupByNitzCountry(newNitzData, iso);
404 // We don't have a valid iso country code. This is
429 + " iso=" + iso + " mGotCountryCode=" + mGotCountryCode
599 String iso = mDeviceState.getNetworkCountryIsoForPhone();
600 if (!TextUtils.isEmpty(iso)) {
601 updateTimeZoneByNetworkCountryCode(iso);
646 updateTimeZoneByNetworkCountryCode(String iso) argument
[all...]
H A DMccTable.java59 MccEntry(int mnc, String iso, int smallestDigitsMCC) { argument
60 if (iso == null) {
64 mIso = iso;
426 * http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/index.html
H A DGsmCdmaPhone.java338 // Sets iso country property by retrieving from build-time system property
358 logd("setIsoCountryProperty: clear 'gsm.sim.operator.iso-country'");
361 String iso = "";
363 iso = MccTable.countryCodeForMcc(Integer.parseInt(
371 logd("setIsoCountryProperty: set 'gsm.sim.operator.iso-country' to iso=" + iso);
372 tm.setSimCountryIsoForPhone(mPhoneId, iso);
/frameworks/base/core/java/com/android/internal/app/
H A DLocaleStore.java193 String iso = tm.getSimCountryIso().toUpperCase(Locale.US);
194 if (!iso.isEmpty()) {
195 result.add(iso);
198 iso = tm.getNetworkCountryIso().toUpperCase(Locale.US);
199 if (!iso.isEmpty()) {
200 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/support/exifinterface/src/androidTest/java/androidx/exifinterface/media/
H A DExifInterfaceTest.java252 public final String iso; field in class:ExifInterfaceTest.ExpectedValue
295 iso = getString(typedArray, 25);
767 expectedValue.iso);
/frameworks/base/telephony/java/android/telephony/
H A DTelephonyManager.java6777 public void setSimCountryIso(String iso) { argument
6779 setSimCountryIsoForPhone(phoneId, iso);
6787 public void setSimCountryIsoForPhone(int phoneId, String iso) { argument
6789 TelephonyProperties.PROPERTY_ICC_OPERATOR_ISO_COUNTRY, iso);
7145 * @param iso the ISO country code equivalent of the current registered
7148 public void setNetworkCountryIso(String iso) { argument
7150 setNetworkCountryIsoForPhone(phoneId, iso);
7157 * @param iso the ISO country code equivalent of the current registered
7160 public void setNetworkCountryIsoForPhone(int phoneId, String iso) { argument
7163 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.cpp1372 uint16_t iso = static_cast<uint16_t>(tempIso); local
1373 BAIL_IF_INVALID_RET_NULL_SP(writer->addEntry(TAG_ISOSPEEDRATINGS, 1, &iso,

Completed in 302 milliseconds