HomeSort by relevance Sort by last modified time
    Searched full:propname (Results 1 - 25 of 344) 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...]
  /external/clang/test/CodeGenObjC/
arc-compound-stmt.m 19 NSString *propName;
23 if (propName)
24 cap = [cap stringByAppendingString:[propName substringFromIndex:1]];
prop-metadata-gnu.m 8 @property (readwrite,assign) int propName;
12 @synthesize propName = varName;
  /external/pdfium/fpdfsdk/src/javascript/
JS_GlobalData.h 64 void SetGlobalVariableNumber(const FX_CHAR* propname, double dData);
65 void SetGlobalVariableBoolean(const FX_CHAR* propname, bool bData);
66 void SetGlobalVariableString(const FX_CHAR* propname,
68 void SetGlobalVariableObject(const FX_CHAR* propname,
70 void SetGlobalVariableNull(const FX_CHAR* propname);
72 FX_BOOL SetGlobalVariablePersistent(const FX_CHAR* propname,
74 FX_BOOL DeleteGlobalVariable(const FX_CHAR* propname);
88 CJS_GlobalData_Element* GetGlobalVariable(const FX_CHAR* propname);
89 int FindGlobalVariable(const FX_CHAR* propname);
global.h 47 FX_BOOL QueryProperty(const FX_WCHAR* propname);
49 const FX_WCHAR* propname,
53 const FX_WCHAR* propname,
61 FX_BOOL SetGlobalVariables(const FX_CHAR* propname,
JS_GlobalData.cpp 131 int CJS_GlobalData::FindGlobalVariable(const FX_CHAR* propname) {
134 if (pTemp->data.sKey[0] == *propname && pTemp->data.sKey == propname)
141 const FX_CHAR* propname) {
142 ASSERT(propname);
144 int nFind = FindGlobalVariable(propname);
148 void CJS_GlobalData::SetGlobalVariableNumber(const FX_CHAR* propname,
150 ASSERT(propname);
151 CFX_ByteString sPropName = propname;
169 void CJS_GlobalData::SetGlobalVariableBoolean(const FX_CHAR* propname,
    [all...]
global.cpp 112 FX_BOOL JSGlobalAlternate::QueryProperty(const FX_WCHAR* propname) {
113 return CFX_WideString(propname) != L"setPersistent";
117 const FX_WCHAR* propname,
119 auto it = m_mapGlobal.find(CFX_ByteString::FromUnicode(propname));
128 const FX_WCHAR* propname,
132 CFX_ByteString sPropName = CFX_ByteString::FromUnicode(propname);
163 DelProperty(cc, propname, sError);
170 auto it = m_mapGlobal.find(CFX_ByteString::FromUnicode(propname));
416 FX_BOOL JSGlobalAlternate::SetGlobalVariables(const FX_CHAR* propname,
423 if (!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/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/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,
  /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/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/v8/test/webkit/
for-in-var-scope.js 36 object.propName = "propValue";
42 shouldBe("j", "'propName'");
  /external/icu/icu4c/source/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/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)
  /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);
  /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 129 private boolean getBoolean(String propName, int resId) {
130 return SystemProperties.getBoolean(propName, mContext.getResources().getBoolean(resId));
133 private int getInt(String propName, int resId) {
134 int value = SystemProperties.getInt(propName, mContext.getResources().getInteger(resId));
138 private String getString(String propName, int resId) {
139 return SystemProperties.get(propName, mContext.getString(resId));
  /external/autotest/client/cros/scripts/
device 19 print cmd, 'get-property <devname> [propname] - List device property.'
20 print cmd, 'set-property <devname> <propname> <value>'
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
RegexUtilitiesTest.java 104 String propName = UCharacter.getPropertyName(propNum, NameChoice.LONG);
130 String rawPattern = prefix + "[:" + propName + "=" + valueName + ":]" + suffix;
131 String rawNegativePattern = prefix + "[:^" + propName + "=" + valueName + ":]" + suffix;
136 rawPattern = prefix + "\\p{" + propName + "=" + valueName + "}" + suffix;
137 rawNegativePattern = prefix + "\\P{" + propName + "=" + valueName + "}" + suffix;
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
RegexUtilitiesTest.java 100 String propName = UCharacter.getPropertyName(propNum, NameChoice.LONG);
126 String rawPattern = prefix + "[:" + propName + "=" + valueName + ":]" + suffix;
127 String rawNegativePattern = prefix + "[:^" + propName + "=" + valueName + ":]" + suffix;
132 rawPattern = prefix + "\\p{" + propName + "=" + valueName + "}" + suffix;
133 rawNegativePattern = prefix + "\\P{" + propName + "=" + valueName + "}" + suffix;

Completed in 1173 milliseconds

1 2 3 4 5 6 7 8 91011>>