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

1 2 3 4 5

  /external/libcxxabi/test/
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/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfType1ShadingDictionary_autogen.cpp 35 SkPdfFunction SkPdfType1ShadingDictionary::Function(SkPdfNativeDoc* doc) {
36 SkPdfNativeObject* ret = get("Function", "");
44 return get("Function", "") != NULL;
SkPdfType2ShadingDictionary_autogen.cpp 35 SkPdfFunction SkPdfType2ShadingDictionary::Function(SkPdfNativeDoc* doc) {
36 SkPdfNativeObject* ret = get("Function", "");
44 return get("Function", "") != NULL;
SkPdfType3ShadingDictionary_autogen.cpp 35 SkPdfFunction SkPdfType3ShadingDictionary::Function(SkPdfNativeDoc* doc) {
36 SkPdfNativeObject* ret = get("Function", "");
44 return get("Function", "") != NULL;
SkPdfType4ShadingDictionary_autogen.cpp 59 SkPdfFunction SkPdfType4ShadingDictionary::Function(SkPdfNativeDoc* doc) {
60 SkPdfNativeObject* ret = get("Function", "");
68 return get("Function", "") != NULL;
SkPdfType5ShadingDictionary_autogen.cpp 59 SkPdfFunction SkPdfType5ShadingDictionary::Function(SkPdfNativeDoc* doc) {
60 SkPdfNativeObject* ret = get("Function", "");
68 return get("Function", "") != NULL;
SkPdfType6ShadingDictionary_autogen.cpp 59 SkPdfFunction SkPdfType6ShadingDictionary::Function(SkPdfNativeDoc* doc) {
60 SkPdfNativeObject* ret = get("Function", "");
68 return get("Function", "") != NULL;
  /external/deqp/modules/internal/
ditTestCase.hpp 35 typedef void (*Function) (void);
37 SelfCheckCase (tcu::TestContext& testCtx, const char* name, const char* desc, Function func)
51 Function m_function;
  /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"
  /external/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/chrome/renderer/resources/extensions/
notifications_test_util.js 8 var require = function(library) {
12 'create': function () {
14 registerCustomHook: function () {},
15 generate: function () {}
21 sendRequest: function () {}
26 var requireNative = function(library) {
29 GetNotificationImageSizes: function () {
44 push: function (ary, val) {
49 var $Function = {
50 bind: function (fn, context)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathFunctions.h 36 class Function : public Expression {
51 Function* createFunction(const String& name);
52 Function* createFunction(const String& name, WillBeHeapVector<OwnPtrWillBeMember<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/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/
is_destructible.pass.cpp 60 typedef void (Function) ();
82 test_is_not_destructible<Function>();
  /external/lldb/test/lang/cpp/breakpoints/
nested.cpp 11 int Function ()
24 int Function ()
34 int Function ()
46 int Function ()
56 Function ()
58 printf ("I am a global function, I return 333.\n");
68 printf ("Yup, got %d from Baz.\n", mine.Function());
69 printf ("Yup, got %d from Baz.\n", mine2.Function());
70 printf ("Yup, got %d from Baz.\n", bare_baz.Function());
71 printf ("And got %d from Bar.\n", Foo::Bar::Function());
    [all...]
  /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
  /external/deqp/framework/randomshaders/
rsgShader.cpp 44 Function::Function (void)
48 Function::Function (const char* name)
53 Function::~Function (void)
121 // \todo [2011-03-08 pyry] Proper function calls
125 void Function::tokenize (GeneratorState& state, TokenStream& str) const
130 // Function name
  /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

Completed in 483 milliseconds

1 2 3 4 5