Searched defs:props (Results 101 - 107 of 107) sorted by relevance

12345

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orb/
H A DORBImpl.java350 private void preInit( String[] params, Properties props )
519 public void set_parameters( Properties props )
524 preInit( null, props ) ;
526 DataCollectorFactory.create( props, getLocalHostName() ) ;
530 protected void set_parameters(Applet app, Properties props) argument
532 preInit( null, props ) ;
534 DataCollectorFactory.create( app, props, getLocalHostName() ) ;
538 protected void set_parameters (String[] params, Properties props) argument
540 preInit( params, props ) ;
542 DataCollectorFactory.create( params, props, getLocalHostNam
[all...]
H A DORBSingleton.java142 public void set_parameters( Properties props ) {
145 protected void set_parameters(Applet app, Properties props) { argument
148 protected void set_parameters (String params[], Properties props) { argument
451 Properties props = new Properties() ;
453 fullORB.set_parameters( props ) ;
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapCtx.java275 public LdapCtx(String dn, String host, int port_number, Hashtable props, argument
280 if (props != null) {
281 envprops = (Hashtable) props.clone();
292 if (props.get(NETSCAPE_SCHEMA_BUG) != null ||
293 props.get(OLD_NETSCAPE_SCHEMA_BUG) != null) {
2210 // Update environment; reconnection will use new props
2269 // Update environment; reconnection will use new props
/openjdk7/jdk/src/share/classes/java/awt/
H A DToolkit.java1158 * @param props a Properties object containing zero or more properties.
1176 Properties props);
1175 getPrintJob(Frame frame, String jobtitle, Properties props) argument
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWToolkit.java624 Properties props) {
871 Map<String, Object> props = wprops.getProperties();
872 for (String propName : props.keySet()) {
873 Object val = props.get(propName);
898 * initialize only static props here and do not try to initialize props which depends on wprops,
623 getPrintJob(Frame frame, String doctitle, Properties props) argument
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.cpp313 static void set_property(Handle props, const char* key, const char* value, TRAPS) { argument
320 props,
330 #define PUTPROP(props, name, value) set_property((props), (name), (value), CHECK_(properties));
337 Handle props(THREAD, JNIHandles::resolve_non_null(properties));
342 PUTPROP(props, p->key(), p->value());
351 PUTPROP(props, "sun.nio.MaxDirectMemorySize", "-1");
355 PUTPROP(props, "sun.nio.MaxDirectMemorySize", as_chars);
383 PUTPROP(props, "sun.management.compiler", compiler_name);
4313 Handle props(THREA
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXToolkit.java1149 final Properties props) {
1155 PrintJob2D printJob = new PrintJob2D(frame, doctitle, props);
1148 getPrintJob(final Frame frame, final String doctitle, final Properties props) argument

Completed in 76 milliseconds

12345