Searched refs:args (Results 426 - 450 of 6373) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKStyleFactory.java129 private final Object[] args; field in class:GTKStyleFactory.ComplexKey
131 ComplexKey(WidgetType wt, Object... args) { argument
133 this.args = args;
139 if (args != null) {
140 for (Object arg : args) {
154 if (this.args == null && that.args == null) {
157 if (this.args != null && that.args !
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DArrayExpression.java43 public ArrayExpression(long where, Expression args[]) { argument
44 super(ARRAY, where, Type.tError, null, args);
63 for (int i = 0 ; i < args.length ; i++) {
64 vset = args[i].checkInitializer(env, ctx, vset, t, exp);
65 args[i] = convert(env, ctx, t, args[i]);
75 for (int i = 0 ; i < args.length ; i++) {
76 args[i] = args[i].inline(env, ctx);
77 if (args[
[all...]
H A DNewArrayExpression.java46 public NewArrayExpression(long where, Expression right, Expression args[]) { argument
47 super(NEWARRAY, where, Type.tError, right, args);
50 public NewArrayExpression(long where, Expression right, Expression args[], Expression init) { argument
51 this(where, right, args);
62 for (int i = 0 ; i < args.length ; i++) {
63 Expression dim = args[i];
74 args[i] = convert(env, ctx, Type.tInt, dim);
98 for (int i = 0 ; i < args.length ; i++) {
99 if (args[i] != null) {
100 e = (e != null) ? new CommaExpression(where, e, args[
[all...]
/openjdk7/jdk/test/com/sun/jdi/sde/
H A DFilterMangleTest.java50 public static void main(String[] args) { argument
52 onion.pickle.Mangle.main(args);
71 FilterMangleTest (String args[]) { argument
72 super(args);
75 public static void main(String[] args) throws Exception { argument
77 if (args.length != 0) {
78 if (args[0].startsWith("SDE-")) {
80 if (args[0].charAt(4) == 'f') {
83 pattern = args[0].substring(5);
84 String[] args2 = new String[args
[all...]
/openjdk7/langtools/test/tools/javac/
H A DT6873845.java13 public static void main(String... args) throws Exception { argument
46 List<String> args = new ArrayList<String>();
47 args.addAll(opts);
48 args.add("-d");
49 args.add(testClasses.getPath());
50 args.add(new File(testSrc, "T6873845.java").getPath());
51 compile(args); // to verify resource strings exist
52 args.add(0, "-XDrawDiagnostics");
53 String out = compile(args);
58 String compile(List<String> args) throw argument
[all...]
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/rmi/
H A DMain.java168 public static void main(String[] args) { argument
170 parseArgs(args);
198 static void parseArgs(String[] args) { argument
199 for (int i = 0; i < args.length; i++) {
200 if (args[i].equals("-h")) {
203 } else if (args[i].equals("-v")) {
205 } else if (args[i].equals("-l")) {
207 } else if (args[i].equals("-t")) {
208 if (++i >= args.length)
212 testDurationSeconds = Integer.parseInt(args[
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/
H A DDatatypeException.java47 protected Object[] args; field in class:DatatypeException
54 * @param args error arguments
56 public DatatypeException(String key, Object[] args) { argument
59 this.args = args;
77 return args;
99 if (args != null) {
101 msg = java.text.MessageFormat.format(msg, args);
/openjdk7/hotspot/agent/test/jdi/
H A Drunjdb.sh43 args=
66 if [ ! -z "$args" ] ; then
73 args="$args $1"
80 args="$1"
96 if [ -z "$args" ] ; then
103 sun.jvm.hotspot.jdi.SACoreAttachingConnector:core=$args,javaExecutable=$jdk/bin/java
/openjdk7/jdk/src/share/demo/jfc/TableExample/
H A DTableExample2.java85 public static void main(String[] args) { argument
86 if (args.length != 5) {
108 new TableExample2(args[0], args[1], args[2], args[3], args[4]);
/openjdk7/jdk/test/com/sun/jdi/
H A DAnyDebuggeeTest.java60 public static void main(String[] args){ argument
83 AnyDebuggeeTest(String args[]) { argument
84 super(args);
87 public static void main(String[] args) throws Exception { argument
89 * If args contains @@xxxx, then that is the
92 for (int ii = 0; ii < args.length; ii ++) {
93 if (args[ii].startsWith("@@")) {
94 targetName = args[ii] = args[ii].substring(2);
97 new AnyDebuggeeTest(args)
[all...]
/openjdk7/jdk/test/sun/tools/common/
H A DSimpleApplication.java61 final public void doMyAppFinish(String[] args) throws Exception { argument
76 final public void doMyAppStart(String[] args) throws Exception { argument
77 if (args.length < 1) {
87 File f = new File(args[0]);
98 public void doMyAppWork(String[] args) throws Exception { argument
101 public static void main(String[] args) throws Exception { argument
107 myApp.doMyAppStart(args); // do the app start protocol
111 myApp.doMyAppWork(args); // do the app work
116 myApp.doMyAppFinish(args); // do the app finish protocol
/openjdk7/jdk/src/solaris/demo/jni/Poller/
H A DClient.java57 public static void main (String args[]) { argument
61 if (args.length < 1 || args.length > 3) {
69 if (args.length >= 1)
70 totalConn = java.lang.Integer.valueOf(args[0]).intValue();
71 if (args.length >= 2)
72 host = args[1];
73 if (args.length == 3)
74 bytesToSend = java.lang.Integer.valueOf(args[2]).intValue() * 1024;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DInvocableCallable.java47 public Object call(Object[] args) throws ScriptException { argument
50 return invocable.invokeFunction(name, args);
52 return invocable.invokeMethod(target, name, args);
/openjdk7/jdk/make/tools/sharing/tests/
H A DGHello.java33 public static void main(String[] args) { argument
37 if (args.length == 1 && args[0].equals("quit")) {
H A DJHello.java33 public static void main(String[] args) { argument
37 if (args.length == 1 && args[0].equals("quit")) {
/openjdk7/jdk/test/com/sun/management/OperatingSystemMXBean/
H A DGetFreePhysicalMemorySize.java66 public static void main(String args[]) throws Exception { argument
67 if (args.length > 0 && args[0].equals("trace")) {
H A DGetFreeSwapSpaceSize.java63 public static void main(String args[]) throws Exception { argument
64 if (args.length > 0 && args[0].equals("trace")) {
H A DGetTotalPhysicalMemorySize.java65 public static void main(String args[]) throws Exception { argument
66 if (args.length > 0 && args[0].equals("trace")) {
/openjdk7/jdk/test/com/sun/management/UnixOperatingSystemMXBean/
H A DGetMaxFileDescriptorCount.java54 public static void main(String args[]) throws Exception { argument
55 if (args.length > 0 && args[0].equals("trace")) {
H A DGetOpenFileDescriptorCount.java53 public static void main(String args[]) throws Exception { argument
54 if (args.length > 0 && args[0].equals("trace")) {
/openjdk7/jdk/test/com/sun/tools/attach/
H A DPermissionTest.java35 public static void main(String args[]) throws Exception { argument
41 String pid = args[0];
42 boolean shouldFail = Boolean.parseBoolean(args[1]);
/openjdk7/jdk/test/java/lang/instrument/
H A DRetransformApp.java30 public static void main(String args[]) throws Exception { argument
31 (new RetransformApp()).run(args, System.out);
38 public void run(String args[], PrintStream out) throws Exception { argument
/openjdk7/jdk/test/java/net/InetAddress/
H A DIsHostReachableBug.java35 public static void main(String[] args) throws Exception{ argument
40 if (args.length > 0)
41 hostName = args[0];
/openjdk7/jdk/test/sun/security/provider/PolicyParser/
H A DBogusGrants.java38 public static void main(String args[]) throws Exception { argument
40 for (int i=0; i < args.length; i++) {
43 String pfile = new File(dir, args[i]).getPath();
/openjdk7/jdk/test/tools/launcher/
H A DUnicodeCleanup.java31 * Equivalent to "rm -rf args...", but on NT-based Windows can
44 public static void main(String[] args) { argument
46 for (int i = 0; i < args.length; i++) {
47 delete(new File(args[i]));

Completed in 109 milliseconds

<<11121314151617181920>>