Searched refs:propValue (Results 1 - 24 of 24) sorted by relevance

/openjdk7/jdk/test/java/awt/Toolkit/ToolkitPropertyTest/
H A DSystemPropTest_1.java17 boolean propValue = Boolean.parseBoolean(System.getProperty("sun.awt.enableExtraMouseButtons"));
18 System.out.println("1. System.getProperty = " + propValue);
19 if (propValue){
20 throw new RuntimeException("TEST FAILED(1) : System property sun.awt.enableExtraMouseButtons = " + propValue);
29 propValue = Boolean.parseBoolean(System.getProperty("sun.awt.enableExtraMouseButtons"));
30 System.out.println("2. System.getProperty = " + propValue);
31 if (!propValue){
32 throw new RuntimeException("TEST FAILED(2) : System property sun.awt.enableExtraMouseButtons = " + propValue);
H A DSystemPropTest_2.java15 boolean propValue = Boolean.parseBoolean(System.getProperty("sun.awt.enableExtraMouseButtons"));
16 System.out.println("System.getProperty = " + propValue);
17 if (!propValue){
18 throw new RuntimeException("TEST FAILED : System property sun.awt.enableExtraMouseButtons = " + propValue);
H A DSystemPropTest_3.java15 boolean propValue = Boolean.parseBoolean(System.getProperty("sun.awt.enableExtraMouseButtons"));
17 System.out.println("System.getProperty = " + propValue);
18 if (propValue){
19 throw new RuntimeException("TEST FAILED : System property sun.awt.enableExtraMouseButtons = " + propValue);
H A DSystemPropTest_4.java23 boolean propValue = Boolean.parseBoolean(System.getProperty("sun.awt.enableExtraMouseButtons"));
24 if (!propValue){
25 throw new RuntimeException("TEST FAILED(1) : System property sun.awt.enableExtraMouseButtons = " + propValue);
33 propValue = Boolean.parseBoolean(System.getProperty("sun.awt.enableExtraMouseButtons"));
34 if (propValue){
35 throw new RuntimeException("TEST FAILED(2) : System property sun.awt.enableExtraMouseButtons = " + propValue);
H A DSystemPropTest_5.java23 boolean propValue = Boolean.parseBoolean(System.getProperty("sun.awt.enableExtraMouseButtons"));
24 if (propValue){
25 throw new RuntimeException("TEST FAILED(1) : System property sun.awt.enableExtraMouseButtons = " + propValue);
33 propValue = Boolean.parseBoolean(System.getProperty("sun.awt.enableExtraMouseButtons"));
34 if (!propValue){
35 throw new RuntimeException("TEST FAILED(2) : System property sun.awt.enableExtraMouseButtons = " + propValue);
H A DToolkitPropertyTest_Enable.java17 static boolean propValue; field in class:ToolkitPropertyTest_Enable
24 propValue = Boolean.parseBoolean(System.getProperty("sun.awt.enableExtraMouseButtons"));
54 System.out.println("Property = " + propValue);
76 if (!propValue){
77 throw new RuntimeException("TEST FAILED (0) : System property sun.awt.enableExtraMouseButtons = " + propValue);
H A DToolkitPropertyTest_Disable.java17 static boolean propValue; field in class:ToolkitPropertyTest_Disable
26 propValue = Boolean.parseBoolean(System.getProperty("sun.awt.enableExtraMouseButtons"));
55 System.out.println("Property = " + propValue);
75 if (propValue){
76 throw new RuntimeException("TEST FAILED (0): System property sun.awt.enableExtraMouseButtons = " + propValue);
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DThreadPool.java145 String propValue = AccessController.doPrivileged(new
147 if (propValue != null) {
149 return Integer.parseInt(propValue);
159 String propValue = AccessController.doPrivileged(new
161 if (propValue != null) {
164 .forName(propValue, true, ClassLoader.getSystemClassLoader());
/openjdk7/jdk/test/javax/management/remote/mandatory/notif/
H A DNotificationEmissionTest.java147 Object propValue)
150 testNotificationEmission(propValue);
152 echo("Did not get expected exception for value: " + propValue);
155 echo("Property has been correctly set to value: " + propValue);
159 echo("Got expected exception for value: " + propValue);
162 echo("Got unexpected exception for value: " + propValue);
190 public int testNotificationEmission(Object propValue) throws Exception { argument
191 return testNotificationEmission(true, propValue, false, true);
195 Object propValue,
221 env.put("jmx.remote.x.check.notification.emission", propValue);
146 testNotificationEmissionProperty(boolean exception, Object propValue) argument
194 testNotificationEmission(boolean prop, Object propValue, boolean sm, boolean policyPositive) argument
[all...]
/openjdk7/corba/src/share/classes/javax/rmi/CORBA/
H A DGetORBPropertiesFileAction.java58 String propValue = (String) AccessController.doPrivileged(
66 return propValue;
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DFileSystems.java112 String propValue = System
114 if (propValue != null) {
115 for (String cn: propValue.split(",")) {
/openjdk7/jdk/test/java/rmi/activation/Activatable/checkActivateRef/
H A DCheckActivateRef.java106 String propValue =
108 boolean useDynamicProxies = Boolean.parseBoolean(propValue);
129 p.put("java.rmi.server.useDynamicProxies", propValue);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DContextImpl.java76 public void set_one_value(String propName, Any propValue) argument
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DGSSUtil.java280 String propValue = AccessController.doPrivileged(
287 return (!propValue.equalsIgnoreCase("false"));
302 String propValue = AccessController.doPrivileged(
309 return (!propValue.equalsIgnoreCase("false"));
/openjdk7/corba/src/share/classes/javax/rmi/
H A DPortableRemoteObject.java246 String propValue = (String) AccessController.doPrivileged(
254 return propValue;
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileSystem.java60 String propValue = AccessController.doPrivileged(
62 boolean chdirAllowed = (propValue.length() == 0) ?
63 true : Boolean.valueOf(propValue);
/openjdk7/jdk/src/share/classes/java/security/
H A DSecurity.java914 String propValue = getProviderProperty(key, prov);
916 if (propValue == null) {
930 propValue = getProviderProperty(key, prov);
933 if (propValue == null) {
951 return isConstraintSatisfied(attrName, filterValue, propValue);
953 return filterValue.equalsIgnoreCase(propValue);
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileAttributes.java118 String propValue = AccessController.doPrivileged(
120 ensureAccurateMetadata = (propValue.length() == 0) ?
121 true : Boolean.valueOf(propValue);
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DORB.java200 String propValue = (String) AccessController.doPrivileged(
208 return propValue;
217 String propValue = (String) AccessController.doPrivileged(
264 return propValue;
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCDragSourceContextPeer.java58 String propValue = java.security.AccessController.doPrivileged(new sun.security.action.GetPropertyAction("apple.awt.dnd.defaultDragImageSize"));
59 if (propValue != null) {
61 double value = Double.parseDouble(propValue);
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DUnixAsynchronousSocketChannelImpl.java50 String propValue = AccessController.doPrivileged(
52 disableSynchronousRead = (propValue.length() == 0) ?
53 true : Boolean.valueOf(propValue);
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/security/
H A DMBeanServerAccessController.java648 String propValue = AccessController.doPrivileged(propAction);
649 boolean allowGetMBeansFromURL = "true".equalsIgnoreCase(propValue);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/io/
H A DValueHandlerImpl.java81 String propValue = (String) AccessController.doPrivileged(
89 if (propValue == null)
92 byte result = Byte.parseByte(propValue);
/openjdk7/jdk/src/share/classes/com/sun/jndi/cosnaming/
H A DCNCtx.java1095 java.lang.Object propValue)
1104 return _env.put(propName, propValue);
1094 addToEnvironment(String propName, java.lang.Object propValue) argument

Completed in 72 milliseconds