Searched defs:property (Results 51 - 61 of 61) sorted by relevance

123

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DGsmCdmaPhone.java295 // Sets operator properties by retrieving from build-time system property
313 // Sets iso country property by retrieving from build-time system property
328 * Sets PROPERTY_ICC_OPERATOR_ISO_COUNTRY property
677 public void setSystemProperty(String property, String value) { argument
682 TelephonyManager.setTelephonyProperty(mPhoneId, property, value);
684 super.setSystemProperty(property, value);
1548 public String getSystemProperty(String property, String defValue) { argument
1553 return TelephonyManager.getTelephonyProperty(mPhoneId, property, defValue);
1555 return super.getSystemProperty(property, defValu
[all...]
H A DServiceStateTracker.java516 // system setting property AIRPLANE_MODE_ON is set in Settings.
1965 // no system property found for the roaming indicators for home system
3075 // Sets operator alpha property by retrieving from
3076 // build-time system property
3275 // If the offset is (0, false) and the time zone property
3276 // is set, use the time zone property rather than GMT.
4401 public String getSystemProperty(String property, String defValue) { argument
4402 return TelephonyManager.getTelephonyProperty(mPhone.getPhoneId(), property, defValue);
H A DPhone.java371 * Set a system property, unless we're in unit test mode
374 public void setSystemProperty(String property, String value) { argument
378 SystemProperties.set(property, value);
382 * Set a system property, unless we're in unit test mode
385 public String getSystemProperty(String property, String defValue) { argument
389 return SystemProperties.get(property, defValue);
456 * By default old phones won't have the property set but do generate
457 * the RIL_UNSOL_CALL_RING so the default if there is no property is
472 // The locale from the "ro.carrier" system property or R.array.carrier_properties.
2680 * TODO: Adding a function for each property i
[all...]
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntry.java738 private final String mPhoneticName; // We won't have this in "TITLE" property.
1926 // Probably the "TITLE" property comes before the "ORG" property via
1994 * SORT-STRING, since it is regitimate property to be understood.
2063 * property
2126 public void addProperty(final VCardProperty property) { argument
2127 final String propertyName = property.getName();
2128 final Map<String, Collection<String>> paramMap = property.getParameterMap();
2129 final List<String> propertyValueList = property.getValueList();
2130 byte[] propertyBytes = property
[all...]
/frameworks/av/services/audiopolicy/managerdefault/
H A DAudioPolicyManager.cpp615 void AudioPolicyManager::setSystemProperty(const char* property, const char* value) argument
617 ALOGV("setSystemProperty() property %s, value %s", property, value);
2294 //If duration is less than minimum value defined in property, return false
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java2521 * Gets the value of a boolean property.
2523 * @param property The property.
2526 private boolean getBooleanProperty(int property) { argument
2527 return (mBooleanProperties & property) != 0;
2531 * Sets a boolean property.
2533 * @param property The property.
2538 private void setBooleanProperty(int property, boolean value) { argument
2541 mBooleanProperties |= property;
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DTelephonyManager.java1088 // read from the system property.
1092 // read from the system property.
1133 // When the system property CURRENT_ACTIVE_PHONE, has not been set,
1134 // use the system property for default network type.
3464 * Sets the telephony property with the value specified.
3468 public static void setTelephonyProperty(int phoneId, String property, String value) { argument
3471 String prop = SystemProperties.get(property);
3483 " property=" + property + " value: " + value + " prop=" + prop);
3502 if (property
3607 getTelephonyProperty(int phoneId, String property, String defaultVal) argument
[all...]
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp553 char property[PROPERTY_VALUE_MAX]; local
555 if (property_get(propName, property, NULL) > 0) {
556 density = atoi(property);
576 // The density of the device is provided by a build property
581 ALOGE("ro.sf.lcd_density must be defined as a build property");
H A DSurfaceFlinger_hwc1.cpp586 char property[PROPERTY_VALUE_MAX]; local
588 if (property_get(propName, property, NULL) > 0) {
589 density = atoi(property);
612 // The density of the device is provided by a build property
617 ALOGE("ro.sf.lcd_density must be defined as a build property");
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
H A DPhoneMock.java100 public void setSystemProperty(String property, String value) { argument
104 public String getSystemProperty(String property, String defValue) { argument
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 5501 milliseconds

123