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

1 2 3 4 5

  /ndk/sources/cxx-stl/gabi++/tests/
catch_function_01.cpp 18 typedef void Function();
24 catch (Function& b) // can't catch void (*)()
catch_function_02.cpp 18 typedef void Function();
24 catch (Function b) // equivalent to void (*)()
  /external/javasqlite/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/guava/src/com/google/common/base/
Function.java 30 public interface Function<F, T> {
32 * Returns the result of applying this function to {@code input}. This method is <i>generally
38 * Objects.equal}{@code (a, b)} implies that {@code Objects.equal(function.apply(a),
39 * function.apply(b))}.
42 * @throws NullPointerException if {@code input} is null and this function does not accept null
48 * Indicates whether another object is equal to this function.
52 * {@link Function} that it considers <i>interchangeable</i> with this one. "Interchangeable"
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.rel/
is_convertible.pass.cpp 34 typedef void Function();
45 test_is_not_convertible<void,Function> ();
46 test_is_not_convertible<void,Function&> ();
47 test_is_not_convertible<void,Function*> ();
54 // Function
55 test_is_not_convertible<Function, void> ();
56 test_is_not_convertible<Function, Function> ();
57 test_is_convertible<Function, Function&> ()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathFunctions.h 36 class Function : public Expression {
50 Function* createFunction(const String& name, const Vector<Expression*>& args = Vector<Expression*>());
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/
Function.java 24 public interface Function {
27 * Execute a function. Should always return a result.
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
ast.ml 16 (* variant for function calls. *)
19 (* proto - This type represents the "prototype" for a function, which captures
21 * function takes). *)
24 (* func - This type represents a function definition itself. *)
25 type func = Function of proto * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
ast.ml 16 (* variant for function calls. *)
19 (* proto - This type represents the "prototype" for a function, which captures
21 * function takes). *)
24 (* func - This type represents a function definition itself. *)
25 type func = Function of proto * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
ast.ml 16 (* variant for function calls. *)
19 (* proto - This type represents the "prototype" for a function, which captures
21 * function takes). *)
24 (* func - This type represents a function definition itself. *)
25 type func = Function of proto * expr
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
Function.java 22 * <code>Function&lt;String,Integer&gt;</code> and transform integers in
28 * <code>Function&lt;Float,Float&gt;</code>.
33 * @param <F> the type of the function input
34 * @param <T> the type of the function output
39 public interface Function<F, T> {
42 * Applies the function to an object of type {@code F}, resulting in an object
52 * Indicates whether some other object is equal to this {@code Function}.
54 * also a {@code Function} and, for every input object {@code o}, it returns
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
Function.java 23 * <code>Function&lt;String,Integer&gt;</code> and transform integers in
29 * <code>Function&lt;Float,Float&gt;</code>.
34 * @param <F> the type of the function input
35 * @param <T> the type of the function output
40 public interface Function<F, T> {
43 * Applies the function to an object of type {@code F}, resulting in an object
53 * Indicates whether some other object is equal to this {@code Function}.
55 * also a {@code Function} and, for every input object {@code o}, it returns
  /external/apache-xml/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/llvm/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 16 (* variant for function calls. *)
25 (* proto - This type represents the "prototype" for a function, which captures
27 * function takes). *)
30 (* func - This type represents a function definition itself. *)
31 type func = Function of proto * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
ast.ml 19 (* variant for function calls. *)
28 (* proto - This type represents the "prototype" for a function, which captures
30 * function takes). *)
35 (* func - This type represents a function definition itself. *)
36 type func = Function of proto * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 19 (* variant for function calls. *)
31 (* proto - This type represents the "prototype" for a function, which captures
33 * function takes). *)
38 (* func - This type represents a function definition itself. *)
39 type func = Function of proto * expr
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pyclbr.py 6 The interface consists of a single function:
34 A function is described by the class Function in this module.
48 __all__ = ["readmodule", "readmodule_ex", "Class", "Function"]
68 class Function:
69 '''Class to represent a top-level Python function'''
176 # it's a function
177 dict[meth_name] = Function(fullmodule, meth_name,
340 elif isinstance(obj, Function):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pyclbr.py 6 The interface consists of a single function:
34 A function is described by the class Function in this module.
48 __all__ = ["readmodule", "readmodule_ex", "Class", "Function"]
68 class Function:
69 '''Class to represent a top-level Python function'''
176 # it's a function
177 dict[meth_name] = Function(fullmodule, meth_name,
340 elif isinstance(obj, Function):
  /bootable/recovery/edify/
expr.h 57 typedef Value* (*Function)(const char* name, State* state,
61 Function fn;
68 // Take one of the Expr*s passed to the function as an argument,
73 // Take one of the Expr*s passed to the function as an argument,
76 // a convenience function for older functions that want to deal only
84 // ("concat" is also available as a builtin function, to concatenate
95 // Convenience function for building expressions with a fixed number
97 Expr* Build(Function fn, YYLTYPE loc, int count, ...);
106 // NULL from a function).
114 Function fn
    [all...]
  /external/chromium/testing/gmock/include/gmock/internal/
gmock-generated-internal-utils.h 138 // Template struct Function<F>, where F must be a function type, contains
141 // Result: the function's return type.
146 // MakeResultVoid: the function type obtained by substituting void
149 // the function type obtained by substituting Something
152 struct Function;
155 struct Function<R()> {
164 struct Function<R(A1)>
165 : Function<R()> {
174 struct Function<R(A1, A2)
    [all...]
  /external/chromium_org/chrome/browser/resources/standalone/
standalone_hack.js 32 * We create this object by applying an anonymous function so that we can have
35 chrome.send = (function() {
64 * Invoke the getAppsCallback function with a snapshot of the current app
67 function sendGetUsersCallback()
80 * @param {function(Object): boolean} predicate The function to invoke on
84 function indexOfPred(array, predicate) {
99 function getUserIndex(name) {
100 var i = indexOfPred(apps, function(e) { return e.name === name;});
112 function getUser(name)
    [all...]
  /external/llvm/include/llvm/MC/
MCWin64EH.h 65 Function(0), PrologEnd(0), Symbol(0),
72 const MCSymbol *Function;
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITCAPITest.cpp 87 Function = 0;
104 Function = LLVMAddFunction(
106 LLVMSetFunctionCallConv(Function, LLVMCCallConv);
108 LLVMBasicBlockRef entry = LLVMAppendBasicBlock(Function, "entry");
152 LLVMValueRef Function;
170 functionPointer.raw = LLVMGetPointerToGlobal(Engine, Function);
188 functionPointer.raw = LLVMGetPointerToGlobal(Engine, Function);
  /external/ceres-solver/internal/ceres/
line_search.h 55 // While finding the exact minimum of a one dimensionl function is
62 class Function;
74 function(NULL) {}
77 // function.
86 // which decreases the value of the objective function
147 // The one dimensional function that the line search algorithm
149 Function* function; member in struct:ceres::internal::LineSearch::Options
152 // An object used by the line search to access the function values
153 // and gradient of the one dimensional function being optimized
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_bb.cpp 27 Function::Function(Program *p, const char *fnName, uint32_t label)
51 Function::~Function()
70 BasicBlock::BasicBlock(Function *fn) : cfg(this), dom(this), func(fn)
91 BasicBlock::clone(ClonePolicy<Function>& pol) const
392 Function::setEntry(BasicBlock *bb)
401 Function::setExit(BasicBlock *bb)
410 Function::orderInstructions(ArrayList &result)
426 Function::buildLiveSets(
    [all...]

Completed in 545 milliseconds

1 2 3 4 5