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

1 2 34 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xpath/functions/
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;
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);
FuncNormalizeSpace.java 31 * Execute the normalize-space() function.
39 * Execute the function. The function must return
46 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncNormalizeSpace
54 * Execute an expression in the XPath runtime context, and return the
81 XObject obj = execute(xctxt);
  /external/chromium/chrome/browser/ui/cocoa/
browser_command_executor.h 9 // Defines a protocol for any object that can execute commands in the
  /external/chromium_org/chrome/browser/ui/cocoa/
browser_command_executor.h 8 // Defines a protocol for any object that can execute commands in the
  /external/chromium_org/sql/
connection_unittest.cc 117 TEST_F(SQLConnectionTest, Execute) {
119 ASSERT_TRUE(db().Execute("CREATE TABLE foo (a, b)"));
141 ASSERT_TRUE(db().Execute("CREATE TABLE foo (a, b)"));
142 ASSERT_TRUE(db().Execute("INSERT INTO foo(a, b) VALUES (12, 13)"));
171 ASSERT_TRUE(db().Execute("CREATE TABLE foo (a, b)"));
179 ASSERT_TRUE(db().Execute("CREATE TABLE foo (a, b)"));
194 ASSERT_TRUE(db().Execute("CREATE TABLE foo (id INTEGER PRIMARY KEY, value)"));
196 ASSERT_TRUE(db().Execute("INSERT INTO foo (value) VALUES (12)"));
222 ASSERT_TRUE(db().Execute(kCreateSql));
223 ASSERT_TRUE(db().Execute("INSERT INTO foo (id) VALUES (12)"))
    [all...]
statement_unittest.cc 48 ASSERT_TRUE(db().Execute("CREATE TABLE foo (a, b)"));
49 ASSERT_TRUE(db().Execute("INSERT INTO foo (a, b) VALUES (3, 12)"));
80 ASSERT_TRUE(db().Execute("CREATE TABLE foo (a INTEGER PRIMARY KEY, b)"));
98 ASSERT_TRUE(db().Execute("CREATE TABLE foo (a INTEGER PRIMARY KEY, b)"));
111 ASSERT_TRUE(db().Execute("CREATE TABLE foo (a, b)"));
112 ASSERT_TRUE(db().Execute("INSERT INTO foo (a, b) VALUES (3, 12)"));
113 ASSERT_TRUE(db().Execute("INSERT INTO foo (a, b) VALUES (4, 13)"));
  /external/chromium_org/third_party/WebKit/ManualTests/inspector/
command-line-api.html 6 <p>To test, execute "$()" in the Inspector's Console. Also trying setting $.</p>
  /external/llvm/tools/llvm-symbolizer/
CMakeLists.txt 1 # FIXME: As we plan to execute llvm-symbolizer binary from compiler-rt
  /external/lzma/CPP/7zip/Common/
VirtThread.h 20 virtual void Execute() = 0;
  /frameworks/base/services/java/com/android/server/pm/
Installer.java 182 private int execute(String cmd) { method in class:Installer
201 return execute(builder.toString());
211 return execute(builder.toString());
220 return execute(builder.toString());
227 return execute(builder.toString());
236 return execute(builder.toString());
245 return execute(builder.toString());
256 return execute(builder.toString());
265 return execute(builder.toString());
276 return execute(builder.toString())
    [all...]
  /frameworks/volley/tests/src/com/android/volley/utils/
ImmediateResponseDelivery.java 18 public void execute(Runnable command) {
  /external/chromium/chrome/browser/sync/engine/
syncer_command.h 26 // cmd->Execute(session);
34 // Execute dispatches to a derived class's ExecuteImpl.
35 void Execute(sessions::SyncSession* session);
  /external/chromium_org/chrome/browser/webdata/
logins_table.cc 38 ignore_result(db_->Execute("DROP TABLE logins"));
43 if (!db_->Execute("CREATE TABLE ie7_logins ("
52 if (!db_->Execute("CREATE INDEX ie7_logins_hash ON "
  /external/chromium_org/net/third_party/nss/ssl/
Makefile 43 # (5) Execute "global" rules. (OPTIONAL) #
49 # (6) Execute "component" rules. (OPTIONAL) #
55 # (7) Execute "local" rules. (OPTIONAL). #
  /external/valgrind/main/none/tests/
pth_once.c 11 * An example of using the pthreads_once() call to execute an
15 * execute the routine welcome() using the once call. Only
17 * execute welcome().
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DefaultRequestDirectorTest.java 66 HttpResponse response = requestDirector.execute(null, new HttpGet("http://example.com"), null);
80 HttpResponse response = requestDirector.execute(null, new HttpGet("http://some.uri"), null);
92 HttpResponse response = requestDirector.execute(null, new HttpGet("http://some.uri"), null);
105 HttpResponse response = requestDirector.execute(null, new HttpGet("http://some.uri"), null);
115 HttpResponse getResponse = requestDirector.execute(null, new HttpGet("http://some.uri"), null);
120 HttpResponse postResponse = requestDirector.execute(null, new HttpPost("http://some.uri"), null);
133 HttpResponse getResponse = requestDirector.execute(null, new HttpGet("http://some.uri"), null);
138 HttpResponse postResponse = requestDirector.execute(null, new HttpPost("http://some.uri"), null);
154 HttpResponse response = requestDirector.execute(null, new HttpGet("http://some.uri"), null);
167 HttpResponse response = requestDirector.execute(null, new HttpGet("http://some.uri"), null)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
ITreeVisitorAction.cs 36 * How to execute code for node t when a visitor visits node t. Execute
37 * pre() before visiting children and execute post() after visiting children.
43 * Execute an action before visiting children of t. Return t or
52 * Execute an action after visiting children of t. Return t or
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ITreeVisitorAction.cs 38 * How to execute code for node t when a visitor visits node t. Execute
39 * pre() before visiting children and execute post() after visiting children.
45 * Execute an action before visiting children of t. Return t or
54 * Execute an action after visiting children of t. Return t or
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeVisitorAction.java 31 /** How to execute code for node t when a visitor visits node t. Execute
32 * pre() before visiting children and execute post() after visiting children.
35 /** Execute an action before visiting children of t. Return t or
42 /** Execute an action after visiting children of t. Return t or
  /libcore/luni/src/main/java/javax/sql/
RowSetReader.java 25 * {@code RowSetReader} interface when the {@code RowSet}'s execute method is
40 * invoke any of the {@code RowSet}'s methods except for the {@code execute}
41 * method (calling {@code execute} will cause an {@code SQLException} to be
44 * {@code RowSet}'s {@code execute} method once the reader returns from the
52 * calls the {@link RowSet#execute()} method.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
py25tests.py 40 self.con.execute("create table test(c unique)")
54 self.con.execute("insert into test(c) values ('foo')")
56 count = self.con.execute("select count(*) from test").fetchone()[0]
65 self.con.execute("insert into test(c) values (4)")
66 self.con.execute("insert into test(c) values (4)")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
py25tests.py 40 self.con.execute("create table test(c unique)")
54 self.con.execute("insert into test(c) values ('foo')")
56 count = self.con.execute("select count(*) from test").fetchone()[0]
65 self.con.execute("insert into test(c) values (4)")
66 self.con.execute("insert into test(c) values (4)")
  /external/chromium_org/tools/cr/cr/actions/
adb.py 38 cr.Host.Execute(
56 cr.Host.Execute(target, '{CR_ADB}', 'shell', 'kill', *pids)
63 cr.Host.Execute(
72 cr.Host.Execute(
81 cr.Host.Execute(
92 cr.Host.Execute(
118 cr.Host.Execute(

Completed in 419 milliseconds

1 2 34 5 6 7 8 91011>>