HomeSort by relevance Sort by last modified time
    Searched refs:propName (Results 1 - 25 of 446) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
PropertyNodesVerifierElem.java 62 public PropertyNodesVerifierElem addExpectedNodeWithOrder(String propName, String propValue) {
63 return addExpectedNodeWithOrder(propName, propValue, null, null, null, null, null);
67 String propName, String propValue, ContentValues contentValues) {
68 return addExpectedNodeWithOrder(propName, propValue, null,
73 String propName, List<String> propValueList, ContentValues contentValues) {
74 return addExpectedNodeWithOrder(propName, null, propValueList,
79 String propName, String propValue, List<String> propValueList) {
80 return addExpectedNodeWithOrder(propName, propValue, propValueList, null,
85 String propName, List<String> propValueList) {
87 return addExpectedNodeWithOrder(propName, propValue.toString(), propValueList
    [all...]
PropertyNode.java 43 public String propName;
68 propName = "";
77 String propName, String propValue, List<String> propValue_vector,
80 if (propName != null) {
81 this.propName = propName;
83 this.propName = "";
130 if (propName == null || !propName.equals(node.propName)) {
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
PropConfig.java 25 public static int getInt(Context context, String propName, int resId) {
26 return SystemProperties.getInt(propName, context.getResources().getInteger(resId));
29 public static String[] getStringArray(Context context, String propName, int resId) {
30 final String prop = SystemProperties.get(propName, UNSET);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
XMPMeta.java 49 * string if the first component of the propName path contains a namespace prefix. The
51 * @param propName The name of the property. May be a general path expression, must not be
55 * and propName prefix are present, they must be corresponding parts of a registered
61 XMPProperty getProperty(String schemaNS, String propName) throws XMPException;
71 * propName in <code>getProperty()</code>.
88 * propName in <code>getProperty()</code>.
107 * propName in <code>getProperty()</code>.
139 * @param propName The name of the property to which the qualifier is attached. May be a general
146 * propName parameter.
150 * string. Has the same namespace prefix usage as the propName parameter
    [all...]
  /external/owasp/sanitizer/src/tests/org/owasp/html/
CssSchemaTest.java 61 for (String propName : CssSchema.DEFAULT_WHITELIST) {
62 CssSchema.Property property = CssSchema.DEFAULT.forKey(propName);
64 propName,
67 propName,
70 propName,
73 propName,
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPMetaImpl.java 214 public void deleteProperty(String schemaNS, String propName)
219 ParameterAsserts.assertPropName(propName);
221 XMPPath expPath = XMPPathParser.expandXPath(schemaNS, propName);
239 public void deleteQualifier(String schemaNS, String propName, String qualNS, String qualName)
245 ParameterAsserts.assertPropName(propName);
247 String qualPath = propName + XMPPathFactory.composeQualifierPath(qualNS, qualName);
283 public boolean doesPropertyExist(String schemaNS, String propName)
288 ParameterAsserts.assertPropName(propName);
290 XMPPath expPath = XMPPathParser.expandXPath(schemaNS, propName);
346 public boolean doesQualifierExist(String schemaNS, String propName, String qualNS
    [all...]
ParameterAsserts.java 48 * @param propName a property name or path
51 public static void assertPropName(String propName) throws XMPException
53 if (propName == null || propName.length() == 0)
  /libcore/ojluni/src/main/java/sun/misc/
MessageUtils.java 81 public static String substProp(String propName, String arg) {
82 return subst(System.getProperty(propName), arg);
85 public static String substProp(String propName, String arg1, String arg2) {
86 return subst(System.getProperty(propName), arg1, arg2);
89 public static String substProp(String propName, String arg1, String arg2,
91 return subst(System.getProperty(propName), arg1, arg2, arg3);
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncSystemProperty.java 62 String propName = "";
77 propName = (indexOfNSSep < 0)
83 result = xsltInfo.getProperty(propName);
104 result = System.getProperty(propName);
153 if (propName.equals("version") && result.length() > 0)
SecuritySupport.java 98 String getSystemProperty(String propName) {
99 return System.getProperty(propName);
  /frameworks/base/services/core/java/com/android/server/am/
GlobalSettingsToPropertiesMapper.java 66 final String propName = entry[1];
72 updatePropertyFromSetting(settingName, propName);
75 updatePropertyFromSetting(settingName, propName);
124 void updatePropertyFromSetting(String settingName, String propName) {
126 setProperty(propName, settingValue);
  /external/apache-xml/src/main/java/org/apache/xalan/xslt/
SecuritySupport.java 98 String getSystemProperty(String propName) {
99 return System.getProperty(propName);
SecuritySupport12.java 87 String getSystemProperty(final String propName) {
91 return System.getProperty(propName);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
SecuritySupport.java 98 String getSystemProperty(String propName) {
99 return System.getProperty(propName);
SecuritySupport12.java 87 String getSystemProperty(final String propName) {
91 return System.getProperty(propName);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
SecuritySupport.java 98 String getSystemProperty(String propName) {
99 return System.getProperty(propName);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
SecuritySupport.java 96 String getSystemProperty(String propName) {
97 return System.getProperty(propName);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
SecuritySupport.java 98 String getSystemProperty(String propName) {
99 return System.getProperty(propName);
  /external/oauth/core/src/main/java/net/oauth/
ConsumerProperties.java 114 String propName = (String) prop.getKey();
115 if (propName.startsWith(name + ".consumer.")) {
116 String c = propName.substring(name.length() + 10);
  /cts/tests/tests/nativemedia/aaudio/jni/
test_aaudio_mmap.cpp 45 static int getSystemPropertyInt(const char *propName, int defaultValue) {
47 if (__system_property_get(propName, valueText) <= 0) {
  /device/generic/goldfish/dhcp/client/
dhcpclient.cpp 439 char propName[64];
440 snprintf(propName, sizeof(propName), "net.%s.gw",
442 property_set(propName, addrToStr(mDhcpInfo.gateway).c_str());
446 snprintf(propName, sizeof(propName), "net.%s.dns%d",
449 property_set(propName, addrToStr(mDhcpInfo.dns[i]).c_str());
452 property_set(propName, "");
  /external/slf4j/slf4j-site/src/site/pages/js/
decorator.js 36 var propName = e.innerHTML;
42 nameAttr = containerAttr+capitaliseFirstLetter(propName);
44 nameAttr = propName;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DozeParameters.java 207 private boolean getBoolean(String propName, int resId) {
208 return SystemProperties.getBoolean(propName, mContext.getResources().getBoolean(resId));
211 private int getInt(String propName, int resId) {
212 int value = SystemProperties.getInt(propName, mContext.getResources().getInteger(resId));
216 private String getString(String propName, int resId) {
217 return SystemProperties.get(propName, mContext.getString(resId));
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
RegexUtilitiesTest.java 108 String propName = UCharacter.getPropertyName(propNum, NameChoice.LONG);
134 String rawPattern = prefix + "[:" + propName + "=" + valueName + ":]" + suffix;
135 String rawNegativePattern = prefix + "[:^" + propName + "=" + valueName + ":]" + suffix;
140 rawPattern = prefix + "\\p{" + propName + "=" + valueName + "}" + suffix;
141 rawNegativePattern = prefix + "\\P{" + propName + "=" + valueName + "}" + suffix;
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
RegexUtilitiesTest.java 105 String propName = UCharacter.getPropertyName(propNum, NameChoice.LONG);
131 String rawPattern = prefix + "[:" + propName + "=" + valueName + ":]" + suffix;
132 String rawNegativePattern = prefix + "[:^" + propName + "=" + valueName + ":]" + suffix;
137 rawPattern = prefix + "\\p{" + propName + "=" + valueName + "}" + suffix;
138 rawNegativePattern = prefix + "\\P{" + propName + "=" + valueName + "}" + suffix;

Completed in 718 milliseconds

1 2 3 4 5 6 7 8 91011>>