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

1 2 34 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xpath/functions/
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
FuncSubstring.java 31 * Execute the Substring() function.
39 * Execute the function. The function must return
46 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncSubstring
49 XMLString s1 = m_arg0.execute(xctxt).xstr();
50 double start = m_arg1.execute(xctxt).num();
  /external/chromium_org/components/test/data/autofill/merge/tools/
serialize_profiles.py 29 cursor.execute("SELECT * from autofill_profile_names;")
46 cursor.execute("SELECT * from autofill_profile_emails;")
59 cursor.execute("SELECT * from autofill_profiles;")
71 cursor.execute("SELECT * from autofill_profile_phones;")
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/operators/
ExistsFunction.java 28 public Value execute(Value... args) { method in class:ExistsFunction
NotFunction.java 28 public Value execute(Value... args) { method in class:NotFunction
NumericFunction.java 28 public Value execute(Value... args) { method in class:NumericFunction
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
LengthFunction.java 32 public Value execute(Value... args) { method in class:LengthFunction
  /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...]
  /libcore/luni/src/main/java/java/sql/
Statement.java 146 * the SQL statement to execute
153 public boolean execute(String sql) throws SQLException; method in interface:Statement
165 * the SQL statement to execute.
177 public boolean execute(String sql, int autoGeneratedKeys) method in interface:Statement
190 * the SQL statement to execute.
201 public boolean execute(String sql, int[] columnIndexes) throws SQLException; method in interface:Statement
213 * the SQL statement to execute.
224 public boolean execute(String sql, String[] columnNames) method in interface:Statement
229 * update counts, if all the commands execute successfully.
263 * an SQL statement to execute. Typically a {@code SELECT
    [all...]
  /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...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemAttributeSet.java 102 public void execute( method in class:ElemAttributeSet
116 super.execute(transformer);
122 attr.execute(transformer);
ElemCopy.java 88 public void execute( method in class:ElemCopy
111 super.execute(transformer);
123 super.execute(transformer);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
EclipseTestResultsGeneratorNoMail.java 70 test.execute();
73 public void execute() { method in class:EclipseTestResultsGeneratorNoMail
74 super.execute();
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractIdleService.java 40 executor(State.STARTING).execute(new Runnable() {
54 executor(State.STOPPING).execute(new Runnable() {
78 * priority. The returned executor's {@link Executor#execute(Runnable)
79 * execute()} method is called when this service is started and stopped,
89 public void execute(Runnable command) {
  /frameworks/volley/src/com/android/volley/
ExecutorDelivery.java 38 public void execute(Runnable command) {
62 mResponsePoster.execute(new ResponseDeliveryRunnable(request, response, runnable));
69 mResponsePoster.execute(new ResponseDeliveryRunnable(request, response, null));
  /libcore/luni/src/test/java/libcore/java/sql/
OldConnectionTest.java 57 st.execute("select id, name from zoo");
77 st.execute("select id, name from zoo");
98 st.execute("select id, name from zoo");
120 st.execute("select name, family from zoo");
143 st.execute("select name, family from zoo");
190 st.execute("select id, name from zoo");
221 st.execute("select id, name from zoo");
263 st.execute("select animals from zoo");
280 st.execute("select monkey from zoo");
314 st.execute("select animals from zoooo")
    [all...]
  /packages/apps/Launcher2/
fill_screens.py 56 c.execute("DELETE FROM favorites")
67 c.execute(insert)
75 c.execute(insert)
  /packages/apps/Launcher3/
fill_screens.py 56 c.execute("DELETE FROM favorites")
67 c.execute(insert)
75 c.execute(insert)
  /external/proguard/src/proguard/
ProGuard.java 60 public void execute() throws IOException method in class:ProGuard
195 new InputReader(configuration).execute(programClassPool, libraryClassPool);
210 new Initializer(configuration).execute(programClassPool, libraryClassPool);
224 new Targeter(configuration).execute(programClassPool);
295 new Shrinker(configuration).execute(programClassPool, libraryClassPool);
310 new SubroutineInliner(configuration).execute(programClassPool);
325 return new Optimizer(configuration).execute(programClassPool, libraryClassPool);
352 new Obfuscator(configuration).execute(programClassPool, libraryClassPool);
367 new Preverifier(configuration).execute(programClassPool);
391 new OutputWriter(configuration).execute(programClassPool)
    [all...]
  /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");
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
ProviderExecutor.java 73 * Execute the given task. If given task is not {@link Preemptable}, it will
76 public <P> void execute(AsyncTask<P, ?, ?> task, P... params) { method in class:ProviderExecutor
89 public void execute(Runnable command) {
96 public void execute(Runnable command) { method in class:ProviderExecutor
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
PrioritizedSerialExecutor.java 63 public void execute(final Runnable r) { method in class:PrioritizedSerialExecutor
118 mThreadPoolExecutor.execute(mActive);
133 execute(newTask);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
dump.py 46 [self.cu.execute(s) for s in expected_sqls]
70 self.cu.execute(CREATE_BETA)
71 self.cu.execute(CREATE_ALPHA)

Completed in 890 milliseconds

1 2 34 5 6 7 8 91011>>