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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DMccTable.java57 MccEntry(int mnc, String iso, int smallestDigitsMCC) { argument
58 if (iso == null) {
62 mIso = iso;
398 * http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/index.html
/frameworks/rs/java/tests/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/base/core/jni/
H A Dandroid_hardware_camera2_DngCreator.cpp1350 uint16_t iso = static_cast<uint16_t>(tempIso); local
1351 BAIL_IF_INVALID_RET_NULL_SP(writer->addEntry(TAG_ISOSPEEDRATINGS, 1, &iso,
/frameworks/base/telephony/java/android/telephony/
H A DTelephonyManager.java4456 public void setSimCountryIso(String iso) { argument
4458 setSimCountryIsoForPhone(phoneId, iso);
4466 public void setSimCountryIsoForPhone(int phoneId, String iso) { argument
4468 TelephonyProperties.PROPERTY_ICC_OPERATOR_ISO_COUNTRY, iso);
4705 * @param iso the ISO country code equivalent of the current registered
4708 public void setNetworkCountryIso(String iso) { argument
4710 setNetworkCountryIsoForPhone(phoneId, iso);
4717 * @param iso the ISO country code equivalent of the current registered
4720 public void setNetworkCountryIsoForPhone(int phoneId, String iso) { argument
4723 TelephonyProperties.PROPERTY_OPERATOR_ISO_COUNTRY, iso);
[all...]

Completed in 174 milliseconds