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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
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 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...]
/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/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 DCameraOps.java620 public void setIso(int iso) { argument
621 mIso = 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/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,
/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...]

Completed in 317 milliseconds