HomeSort by relevance Sort by last modified time
    Searched refs:execute (Results 1 - 25 of 1180) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/libs/vogar-expect/src/vogar/commands/
Rm.java 27 new Command("rm", "-f", file.getPath()).execute(); method
31 new Command("rm", "-rf", directory.getPath()).execute(); method
Mkdir.java 27 new Command("mkdir", "-p", directory.getPath()).execute(); method
  /external/apache-http/src/org/apache/http/client/
HttpClient.java 47 * execute HTTP requests while handling cookies, authentication,
91 * @param request the request to execute
101 HttpResponse execute(HttpUriRequest request) method in interface:HttpClient
110 * @param request the request to execute
122 HttpResponse execute(HttpUriRequest request, HttpContext context) method in interface:HttpClient
134 * @param request the request to execute
144 HttpResponse execute(HttpHost target, HttpRequest request) method in interface:HttpClient
155 * @param request the request to execute
167 HttpResponse execute(HttpHost target, HttpRequest request, method in interface:HttpClient
176 * @param request the request to execute
183 <T> T execute( method in interface:HttpClient
200 <T> T execute( method in interface:HttpClient
222 <T> T execute( method in interface:HttpClient
246 <T> T execute( method in interface:HttpClient
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
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())
FuncSubstringBefore.java 28 * Execute the SubstringBefore() function.
36 * Execute the function. The function must return
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncSubstringBefore
46 String s1 = m_arg0.execute(xctxt).str();
47 String s2 = m_arg1.execute(xctxt).str();
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;
FuncConcat.java 29 * Execute the Concat() function.
37 * Execute the function. The function must return
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncConcat
50 sb.append(m_arg0.execute(xctxt).str());
51 sb.append(m_arg1.execute(xctxt).str());
54 sb.append(m_arg2.execute(xctxt).str());
60 sb.append(m_args[i].execute(xctxt).str());
FuncContains.java 28 * Execute the Contains() function.
36 * Execute the function. The function must return
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncContains
46 String s1 = m_arg0.execute(xctxt).str();
47 String s2 = m_arg1.execute(xctxt).str();
FuncSubstringAfter.java 29 * Execute the SubstringAfter() function.
37 * Execute the function. The function must return
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncSubstringAfter
47 XMLString s1 = m_arg0.execute(xctxt).xstr();
48 XMLString s2 = m_arg1.execute(xctxt).xstr();
FuncRound.java 28 * Execute the round() function.
36 * Execute the function. The function must return
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncRound
45 final XObject obj = m_arg0.execute(xctxt);
  /external/deqp/android/scripts/
launch.py 21 common.execute("%s forward tcp:50016 tcp:50016" % adbCmd)
22 common.execute("%s shell setprop log.tag.dEQP DEBUG" % adbCmd)
23 common.execute("%s shell am start -n com.drawelements.deqp/.execserver.ServiceStarter" % adbCmd)
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/
Function.java 27 * Execute a function. Should always return a result.
29 Value execute(Value... args); method in interface:Function
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
NamedRunnable.java 33 execute(); method
39 protected abstract void execute(); method in class:NamedRunnable
  /external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/
event_analyzing_sample.py 45 con.execute("""
52 con.execute("""
94 con.execute("insert into gen_events values(?, ?, ?, ?)",
99 con.execute("insert into pebs_ll values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
123 count = con.execute("select count(*) from gen_events")
132 commq = con.execute("select comm, count(comm) from gen_events group by comm order by -count(comm)")
139 symbolq = con.execute("select symbol, count(symbol) from gen_events group by symbol order by -count(symbol)")
145 dsoq = con.execute("select dso, count(dso) from gen_events group by dso order by -count(dso)")
156 count = con.execute("select count(*) from pebs_ll")
165 commq = con.execute("select comm, count(comm) from pebs_ll group by comm order by -count(comm)"
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
ExecutionList.java 30 * be executed after {@link #execute()} is called. Any {@code Runnable} added
31 * after the call to {@code execute} is still guaranteed to execute. There is no
36 * Any exception thrown during {@code Executor.execute} (e.g., a {@code
51 // The runnable,executor pairs to execute.
64 * listeners to execute. If execution has already begun, the listener is
67 * <p>Note: For fast, lightweight listeners that would be safe to execute in
73 * that calls {@link #execute} may be an internal implementation thread, such
100 // Execute the runnable immediately. Because of scheduling this may end up
105 new RunnableExecutorPair(runnable, executor).execute();
121 public void execute() { method in class:ExecutionList
147 void execute() { method in class:ExecutionList.RunnableExecutorPair
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Debugger/Tests/
test_libcython_in_gdb.py 79 return gdb.execute('info locals', to_string=True)
89 gdb.execute('cy break codefile:%d' % break_lineno, to_string=True)
90 gdb.execute('run', to_string=True)
93 gdb.execute('delete breakpoints', to_string=True)
95 gdb.execute('kill inferior 1', to_string=True)
99 gdb.execute('set args -c "import codefile"')
145 gdb.execute('set cy_colorize_code on')
147 gdb.execute('set cy_colorize_code off')
155 gdb.execute('cy break codefile.spam')
164 gdb.execute('cy break -p join'
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
And.java 45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:And
48 XObject expr1 = m_left.execute(xctxt);
52 XObject expr2 = m_right.execute(xctxt);
Or.java 45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:Or
48 XObject expr1 = m_left.execute(xctxt);
52 XObject expr2 = m_right.execute(xctxt);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScheduledAction.h 54 void execute(ExecutionContext*);
57 void execute(LocalFrame*);
58 void execute(WorkerGlobalScope*);
  /external/chromium_org/third_party/libaddressinput/src/java/test/com/android/i18n/addressinput/
AsyncTestCaseTest.java 29 AsyncCallback.execute(500, new Runnable() {
40 AsyncCallback.execute(1500, new Runnable() {
71 public static void execute(long waitMillis, Runnable callback) { method in class:AsyncTestCaseTest.AsyncCallback
  /external/deqp/scripts/build/
build.py 22 execute(["cmake", config.getSrcPath()] + cfgArgs)
35 execute(baseCmd + buildArgs)
38 execute(baseCmd + ['--target', target] + buildArgs)
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
XUnresolvedVariableSimple.java 53 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:XUnresolvedVariableSimple
56 XObject xobj = expr.execute(xctxt);

Completed in 409 milliseconds

1 2 3 4 5 6 7 8 91011>>