HomeSort by relevance Sort by last modified time
    Searched full:execute (Results 51 - 75 of 4840) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xpath/functions/
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();
FuncTranslate.java 28 * Execute the Translate() function.
36 * Execute the function. The function must return
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncTranslate
46 String theFirstString = m_arg0.execute(xctxt).str();
47 String theSecondString = m_arg1.execute(xctxt).str();
48 String theThirdString = m_arg2.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()));
  /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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
dbapi.py 91 cu.execute("create table test(id integer primary key, name text)")
92 cu.execute("insert into test(name) values (?)", ("foo",))
148 self.cu.execute("create table test(id integer primary key, name text, income number)")
149 self.cu.execute("insert into test(name) values (?)", ("foo",))
156 self.cu.execute("delete from test")
160 self.cu.execute("select asdf")
169 self.cu.execute("select 5+4; select 4+5")
177 self.cu.execute("select 5+4; -- foo bar")
180 self.cu.execute("""
190 self.cu.execute(42
    [all...]
userfunctions.py 163 cur.execute("select reftest()")
167 cur.execute("select returntext()")
174 cur.execute("select returnunicode()")
181 cur.execute("select returnint()")
188 cur.execute("select returnfloat()")
196 cur.execute("select returnnull()")
203 cur.execute("select returnblob()")
210 cur.execute("select returnlonglong()")
217 cur.execute("select raiseexception()")
225 cur.execute("select isstring(?)", ("foo",)
    [all...]
factory.py 73 cur.execute("select 4+5 as foo")
89 row = self.con.execute("select 1, 2").fetchone()
96 row = self.con.execute("select 1 as a, 2 as b").fetchone()
116 row = self.con.execute("select 1 as a, 2 as b").fetchone()
123 row = self.con.execute("select 1 as a, 2 as b").fetchone()
129 row = self.con.execute("select 1 as a, 2 as b").fetchone()
137 row_1 = self.con.execute("select 1 as a, 2 as b").fetchone()
138 row_2 = self.con.execute("select 1 as a, 2 as b").fetchone()
139 row_3 = self.con.execute("select 1 as a, 3 as b").fetchone()
163 row = self.con.execute("select ?", (austria,)).fetchone(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
dbapi.py 91 cu.execute("create table test(id integer primary key, name text)")
92 cu.execute("insert into test(name) values (?)", ("foo",))
148 self.cu.execute("create table test(id integer primary key, name text, income number)")
149 self.cu.execute("insert into test(name) values (?)", ("foo",))
156 self.cu.execute("delete from test")
160 self.cu.execute("select asdf")
169 self.cu.execute("select 5+4; select 4+5")
177 self.cu.execute("select 5+4; -- foo bar")
180 self.cu.execute("""
190 self.cu.execute(42
    [all...]
userfunctions.py 163 cur.execute("select reftest()")
167 cur.execute("select returntext()")
174 cur.execute("select returnunicode()")
181 cur.execute("select returnint()")
188 cur.execute("select returnfloat()")
196 cur.execute("select returnnull()")
203 cur.execute("select returnblob()")
210 cur.execute("select returnlonglong()")
217 cur.execute("select raiseexception()")
225 cur.execute("select isstring(?)", ("foo",)
    [all...]
factory.py 73 cur.execute("select 4+5 as foo")
89 row = self.con.execute("select 1, 2").fetchone()
96 row = self.con.execute("select 1 as a, 2 as b").fetchone()
116 row = self.con.execute("select 1 as a, 2 as b").fetchone()
123 row = self.con.execute("select 1 as a, 2 as b").fetchone()
129 row = self.con.execute("select 1 as a, 2 as b").fetchone()
137 row_1 = self.con.execute("select 1 as a, 2 as b").fetchone()
138 row_2 = self.con.execute("select 1 as a, 2 as b").fetchone()
139 row_3 = self.con.execute("select 1 as a, 3 as b").fetchone()
163 row = self.con.execute("select ?", (austria,)).fetchone(
    [all...]
  /external/smack/src/org/jivesoftware/smackx/commands/
RemoteCommand.java 35 * {@link AdHocCommand.Action#execute execute}, {@link AdHocCommand.Action#next next},
40 * single stage command, then invoking the execute action will execute this
50 * The connection that is used to execute this command
72 * Creates a new RemoteCommand that uses an specific connection to execute a
99 public void execute() throws XMPPException { method in class:RemoteCommand
100 executeAction(Action.execute, packetReplyTimeout);
111 public void execute(Form form) throws XMPPException { method in class:RemoteCommand
112 executeAction(Action.execute, form, packetReplyTimeout)
    [all...]
  /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
  /external/chromium/app/sql/
connection_unittest.cc 32 TEST_F(SQLConnectionTest, Execute) {
34 ASSERT_TRUE(db().Execute("CREATE TABLE foo (a, b)"));
38 ASSERT_FALSE(db().Execute("CREATE TAB foo (a, b"));
45 ASSERT_TRUE(db().Execute("CREATE TABLE foo (a, b)"));
46 ASSERT_TRUE(db().Execute("INSERT INTO foo(a, b) VALUES (12, 13)"));
77 ASSERT_TRUE(db().Execute("CREATE TABLE foo (a, b)"));
92 ASSERT_TRUE(db().Execute("CREATE TABLE foo (id INTEGER PRIMARY KEY, value)"));
94 ASSERT_TRUE(db().Execute("INSERT INTO foo (value) VALUES (12)"));
  /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/libnfc-nci/halimpl/bcm2079x/include/
buildcfg_hal.h 25 #define USERIAL_HAL_TASK 1 //execute userial's read thread
26 #define GKI_RUNNER_HAL_TASK 2 //execute GKI_run(), which runs forever
  /frameworks/volley/tests/src/com/android/volley/mock/
MockHttpClient.java 56 public HttpResponse execute(HttpUriRequest request, HttpContext context) { method in class:MockHttpClient
70 public HttpResponse execute(HttpUriRequest request) { method in class:MockHttpClient
75 public HttpResponse execute(HttpHost target, HttpRequest request) { method in class:MockHttpClient
80 public <T> T execute(HttpUriRequest arg0, ResponseHandler<? extends T> arg1) { method in class:MockHttpClient
85 public HttpResponse execute(HttpHost target, HttpRequest request, HttpContext context) { method in class:MockHttpClient
90 public <T> T execute(HttpUriRequest arg0, ResponseHandler<? extends T> arg1, HttpContext arg2) { method in class:MockHttpClient
95 public <T> T execute(HttpHost arg0, HttpRequest arg1, ResponseHandler<? extends T> arg2) { method in class:MockHttpClient
100 public <T> T execute(HttpHost arg0, HttpRequest arg1, ResponseHandler<? extends T> arg2, method in class:MockHttpClient
  /libcore/luni/src/main/java/java/util/concurrent/
Executor.java 20 * executor.execute(new RunnableTask1());
21 * executor.execute(new RunnableTask2());
32 * public void execute(Runnable r) {
43 * public void execute(Runnable r) {
63 * public synchronized void execute(final Runnable r) {
80 * executor.execute(active);
103 * may execute in a new thread, in a pooled thread, or in the calling
111 void execute(Runnable command); method in interface:Executor
  /prebuilts/misc/linux-x86_64/icu-51/
readme.txt 15 (3) Execute "./runConfigureICU Linux --enable-static=yes --enable-shared=no".
17 (4) Execute "make".
  /libcore/luni/src/test/java/tests/java/sql/
MultiThreadAccessTest.java 76 statement.execute(DatabaseCreator.DROP_TABLE1);
79 statement.execute(DatabaseCreator.DROP_TABLE2);
82 statement.execute(DatabaseCreator.DROP_TABLE4);
85 statement.execute(DatabaseCreator.DROP_TABLE3);
90 statement.execute(DatabaseCreator.CREATE_TABLE3);
91 statement.execute(DatabaseCreator.CREATE_TABLE4);
92 statement.execute(DatabaseCreator.CREATE_TABLE1);
93 statement.execute(DatabaseCreator.CREATE_TABLE2);
105 statement.execute(DatabaseCreator.DROP_TABLE1);
106 statement.execute(DatabaseCreator.DROP_TABLE2)
    [all...]
  /dalvik/tests/082-inline-execute/
info.txt 6 This test covers the string inline-execute tests, and it done in a
  /dalvik/vm/mterp/armv5te/
OP_CONST_4.S 10 GOTO_OPCODE(ip) @ execute next instruction
OP_MOVE.S 11 GOTO_OPCODE(ip) @ execute next instruction
  /dalvik/vm/mterp/armv6t2/
OP_CONST_4.S 9 GOTO_OPCODE(ip) @ execute next instruction
OP_MOVE.S 10 GOTO_OPCODE(ip) @ execute next instruction

Completed in 410 milliseconds

1 23 4 5 6 7 8 91011>>