Searched refs:propName (Results 1 - 25 of 43) sorted by relevance

12

/external/v8/test/mjsunit/
H A Dbuiltins.js59 var propName = propNames[i];
60 if (propName == "constructor") continue;
61 var testName = name + "-" + propName;
62 var propDesc = Object.getOwnPropertyDescriptor(prototype, propName);
/external/chromium/chrome/browser/resources/shared/js/
H A Di18n_template.js64 var propName = a[1];
70 if (propName.charAt(0) == '.') {
71 var path = propName.slice(1).split('.');
85 element.setAttribute(propName, value);
/external/chromium-trace/src/shared/js/
H A Di18n_template.js64 var propName = a[1];
70 if (propName.charAt(0) == '.') {
71 var path = propName.slice(1).split('.');
85 element.setAttribute(propName, value);
H A Di18n_template2.js86 var propName = attributeAndKeyPair[1];
93 if (propName[0] == '.') {
94 var path = propName.slice(1).split('.');
107 element.setAttribute(propName, value);
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncSystemProperty.java62 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)
H A DSecuritySupport.java98 String getSystemProperty(String propName) { argument
99 return System.getProperty(propName);
H A DSecuritySupport12.java87 String getSystemProperty(final String propName) { argument
91 return System.getProperty(propName);
/external/webkit/LayoutTests/storage/
H A Dsql-data-types.js22 function shouldBeSameTypeAndValue(propName, testValue, result) {
24 writeMessageToLog("PASS: property '" + propName + "' ok, type was " + typeof result);
27 writeMessageToLog("FAIL: property '" + propName + "' failed."
/external/apache-xml/src/main/java/org/apache/xalan/xslt/
H A DSecuritySupport.java98 String getSystemProperty(String propName) { argument
99 return System.getProperty(propName);
H A DSecuritySupport12.java87 String getSystemProperty(final String propName) { argument
91 return System.getProperty(propName);
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DSecuritySupport.java98 String getSystemProperty(String propName) { argument
99 return System.getProperty(propName);
H A DSecuritySupport12.java87 String getSystemProperty(final String propName) { argument
91 return System.getProperty(propName);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DSecuritySupport.java98 String getSystemProperty(String propName) { argument
99 return System.getProperty(propName);
H A DSecuritySupport12.java87 String getSystemProperty(final String propName) { argument
91 return System.getProperty(propName);
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DSecuritySupport.java96 String getSystemProperty(String propName) { argument
97 return System.getProperty(propName);
H A DSecuritySupport12.java84 String getSystemProperty(final String propName) { argument
88 return System.getProperty(propName);
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DSecuritySupport.java98 String getSystemProperty(String propName) { argument
99 return System.getProperty(propName);
H A DSecuritySupport12.java87 String getSystemProperty(final String propName) { argument
91 return System.getProperty(propName);
/external/oauth/core/src/main/java/net/oauth/
H A DConsumerProperties.java114 String propName = (String) prop.getKey();
115 if (propName.startsWith(name + ".consumer.")) {
116 String c = propName.substring(name.length() + 10);
/external/qemu/android/avd/
H A Dutil.c177 _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/WebCore/bindings/v8/custom/
H A DV8CSSStyleDeclarationCustom.cpp142 String propName = builder.toString(); local
143 int propertyID = cssPropertyID(propName);
147 propInfo->wasFilter = (propName == "filter");
/external/webkit/Source/WebCore/inspector/front-end/
H A DRemoteObject.js259 function buildProperty(propName)
261 return new WebInspector.RemoteObjectProperty(propName, new WebInspector.LocalJSONObject(this._value[propName]));
/external/webkit/Source/JavaScriptGlue/
H A DJSUtils.cpp285 Identifier propName = *iter; local
286 UString ustr = propName.ustring();
331 Identifier propName = *iter; local
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/
H A DKeyStoreTest.java188 String propName = "keystore.type";
189 String defKSType = Security.getProperty(propName);
199 Security.setProperty(propName, defaultType);
201 resType = Security.getProperty(propName);
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
H A DCertPathValidator1Test.java109 String propName = "certpathvalidator.type";
110 String defCPV = Security.getProperty(propName);
121 Security.setProperty(propName, defaultType);
123 resType = Security.getProperty(propName);

Completed in 343 milliseconds

12