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

12345

/openjdk7/jdk/src/share/classes/sun/misc/
H A DVM.java257 public static void saveAndRemoveProperties(Properties props) { argument
261 savedProps.putAll(props);
268 String s = (String)props.remove("sun.nio.MaxDirectMemorySize");
281 s = (String)props.remove("sun.nio.PageAlignDirectMemory");
288 s = props.getProperty("sun.lang.ClassLoader.allowArraySyntax");
297 s = props.getProperty("jdk.reflect.allowGetCallerClass");
301 Boolean.valueOf(props.getProperty("jdk.logging.allowStackWalkSearch"));
305 props.remove("java.lang.Integer.IntegerCache.high");
308 props.remove("sun.zip.disableMemoryMapping");
311 props
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DGifImageDecoder.java64 Hashtable props = new Hashtable(); field in class:GifImageDecoder
194 props.put("comment", comment);
316 props.put("aspectratio", ""+((ExtractByte(buf, 12) + 15) / 64.0));
546 setProperties(props);
H A DImageRepresentation.java196 public void setProperties(Hashtable<?,?> props) { argument
200 image.setProperties(props);
/openjdk7/jdk/test/java/awt/Toolkit/Headless/ExceptionContract/
H A DExceptionContract.java297 public PrintJob getPrintJob(Frame frame, String jobtitle, Properties props) { argument
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXTree.java476 String props, ObjectName mbean) {
478 int eq = props.indexOf("=");
480 String key = props.substring(0, eq);
483 props = props.substring(key.length() + 1 + value.length());
484 if (props.startsWith(",")) {
485 props = props.substring(1);
487 eq = props.indexOf("=");
503 String props
475 extractKeyValuePairs( String props, ObjectName mbean) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/management/jmxremote/
H A DConnectorBootstrap.java296 final Properties props = Agent.loadManagementProperties();
297 if (props == null) {
301 final String portStr = props.getProperty(PropertyNames.PORT);
302 return startRemoteConnectorServer(portStr, props);
309 * (String portStr, Properties props)
311 public static synchronized JMXConnectorServer initialize(String portStr, Properties props) { argument
312 return startRemoteConnectorServer(portStr, props);
319 public static synchronized JMXConnectorServer startRemoteConnectorServer(String portStr, Properties props) { argument
336 String rmiPortStr = props.getProperty(PropertyNames.RMI_PORT);
350 props
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DPrintJob2D.java287 private Properties props; field in class:PrintJob2D
298 final Properties props) {
299 this.props = props;
1147 if (props == null) {
1153 str = props.getProperty(DEST_PROP);
1161 str = props.getProperty(PRINTER_PROP);
1165 str = props.getProperty(FILENAME_PROP);
1169 str = props.getProperty(NUMCOPIES_PROP);
1174 this.options = props
297 PrintJob2D(Frame frame, String doctitle, final Properties props) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DTransformerImpl.java1157 * @param props a java.util.Property object on which the properties are set.
1160 private void setDefaults(Properties props, String method) argument
1169 props.setProperty(name, method_props.getProperty(name));
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLStreamReaderImpl.java124 * @param props
127 public XMLStreamReaderImpl(InputStream inputStream, PropertyManager props) throws XMLStreamException { argument
128 init(props);
141 * @param props
144 public XMLStreamReaderImpl(String systemid, PropertyManager props) throws XMLStreamException { argument
145 init(props);
156 * @param props
159 public XMLStreamReaderImpl(InputStream inputStream, String encoding, PropertyManager props ) throws XMLStreamException {
160 init(props);
169 * @param props
172 XMLStreamReaderImpl(Reader reader, PropertyManager props) argument
186 XMLStreamReaderImpl(XMLInputSource inputSource, PropertyManager props) argument
[all...]
H A DXMLDTDScannerImpl.java397 public void reset(PropertyManager props) { argument
398 setPropertyManager(props);
399 super.reset(props);
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DORB.java225 Properties props = new Properties() ;
228 props.load( fis );
233 return props ;
243 Properties props = getFileProperties( fileName ) ;
245 if (props != null) {
246 String value = props.getProperty( name ) ;
254 props = getFileProperties( fileName ) ;
256 if (props == null)
259 return props.getProperty( name ) ;
328 * @param props applicatio
331 init(String[] args, Properties props) argument
367 init(Applet app, Properties props) argument
396 set_parameters(String[] args, Properties props) argument
407 set_parameters(Applet app, Properties props) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DUIManager.java1223 final Properties props = new Properties();
1230 props.put(defaultLAFKey, getSystemLookAndFeelClassName());
1240 props.load(ins);
1250 checkProperty(props, defaultLAFKey);
1251 checkProperty(props, auxiliaryLAFsKey);
1252 checkProperty(props, multiplexingLAFKey);
1253 checkProperty(props, installedLAFsKey);
1254 checkProperty(props, disableMnemonicKey);
1259 return props;
1263 private static void checkProperty(Properties props, Strin argument
[all...]
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletViewer.java182 addMenuItem(m, "menuitem.props");
785 static AppletProps props; field in class:AppletViewer
787 if (props == null) {
788 props = new AppletProps();
790 props.addNotify();
791 props.setVisible(true);
943 if (amh.getMessage("menuitem.props").equals(label)) {
/openjdk7/jdk/src/share/classes/sun/awt/
H A DHToolkit.java302 public PrintJob getPrintJob(Frame frame, String doctitle, Properties props) argument
H A DHeadlessToolkit.java323 public PrintJob getPrintJob(Frame frame, String doctitle, Properties props) argument
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DLogManager.java152 private Properties props = new Properties(); field in class:LogManager
1111 props = new Properties();
1199 props.load(ins);
1235 return props.getProperty(name);
1442 Enumeration<?> enum_ = props.propertyNames();
/openjdk7/jdk/src/share/classes/javax/management/
H A DObjectName.java530 // correct pattern spec in props, continue
668 * @param props Map containing couples <i>key</i> -> <i>value</i>.
676 private void construct(String domain, Map<String,String> props) argument
684 if (props == null)
688 if (props.isEmpty())
702 int nb_props = props.size();
710 for (Map.Entry<String,String> entry : props.entrySet()) {
779 * array, by filling 'canonical_chars' array with found 'nb-props'
1985 final Property[] props = _ca_array;
1987 for (int i = props
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWToolkit.java441 public PrintJob getPrintJob(Frame frame, String doctitle, Properties props) { argument
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_DesktopProperties.cpp805 AwtDesktopProperties * props = local
807 DASSERT( !IsBadReadPtr(props, sizeof(*props)) );
808 return props;
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/report/
H A DJ2DAnalyzer.java534 private Hashtable props = new Hashtable(); field in class:J2DAnalyzer.SingleResultSetHolder
563 props.put(key, value);
567 return this.props;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DStylesheet.java280 public void setOutputProperties(Properties props) { argument
281 _outputProperties = props;
/openjdk7/jaxp/src/com/sun/xml/internal/stream/writers/
H A DXMLStreamWriterImpl.java178 * @param props Properties used by this writer
180 public XMLStreamWriterImpl(OutputStream outputStream, PropertyManager props) argument
183 // cannot call this(outputStream, null, props); for constructor,
187 this(new OutputStreamWriter(outputStream), props);
195 * @param props Properties used by this writer
198 PropertyManager props) throws java.io.IOException {
199 this(new StreamResult(outputStream), encoding, props);
206 * @param props Properties used by this writer
208 public XMLStreamWriterImpl(Writer writer, PropertyManager props) argument
210 this(new StreamResult(writer), null, props);
197 XMLStreamWriterImpl(OutputStream outputStream, String encoding, PropertyManager props) argument
220 XMLStreamWriterImpl(StreamResult sr, String encoding, PropertyManager props) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/digest/
H A DDigestMD5Base.java170 * @param props A map of property/value pairs
176 * @throws SaslException If invalid value found in props.
178 protected DigestMD5Base(Map props, String className, int firstStep, argument
180 super(props, className); // sets QOP, STENGTH and BUFFER_SIZE
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
H A DMToolkit.java423 final Properties props) {
429 PrintJob2D printJob = new PrintJob2D(frame, doctitle, props);
422 getPrintJob(final Frame frame, final String doctitle, final Properties props) argument
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DToStream.java2533 * @param props the list of properties to search in.
2542 private void setCdataSectionElements(String key, Properties props) argument
2545 String s = props.getProperty(key);

Completed in 125 milliseconds

12345