Searched refs:setProperty (Results 26 - 50 of 261) sorted by relevance

1234567891011

/external/skia/src/animator/
H A DSkDrawTextBox.cpp65 bool SkDrawTextBox::setProperty(int index, SkScriptValue& scriptValue) function in class:SkDrawTextBox
67 return this->INHERITED::setProperty(index, scriptValue);
H A DSkDisplayPost.h40 virtual bool setProperty(int index, SkScriptValue& );
H A DSkDrawColor.h30 virtual bool setProperty(int index, SkScriptValue&);
H A DSkDrawRectangle.h30 virtual bool setProperty(int index, SkScriptValue& );
/external/smack/src/org/jivesoftware/smack/sasl/
H A DSASLGSSAPIMechanism.java41 System.setProperty("javax.security.auth.useSubjectCredsOnly","false");
42 System.setProperty("java.security.auth.login.config","gss.conf");
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DExcludedProxyTest.java47 System.setProperty("http.proxyHost",
56 System.setProperty("http.proxyPort", "81");
65 System.setProperty("http.proxyPort", "80");
121 System.setProperty("socksProxyHost",
123 System.setProperty("socksProxyPort", String
135 System.setProperty("socksProxyHost",
138 .setProperty(
H A DInetAddressThreadTest.java130 System.setProperty("networkaddress.cache.ttl", "0");
169 System.setProperty("networkaddress.cache.ttl", "-1");
171 System.setProperty("networkaddress.cache.ttl",
/external/oauth/core/src/main/java/net/oauth/
H A DConsumerProperties.java109 consumer.setProperty("name", name);
111 consumer.setProperty("serviceProvider.baseURL", baseURL);
117 consumer.setProperty(c, prop.getValue());
H A DOAuthConsumer.java54 public void setProperty(String name, Object value) { method in class:OAuthConsumer
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/login/
H A DLoginContextTest.java135 Security.setProperty("auth.login.defaultCallbackHandler",
145 Security.setProperty("auth.login.defaultCallbackHandler", "");
162 Security.setProperty("auth.login.defaultCallbackHandler",
170 Security.setProperty("auth.login.defaultCallbackHandler", "");
185 .setProperty("auth.login.defaultCallbackHandler",
193 Security.setProperty("auth.login.defaultCallbackHandler", "");
244 .setProperty("auth.login.defaultCallbackHandler",
258 Security.setProperty("auth.login.defaultCallbackHandler", "");
345 .setProperty("auth.login.defaultCallbackHandler",
353 Security.setProperty("aut
[all...]
H A DConfigurationTest.java87 oldAuthConfig = System.setProperty(AUTH_LOGIN_CONFIG, "="
110 Security.setProperty(LOGIN_CONFIG_PROVIDER, ConfTestProvider.class
117 Security.setProperty(LOGIN_CONFIG_PROVIDER, "ThereIsNoSuchClass");
128 Security.setProperty(LOGIN_CONFIG_PROVIDER, this.getClass()
139 Security.setProperty(LOGIN_CONFIG_PROVIDER,
217 props.setProperty("login.config.url.1", "file:"
219 props.setProperty("login.config.url.2", "file:"
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DTestUtils.java75 properties.setProperty(key, value);
/external/chromium_org/third_party/skia/src/animator/
H A DSkDisplayPost.h40 virtual bool setProperty(int index, SkScriptValue& );
H A DSkDrawColor.h30 virtual bool setProperty(int index, SkScriptValue&);
H A DSkDrawRectangle.h30 virtual bool setProperty(int index, SkScriptValue& );
/external/opencv/otherlibs/highgui/
H A Dcvcap.cpp87 return capture ? capture->setProperty(id, value) : 0;
/external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
H A DJAXPTest.java41 //System.setProperty("javax.xml.parsers.SAXParserFactory", SAXFactoryImpl.class.toString());
42 System.setProperty("javax.xml.parsers.SAXParserFactory", "org.ccil.cowan.tagsoup.jaxp.SAXFactoryImpl");
H A DSAXParserImpl.java88 public void setProperty(String name, Object value) method in class:SAXParserImpl
91 parser.setProperty(name, value);
/external/chromium_org/chrome/browser/resources/chromeos/first_run/
H A Dstep.js92 style.setProperty(property, position[property] + 'px');
224 this.style.setProperty('opacity', '0');
245 this.style.setProperty('left', left + 'px');
246 this.style.setProperty('top', top + 'px');
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLHRElement.cpp82 style->setProperty(CSSPropertyBorderColor, darkGrayValue);
83 style->setProperty(CSSPropertyBackgroundColor, darkGrayValue);
/external/easymock/src/org/easymock/internal/
H A DEasyMockProperties.java31 * <li>explicit call to setProperty</li>
121 public String setProperty(String key, String value) { method in class:EasyMockProperties
129 return (String) properties.setProperty(key, value);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/services/rss/
H A DRSSFeedWatcherTask.java174 this.getProject().setProperty(feedWatchActionTheValue + DOT + j,!isNullString(newContent)?newContent:oldContent);
180 if (!isNullString(oldContent)) { this.getProject().setProperty(feedWatchActionOldValue + DOT + j,oldContent); }
181 if (!isNullString(newContent)) { this.getProject().setProperty(feedWatchActionNewValue + DOT + j,newContent); }
191 if (!isNullString(out)) { this.getProject().setProperty(feedWatchActionError + DOT + j, out); }
194 if (!isNullString(out)) { this.getProject().setProperty(feedWatchActionOuput + DOT + j, out); }
197 if (!RSSFeedUtil.EXPECTED_RESULT.equals(out)) { this.getProject().setProperty(feedWatchActionResult + DOT + j, out); }
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DStylePropertySet.h196 bool setProperty(CSSPropertyID, const String& value, bool important = false, StyleSheetContents* contextStyleSheet = 0);
197 void setProperty(CSSPropertyID, PassRefPtr<CSSValue>, bool important = false);
200 bool setProperty(CSSPropertyID, CSSValueID identifier, bool important = false);
201 bool setProperty(CSSPropertyID, CSSPropertyID identifier, bool important = false);
204 void setProperty(const CSSProperty&, CSSProperty* slot = 0);
/external/chromium_org/third_party/WebKit/Source/testing/runner/
H A DCppBoundClass.cpp142 static bool setProperty(NPObject*, NPIdentifier, const NPVariant* value);
157 CppNPObject::setProperty,
201 bool CppNPObject::setProperty(NPObject* npObj, NPIdentifier ident, const NPVariant* value) function in class:WebTestRunner::CppNPObject
204 return obj->boundClass->setProperty(ident, value);
273 bool CppBoundClass::setProperty(NPIdentifier ident, const NPVariant* value) function in class:WebTestRunner::CppBoundClass
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPMetaImpl.java771 setProperty(schemaNS, propName, propValue ? TRUESTR : FALSESTR, options);
781 setProperty(schemaNS, propName, propValue ? TRUESTR : FALSESTR, null);
800 setProperty(schemaNS, propName, new Integer(propValue), options);
810 setProperty(schemaNS, propName, new Integer(propValue), null);
829 setProperty(schemaNS, propName, new Long(propValue), options);
839 setProperty(schemaNS, propName, new Long(propValue), null);
858 setProperty(schemaNS, propName, new Double(propValue), options);
868 setProperty(schemaNS, propName, new Double(propValue), null);
888 setProperty(schemaNS, propName, propValue, options);
898 setProperty(schemaN
1105 public void setProperty(String schemaNS, String propName, Object propValue, method in class:XMPMetaImpl
1130 public void setProperty(String schemaNS, String propName, Object propValue) throws XMPException method in class:XMPMetaImpl
[all...]

Completed in 4627 milliseconds

1234567891011