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

<<11121314151617181920>>

  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
GraphReader.java 42 public void execute(CommandStack stack); method in interface:GraphReader.Command
57 public void execute() { method in class:GraphReader.CommandStack
59 command.execute(this);
88 public void execute(CommandStack stack) { method in class:GraphReader.ImportPackageCommand
105 public void execute(CommandStack stack) { method in class:GraphReader.AddLibraryCommand
120 public void execute(CommandStack stack) { method in class:GraphReader.AllocateFilterCommand
143 public void execute(CommandStack stack) { method in class:GraphReader.AddSourceSlotCommand
158 public void execute(CommandStack stack) { method in class:GraphReader.AddTargetSlotCommand
173 public void execute(CommandStack stack) { method in class:GraphReader.AddVariableCommand
190 public void execute(CommandStack stack) method in class:GraphReader.SetFilterInputCommand
217 public void execute(CommandStack stack) { method in class:GraphReader.ConnectCommand
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
rewrite.rb 77 # :method: execute( buffer )
79 abstract :execute
110 def execute( buffer ) method in class:ANTLR3.InsertBefore
145 def execute( buffer ) method in class:ANTLR3.Replace
273 def execute( *range_arguments ) method in class:ANTLR3
289 cursor = operation.execute( output )
299 operation.execute( output )
381 program.execute( range )
421 @programs[ name ].execute( *arguments )
  /external/chromium/chrome/browser/history/
visitsegment_database.cc 46 if (!GetDB().Execute("CREATE TABLE segments ("
55 if (!GetDB().Execute("CREATE INDEX segments_name ON segments(name)")) {
63 GetDB().Execute("CREATE INDEX segments_url_id ON segments(url_id)");
67 if (!GetDB().Execute("CREATE TABLE segment_usage ("
75 if (!GetDB().Execute(
84 GetDB().Execute("CREATE INDEX segments_usage_seg_id "
95 if (!GetDB().Execute("CREATE TABLE presentation("
105 return GetDB().Execute("DROP TABLE segments") &&
106 GetDB().Execute("DROP TABLE segment_usage");
  /external/chromium_org/chrome/test/remoting/
remote_desktop_browsertest.h 195 // Helpers to execute javascript code on a web page.
197 // Helper to execute a javascript code snippet in the active WebContents.
200 // Helper to execute a javascript code snippet in the active WebContents
204 // Helper to execute a javascript code snippet in the active WebContents
210 // Helper to execute a javascript code snippet and extract the boolean result.
214 // Helper to execute a javascript code snippet in the active WebContents
220 // Helper to execute a javascript code snippet and extract the int result.
224 // Helper to execute a javascript code snippet in the active WebContents
230 // Helper to execute a javascript code snippet and extract the string result.
  /libcore/luni/src/test/java/tests/java/sql/
UpdateFunctionalityTest.java 72 statement.execute(DatabaseCreator.DROP_TABLE1);
75 statement.execute(DatabaseCreator.DROP_TABLE2);
78 statement.execute(DatabaseCreator.DROP_TABLE3);
83 statement.execute(DatabaseCreator.CREATE_TABLE3);
84 statement.execute(DatabaseCreator.CREATE_TABLE2);
85 statement.execute(DatabaseCreator.CREATE_TABLE1);
94 statement.execute(DatabaseCreator.DROP_TABLE1);
95 statement.execute(DatabaseCreator.DROP_TABLE2);
96 statement.execute(DatabaseCreator.DROP_TABLE3);
DatabaseMetaDataNotSupportedTest.java 92 statement.execute(DatabaseCreator.DROP_TABLE1);
95 statement.execute(DatabaseCreator.DROP_TABLE3);
97 statement.execute(DROP_VIEW_QUERY);
101 statement.execute(DatabaseCreator.CREATE_TABLE3);
102 statement.execute(DatabaseCreator.CREATE_TABLE1);
103 statement.execute(CREATE_VIEW_QUERY);
112 statement.execute(DatabaseCreator.DROP_TABLE1);
113 statement.execute(DatabaseCreator.DROP_TABLE3);
114 statement.execute(DROP_VIEW_QUERY);
141 statement.execute(query)
    [all...]
  /development/ide/emacs/
android-host.el 69 "Execute 'adb remount'."
74 "Execute 'adb root'."
79 "Execute 'adb shell reboot bootloader'."
84 "Execute 'adb sync'."
101 "Execute 'fastboot -p <product> flashall'.
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
FuncKey.java 38 * Execute the Key() function.
49 * Execute the function. The function must return
56 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncKey
72 String xkeyname = getArg0().execute(xctxt).str();
74 XObject arg = getArg1().execute(xctxt);
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FunctionDef1Arg.java 40 * Execute the first argument expression that is expected to return a
69 * Execute the first argument expression that is expected to return a
97 return m_arg0.execute(xctxt).xstr();
101 * Execute the first argument expression that is expected to return a
131 return m_arg0.execute(xctxt).num();
FuncLast.java 32 * Execute the Last() function.
84 * Execute the function. The function must return
91 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncLast
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Operation.java 95 * Execute a binary operation by calling execute on each of the operands,
105 public XObject execute(XPathContext xctxt) method in class:Operation
109 XObject left = m_left.execute(xctxt, true);
110 XObject right = m_right.execute(xctxt, true);
UnaryOperation.java 84 * Execute the operand and apply the unary operation to the result.
94 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:UnaryOperation
97 return operate(m_right.execute(xctxt));
  /external/apache-xml/src/main/java/org/apache/xpath/patterns/
ContextMatchStepPattern.java 47 * Execute this pattern step, including predicates.
60 public XObject execute(XPathContext xctxt) method in class:ContextMatchStepPattern
71 * Execute the match pattern step relative to another step.
119 score = execute(xctxt);
147 score = execute(xctxt);
StepPattern.java 316 * Execute this pattern step, including predicates.
330 public XObject execute(XPathContext xctxt, int currentNode) method in class:StepPattern
340 return execute(xctxt, currentNode, dtm, expType);
347 * Execute this pattern step, including predicates.
360 public XObject execute(XPathContext xctxt) method in class:StepPattern
363 return execute(xctxt, xctxt.getCurrentNode());
367 * Execute an expression in the XPath runtime context, and return the
381 public XObject execute( method in class:StepPattern
390 return m_relativePathPattern.execute(xctxt);
398 score = super.execute(xctxt, currentNode, dtm, expType)
    [all...]
  /external/chromium_org/content/renderer/media/
video_capture_impl_unittest.cc 137 // Execute SetCapture() and StopCapture() for one client.
156 // Execute SetCapture() and StopCapture() for 2 clients in sequence.
189 // Execute SetCapture() and StopCapture() for 2 clients simultaneously.
218 // Execute SetCapture() and StopCapture() for 2 clients simultaneously.
247 // Execute SetCapture() and StopCapture() for 2 clients simultaneously.
  /external/chromium_org/remoting/webapp/
xhr.js 38 * Execute an XHR GET asynchronously.
59 * Execute an XHR POST asynchronously.
80 * Execute an XHR DELETE asynchronously.
101 * Execute an XHR PUT asynchronously.
122 * Execute an arbitrary HTTP method asynchronously.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
templite.py 103 engine.execute(self.ops)
113 def execute(self, ops): member in class:_TempliteEngine
114 """Execute `ops` in the engine.
133 self.execute(body)
139 self.execute(body)
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractExecutionThreadService.java 28 * {@link #shutDown} methods. This class uses a single thread to execute the
43 executor().execute(new Runnable() {
115 * priority. The returned executor's {@link Executor#execute(Runnable)
116 * execute()} method is called when this service is started, and should return
125 public void execute(Runnable command) {
ListenableFuture.java 29 * already completed when the listener is added, the listener will execute
84 * Registers a listener to be {@linkplain Executor#execute(Runnable) run} on
94 * Any exception thrown during {@code Executor.execute} (e.g., a {@code
99 * <p>Note: For fast, lightweight listeners that would be safe to execute in
119 * @throws RejectedExecutionException if we tried to execute the listener
  /frameworks/base/docs/html/training/improving-layouts/
smooth-scrolling.jd 43 the {@link android.os.AsyncTask#execute execute()} requests and performs them serially. This
73 }.execute(holder);
78 calling {@link android.os.AsyncTask#execute execute()} you can specify {@link
  /ndk/sources/host-tools/sed-4.2.1/po/
it.po 161 # sed/execute.c:516
162 #: sed/execute.c:709
167 # sed/execute.c:675
168 #: sed/execute.c:740
173 #: sed/execute.c:745
178 #: sed/execute.c:757
183 #: sed/execute.c:764
189 #: sed/execute.c:783 sed/utils.c:227
194 # sed/execute.c:1003 sed/execute.c:118
    [all...]
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_table.cc     [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/
SensorEventOrderingTests.java 35 * This is the method that will build dynamically the set of test cases to execute.
38 * - the test method that will execute the test case
108 operation.execute();
  /dalvik/vm/mterp/armv5te/
OP_EXECUTE_INLINE_RANGE.S 4 * Execute a "native inline" instruction, using "/range" semantics.
5 * Same idea as execute-inline, but we get the args differently.
14 /* [opt] execute-inline/range {vCCCC..v(CCCC+AA-1)}, inline@BBBB */
  /dalvik/vm/mterp/mips/
OP_EXECUTE_INLINE_RANGE.S 4 * Execute a "native inline" instruction, using "/range" semantics.
5 * Same idea as execute-inline, but we get the args differently.
14 /* [opt] execute-inline/range {vCCCC..v(CCCC+AA-1)}, inline@BBBB */

Completed in 698 milliseconds

<<11121314151617181920>>