HomeSort by relevance Sort by last modified time
    Searched defs:Function (Results 1 - 13 of 13) sorted by null

  /libcore/sqlite-jdbc/src/main/java/SQLite/
Function.java 7 * which is used to set the function result or error code.
12 * class SinFunc implements SQLite.Function {
13 * public void function(SQLite.FunctionContext fc, String args[]) {
31 public interface Function {
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
    [all...]
  /external/guava/src/com/google/common/base/
Function.java 26 * <code>Function&lt;String,Integer&gt;</code> and transform integers in
32 * <code>Function&lt;Float,Float&gt;</code>.
37 * @param <F> the type of the function input
38 * @param <T> the type of the function output
44 public interface Function<F, T> {
47 * Applies the function to an object of type {@code F}, resulting in an object
57 * Indicates whether some other object is equal to this {@code Function}.
59 * also a {@code Function} and, for every input object {@code o}, it returns
  /external/webkit/WebCore/xml/
XPathFunctions.h 38 class Function : public Expression {
52 Function* createFunction(const String& name, const Vector<Expression*>& args = Vector<Expression*>());
  /libcore/luni/src/main/java/org/apache/xpath/functions/
Function.java 19 * $Id: Function.java 468655 2006-10-28 07:12:06Z minchau $
41 public abstract class Function extends Expression
46 * Set an argument expression for a function. This method is called by the
53 * is specified for this function.
63 * Check that the number of arguments passed to this function is correct.
65 * the number of arguments for a specific function type. This method is
68 * @param argNum The number of arguments that is being passed to the function.
80 * message for this function object. This method is meant to be overloaded
90 * Execute an XPath function object. The function must retur
    [all...]
  /external/v8/src/
runtime.h 370 // Runtime function descriptor.
371 struct Function {
372 // The JS name of the function.
387 // Get the runtime function with the given function id.
388 static Function* FunctionForId(FunctionId fid);
390 // Get the runtime function with the given name.
391 static Function* FunctionForName(const char* name);
419 // This function is used in FunctionNameUsing* tests.
v8natives.js 34 // const $Function = global.Function;
48 // Helper function used to install functions on objects.
49 function InstallFunctions(object, attributes, functions) {
64 // functions on String.prototype etc. and then restore the old function
66 function InstallFunctionsOnHiddenPrototype(object, attributes, functions) {
77 function GlobalIsNaN(number) {
84 function GlobalIsFinite(number) {
90 function GlobalParseInt(string, radix) {
115 function GlobalParseFloat(string)
    [all...]
  /bootable/recovery/edify/
expr.h 53 typedef Value* (*Function)(const char* name, State* state,
57 Function fn;
64 // Take one of the Expr*s passed to the function as an argument,
69 // Take one of the Expr*s passed to the function as an argument,
72 // a convenience function for older functions that want to deal only
80 // ("concat" is also available as a builtin function, to concatenate
91 // Convenience function for building expressions with a fixed number
93 Expr* Build(Function fn, YYLTYPE loc, int count, ...);
102 // NULL from a function).
110 Function fn
    [all...]
  /external/webkit/WebCore/css/
CSSParserValues.h 49 CSSParserFunction* function; member in union:WebCore::CSSParserValue::__anon8178
53 Function = 0x100001,
  /external/webkit/JavaScriptCore/runtime/
JSObject.h 63 Function = 1 << 4, // property is a function - only used by static hashtables
82 // The inline virtual destructor cannot be the first virtual function declared
140 // This get function only looks at the property map.
176 void putDirectFunction(ExecState* exec, InternalFunction* function, unsigned attr = 0);
180 void putDirectFunctionWithoutTransition(ExecState* exec, InternalFunction* function, unsigned attr = 0);
368 // It may seem crazy to inline a function this large, especially a virtual function,
383 // It may seem crazy to inline a function this large but it makes a big difference
384 // since this is function very hot in variable looku
    [all...]
  /external/giflib/
gif_lib.h 123 * GIF89 extension function codes
283 int Function; /* Holds the type of the Extension block. */
290 int Function; /* DEPRECATED: Use ExtensionBlocks[x].Function instead */
296 extern void MakeExtension(SavedImage * New, int Function);
  /external/dbus/test/
decode-gcov.c 52 /* This bizarro function is from gcov-io.h in gcc source tree */
185 /* In gcc33 .bbg files, there's a function name of the form:
202 die ("no room for -1 before function name\n");
207 die ("value before function name is not -1\n");
210 die ("no length found for function name\n");
216 die ("Function name length points past end of file\n");
228 die ("-1 at end of function name not found\n");
233 die ("no checksum found at end of function name\n");
286 printf ("Function %s\n", _dbus_string_get_const_data (&f));
331 /* In gcc33 .bbg files, there's a function name of the form
    [all...]
  /external/v8/include/
v8.h 119 class Function;
143 * A weak reference callback function.
319 * persistent handle as an argument to a function you will not get two
388 * callback to the given V8::WeakReferenceCallback function, passing
583 * when this function was called. When run it will always use this
601 * when this function was called. When run it will always use this
640 * Returns the resource name for the script from where the function causing
646 * Returns the resource data for the script from where the function causing
723 * Returns true if this value is a function.
942 * If it is not given, the function call
    [all...]
  /packages/apps/Calculator/
arity-2.1.2.jar 

Completed in 529 milliseconds