Searched refs:execute (Results 1 - 25 of 550) sorted by relevance

1234567891011>>

/openjdk10/jdk/src/java.base/share/classes/java/util/concurrent/
H A DExecutor.java49 * executor.execute(new RunnableTask1());
50 * executor.execute(new RunnableTask2());
59 * public void execute(Runnable r) {
70 * public void execute(Runnable r) {
90 * public synchronized void execute(Runnable r) {
105 * executor.execute(active);
128 * may execute in a new thread, in a pooled thread, or in the calling
136 void execute(Runnable command); method in interface:Executor
/openjdk10/langtools/test/tools/javac/T8037947/
H A DCCEForFunctionalInterExtedingRawSuperInterTest.java33 interface X<A> { <T extends A> void execute(int a); } method in interface:CCEForFunctionalInterExtedingRawSuperInterTest.X
34 interface Y<B> { <S extends B> void execute(int a); } method in interface:CCEForFunctionalInterExtedingRawSuperInterTest.Y
/openjdk10/langtools/test/tools/javac/lambda/methodReference/
H A DMethodRefNewInnerBootstrap.java33 public MyTest execute(int i); method in interface:MethodRefNewInnerBootstrap.Constructor
52 c1.execute(1);
55 c2.execute(2);
58 public MyTest execute(int i) {
62 c3.execute(3);
65 public MyTest execute(int i) {
67 return c.execute(i);
70 c4.execute(4);
H A DMethodRefNewInnerInLambdaNPE2.java34 MyTest execute(); method in interface:MethodRefNewInnerInLambdaNPE2.Constructor
47 MyTest mytest = t.getConstructor().execute();
/openjdk10/hotspot/test/serviceability/dcmd/compiler/
H A DCompilerDirectivesDCMDTest.java64 OutputAnalyzer output = executor.execute("Compiler.directives_print");
76 output = executor.execute("Compiler.directives_clear");
77 output = executor.execute("Compiler.directives_print");
84 output = executor.execute("Compiler.directives_remove");
85 output = executor.execute("Compiler.directives_print");
92 output = executor.execute("Compiler.directives_add " + filename);
93 output = executor.execute("Compiler.directives_print");
100 output = executor.execute("Compiler.directives_remove");
101 output = executor.execute("Compiler.directives_print");
108 output = executor.execute("Compile
[all...]
/openjdk10/langtools/src/jdk.javadoc/share/classes/com/sun/tools/javadoc/
H A DMain.java65 System.exit(execute(args));
73 public static int execute(String... args) { method in class:Main
88 public static int execute(ClassLoader docletParentClassLoader, String... args) { method in class:Main
99 public static int execute(String programName, String... args) { method in class:Main
115 public static int execute(String programName, ClassLoader docletParentClassLoader, String... args) { method in class:Main
127 public static int execute(String programName, method in class:Main
146 public static int execute(String programName, method in class:Main
164 public static int execute(String programName, method in class:Main
191 public static int execute(String programName, method in class:Main
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xpath/internal/functions/
H A DFuncStartsWith.java44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncStartsWith
46 return m_arg0.execute(xctxt).xstr().startsWith(m_arg1.execute(xctxt).xstr())
H A DFuncConcat.java45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncConcat
51 sb.append(m_arg0.execute(xctxt).str());
52 sb.append(m_arg1.execute(xctxt).str());
55 sb.append(m_arg2.execute(xctxt).str());
61 sb.append(m_args[i].execute(xctxt).str());
H A DFuncContains.java44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncContains
47 String s1 = m_arg0.execute(xctxt).str();
48 String s2 = m_arg1.execute(xctxt).str();
H A DFuncSubstringAfter.java45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncSubstringAfter
48 XMLString s1 = m_arg0.execute(xctxt).xstr();
49 XMLString s2 = m_arg1.execute(xctxt).xstr();
H A DFuncSubstringBefore.java44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncSubstringBefore
47 String s1 = m_arg0.execute(xctxt).str();
48 String s2 = m_arg1.execute(xctxt).str();
/openjdk10/langtools/test/jdk/javadoc/tool/sampleapi/
H A DSampleApiTest.java46 SampleApiDefaultRunner.execute(
54 int res1 = Main.execute(
76 int res2 = Main.execute(
/openjdk10/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/tool/
H A DMain.java52 System.exit(execute(args));
61 public static int execute(String... args) { method in class:Main
73 public static int execute(String[] args, PrintWriter writer) { method in class:Main
86 public static int execute(String[] args, PrintWriter outWriter, PrintWriter errWriter) { method in class:Main
/openjdk10/langtools/test/jdk/javadoc/tool/badSuper/
H A DBadSuper.java36 if (jdk.javadoc.internal.tool.Main.execute(
/openjdk10/langtools/test/jdk/javadoc/tool/sourceOnly/
H A DTest.java42 if (jdk.javadoc.internal.tool.Main.execute(jdargs) != 0)
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/pipe/
H A DFiberContextSwitchInterceptor.java46 * opaque method invocation {@link Work#execute}, allowing the use of
59 * &lt;R,P> R execute( Fiber f, P p, Work&lt;R,P> work ) {
64 * return work.execute(p);
82 * {@link Work#execute(Object)}.
85 * the value from {@link Work#execute(Object)}.
87 <R,P> R execute( Fiber f, P p, Work<R,P> work ); method in interface:FiberContextSwitchInterceptor
102 R execute(P param); method in interface:FiberContextSwitchInterceptor.Work
/openjdk10/jdk/test/java/beans/Statement/
H A DTest6788531.java35 new Statement(new Private(), "run", null).execute();
36 new Statement(new PrivateGeneric(), "run", new Object[] {"generic"}).execute();
/openjdk10/jdk/test/com/sun/crypto/provider/KeyGenerator/
H A DTest4628062.java43 public boolean execute(String algo, int[] keySizes) throws Exception { method in class:Test4628062
83 if (test.execute("AES", AES_SIZES)) {
86 if (test.execute("HmacSHA224", HMACSHA224_SIZES)) {
89 if (test.execute("HmacSHA256", HMACSHA256_SIZES)) {
92 if (test.execute("HmacSHA384", HMACSHA384_SIZES)) {
95 if (test.execute("HmacSHA512", HMACSHA512_SIZES)) {
/openjdk10/hotspot/src/share/vm/services/
H A DdiagnosticCommand.hpp57 virtual void execute(DCmdSource source, TRAPS);
74 virtual void execute(DCmdSource source, TRAPS);
91 virtual void execute(DCmdSource source, TRAPS) { function in class:CommandLineDCmd
113 virtual void execute(DCmdSource source, TRAPS);
135 virtual void execute(DCmdSource source, TRAPS);
158 virtual void execute(DCmdSource source, TRAPS);
177 virtual void execute(DCmdSource source, TRAPS);
199 virtual void execute(DCmdSource source, TRAPS);
224 virtual void execute(DCmdSource source, TRAPS);
240 virtual void execute(DCmdSourc
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xpath/internal/operations/
H A DOr.java46 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:Or
49 XObject expr1 = m_left.execute(xctxt);
53 XObject expr2 = m_right.execute(xctxt);
H A DAnd.java46 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:And
49 XObject expr1 = m_left.execute(xctxt);
53 XObject expr2 = m_right.execute(xctxt);
/openjdk10/jdk/src/java.desktop/macosx/classes/sun/lwawt/macosx/
H A DCMenuBar.java50 execute(parentPtr -> cMenu.execute(
70 execute(ptr -> nativeDelMenu(ptr, index));
/openjdk10/jdk/test/com/sun/crypto/provider/Cipher/AES/
H A DTest4512704.java44 public void execute(String mode) throws Exception { method in class:Test4512704
64 test.execute("CBC");
65 test.execute("GCM");
H A DTest4512524.java45 public void execute(String mode) throws Exception { method in class:Test4512524
68 test.execute("CBC");
69 test.execute("GCM");
/openjdk10/test/lib/jdk/test/lib/dcmd/
H A DCommandExecutor.java36 * @param cmd The diagnostic command to execute
38 * @throws CommandExecutorException if there is an exception on the "calling side" while trying to execute the
42 public final OutputAnalyzer execute(String cmd) throws CommandExecutorException { method in class:CommandExecutor
43 return execute(cmd, false);
49 * @param cmd The diagnostic command to execute
52 * @throws CommandExecutorException if there is an exception on the "calling side" while trying to execute the
56 public final OutputAnalyzer execute(String cmd, boolean silent) throws CommandExecutorException { method in class:CommandExecutor

Completed in 171 milliseconds

1234567891011>>