HomeSort by relevance Sort by last modified time
    Searched refs:execute (Results 226 - 250 of 664) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/oprofile/libregex/
op_regex.h 75 * Execute loop at max limit time on the set of regular expression
83 bool execute(std::string & str) const;
92 // helper to execute
  /external/oprofile/libregex/tests/
regex_test.cpp 50 rep.execute(str);
  /external/proguard/src/proguard/
Targeter.java 53 public void execute(ClassPool programClassPool) throws IOException method in class:Targeter
  /external/proguard/src/proguard/wtk/
ProGuardObfuscator.java 95 proGuard.execute();
  /external/webkit/Source/JavaScriptCore/debugger/
DebuggerCallFrame.cpp 98 JSValue result = globalData.interpreter->execute(eval, m_callFrame, thisObject(), m_callFrame->scopeChain());
  /external/webkit/Source/JavaScriptCore/interpreter/
CachedCall.h 51 return m_interpreter->execute(m_closure);
  /external/webkit/Source/JavaScriptCore/jit/
JITCode.h 74 // Execute the code!
75 inline JSValue execute(RegisterFile* registerFile, CallFrame* callFrame, JSGlobalData* globalData) function in class:JSC::JITCode
  /external/webkit/Source/JavaScriptCore/runtime/
Completion.cpp 64 JSValue result = exec->interpreter()->execute(program, exec, scopeChain, thisObj);
  /external/webkit/Source/WebCore/dom/
ScriptElement.h 49 void execute(CachedScript*);
  /external/webkit/Source/WebCore/html/parser/
HTMLScriptRunner.h 56 bool execute(PassRefPtr<Element> scriptToProcess, const TextPosition1& scriptStartPosition);
90 Deque<PendingScript> m_scriptsToExecuteAfterParsing; // http://www.whatwg.org/specs/web-apps/current-work/#list-of-scripts-that-will-execute-when-the-document-has-finished-parsing
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
openbugs.py 54 def execute(self, options, args, tool): member in class:OpenBugs
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
AutoRotateController.java 62 AsyncTask.execute(new Runnable() {
  /frameworks/support/v4/java/android/support/v4/content/
ModernAsyncTask.java 66 * An {@link Executor} that can be used to execute tasks in parallel.
174 * specified parameters are the parameters passed to {@link #execute}
370 public final ModernAsyncTask<Params, Progress, Result> execute(Params... params) { method in class:ModernAsyncTask
409 throw new IllegalStateException("Cannot execute task:"
412 throw new IllegalStateException("Cannot execute task:"
423 exec.execute(mFuture);
429 * Convenience version of {@link #execute(Object...)} for use with
432 public static void execute(Runnable runnable) { method in class:ModernAsyncTask
433 sDefaultExecutor.execute(runnable);
  /libcore/luni/src/test/java/tests/java/sql/
StressTest.java 66 statement.execute(DatabaseCreator.DROP_TABLE2);
69 statement.execute(DatabaseCreator.CREATE_TABLE2);
78 statement.execute(DatabaseCreator.DROP_TABLE2);
100 // statement.execute("DELETE FROM " + DatabaseCreator.TEST_TABLE2);
332 ps.execute();
  /packages/apps/Email/tests/src/com/android/email/
UtilityLargeTest.java 74 }.execute();
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
SingleThreadNamedTaskExecutor.java 56 public void execute(NamedTask task) { method in class:SingleThreadNamedTaskExecutor
58 throw new IllegalStateException("execute() after close()");
  /sdk/anttasks/src/com/android/ant/
XPathTask.java 61 public void execute() throws BuildException { method in class:XPathTask
  /sdk/hierarchyviewer2/app/src/com/android/hierarchyviewer/
HierarchyViewerApplicationDirector.java 74 mExecutor.execute(new Runnable() {
  /sdk/monkeyrunner/src/com/android/monkeyrunner/recorder/actions/
DragAction.java 80 public void execute(IChimpDevice device) { method in class:DragAction
PressAction.java 65 public void execute(IChimpDevice device) { method in class:PressAction
TouchAction.java 51 public void execute(IChimpDevice device) throws Exception { method in class:TouchAction
  /system/media/mca/filterfw/java/android/filterfw/io/
TextGraphReader.java 49 public void execute(TextGraphReader reader) throws GraphIOException; method in interface:TextGraphReader.Command
60 public void execute(TextGraphReader reader) throws GraphIOException { method in class:TextGraphReader.ImportPackageCommand
77 public void execute(TextGraphReader reader) { method in class:TextGraphReader.AddLibraryCommand
91 public void execute(TextGraphReader reader) throws GraphIOException { method in class:TextGraphReader.AllocateFilterCommand
113 public void execute(TextGraphReader reader) throws GraphIOException { method in class:TextGraphReader.InitFilterCommand
141 public void execute(TextGraphReader reader) { method in class:TextGraphReader.ConnectCommand
486 command.execute(this);
  /external/apache-xml/src/main/java/org/apache/xpath/
XPath.java 298 public XObject execute( method in class:XPath
303 return execute(
324 public XObject execute( method in class:XPath
337 xobj = m_mainExp.execute(xctxt);
487 XObject score = m_mainExp.execute(xctxt);
  /libcore/luni/src/test/java/libcore/java/sql/
OldResultSetTest.java 43 stForward.execute(selectAllAnimals);
50 stForward.execute(DatabaseCreator.CREATE_TABLE_SIMPLE1);
51 stForward.execute(selectEmptyTable);
464 stForward.execute("insert into zoo values(8,null,null);");
465 stForward.execute(selectAllAnimals);
  /external/mksh/src/
exec.c 43 * execute command tree
46 execute(struct op *volatile t, function
131 rv = execute(t->left, flags | XFORK, xerrok);
165 execute(t->left, flags & XERROK, NULL);
168 rv = execute(t, flags & XERROK, xerrok);
234 rv = execute(t->left, (flags&~XEXEC)|XBGND|XFORK, xerrok);
239 rv = execute(t->left, XERROK, xerrok);
241 rv = execute(t->right, XERROK, xerrok);
248 rv = !execute(t->right, XERROK, xerrok);
292 rv = execute(t->left, flags & XERROK, xerrok)
    [all...]

Completed in 1429 milliseconds

1 2 3 4 5 6 7 8 91011>>