Searched refs:args (Results 26 - 50 of 6373) sorted by relevance

1234567891011>>

/openjdk7/langtools/test/tools/javac/unicode/
H A DSubChar.java44 public static void main(String args[]) { argument
/openjdk7/langtools/test/tools/javac/DefiniteAssignment/
H A DDUSwitch2.java34 public static void main(final String[] args) { argument
35 switch(args.length) {
/openjdk7/langtools/test/tools/javac/
H A DT6230128.java7 public void foo(Object[] args) { } argument
11 void foo(Object... args) { } argument
H A DT6407257.java35 public static void main(String... args) { argument
36 main(args);
H A DUnreachableVar.java36 public static void main(String[] args) { argument
37 switch (args.length) {
46 result += args.getClass().getName();
H A DSwitchScope.java34 public static void main(String[] args) { argument
35 switch (args.length) {
H A DT6224167.java10 void printf(String s, Object[] args) { } argument
11 void printf(String s, Object... args) { } argument
/openjdk7/langtools/test/tools/javac/varargs/6313164/p1/
H A DB.java28 public void foo1(A... args) { } argument
29 public void foo2(A... args) { } argument
30 public void foo2(Object... args) { } argument
31 public <X extends A> void foo3(X... args) { } argument
32 public <X extends A> void foo4(X... args) { } argument
33 public void foo4(Object... args) { } argument
/openjdk7/jdk/src/share/native/common/
H A Djio.c36 jio_vsnprintf(char *str, size_t count, const char *fmt, va_list args);
43 va_list args; local
44 va_start(args, fmt);
45 len = jio_vsnprintf(str, count, fmt, args);
46 va_end(args);
52 jio_vfprintf(FILE *, const char *fmt, va_list args);
59 va_list args; local
60 va_start(args, fmt);
61 len = jio_vfprintf(fp, fmt, args);
62 va_end(args);
[all...]
/openjdk7/hotspot/test/compiler/7041100/
H A DTest7041100.java36 public static void main(String[] args) throws Exception { argument
38 stringEQ(args[0], args[1]);
39 stringEQ(args[0], args[0]);
40 stringEQ(args[0], n);
41 stringEQ(n, args[0]);
/openjdk7/jdk/test/java/net/InetAddress/ptr/
H A DLookup.java34 public static void main(String args[]) throws UnknownHostException { argument
38 if (args[0].equals("-q=PTR")) {
39 InetAddress ia = InetAddress.getByName(args[1]);
47 if (args[0].equals("-q=A")) {
48 addr = args[1];
50 addr = args[0];
52 InetAddress ia = InetAddress.getByName(args[1]);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXMLSchemaException.java37 Object[] args; field in class:XMLSchemaException
40 public XMLSchemaException(String key, Object[] args) { argument
42 this.args = args;
50 return args;
/openjdk7/jdk/src/macosx/bundle/appbundler/test/
H A DTest.java28 public static void main(String[] args) { argument
31 for (int i = 0; i < args.length; i++) {
32 System.out.println("arg[" + i + "] = " + args[i]);
/openjdk7/langtools/test/tools/javac/diags/examples/
H A DLabelInUse.java27 void m(String... args) { argument
29 for (String a1: args) {
31 for (String a2: args) {
H A DForeachNotSupported.java28 void m(String[] args) { argument
29 for (String a: args) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/apt/
H A DOptions.java54 public void parseArguments(String[] args) throws BadCommandLineException { argument
55 for (int i = 0 ; i <args.length; i++) {
56 if (args[i].charAt(0)== '-') {
57 int j = parseArgument(args,i);
60 Messages.UNRECOGNIZED_PARAMETER.format(args[i]));
63 arguments.add(args[i]);
68 private int parseArgument( String[] args, int i ) throws BadCommandLineException { argument
69 if (args[i].equals("-d")) {
70 if (i == args.length - 1)
72 (Messages.OPERAND_MISSING.format(args[
[all...]
/openjdk7/jdk/test/sun/tools/common/
H A DSleeperApplication.java33 public void doMyAppWork(String[] args) throws Exception { argument
36 // args[0] is the port-file
37 if (args.length < 2) {
42 sleep_time = Integer.parseInt(args[1]);
44 throw new RuntimeException("Error: '" + args[1] +
52 public static void main(String[] args) throws Exception { argument
57 SimpleApplication.main(args);
/openjdk7/hotspot/test/sanity/
H A DWBApi.java35 public static void main(String... args) { argument
36 System.out.printf("args at: %x\n",WhiteBox.getWhiteBox().getObjectAddress(args));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DObjectHistogram.java30 public static void main(String[] args) { argument
32 sun.jvm.hotspot.tools.ObjectHistogram.main(args);
H A DStackTrace.java30 public static void main(String[] args) { argument
32 sun.jvm.hotspot.tools.StackTrace.main(args);
/openjdk7/jdk/test/java/io/Serializable/InvalidClassException/noargctor/
H A DTest.java36 public static void main(String[] args) argument
38 Serialize.SubclassAcrossPackage.main(args);
/openjdk7/jdk/test/java/rmi/MarshalledObject/compare/
H A DHashCode.java36 public static void main(String[] args) throws Throwable { argument
37 Compare.compareHashCodes(args);
/openjdk7/langtools/test/tools/javac/varargs/
H A DT7013865.java32 public <X extends Number> void m(X... args) { } argument
33 public void m(Object... args) { } argument
H A DWarn2.java38 static void f(String fmt, Object... args) {} argument
40 public static void main(String[] args) { argument
/openjdk7/hotspot/test/runtime/7167069/
H A DPrintAsFlag.java35 public static void main(String... args) { argument

Completed in 163 milliseconds

1234567891011>>