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

1 2 3 4 5 6

  /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)
  /system/core/libsysutils/src/
ServiceManager.cpp 102 char propName[PROPERTY_KEY_MAX];
105 ret = snprintf(propName, sizeof(propName), "init.svc.%s", name);
106 if (ret > (int)sizeof(propName)-1) {
111 if (property_get(propName, propVal, NULL)) {
  /external/smack/src/org/apache/harmony/javax/security/sasl/
SaslClient.java 28 Object getNegotiatedProperty(String propName);
SaslServer.java 30 Object getNegotiatedProperty(String propName);
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncSystemProperty.java 62 String propName = "";
77 propName = (indexOfNSSep < 0)
83 result = xsltInfo.getProperty(propName);
101 result = System.getProperty(propName);
106 // result = System.getenv(propName);
141 if (propName.equals("version") && result.length() > 0)
SecuritySupport.java 98 String getSystemProperty(String propName) {
99 return System.getProperty(propName);
  /external/qemu/android/utils/
property_file.c 98 const char* propName) {
99 size_t propNameLen = strlen(propName);
107 if (!strcmp(iter->name, propName)) {
  /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);
SecuritySupport12.java 87 String getSystemProperty(final String propName) {
91 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);
SecuritySupport12.java 84 String getSystemProperty(final String propName) {
88 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);
SecuritySupport12.java 87 String getSystemProperty(final String propName) {
91 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);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DozeParameters.java 141 private boolean getBoolean(String propName, int resId) {
142 return SystemProperties.getBoolean(propName, mContext.getResources().getBoolean(resId));
145 private int getInt(String propName, int resId) {
146 int value = SystemProperties.getInt(propName, mContext.getResources().getInteger(resId));
150 private String getString(String propName, int resId) {
151 return SystemProperties.get(propName, mContext.getString(resId));

Completed in 6083 milliseconds

1 2 3 4 5 6