Searched defs:execute (Results 1 - 25 of 142) sorted by relevance

123456

/openjdk7/jdk/src/share/classes/sun/misc/
H A DRequest.java40 abstract public void execute(); method in class:Request
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DW83.java102 int p = execute(
111 p = execute(
129 private static int execute(String... args) throws Exception { method in class:W83
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DExecutor.java49 * executor.execute(new RunnableTask1());
50 * executor.execute(new RunnableTask2());
61 * public void execute(Runnable r) {
72 * public void execute(Runnable r) {
92 * public synchronized void execute(final Runnable r) {
109 * executor.execute(active);
132 * may execute in a new thread, in a pooled thread, or in the calling
140 void execute(Runnable command); method in interface:Executor
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/AES/
H A DTest4511676.java43 public boolean execute() throws Exception { method in class:Test4511676
67 if (test.execute()) {
H A DTest4512524.java47 public boolean execute() throws Exception { method in class:Test4512524
73 if (test.execute()) {
H A DTest4512704.java46 public boolean execute() throws Exception { method in class:Test4512704
71 if (test.execute()) {
H A DTest4513830.java50 public boolean execute() throws Exception { method in class:Test4513830
92 if (test.execute()) {
H A DTest4517355.java48 public boolean execute() throws Exception { method in class:Test4517355
96 if (test.execute()) {
H A DTest4626070.java41 public boolean execute() throws Exception { method in class:Test4626070
71 if (test.execute()) {
/openjdk7/jdk/test/com/sun/crypto/provider/KeyGenerator/
H A DTest4628062.java41 public boolean execute() throws Exception { method in class:Test4628062
79 if (test.execute()) {
/openjdk7/jdk/test/java/nio/MappedByteBuffer/
H A DTruncate.java60 execute(new Callable<Void>() {
68 execute(new Callable<Void>() {
81 static void execute(final Callable<?> c) { method in class:Truncate
/openjdk7/jdk/src/macosx/classes/com/apple/concurrent/
H A DLibDispatchConcurrentQueue.java36 public void execute(final Runnable task) { method in class:LibDispatchConcurrentQueue
H A DLibDispatchMainQueue.java42 public void execute(final Runnable task) { method in class:LibDispatchMainQueue.Sync
49 public void execute(final Runnable task) { method in class:LibDispatchMainQueue.ASync
/openjdk7/hotspot/src/share/vm/services/
H A DnmtDCmd.cpp74 void NMTDCmd::execute(TRAPS) { function in class:NMTDCmd
113 output()->print_cr("No command to execute");
/openjdk7/langtools/make/tools/CompileProperties/
H A DCompilePropertiesTask.java49 public void execute() { method in class:CompilePropertiesTask
/openjdk7/jdk/test/sun/nio/cs/
H A DJISAutoDetectTest.java45 test.execute();
48 void execute() throws Exception { method in class:JISAutoDetectTest
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/functions/
H A DFuncBoolean.java45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncBoolean
47 return m_arg0.execute(xctxt).bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DFuncCeiling.java45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncCeiling
47 return new XNumber(Math.ceil(m_arg0.execute(xctxt).num()));
H A DFuncConcat.java46 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncConcat
52 sb.append(m_arg0.execute(xctxt).str());
53 sb.append(m_arg1.execute(xctxt).str());
56 sb.append(m_arg2.execute(xctxt).str());
62 sb.append(m_args[i].execute(xctxt).str());
H A DFuncContains.java45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncContains
48 String s1 = m_arg0.execute(xctxt).str();
49 String s2 = m_arg1.execute(xctxt).str();
H A DFuncCount.java46 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncCount
H A DFuncCurrent.java54 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncCurrent
H A DFuncDoclocation.java47 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncDoclocation
H A DFuncExtElementAvailable.java52 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncExtElementAvailable
59 String fullName = m_arg0.execute(xctxt).str();
H A DFuncExtFunctionAvailable.java50 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncExtFunctionAvailable
57 String fullName = m_arg0.execute(xctxt).str();

Completed in 337 milliseconds

123456