Home
last modified time | relevance | path

Searched refs:propName (Results 1 – 9 of 9) sorted by relevance

/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
DPropertyNodesVerifierElem.java62 public PropertyNodesVerifierElem addExpectedNodeWithOrder(String propName, String propValue) { in addExpectedNodeWithOrder() argument
63 return addExpectedNodeWithOrder(propName, propValue, null, null, null, null, null); in addExpectedNodeWithOrder()
67 String propName, String propValue, ContentValues contentValues) { in addExpectedNodeWithOrder() argument
68 return addExpectedNodeWithOrder(propName, propValue, null, in addExpectedNodeWithOrder()
73 String propName, List<String> propValueList, ContentValues contentValues) { in addExpectedNodeWithOrder() argument
74 return addExpectedNodeWithOrder(propName, null, propValueList, in addExpectedNodeWithOrder()
79 String propName, String propValue, List<String> propValueList) { in addExpectedNodeWithOrder() argument
80 return addExpectedNodeWithOrder(propName, propValue, propValueList, null, in addExpectedNodeWithOrder()
85 String propName, List<String> propValueList) { in addExpectedNodeWithOrder() argument
87 return addExpectedNodeWithOrder(propName, propValue.toString(), propValueList, in addExpectedNodeWithOrder()
[all …]
DPropertyNode.java43 public String propName; field in PropertyNode
68 propName = ""; in PropertyNode()
77 String propName, String propValue, List<String> propValue_vector, in PropertyNode() argument
80 if (propName != null) { in PropertyNode()
81 this.propName = propName; in PropertyNode()
83 this.propName = ""; in PropertyNode()
130 if (propName == null || !propName.equals(node.propName)) { in equals()
161 builder.append(propName); in toString()
DVNodeBuilder.java102 propNode.propName = property.getName(); in onPropertyCreated()
/frameworks/base/services/core/java/com/android/server/notification/
DPropConfig.java25 public static int getInt(Context context, String propName, int resId) { in getInt() argument
26 return SystemProperties.getInt(propName, context.getResources().getInteger(resId)); in getInt()
29 public static String[] getStringArray(Context context, String propName, int resId) { in getStringArray() argument
30 final String prop = SystemProperties.get(propName, UNSET); in getStringArray()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DDozeParameters.java141 private boolean getBoolean(String propName, int resId) { in getBoolean() argument
142 return SystemProperties.getBoolean(propName, mContext.getResources().getBoolean(resId)); in getBoolean()
145 private int getInt(String propName, int resId) { in getInt() argument
146 int value = SystemProperties.getInt(propName, mContext.getResources().getInteger(resId)); in getInt()
150 private String getString(String propName, int resId) { in getString() argument
151 return SystemProperties.get(propName, mContext.getString(resId)); in getString()
/frameworks/av/media/libstagefright/wifi-display/source/
DConverter.h73 static int32_t GetInt32Property(const char *propName, int32_t defaultValue);
DConverter.cpp128 const char *propName, int32_t defaultValue) { in GetInt32Property() argument
130 if (property_get(propName, val, NULL)) { in GetInt32Property()
/frameworks/native/services/surfaceflinger/
DSurfaceFlinger.cpp527 static int getDensityFromProperty(char const* propName) { in getDisplayConfigs() argument
530 if (property_get(propName, property, NULL) > 0) { in getDisplayConfigs()
/frameworks/base/docs/html/guide/topics/graphics/
Dprop-animation.jd476 ObjectAnimator.ofFloat(targetObject, "propName", 1f)