Searched refs:args (Results 451 - 475 of 6373) sorted by relevance

<<11121314151617181920>>

/openjdk7/langtools/src/share/classes/com/sun/tools/apt/util/
H A DBark.java123 * @param args Fields of the error message.
125 public void aptError(String key, Object... args) { argument
126 aptError(Position.NOPOS, key, args);
133 * @param args Fields of the error message.
135 public void aptError(int pos, String key, Object ... args) { argument
136 report(aptDiags.error(source, new SimpleDiagnosticPosition(pos), key, args));
142 * @param args Fields of the warning message.
144 public void aptWarning(String key, Object... args) { argument
145 aptWarning(Position.NOPOS, key, args);
152 * @param args Field
154 aptWarning(int pos, String key, Object ... args) argument
162 aptNote(String key, Object... args) argument
171 aptNote(int pos, String key, Object ... args) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/
H A DAccumulativeRunnable.java55 * protected void run(List&lt;String&gt; args) {
57 * setTextImpl(args.get(args.size() - 1));
78 * protected void run(List&lt;Rectangle&gt; args) {
79 * handleDirtyRegions(args);
100 * @param args accumulated argumets to process.
102 protected abstract void run(List<T> args); argument
108 * This implementation calls {@code run(List<T> args)} mehtod
121 * @param args the arguments to accumulate
124 public final synchronized void add(T... args) { argument
[all...]
/openjdk7/jdk/test/javax/crypto/JceSecurity/
H A DSunJCE_BC_LoadOrdering.java39 public static void main(String[] args) throws Exception { argument
42 main0(args);
48 public static void main0(String[] args) throws Exception { argument
/openjdk7/jdk/src/share/sample/nio/file/
H A DFileType.java45 public static void main(String[] args) throws IOException { argument
46 if (args.length == 0) {
50 for (String arg: args) {
/openjdk7/langtools/test/tools/javac/
H A DT6405099.java34 public static void main(String[] args) { argument
50 String[] args = {
57 int rc = com.sun.tools.javac.Main.compile(args, pw);
/openjdk7/langtools/test/tools/javac/api/6411310/
H A DT6411310.java45 void test(String... args) throws IOException { argument
56 public static void main(String... args) throws IOException { argument
57 new T6411310().test(args);
/openjdk7/langtools/test/tools/javap/6937244/
H A DT6937244.java33 public static void main(String[] args) throws Exception { argument
40 String[] args = { "java.lang.String" };
41 int rc = com.sun.tools.javap.Main.run(args, pw);
/openjdk7/langtools/test/tools/javap/
H A DT4501661.java33 public static void main(String... args) throws Exception { argument
54 List<String> args = new ArrayList<String>();
56 args.add("-private");
58 args.add("-protected");
60 args.add("-public");
61 boolean expectOK = (args.size() <= 1);
62 args.add(classFile.getPath());
63 String out = javap(args, expectOK);
95 String javap(List<String> args, boolean expectOK) { argument
98 int rc = com.sun.tools.javap.Main.run(args
[all...]
H A DT4884240.java35 public static void main(String... args) throws Exception { argument
42 String[] args = { "-sysinfo", "java.lang.Object" };
43 int rc = com.sun.tools.javap.Main.run(args, pw);
H A DT6587786.java33 public static void main(String[] args) throws Exception { argument
42 void javap(String... args) { argument
45 //sun.tools.javap.Main.entry(args);
46 int rc = com.sun.tools.javap.Main.run(args, out);
H A DT6715753.java33 public static void main(String... args) throws Exception { argument
40 String[] args = { "-notAnOption" };
41 int rc = com.sun.tools.javap.Main.run(args, pw);
H A DT6715767.java33 public static void main(String... args) throws Exception { argument
40 String[] args = { "java.lang.ClassLoader" };
41 int rc = com.sun.tools.javap.Main.run(args, pw);
H A DT6863746.java33 public static void main(String... args) throws Exception{ argument
38 String[] args = { "-c", "java.lang.Object" };
41 int rc = com.sun.tools.javap.Main.run(args, pw);
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DGenericListeningConnector.java104 public String startListening(String address, Map<String,? extends Connector.Argument> args) argument
107 TransportService.ListenKey listener = listenMap.get(args);
110 new ArrayList<String>(args.keySet()));
114 listenMap.put(args, listener);
119 startListening(Map<String,? extends Connector.Argument> args) argument
122 String address = argument(ARG_ADDRESS, args).value();
123 return startListening(address, args);
126 public void stopListening(Map<String,? extends Connector.Argument> args) argument
129 TransportService.ListenKey listener = listenMap.get(args);
132 new ArrayList<String>(args
139 accept(Map<String,? extends Connector.Argument> args) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJNarrowedClass.java50 private final List<JClass> args; field in class:JNarrowedClass
56 JNarrowedClass(JClass basis, List<JClass> args) { argument
60 this.args = args;
65 List<JClass> newArgs = new ArrayList<JClass>(args);
72 List<JClass> newArgs = new ArrayList<JClass>(args);
82 for (JClass c : args) {
98 for (JClass c : args) {
115 for (JClass c : args) {
128 f.t(basis).p('<').g(args)
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DOptions.java238 public void parseArguments( String[] args ) throws BadCommandLineException {
240 for (int i = 0; i < args.length; i++) {
241 if(args[i].length()==0)
243 if (args[i].charAt(0) == '-') {
244 int j = parseArguments(args,i);
246 throw new BadCommandLineException(WscompileMessages.WSCOMPILE_INVALID_OPTION(args[i]));
249 addFile(args[i]);
267 * Parses an option <code>args[i]</code> and return
276 protected int parseArguments(String[] args, int i) throws BadCommandLineException { argument
277 if (args[
332 requireArgument(String optionName, String[] args, int i) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DSwitchStatement.java43 Statement args[]; field in class:SwitchStatement
48 public SwitchStatement(long where, Expression expr, Statement args[]) { argument
51 this.args = args;
71 for (int i = 0 ; i < args.length ; i++) {
72 Statement s = args[i];
149 for (int i = 0 ; i < args.length ; i++) {
150 if (args[i] != null) {
151 args[i] = args[
[all...]
/openjdk7/hotspot/test/runtime/8010389/
H A DVMThreadDlopen.java34 public static void main(String[] args) throws Exception { argument
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/res/
H A DXSLMessages.java53 * @param args The arguments to be used as replacement text in the message
58 public static String createMessage(String msgKey, Object args[]) //throws Exception argument
65 return createMsg(XSLTBundle, msgKey, args);
76 * @param args The arguments to be used as replacement text in the message
81 public static String createWarning(String msgKey, Object args[]) //throws Exception argument
88 return createMsg(XSLTBundle, msgKey, args);
/openjdk7/hotspot/agent/test/jdi/
H A Dsagtest.java52 sagtest (String args[]) { argument
53 super(args);
56 public static void main(String[] args) throws Exception { argument
57 new sagtest(args).startTests();
/openjdk7/hotspot/agent/test/libproc/
H A DLibprocTest.java30 public static void main(String[] args) throws Exception { argument
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DcppInterpreterGenerator_sparc.hpp34 void adjust_callers_stack(Register args);
/openjdk7/jdk/make/tools/reorder/tests/
H A DLoadFrame.java31 public static void main(String[] args) { argument
H A DLoadJFrame.java31 public static void main(String[] args) { argument
H A DLoadToolkit.java31 public static void main(String[] args) { argument

Completed in 60 milliseconds

<<11121314151617181920>>