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

1 2 3 45 6 7 8 91011>>

  /frameworks/base/core/java/android/database/sqlite/
SQLiteStatement.java 35 * Execute this SQL statement, if it is not a SELECT / INSERT / DELETE / UPDATE, for example
41 public void execute() { method in class:SQLiteStatement
44 getSession().execute(getSql(), getBindArgs(), getConnectionFlags(), null);
54 * Execute this SQL statement, if the the number of rows affected by execution of this SQL
75 * Execute this SQL statement and return the ID of the row inserted due to this call.
97 * Execute a statement that returns a 1 by 1 table with a numeric value.
118 * Execute a statement that returns a 1 by 1 table with a text value.
  /external/chromium_org/chrome/browser/history/
shortcuts_database.cc 118 if (!db_.Execute("DELETE FROM omni_box_shortcuts"))
121 ignore_result(db_.Execute("VACUUM"));
165 return db_.Execute(
182 db_.Execute("ALTER TABLE omni_box_shortcuts "
184 db_.Execute("UPDATE omni_box_shortcuts SET fill_into_edit = url") &&
185 db_.Execute("ALTER TABLE omni_box_shortcuts "
187 db_.Execute(base::StringPrintf(
190 db_.Execute("ALTER TABLE omni_box_shortcuts ADD COLUMN type INTEGER") &&
191 db_.Execute(base::StringPrintf(
194 db_.Execute("ALTER TABLE omni_box_shortcuts
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
hooks.py 68 result = con.execute(sql).fetchall()
74 result = con.execute(sql).fetchall()
94 result = con.execute(sql).fetchall()
106 result = con.execute("""
121 con.execute("select 'a' as x union select 'b' as x order by x collate mycoll")
138 con.execute("""
155 curs.execute("""
161 curs.execute("""
180 curs.execute,
194 con.execute("select 1 union select 2 union select 3").fetchall(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
hooks.py 68 result = con.execute(sql).fetchall()
74 result = con.execute(sql).fetchall()
94 result = con.execute(sql).fetchall()
106 result = con.execute("""
121 con.execute("select 'a' as x union select 'b' as x order by x collate mycoll")
138 con.execute("""
155 curs.execute("""
161 curs.execute("""
180 curs.execute,
194 con.execute("select 1 union select 2 union select 3").fetchall(
    [all...]
  /external/apache-http/src/org/apache/http/client/
HttpClient.java 47 * execute HTTP requests while handling cookies, authentication,
86 * @param request the request to execute
96 HttpResponse execute(HttpUriRequest request) method in interface:HttpClient
105 * @param request the request to execute
117 HttpResponse execute(HttpUriRequest request, HttpContext context) method in interface:HttpClient
129 * @param request the request to execute
139 HttpResponse execute(HttpHost target, HttpRequest request) method in interface:HttpClient
150 * @param request the request to execute
162 HttpResponse execute(HttpHost target, HttpRequest request, method in interface:HttpClient
171 * @param request the request to execute
178 <T> T execute( method in interface:HttpClient
195 <T> T execute( method in interface:HttpClient
217 <T> T execute( method in interface:HttpClient
241 <T> T execute( method in interface:HttpClient
    [all...]
  /external/chromium/app/sql/
transaction_unittest.cc 22 ASSERT_TRUE(db().Execute("CREATE TABLE foo (a, b)"));
50 EXPECT_TRUE(db().Execute("INSERT INTO foo (a, b) VALUES (1, 2)"));
68 EXPECT_TRUE(db().Execute("INSERT INTO foo (a, b) VALUES (1, 2)"));
79 EXPECT_TRUE(db().Execute("INSERT INTO foo (a, b) VALUES (1, 2)"));
101 EXPECT_TRUE(db().Execute("INSERT INTO foo (a, b) VALUES (1, 2)"));
115 EXPECT_TRUE(db().Execute("INSERT INTO foo (a, b) VALUES (1, 2)"));
  /external/chromium/chrome/browser/extensions/
all_urls_apitest.cc 43 ExtensionTestMessageListener listener1b("execute: " + url, false);
51 ExtensionTestMessageListener listener2b("execute: " + url, false);
59 ExtensionTestMessageListener listener3b("execute: " + url, false);
67 ExtensionTestMessageListener listener4b("execute: " + url, false);
77 ExtensionTestMessageListener listener5b("execute: " + page_url.spec(), false);
104 ExtensionTestMessageListener listener1b("execute: " + page_url.spec(), false);
  /external/chromium/chrome/browser/history/
in_memory_database.cc 32 db_.Execute("PRAGMA auto_vacuum=1");
35 db_.Execute("PRAGMA temp_store=MEMORY");
88 if (!db_.Execute(
100 if (!db_.Execute(
116 if (!db_.Execute(
129 if (!db_.Execute("DETACH history")) {
  /external/chromium_org/sql/
transaction_unittest.cc 20 ASSERT_TRUE(db().Execute("CREATE TABLE foo (a, b)"));
48 EXPECT_TRUE(db().Execute("INSERT INTO foo (a, b) VALUES (1, 2)"));
66 EXPECT_TRUE(db().Execute("INSERT INTO foo (a, b) VALUES (1, 2)"));
77 EXPECT_TRUE(db().Execute("INSERT INTO foo (a, b) VALUES (1, 2)"));
99 EXPECT_TRUE(db().Execute("INSERT INTO foo (a, b) VALUES (1, 2)"));
113 EXPECT_TRUE(db().Execute("INSERT INTO foo (a, b) VALUES (1, 2)"));
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
AsyncTaskTest.java 34 asyncTask.execute("a", "b");
49 asyncTask.execute("a", "b");
66 asyncTask.execute("a", "b");
91 asyncTask.execute("a", "b");
110 assertThat(asyncTask.execute("a", "b").get(), equalTo("c"));
117 asyncTask.execute("a");
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncCount.java 29 * Execute the Count() function.
37 * Execute the function. The function must return
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncCount
FuncFalse.java 28 * Execute the False() function.
36 * Execute the function. The function must return
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncFalse
FuncLocalPart.java 29 * Execute the LocalPart() function.
37 * Execute the function. The function must return
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncLocalPart
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
FuncQname.java 29 * Execute the Qname() function.
37 * Execute the function. The function must return
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncQname
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
FuncTrue.java 28 * Execute the True() function.
36 * Execute the function. The function must return
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncTrue
FuncUnparsedEntityURI.java 36 * Execute the function. The function must return
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncUnparsedEntityURI
46 String name = m_arg0.execute(xctxt).str();
FuncExtElementAvailable.java 32 * Execute the ExtElementAvailable() function.
40 * Execute the function. The function must return
47 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncExtElementAvailable
54 String fullName = m_arg0.execute(xctxt).str();
FuncLang.java 29 * Execute the Lang() function.
37 * Execute the function. The function must return
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncLang
47 String lang = m_arg0.execute(xctxt).str();
  /external/chromium_org/chrome/browser/ui/webui/
web_ui_test_handler.h 59 // Test code finished trying to execute. This will be set to true when the
61 // parse/execute the javascript or not.
64 // Test code was able to execute successfully. This is *NOT* the test
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemUnknown.java 48 * Execute the fallbacks when an extension is not available.
96 * Execute an unknown element.
97 * Execute fallback if fallback child exists or do nothing
103 public void execute(TransformerImpl transformer) method in class:ElemUnknown
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Equals.java 52 * Execute a binary operation by calling execute on each of the operands,
65 XObject left = m_left.execute(xctxt, true);
66 XObject right = m_right.execute(xctxt, true);
  /external/chromium_org/chrome/browser/
command_updater_delegate.h 10 // Implement this interface so that your object can execute commands when

Completed in 978 milliseconds

1 2 3 45 6 7 8 91011>>