Searched defs:property (Results 1 - 25 of 61) sorted by last modified time

123

/frameworks/rs/
H A DrsFont.cpp348 char property[PROPERTY_VALUE_MAX]; local
351 if (property_get(PROPERTY_TEXT_GAMMA, property, nullptr) > 0) {
352 gamma = atof(property);
356 if (property_get(PROPERTY_TEXT_BLACK_GAMMA_THRESHOLD, property, nullptr) > 0) {
357 blackThreshold = atoi(property);
361 if (property_get(PROPERTY_TEXT_WHITE_GAMMA_THRESHOLD, property, nullptr) > 0) {
362 whiteThreshold = atoi(property);
/frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
H A DSlideKitkat.java62 /** Returns the property to animate translation */
208 private Animator createAnimation(final View view, Property<View, Float> property, argument
213 start = View.TRANSLATION_Y == property ? startPosition[1] : startPosition[0];
216 final ObjectAnimator anim = ObjectAnimator.ofFloat(view, property, start, end);
218 SlideAnimatorListener listener = new SlideAnimatorListener(view, property, terminalValue, end,
/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 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...]
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);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIccCardProxy.java890 private void setSystemProperty(String property, String value) { argument
891 TelephonyManager.setTelephonyProperty(mPhoneId, property, value);
/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/opt/vcard/java/com/android/vcard/
H A DVCardBuilder.java490 // FN property
528 private void buildSinglePartNameField(String property, String part) { argument
536 mBuilder.append(property);
614 // Note: There is no appropriate property for expressing
619 // This is "X-" property, so any parser hopefully would not get
762 if (mIsV30OrV40) { // These specifications have NICKNAME property.
1247 // property, while there's no document in vCard 2.1.
1906 * Appends one line with a given property name and value.
2058 * Returns true when the property line should contain charset parameter
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...]
H A DVCardEntryConstructor.java129 public void onPropertyCreated(VCardProperty property) { argument
130 mCurrentEntry.addProperty(property);
H A DVCardEntryCounter.java46 public void onPropertyCreated(VCardProperty property) { argument
H A DVCardInterpreter.java33 * The term "property" is one line in vCard entry, which consists of "group", "property name",
34 * "parameter(param) names and values", and "property values".
76 * Called when a property is created.
78 void onPropertyCreated(VCardProperty property); argument
H A DVCardParserImpl_V21.java165 * @return true when a given property name is a valid property name.
330 private void parseItemInter(VCardProperty property, String propertyNameUpper) argument
332 String propertyRawValue = property.getRawValue();
334 handleAgent(property);
341 handlePropertyValue(property, propertyNameUpper);
343 throw new VCardException("Unknown property name: \"" + propertyNameUpper + "\"");
357 // For performance reason, the states for group and property name are merged into one.
380 if (ch == ':') { // End of a property name.
392 nameIndex = i + 1; // Next should be another group or a property nam
570 handlePropertyValue(VCardProperty property, String propertyName) argument
698 handleAdrOrgN(VCardProperty property, String propertyRawValue, String sourceCharset, String targetCharset) argument
914 handleAgent(final VCardProperty property) argument
[all...]
H A DVCardParserImpl_V30.java158 protected void handleParamWithoutName(VCardProperty property, final String paramValue) { argument
159 handleType(property, paramValue);
175 protected void handleType(VCardProperty property, final String paramValue) { argument
176 splitAndPutParam(property, VCardConstants.PARAM_TYPE, paramValue);
191 private void splitAndPutParam(VCardProperty property, String paramName, String paramValue) { argument
208 property.addParameter(paramName, encodeParamValue(builder.toString()));
216 Log.w(LOG_TAG, "Unexpected Dquote inside property.");
221 property.addParameter(paramName, encodeParamValue(builder.toString()));
231 property.addParameter(paramName, encodeParamValue(builder.toString()));
253 property
267 handleAgent(VCardProperty property) argument
[all...]
H A DVCardSourceDetector.java102 public void onPropertyCreated(VCardProperty property) { argument
103 final String propertyName = property.getName();
104 final List<String> valueList = property.getValueList();
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A DVCardParserTests.java88 public void onPropertyCreated(VCardProperty property) { argument
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DVNodeBuilder.java99 public void onPropertyCreated(VCardProperty property) { argument
102 propNode.propName = property.getName();
103 List<String> groupList = property.getGroupList();
107 Map<String, Collection<String>> propertyParameterMap = property.getParameterMap();
121 if (property.getRawValue() == null) {
129 final List<String> values = property.getValueList();
138 propNode.propValue_bytes = property.getByteValue();
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.cpp66 * although it could be changed by the user using a system property */
438 char *cp, property[PROPERTY_VALUE_MAX]; local
440 property_get(key, property, "");
441 value = strtoul(property, &cp, 10);
/frameworks/native/include/input/
H A DKeyCharacterMap.h196 inline Property(int32_t property = 0, int32_t metaState = 0) :
197 property(property), metaState(metaState) { }
199 int32_t property; member in struct:android::KeyCharacterMap::Parser::Property
/frameworks/native/libs/input/
H A DKeyCharacterMap.cpp936 // Parse all comma-delimited property names up to the first colon.
946 ALOGE("%s: Expected a property name or modifier, got '%s'.",
965 ALOGE("%s: Expected ',' or ':' after property name.",
1066 const Property& property = properties.itemAt(i); local
1067 switch (property.property) {
1092 if (b->metaState == property.metaState) {
1099 newBehavior->metaState = property.metaState;
1116 // Fill in default number property.
/frameworks/native/services/inputflinger/host/
H A DInputDriver.cpp257 const char* InputDriver::inputGetPropertyKey(input_property_t* property) { argument
258 if (property != nullptr) {
259 return property->key.string();
264 const char* InputDriver::inputGetPropertyValue(input_property_t* property) { argument
265 if (property != nullptr) {
266 return property->value.string();
271 void InputDriver::inputFreeDeviceProperty(input_property_t* property) { argument
272 if (property != nullptr) {
273 delete property;
392 const char* input_get_property_key(input_host_t* host, input_property_t* property) { argument
397 input_get_property_value(input_host_t* host, input_property_t* property) argument
402 input_free_device_property(input_host_t* host, input_property_t* property) 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/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. ...
/frameworks/base/services/core/java/com/android/server/display/
H A DRampAnimator.java24 * A custom animator that progressively updates a property value at
44 public RampAnimator(T object, IntProperty<T> property) { argument
46 mProperty = property;
53 * If this is the first time the property is being set or if the rate is 0,

Completed in 835 milliseconds

123