Home
last modified time | relevance | path

Searched refs:iso (Results 1 – 22 of 22) sorted by relevance

/frameworks/base/core/java/com/android/internal/app/
DLocaleStore.java186 String iso = tm.getSimCountryIso().toUpperCase(Locale.US); in getSimCountries() local
187 if (!iso.isEmpty()) { in getSimCountries()
188 result.add(iso); in getSimCountries()
191 iso = tm.getNetworkCountryIso().toUpperCase(Locale.US); in getSimCountries()
192 if (!iso.isEmpty()) { in getSimCountries()
193 result.add(iso); in getSimCountries()
/frameworks/rs/java/tests/RsCameraDemo/src/com/android/example/rscamera/
DCameraView.java237 int iso = (int) (getIso() * scaleFactor); in touchScreen() local
238 iso = Math.min(mCameraOps.getIsoMax(), iso); in touchScreen()
239 mCameraOps.setIso(Math.max(mCameraOps.getIsoMin(), iso)); in touchScreen() local
263 public void setIso(int iso) { in setIso() argument
264 mCameraOps.setIso(iso); in setIso()
DMainActivity.java50 mISOButton = (Button) findViewById(R.id.iso); in onCreate()
DCameraOps.java620 public void setIso(int iso) {
621 mIso = iso;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
DExifInterfaceTest.java116 public final String iso; field in ExifInterfaceTest.ExpectedValue
159 iso = getString(typedArray, 25); in ExpectedValue()
311 assertStringTag(exifInterface, ExifInterface.TAG_ISO_SPEED_RATINGS, expectedValue.iso); in compareWithExpectedValue()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DMccTable.java57 MccEntry(int mnc, String iso, int smallestDigitsMCC) { in MccEntry() argument
58 if (iso == null) { in MccEntry()
62 mIso = iso; in MccEntry()
DServiceStateTracker.java2733 String iso = ""; in pollStateDoneGsm() local
2737 iso = MccTable.countryCodeForMcc(Integer.parseInt(mcc)); in pollStateDoneGsm()
2744 tm.setNetworkCountryIsoForPhone(mPhone.getPhoneId(), iso); in pollStateDoneGsm() local
2749 if (!mNitzUpdatedTime && !mcc.equals("000") && !TextUtils.isEmpty(iso) && in pollStateDoneGsm()
2757 ArrayList<TimeZone> uniqueZones = TimeUtils.getTimeZonesWithUniqueOffsets(iso); in pollStateDoneGsm()
2761 log("pollStateDone: no nitz but one TZ for iso-cc=" + iso + in pollStateDoneGsm()
2769 " unique offsets for iso-cc='" + iso + in pollStateDoneGsm()
2778 fixTimeZone(iso); in pollStateDoneGsm()
3907 String iso = ((TelephonyManager) mPhone.getContext(). in setTimeFromNITZString() local
3914 if (iso != null && iso.length() > 0) { in setTimeFromNITZString()
[all …]
DGsmCdmaPhone.java335 String iso = ""; in setIsoCountryProperty() local
337 iso = MccTable.countryCodeForMcc(Integer.parseInt( in setIsoCountryProperty()
345 logd("setIsoCountryProperty: set 'gsm.sim.operator.iso-country' to iso=" + iso); in setIsoCountryProperty()
346 tm.setSimCountryIsoForPhone(mPhoneId, iso); in setIsoCountryProperty()
/frameworks/base/media/jni/
Dandroid_media_ExifInterface.cpp175 if (image_data.iso) { in getRawAttributes()
178 String8::format("%u", image_data.iso)); in getRawAttributes()
/frameworks/base/telephony/java/android/telephony/
DTelephonyManager.java5043 public void setSimCountryIso(String iso) { in setSimCountryIso() argument
5045 setSimCountryIsoForPhone(phoneId, iso); in setSimCountryIso()
5053 public void setSimCountryIsoForPhone(int phoneId, String iso) { in setSimCountryIsoForPhone() argument
5055 TelephonyProperties.PROPERTY_ICC_OPERATOR_ISO_COUNTRY, iso); in setSimCountryIsoForPhone()
5295 public void setNetworkCountryIso(String iso) { in setNetworkCountryIso() argument
5297 setNetworkCountryIsoForPhone(phoneId, iso); in setNetworkCountryIso()
5307 public void setNetworkCountryIsoForPhone(int phoneId, String iso) { in setNetworkCountryIsoForPhone() argument
5310 TelephonyProperties.PROPERTY_OPERATOR_ISO_COUNTRY, iso); in setNetworkCountryIsoForPhone()
/frameworks/base/docs/html-intl/intl/zh-cn/guide/topics/resources/
Dproviding-resources.jd316 <a href="http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en1.html">ISO
/frameworks/base/docs/html-intl/intl/zh-tw/guide/topics/resources/
Dproviding-resources.jd314 …O 639-1</a> 語言代碼定義,後面可以視需要加上兩個字母的 <a href="http://www.iso.org/iso/en/prods-services/iso3166ma/02is…
/frameworks/base/docs/html-intl/intl/ko/guide/topics/resources/
Dproviding-resources.jd316 뒤이어 두 글자의 <a href="http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en…
/frameworks/base/docs/html-intl/intl/ru/guide/topics/resources/
Dproviding-resources.jd316 …<a href="http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en1.html">I…
/frameworks/base/docs/html-intl/intl/ja/guide/topics/resources/
Dproviding-resources.jd314 … 639-1</a> 言語コードで定義し、オプションで、2 文字の <a href="http://www.iso.org/iso/en/prods-services/iso3166ma/02is…
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
DCameraTestUtils.java2081 int iso = exif.getAttributeInt(ExifInterface.TAG_ISO, /*defaultValue*/-1); in verifyJpegExifExtraTags() local
2084 collector.expectEquals("Exif TAG_ISO is incorrect", expectedIso, iso); in verifyJpegExifExtraTags()
/frameworks/base/core/jni/
Dandroid_hardware_camera2_DngCreator.cpp1372 uint16_t iso = static_cast<uint16_t>(tempIso); in DngCreator_setup() local
1373 BAIL_IF_INVALID_RET_NULL_SP(writer->addEntry(TAG_ISOSPEEDRATINGS, 1, &iso, in DngCreator_setup()
/frameworks/base/docs/html-intl/intl/in/guide/topics/resources/
Dproviding-resources.jd316 dua huruf <a href="http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en…
/frameworks/base/docs/html-intl/intl/id/guide/topics/resources/
Dproviding-resources.jd316 dua huruf <a href="http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en…
/frameworks/base/docs/html/guide/topics/resources/
Dproviding-resources.jd324 href="http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en1.html">ISO
/frameworks/base/docs/html-intl/intl/pt-br/guide/topics/resources/
Dproviding-resources.jd316 …<a href="http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en1.html">I…
/frameworks/base/docs/html-intl/intl/vi/guide/topics/resources/
Dproviding-resources.jd316 …<a href="http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en1.html">I…