Searched refs:iso (Results 1 - 12 of 12) 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/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 DMainActivity.java50 mISOButton = (Button) 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);
311 assertStringTag(exifInterface, ExifInterface.TAG_ISO_SPEED_RATINGS, expectedValue.iso);
/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;
406 * http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/index.html
H A DServiceStateTracker.java2709 String iso = "";
2713 iso = MccTable.countryCodeForMcc(Integer.parseInt(mcc));
2720 tm.setNetworkCountryIsoForPhone(mPhone.getPhoneId(), iso);
2725 if (!mNitzUpdatedTime && !mcc.equals("000") && !TextUtils.isEmpty(iso) &&
2733 ArrayList<TimeZone> uniqueZones = TimeUtils.getTimeZonesWithUniqueOffsets(iso);
2737 log("pollStateDone: no nitz but one TZ for iso-cc=" + iso +
2745 " unique offsets for iso-cc='" + iso +
2754 fixTimeZone(iso);
[all...]
H A DGsmCdmaPhone.java311 // Sets iso country property by retrieving from build-time system property
332 logd("setIsoCountryProperty: clear 'gsm.sim.operator.iso-country'");
335 String iso = "";
337 iso = MccTable.countryCodeForMcc(Integer.parseInt(
345 logd("setIsoCountryProperty: set 'gsm.sim.operator.iso-country' to iso=" + iso);
346 tm.setSimCountryIsoForPhone(mPhoneId, iso);
/frameworks/base/media/jni/
H A Dandroid_media_ExifInterface.cpp175 if (image_data.iso) {
178 String8::format("%u", image_data.iso));
/frameworks/base/telephony/java/android/telephony/
H A DTelephonyManager.java5042 public void setSimCountryIso(String iso) { argument
5044 setSimCountryIsoForPhone(phoneId, iso);
5052 public void setSimCountryIsoForPhone(int phoneId, String iso) { argument
5054 TelephonyProperties.PROPERTY_ICC_OPERATOR_ISO_COUNTRY, iso);
5291 * @param iso the ISO country code equivalent of the current registered
5294 public void setNetworkCountryIso(String iso) { argument
5296 setNetworkCountryIsoForPhone(phoneId, iso);
5303 * @param iso the ISO country code equivalent of the current registered
5306 public void setNetworkCountryIsoForPhone(int phoneId, String iso) { argument
5309 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 5739 milliseconds