Searched defs:function (Results 1 - 6 of 6) sorted by relevance

/dalvik/libcore/sql/src/main/java/SQLite/
H A DFunction.java7 * which is used to set the function result or error code.
13 * public void function(SQLite.FunctionContext fc, String args[]) {
34 * Callback for regular function.
36 * @param fc function's context for reporting result
40 public void function(FunctionContext fc, String args[]); method in interface:Function
43 * Callback for one step in aggregate function.
45 * @param fc function's context for reporting result
52 * Callback for final step in aggregate function.
54 * @param fc function's context for reporting result
/dalvik/libcore/sql/src/test/java/tests/support/
H A DMockFunction.java35 public void function(FunctionContext fc, String args[]) { method in class:MockFunction
/dalvik/libcore/xml/src/main/java/org/apache/xalan/extensions/
H A DExtensionHandler.java35 * Provides functions to test a function's existence and call a function.
83 * Tests whether a certain function name is known within this namespace.
84 * @param function name of the function being tested
87 public abstract boolean isFunctionAvailable(String function); argument
97 * Process a call to a function.
100 * @param args The arguments of the function call.
104 * @return the return value of the function evaluation.
113 * Process a call to a function
[all...]
/dalvik/libcore/sql/src/test/java/tests/SQLite/
H A DFunctionContextTest.java69 notes = "indirectly tested invoking function",
291 public void function(FunctionContext fc, String args[]) { method in class:FunctionContextTest.TestFCError
311 public void function(FunctionContext fc, String args[]) { method in class:FunctionContextTest.TestFCCount
332 public void function(FunctionContext fc, String args[]) { method in class:FunctionContextTest.TestFCZeroBlob
352 public void function(FunctionContext fc, String args[]) { method in class:FunctionContextTest.TestFCString
373 public void function(FunctionContext fc, String args[]) { method in class:FunctionContextTest.TestFCInt
394 public void function(FunctionContext fc, String args[]) { method in class:FunctionContextTest.TestFCByteArray
416 public void function(FunctionContext fc, String args[]) { method in class:FunctionContextTest.SinFunc
H A DDatabaseTest.java1019 fail("Error happened creating function:" + e.getMessage());
1052 method = "function",
1057 @KnownFailure("Aggregation function not called")
1100 assertEquals("wrong number of arguments to function myaggfunc()",e.getMessage());
1137 // function determines return type: test that Double type is returned.
1734 public void function(FunctionContext fc, String args[]) { method in class:DatabaseTest.SinFunc
/dalvik/libcore/sql/src/test/java/tests/java/sql/
H A DQueryTimeoutTest.java54 * server-side function which delays the execution, so that it takes several
207 * The reason for using the mod function here is to force at least one
663 * A function
669 public void function(FunctionContext fc, String[] args) { method in class:QueryTimeoutTest.Delay
715 // setup Delay function

Completed in 385 milliseconds