| /prebuilts/misc/common/robolectric/3.6.1/ |
| java-timeout | 43 function execute() { function 57 # or the string 'execute', which is used internally to execute the command under 67 elif [[ $timeout_secs = 'execute' ]]; then 68 # This means we actually have to execute the command. 69 execute "$@" 80 runalarm -t "$timeout_secs" "$0" 'execute' "$@" 82 gtimeout "${timeout_secs}s" "$0" 'execute' "$@" 84 # No way to set a timeout available, just execute directly.
|
| /cts/libs/vogar-expect/src/vogar/commands/ |
| Mkdir.java | 27 new Command("mkdir", "-p", directory.getPath()).execute(); method
|
| Rm.java | 27 new Command("rm", "-f", file.getPath()).execute(); method 31 new Command("rm", "-rf", directory.getPath()).execute(); method
|
| /external/autotest/client/tests/bash_shared_mapping/ |
| bash_shared_mapping.py | 21 def execute(self, testdir = None, iterations = 10000): member in class:bash_shared_mapping
|
| /external/autotest/client/tests/isic/ |
| isic.py | 25 def execute(self, args = '-s rand -d 127.0.0.1 -p 10000000'): member in class:isic
|
| /external/autotest/client/tests/pi_tests/ |
| pi_tests.py | 21 def execute(self, args = '1 300'): member in class:pi_tests
|
| /external/autotest/client/tests/posixtest/ |
| posixtest.py | 27 def execute(self): member in class:posixtest
|
| /external/autotest/client/tests/real_time_tests/ |
| real_time_tests.py | 16 def execute(self, args = '-l 10'): member in class:real_time_tests
|
| /external/autotest/client/tests/xmtest/ |
| xmtest.py | 33 def execute(self, args = ''): member in class:xmtest
|
| /external/autotest/scheduler/ |
| drone_task_queue.py | 28 def execute(self, drones, wait=True): member in class:DroneTaskQueue 31 @param drones: A list of drones with calls to execute. 36 of `execute`, by calling `get_results`.
|
| /external/autotest/server/cros/ |
| provision_actionables.py | 17 def execute(self, job, host, *args, **kwargs): member in class:BaseActionable 18 """Execute the action item. 28 raise NotImplementedError('Subclass should override execute.') 39 that will be passed when execute the test. 45 def execute(self, job, host, *args, **kwargs): member in class:TestActionable 46 """Execute the action item. 62 def execute(self, job, host, *args, **kwargs): member in class:RebootActionable 63 """Execute the action item.
|
| /frameworks/base/core/java/android/os/ |
| HandlerExecutor.java | 40 public void execute(Runnable command) { method in class:HandlerExecutor
|
| /libcore/ojluni/src/main/java/java/util/concurrent/ |
| Executor.java | 49 * 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(final Runnable r) { 107 * executor.execute(active); 130 * may execute in a new thread, in a pooled thread, or in the calling 138 void execute(Runnable command); method in interface:Executor
|
| /external/apache-http/src/org/apache/http/client/ |
| RequestDirector.java | 44 * The director decides which steps are necessary to execute a request. 47 * send a sequence of requests in order to execute one initial request. 82 * @param request the request to execute 92 HttpResponse execute(HttpHost target, HttpRequest request, method in interface:RequestDirector
|
| /external/apache-xml/src/main/java/org/apache/xpath/functions/ |
| FuncBoolean.java | 28 * Execute the Boolean() function. 36 * Execute the function. The function must return 43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncBoolean 45 return m_arg0.execute(xctxt).bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
|
| FuncCeiling.java | 28 * Execute the Ceiling() function. 36 * Execute the function. The function must return 43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncCeiling 45 return new XNumber(Math.ceil(m_arg0.execute(xctxt).num()));
|
| FuncFloor.java | 28 * Execute the Floor() function. 36 * Execute the function. The function must return 43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncFloor 45 return new XNumber(java.lang.Math.floor(m_arg0.execute(xctxt).num()));
|
| FuncNot.java | 28 * Execute the Not() function. 36 * Execute the function. The function must return 43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncNot 45 return m_arg0.execute(xctxt).bool() ? XBoolean.S_FALSE : XBoolean.S_TRUE;
|
| FuncNumber.java | 28 * Execute the Number() function. 36 * Execute the function. The function must return 43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncNumber
|
| FuncStartsWith.java | 28 * Execute the StartsWith() function. 36 * Execute the function. The function must return 43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncStartsWith 45 return m_arg0.execute(xctxt).xstr().startsWith(m_arg1.execute(xctxt).xstr())
|
| FuncString.java | 28 * Execute the String() function. 36 * Execute the function. The function must return 43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncString
|
| FuncStringLength.java | 28 * Execute the StringLength() function. 36 * Execute the function. The function must return 43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncStringLength
|
| /external/autotest/client/tests/cyclictest/ |
| cyclictest.py | 20 def execute(self, args = '-t 10 -l 100000'): member in class:cyclictest
|
| /external/autotest/client/tests/iosched_bugs/ |
| iosched_bugs.py | 20 def execute(self): member in class:iosched_bugs
|
| /external/autotest/client/tests/linus_stress/ |
| linus_stress.py | 39 def execute(self, iterations = 1): member in class:linus_stress
|