/external/apache-xml/src/main/java/org/apache/xpath/functions/ |
SecuritySupport12.java | 87 String getSystemProperty(final String propName) { 91 return System.getProperty(propName);
|
/frameworks/opt/vcard/java/com/android/vcard/ |
VCardInterpreter.java | 37 * e.g. group1.propName;paramName1=paramValue1;paramName2=paramValue2;propertyValue1;propertyValue2...
|
/external/webkit/Source/WebCore/inspector/front-end/ |
RemoteObject.js | 259 function buildProperty(propName) 261 return new WebInspector.RemoteObjectProperty(propName, new WebInspector.LocalJSONObject(this._value[propName]));
|
ExtensionServer.js | 407 var propName = resourceTypeProperties[i]; 408 var propValue = WebInspector.Resource.Type[propName]; 410 resourceTypes[propName] = WebInspector.Resource.Type.toString(propValue);
|
/external/qemu/android/avd/ |
util.c | 177 _getSystemProperty( const char* propFile, const char* propName ) 181 int propNameLen = strlen(propName); 206 if (memcmp(temp, propName, propNameLen) != 0) { 228 _getBuildProperty( const char* androidOut, const char* propName ) 237 return _getSystemProperty(temp, propName);
|
/external/webkit/Source/JavaScriptGlue/ |
JSUtils.cpp | 285 Identifier propName = *iter; 286 UString ustr = propName.ustring(); 331 Identifier propName = *iter; 332 if (object->hasProperty(exec, propName)) 334 CFStringRef cfKey = IdentifierToCFString(propName); 335 CFTypeRef cfValue = KJSValueToCFTypeInternal(object->get(exec, propName), exec, &imps);
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/ |
CertPathBuilder2Test.java | 91 String propName = CertPathBuilder1Test.DEFAULT_TYPE_PROPERTY; 94 Security.setProperty(propName, invalidValues[i]); 100 Security.setProperty(propName, dt);
|
CertPathValidator2Test.java | 92 String propName = "certpathvalidator.type"; 94 Security.setProperty(propName, invalidValues[i]); 98 Security.setProperty(propName, dt);
|
CertPathValidator1Test.java | 109 String propName = "certpathvalidator.type"; 110 String defCPV = Security.getProperty(propName); 121 Security.setProperty(propName, defaultType); 123 resType = Security.getProperty(propName);
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8CSSStyleDeclarationCustom.cpp | 142 String propName = builder.toString(); 143 int propertyID = cssPropertyID(propName); 147 propInfo->wasFilter = (propName == "filter");
|
V8DOMWindowCustom.cpp | 495 AtomicString propName = v8StringToAtomicWebCoreString(name); 496 Frame* child = frame->tree()->child(propName); 509 if (static_cast<HTMLDocument*>(doc)->hasNamedItem(propName.impl()) || doc->hasElementWithId(propName.impl())) { 510 RefPtr<HTMLCollection> items = doc->windowNamedItems(propName);
|
/libcore/luni/src/test/java/tests/security/cert/ |
CertPathBuilder2Test.java | 83 String propName = CertPathBuilder1Test.DEFAULT_TYPE_PROPERTY; 86 Security.setProperty(propName, invalidValues[i]); 92 Security.setProperty(propName, dt);
|
CertPathValidator2Test.java | 83 String propName = "certpathvalidator.type"; 85 Security.setProperty(propName, invalidValues[i]); 89 Security.setProperty(propName, dt);
|
CertPathValidator1Test.java | 102 String propName = "certpathvalidator.type"; 103 String defCPV = Security.getProperty(propName); 114 Security.setProperty(propName, defaultType); 116 resType = Security.getProperty(propName);
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
KeyStoreTest.java | 188 String propName = "keystore.type"; 189 String defKSType = Security.getProperty(propName); 199 Security.setProperty(propName, defaultType); 201 resType = Security.getProperty(propName);
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
KeyStoreTest.java | 187 String propName = "keystore.type"; 188 String defKSType = Security.getProperty(propName); 198 Security.setProperty(propName, defaultType); 200 resType = Security.getProperty(propName);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
ProjectState.java | 189 String propName = ProjectProperties.PROPERTY_LIB_REF + Integer.toString(index++); 190 String rootPath = mProperties.getProperty(propName); 274 String propName = ProjectProperties.PROPERTY_LIB_REF + Integer.toString(index++); 275 String rootPath = mProperties.getProperty(propName); 589 String propName = ProjectProperties.PROPERTY_LIB_REF + Integer.toString(index++); 590 String rootPath = mProperties.getProperty(propName); 600 workingCopy.setProperty(propName, newValue);
|
/bionic/libc/netbsd/net/ |
getnameinfo.c | 160 char propname[PROP_NAME_MAX]; local 162 snprintf(propname, sizeof(propname), "net.dns1.%d", getpid()); 163 if (__system_property_get(propname, propvalue) > 0) {
|
/external/icu4c/test/intltest/ |
ucdtest.cpp | 172 UnicodeString propName(fields[1][0], (int32_t)(fields[1][1]-fields[1][0])); 173 propName.trim(); 174 if(me->unknownPropertyNames->find(propName)==NULL) { 176 me->unknownPropertyNames->puti(propName, 1, errorCode);
|
/libcore/luni/src/main/java/java/security/ |
Security.java | 87 * @param propName 94 public static String getAlgorithmProperty(String algName, String propName) { 95 if (algName == null || propName == null) { 98 String prop = "Alg." + propName + "." + algName;
|
/external/icu4c/common/ |
propname.h | 25 * propname.cpp - reads data 127 * or earlier versions of this header file (source/common/propname.h).
|
/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
dbus_new_introspect.c | 215 add_arg(xml, "propname", "s", "in"); 226 add_arg(xml, "propname", "s", "in");
|
/sdk/anttasks/src/com/android/ant/ |
DependencyHelper.java | 227 String propName = ProjectProperties.PROPERTY_LIB_REF + Integer.toString(index++); 228 String rootPath = properties.getProperty(propName);
|
/bionic/libc/netbsd/resolv/ |
res_init.c | 326 char propname[PROP_NAME_MAX]; local 339 snprintf(propname, sizeof(propname), "%s%d.%d", DNS_PROP_NAME_PREFIX, n, mypid); 340 if(__system_property_get(propname, propvalue) < 1) { 350 snprintf(propname, sizeof(propname), "%s%d", DNS_PROP_NAME_PREFIX, n); 351 if(__system_property_get(propname, propvalue) < 1) {
|
/frameworks/native/services/surfaceflinger/DisplayHardware/ |
DisplayHardware.cpp | 172 static int getDensityFromProperty(char const* propName) { 175 if (property_get(propName, property, NULL) > 0) {
|