HomeSort by relevance Sort by last modified time
    Searched refs:execute (Results 26 - 50 of 1070) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncContains.java 28 * Execute the Contains() function.
36 * Execute the function. The function must return
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncContains
46 String s1 = m_arg0.execute(xctxt).str();
47 String s2 = m_arg1.execute(xctxt).str();
FuncSubstringAfter.java 29 * Execute the SubstringAfter() function.
37 * Execute the function. The function must return
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncSubstringAfter
47 XMLString s1 = m_arg0.execute(xctxt).xstr();
48 XMLString s2 = m_arg1.execute(xctxt).xstr();
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);
FuncTranslate.java 28 * Execute the Translate() function.
36 * Execute the function. The function must return
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncTranslate
46 String theFirstString = m_arg0.execute(xctxt).str();
47 String theSecondString = m_arg1.execute(xctxt).str();
48 String theThirdString = m_arg2.execute(xctxt).str();
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();
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
And.java 45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:And
48 XObject expr1 = m_left.execute(xctxt);
52 XObject expr2 = m_right.execute(xctxt);
Or.java 45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:Or
48 XObject expr1 = m_left.execute(xctxt);
52 XObject expr2 = m_right.execute(xctxt);
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);
VariableSafeAbsRef.java 39 * the current document context, and, if it is not, execute the referenced variable's
58 public XObject execute(XPathContext xctxt, boolean destructiveOK) method in class:VariableSafeAbsRef
61 XNodeSet xns = (XNodeSet)super.execute(xctxt, destructiveOK);
  /external/webkit/Source/WebCore/bindings/v8/
ScheduledAction.h 59 virtual void execute(ScriptExecutionContext*);
62 void execute(V8Proxy*);
64 void execute(WorkerContext*);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
XUnresolvedVariableSimple.java 53 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:XUnresolvedVariableSimple
56 XObject xobj = expr.execute(xctxt);
  /frameworks/volley/tests/src/com/android/volley/mock/
MockHttpClient.java 56 public HttpResponse execute(HttpUriRequest request, HttpContext context) { method in class:MockHttpClient
70 public HttpResponse execute(HttpUriRequest request) { method in class:MockHttpClient
75 public HttpResponse execute(HttpHost target, HttpRequest request) { method in class:MockHttpClient
80 public <T> T execute(HttpUriRequest arg0, ResponseHandler<? extends T> arg1) { method in class:MockHttpClient
85 public HttpResponse execute(HttpHost target, HttpRequest request, HttpContext context) { method in class:MockHttpClient
90 public <T> T execute(HttpUriRequest arg0, ResponseHandler<? extends T> arg1, HttpContext arg2) { method in class:MockHttpClient
95 public <T> T execute(HttpHost arg0, HttpRequest arg1, ResponseHandler<? extends T> arg2) { method in class:MockHttpClient
100 public <T> T execute(HttpHost arg0, HttpRequest arg1, ResponseHandler<? extends T> arg2, method in class:MockHttpClient
  /packages/apps/Browser/src/com/android/browser/
BackgroundHandler.java 35 public static void execute(Runnable runnable) { method in class:BackgroundHandler
36 mThreadPool.execute(runnable);
  /dalvik/vm/mterp/armv5te/
OP_NOP.S 4 GOTO_OPCODE(ip) @ execute it
  /dalvik/vm/mterp/mips/
OP_NOP.S 4 GOTO_OPCODE(t0) # execute it
  /external/oauth/core/src/main/java/net/oauth/http/
HttpClient.java 33 HttpResponseMessage execute(HttpMessage request) throws IOException; method in interface:HttpClient
  /external/webkit/Source/WebCore/storage/
SQLStatementSync.h 51 PassRefPtr<SQLResultSet> execute(DatabaseSync*, ExceptionCode&);
  /frameworks/volley/tests/src/com/android/volley/utils/
ImmediateResponseDelivery.java 18 public void execute(Runnable command) {
  /libcore/benchmarks/src/benchmarks/regression/
SchemePrefixBenchmark.java 29 @Override String execute(String spec) { method
60 @Override String execute(String spec) { method
71 abstract String execute(String spec); method in class:SchemePrefixBenchmark.Strategy
78 strategy.execute("http://android.com");
  /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/apache-xml/src/main/java/org/apache/xpath/
Expression.java 79 * Execute an expression in the XPath runtime context, and return the
91 public XObject execute(XPathContext xctxt, int currentNode) method in class:Expression
96 return execute(xctxt);
100 * Execute an expression in the XPath runtime context, and return the
114 public XObject execute( method in class:Expression
120 return execute(xctxt);
124 * Execute an expression in the XPath runtime context, and return the
135 public abstract XObject execute(XPathContext xctxt) method in class:Expression
139 * Execute an expression in the XPath runtime context, and return the
141 * to be returned. The default implementation just calls execute(xctxt)
152 public XObject execute(XPathContext xctxt, boolean destructiveOK) method in class:Expression
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-stylebook.jar 
  /external/webkit/Source/JavaScriptCore/yarr/
YarrJIT.h 66 int execute(const UChar* input, unsigned start, unsigned length, int* output) function in class:JSC::Yarr::YarrCodeBlock
81 int execute(YarrCodeBlock& jitObject, const UChar* input, unsigned start, unsigned length, int* output);
  /external/webkit/Tools/Scripts/webkitpy/tool/bot/
irc_command.py 41 def execute(self, nick, args, tool, sheriff): member in class:IRCCommand
46 def execute(self, nick, args, tool, sheriff): member in class:LastGreenRevision
52 def execute(self, nick, args, tool, sheriff): member in class:Restart
75 def execute(self, nick, args, tool, sheriff): member in class:Rollout
102 def execute(self, nick, args, tool, sheriff): member in class:Help
107 def execute(self, nick, args, tool, sheriff): member in class:Hi
114 def execute(self, nick, args, tool, sheriff): member in class:Whois
134 def execute(self, nick, args, tool, sheriff): member in class:Eliza
  /ndk/sources/host-tools/sed-4.2.1/sed/
Makefile.am 6 sed_SOURCES = sed.c compile.c execute.c regexp.c fmt.c mbcs.c utils.c

Completed in 4232 milliseconds

12 3 4 5 6 7 8 91011>>