Searched refs:property (Results 51 - 75 of 82) sorted by relevance

1234

/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCDMALTEPhone.java188 * build-time operator numeric property
341 //Change the system property
343 // Sets operator alpha property by retrieving from build-time system property
349 // Sets operator numeric property by retrieving from build-time system property
356 // Sets iso country property by retrieving from build-time system property
367 public void setSystemProperty(String property, String value) { argument
371 TelephonyManager.setTelephonyProperty(mPhoneId, property, valu
374 getSystemProperty(String property, String defValue) argument
[all...]
H A DCDMAPhone.java194 // Sets operator properties by retrieving from build-time system property
1391 public void setSystemProperty(String property, String value) { argument
1392 super.setSystemProperty(property, value);
1400 public String getSystemProperty(String property, String defValue) { argument
1401 return super.getSystemProperty(property, defValue);
1670 * Sets PROPERTY_ICC_OPERATOR_ISO_COUNTRY property
1696 * build-time operator numeric property
/frameworks/base/libs/hwui/
H A DFontRenderer.cpp119 char property[PROPERTY_VALUE_MAX]; local
120 if (property_get(PROPERTY_TEXT_SMALL_CACHE_WIDTH, property, NULL) > 0) {
121 mSmallCacheWidth = atoi(property);
124 if (property_get(PROPERTY_TEXT_SMALL_CACHE_HEIGHT, property, NULL) > 0) {
125 mSmallCacheHeight = atoi(property);
128 if (property_get(PROPERTY_TEXT_LARGE_CACHE_WIDTH, property, NULL) > 0) {
129 mLargeCacheWidth = atoi(property);
132 if (property_get(PROPERTY_TEXT_LARGE_CACHE_HEIGHT, property, NULL) > 0) {
133 mLargeCacheHeight = atoi(property);
H A DPathCache.cpp155 char property[PROPERTY_VALUE_MAX]; local
156 if (property_get(PROPERTY_PATH_CACHE_SIZE, property, NULL) > 0) {
157 INIT_LOGD(" Setting %s cache size to %sMB", name, property);
158 setMaxSize(MB(atof(property)));
H A DTessellationCache.cpp304 char property[PROPERTY_VALUE_MAX]; local
305 if (property_get(PROPERTY_VERTEX_CACHE_SIZE, property, NULL) > 0) {
306 INIT_LOGD(" Setting %s cache size to %sMB", name, property);
307 setMaxSize(MB(atof(property)));
/frameworks/base/media/jni/
H A Dandroid_mtp_MtpServer.cpp121 android_mtp_MtpServer_send_device_property_changed(JNIEnv *env, jobject thiz, jint property) argument
127 server->sendDevicePropertyChanged(property);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
H A DUtilities.java181 public static void setShadowProperty(String property, String value) argument
183 sPropertyMethod.invoke(null, property, value);
/frameworks/rs/
H A DrsFont.cpp348 char property[PROPERTY_VALUE_MAX]; local
351 if (property_get(PROPERTY_TEXT_GAMMA, property, NULL) > 0) {
352 gamma = atof(property);
356 if (property_get(PROPERTY_TEXT_BLACK_GAMMA_THRESHOLD, property, NULL) > 0) {
357 blackThreshold = atoi(property);
361 if (property_get(PROPERTY_TEXT_WHITE_GAMMA_THRESHOLD, property, NULL) > 0) {
362 whiteThreshold = atoi(property);
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java252 * Modify the system property used to communicate the version of
253 * this table, for tables which have such a property. (The Settings
258 // Update the system property *first*, so if someone is listening for
260 // the system property will be updated and they'll get the new data.
263 String property = null, table = uri.getPathSegments().get(0);
266 property = Settings.System.SYS_PROP_SETTING_VERSION;
269 property = Settings.Secure.SYS_PROP_SETTING_VERSION;
272 property = Settings.Global.SYS_PROP_SETTING_VERSION; // this one is global
276 if (property != null) {
277 long version = SystemProperties.getLong(property,
[all...]
/frameworks/base/core/jni/
H A DAndroidRuntime.cpp396 * Parse a property containing space-separated options that should be
430 * Reads a "property" into "buffer" with a default of "defaultArg". If
431 * the property is non-empty, it is treated as a runtime option such
441 bool AndroidRuntime::parseRuntimeOption(const char* property, argument
448 property_get(property, buffer+runtimeArgLen, defaultArg);
457 * Reads a "property" into "buffer". If the property is non-empty, it
468 bool AndroidRuntime::parseCompilerOption(const char* property, argument
475 property_get(property, buffer+compilerArgLen, "");
485 * Reads a "property" int
497 parseCompilerRuntimeOption(const char* property, char* buffer, const char* runtimeArg, const char* quotingArg) argument
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DTelephonyManager.java867 // read from the system property.
871 // read from the system property.
912 // When the system property CURRENT_ACTIVE_PHONE, has not been set,
913 // use the system property for default network type.
2874 * Sets the telephony property with the value specified.
2878 public static void setTelephonyProperty(int phoneId, String property, String value) { argument
2881 String prop = SystemProperties.get(property);
2893 " property=" + property + " value: " + value + " prop=" + prop);
2912 if (property
3017 getTelephonyProperty(int phoneId, String property, String defaultVal) argument
[all...]
/frameworks/native/services/inputflinger/
H A DEventHub.h192 virtual bool hasInputProperty(int32_t deviceId, int property) const = 0;
280 virtual bool hasInputProperty(int32_t deviceId, int property) const;
H A DEventHub.cpp316 bool EventHub::hasInputProperty(int32_t deviceId, int property) const {
317 if (property >= 0 && property <= INPUT_PROP_MAX) {
322 return test_bit(property, device->propBitmask);
1395 // The virtual key map is supplied by the kernel as a system board property file.
/frameworks/av/services/audiopolicy/
H A DAudioPolicyInterface.h88 // set a system property (e.g. camera sound always audible)
89 virtual void setSystemProperty(const char* property, const char* value) = 0;
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A DVCardParserTests.java88 public void onPropertyCreated(VCardProperty property) { argument
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DRecurrenceSet.java513 for (ICalendar.Property property : component.getProperties(name)) {
521 sb.append(property.getValue());
/frameworks/compile/libbcc/gdb_plugin/
H A Dandroid-commands.py273 # adb getprop [property]
274 # if property is not None, returns the given property, otherwise
276 def getprop(self, property=None):
277 if property == None:
282 str(property)]).split('\n')[0])
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java2346 * Gets the value of a boolean property.
2348 * @param property The property.
2351 private boolean getBooleanProperty(int property) { argument
2352 return (mBooleanProperties & property) != 0;
2356 * Sets a boolean property.
2358 * @param property The property.
2363 private void setBooleanProperty(int property, boolean value) { argument
2366 mBooleanProperties |= property;
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhoneBase.java259 * Set a system property, unless we're in unit test mode
262 public void setSystemProperty(String property, String value) { argument
266 SystemProperties.set(property, value);
270 * Set a system property, unless we're in unit test mode
273 public String getSystemProperty(String property, String defValue) { argument
277 return SystemProperties.get(property, defValue);
406 * By default old phones won't have the property set but do generate
407 * the RIL_UNSOL_CALL_RING so the default if there is no property is
H A DServiceStateTracker.java910 public String getSystemProperty(String property, String defValue) { argument
911 return TelephonyManager.getTelephonyProperty(mPhoneBase.getPhoneId(), property, defValue);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGSMPhone.java478 setSystemProperty(String property, String value) { argument
479 TelephonyManager.setTelephonyProperty(mPhoneId, property, value);
1125 public String getSystemProperty(String property, String defValue) { argument
1129 return TelephonyManager.getTelephonyProperty(mPhoneId, property, defValue);
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DScreenMagnifier.java955 Property<MagnificationController, MagnificationSpec> property =
974 mTransformationAnimator = ObjectAnimator.ofObject(this, property,
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIccCardProxy.java899 private void setSystemProperty(String property, String value) { argument
900 TelephonyManager.setTelephonyProperty(mPhoneId, property, value);
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntry.java737 private final String mPhoneticName; // We won't have this in "TITLE" property.
1924 // Probably the "TITLE" property comes before the "ORG" property via
1992 * SORT-STRING, since it is regitimate property to be understood.
2061 * property
2124 public void addProperty(final VCardProperty property) { argument
2125 final String propertyName = property.getName();
2126 final Map<String, Collection<String>> paramMap = property.getParameterMap();
2127 final List<String> propertyValueList = property.getValueList();
2128 byte[] propertyBytes = property
[all...]
/frameworks/base/core/java/android/widget/
H A DFastScroller.java1511 * Constructs an animator for the specified property on a group of views.
1515 * @param property The property being animated.
1516 * @param value The value to which that property should animate.
1521 Property<View, Float> property, float value, View... views) {
1526 final Animator anim = ObjectAnimator.ofFloat(views[i], property, value);
1520 groupAnimatorOfFloat( Property<View, Float> property, float value, View... views) argument

Completed in 678 milliseconds

1234