HomeSort by relevance Sort by last modified time
    Searched full:propname (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /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...]
  /external/clang/test/CodeGenObjC/
arc-compound-stmt.m 19 NSString *propName;
23 if (propName)
24 cap = [cap stringByAppendingString:[propName substringFromIndex:1]];
  /tools/motodev/src/plugins/common/src/com/motorola/studio/android/model/manifest/dom/
AbstractSimpleNameNode.java 36 private String propName = null;
46 this.propName = name;
67 if ((propName != null) && (propName.trim().length() > 0))
69 properties.put(PROP_NAME, propName);
81 return propName.trim().length() > 0;
91 return propName;
102 this.propName = name;
AbstractUsesNode.java 37 private String propName = null;
49 this.propName = name;
70 if ((propName != null) && (propName.trim().length() > 0))
72 properties.put(PROP_NAME, propName);
85 return propName.trim().length() > 0;
95 return propName;
106 this.propName = name;
AbstractIconLabelNameNode.java 50 protected String propName = null;
62 this.propName = name;
71 return propName.trim().length() > 0;
82 if ((propName != null) && (propName.trim().length() > 0))
84 properties.put(PROP_NAME, propName);
154 return propName;
165 this.propName = name;
UsesPermissionNode.java 52 String propname = getName(); local
53 if ((propname != null) && (propname.trim().length() > 0))
55 properties.put(PROP_NAME, propname);
MetadataNode.java 39 private String propName = null;
59 this.propName = name;
80 properties.put(PROP_NAME, propName);
113 return (propName.trim().length() > 0) && (containsOnlyResource || containsOnlyValue);
123 return propName;
134 this.propName = name;
  /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)
  /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...]
  /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)) {
  /bootable/recovery/tools/ota/
add-property-tag.c 31 int should_tag(const char *line, const char *propname) {
32 const char *prop = strstr(line, propname);
40 for (ptr += strlen(propname); *ptr != '\0' && isspace(*ptr); ++ptr) ;
68 const char *propname = "ro.build.fingerprint"; local
76 case 'p': propname = optarg; break;
111 if (!should_tag(line, propname)) {
128 fprintf(stderr, "property %s not found in %s\n", propname, filename);
  /external/webkit/LayoutTests/storage/
sql-data-types.js 22 function shouldBeSameTypeAndValue(propName, testValue, result) {
24 writeMessageToLog("PASS: property '" + propName + "' ok, type was " + typeof result);
27 writeMessageToLog("FAIL: property '" + propName + "' failed."
  /external/chromium/chrome/browser/resources/shared/js/
i18n_template.js 64 var propName = a[1];
70 if (propName.charAt(0) == '.') {
71 var path = propName.slice(1).split('.');
85 element.setAttribute(propName, value);
  /external/v8/test/mjsunit/
builtins.js 59 var propName = propNames[i];
60 if (propName == "constructor") continue;
61 var testName = name + "-" + propName;
62 var propDesc = Object.getOwnPropertyDescriptor(prototype, 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)
  /external/icu4c/tools/
icu-svnprops-check.py 42 ### file-name-pattern = propname[=value][;propname[=value]...]
223 for propname, propval in props:
224 actual_propval = runCommand("svn propget --strict " + propname + " " + f)
225 #print propname + ": " + actual_propval
226 if propname == "svn:mime-type" and propval.find("text/") == 0:
230 print "svn propset %s '%s' %s" % (propname, propval, f)
232 os.system("svn propset %s '%s' %s" % (propname, propval, f))
233 if propname == "svn:eol-style" and propval == "native":
  /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);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
SecurityTest.java 111 * propName)
113 * "propName.algName" instead of "Alg.propName.algName"
121 m.put("Alg.propName.algName", "value");
127 assertNotNull(Security.getAlgorithmProperty("algName", "propName"));
130 assertNull(Security.getAlgorithmProperty("DSA", "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);

Completed in 1782 milliseconds

1 2 3 4 5