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

1234567891011>>

/external/valgrind/main/none/tests/
H A Dshell_binaryfile.stderr.exp1 valgrind: ./shell_binaryfile: cannot execute binary file
/external/apache-http/src/org/apache/http/client/
H A DHttpClient.java47 * 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/sepolicy/
H A Disolated_app.te17 # granted via app.te. Allow execute.
20 allow isolated_app app_data_file:file execute;
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/
H A Devent_analyzing_sample.py45 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("selec
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncStartsWith.java43 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())
H A DFuncSubstringBefore.java43 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();
H A DFuncBoolean.java43 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;
H A DFuncCeiling.java43 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()));
H A DFuncFloor.java43 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()));
H A DFuncNot.java43 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;
H A DFuncConcat.java44 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());
H A DFuncContains.java43 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();
H A DFuncSubstringAfter.java44 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();
/external/deqp/android/scripts/
H A Dlaunch.py21 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/
H A DFunction.java29 Value execute(Value... args); method in interface:Function
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAndroidHttpClient.java51 public HttpResponse execute(HttpUriRequest httpUriRequest) throws IOException, ClientProtocolException { method in class:ShadowAndroidHttpClient
52 return httpClient.execute(httpUriRequest);
56 public HttpResponse execute(HttpUriRequest httpUriRequest, HttpContext httpContext) throws IOException, ClientProtocolException { method in class:ShadowAndroidHttpClient
57 return httpClient.execute(httpUriRequest, httpContext);
61 public HttpResponse execute(HttpHost httpHost, HttpRequest httpRequest) throws IOException, ClientProtocolException { method in class:ShadowAndroidHttpClient
62 return httpClient.execute(httpHost, httpRequest);
66 public HttpResponse execute(HttpHost httpHost, HttpRequest httpRequest, HttpContext httpContext) throws IOException, ClientProtocolException { method in class:ShadowAndroidHttpClient
67 return httpClient.execute(httpHost, httpRequest, httpContext);
71 public <T> T execute(HttpUriRequest httpUriRequest, ResponseHandler<? extends T> responseHandler) throws IOException, ClientProtocolException { method in class:ShadowAndroidHttpClient
72 return httpClient.execute(httpUriReques
76 public <T> T execute(HttpUriRequest httpUriRequest, ResponseHandler<? extends T> responseHandler, HttpContext httpContext) throws IOException, ClientProtocolException { method in class:ShadowAndroidHttpClient
81 public <T> T execute(HttpHost httpHost, HttpRequest httpRequest, ResponseHandler<? extends T> responseHandler) throws IOException, ClientProtocolException { method in class:ShadowAndroidHttpClient
86 public <T> T execute(HttpHost httpHost, HttpRequest httpRequest, ResponseHandler<? extends T> responseHandler, HttpContext httpContext) throws IOException, ClientProtocolException { method in class:ShadowAndroidHttpClient
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DNamedRunnable.java33 execute();
39 protected abstract void execute(); method in class:NamedRunnable
/external/guava/guava/src/com/google/common/util/concurrent/
H A DExecutionList.java30 * 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
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/
H A Dtest_libcython_in_gdb.py79 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('c
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DAnd.java45 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);
H A DOr.java45 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/
H A DScheduledAction.h54 void execute(ExecutionContext*);
57 void execute(LocalFrame*);
58 void execute(WorkerGlobalScope*);
/external/chromium_org/third_party/libaddressinput/src/java/test/com/android/i18n/addressinput/
H A DAsyncTestCaseTest.java29 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/
H A Dbuild.py22 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/
H A DXUnresolvedVariableSimple.java53 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:XUnresolvedVariableSimple
56 XObject xobj = expr.execute(xctxt);

Completed in 536 milliseconds

1234567891011>>