Searched defs:Function (Results 1 - 25 of 125) sorted by relevance

12345

/external/libcxxabi/test/
H A Dcatch_function_01.cpp18 typedef void Function(); typedef
24 catch (Function& b) // can't catch void (*)()
H A Dcatch_function_02.cpp18 typedef void Function(); typedef
24 catch (Function b) // equivalent to void (*)()
/external/javasqlite/src/main/java/SQLite/
H A DFunction.java12 * class SinFunc implements SQLite.Function {
31 public interface Function { interface
/external/libcxx/test/utilities/meta/meta.rel/
H A Dis_convertible.pass.cpp34 typedef void Function(); typedef
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/
H A Dnotifications_test_util.js49 var $Function = {
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfType1ShadingDictionary_autogen.cpp35 SkPdfFunction SkPdfType1ShadingDictionary::Function(SkPdfNativeDoc* doc) { function in class:SkPdfType1ShadingDictionary
36 SkPdfNativeObject* ret = get("Function", "");
44 return get("Function", "") != NULL;
H A DSkPdfType2ShadingDictionary_autogen.cpp35 SkPdfFunction SkPdfType2ShadingDictionary::Function(SkPdfNativeDoc* doc) { function in class:SkPdfType2ShadingDictionary
36 SkPdfNativeObject* ret = get("Function", "");
44 return get("Function", "") != NULL;
H A DSkPdfType3ShadingDictionary_autogen.cpp35 SkPdfFunction SkPdfType3ShadingDictionary::Function(SkPdfNativeDoc* doc) { function in class:SkPdfType3ShadingDictionary
36 SkPdfNativeObject* ret = get("Function", "");
44 return get("Function", "") != NULL;
H A DSkPdfType4ShadingDictionary_autogen.cpp59 SkPdfFunction SkPdfType4ShadingDictionary::Function(SkPdfNativeDoc* doc) { function in class:SkPdfType4ShadingDictionary
60 SkPdfNativeObject* ret = get("Function", "");
68 return get("Function", "") != NULL;
H A DSkPdfType5ShadingDictionary_autogen.cpp59 SkPdfFunction SkPdfType5ShadingDictionary::Function(SkPdfNativeDoc* doc) { function in class:SkPdfType5ShadingDictionary
60 SkPdfNativeObject* ret = get("Function", "");
68 return get("Function", "") != NULL;
H A DSkPdfType6ShadingDictionary_autogen.cpp59 SkPdfFunction SkPdfType6ShadingDictionary::Function(SkPdfNativeDoc* doc) { function in class:SkPdfType6ShadingDictionary
60 SkPdfNativeObject* ret = get("Function", "");
68 return get("Function", "") != NULL;
/external/deqp/modules/internal/
H A DditTestCase.hpp35 typedef void (*Function) (void); typedef in class:dit::SelfCheckCase
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/
H A DFunction.java30 public interface Function<F, T> { interface
52 * {@link Function} that it considers <i>interchangeable</i> with this one. "Interchangeable"
/external/jsilver/src/com/google/clearsilver/jsilver/functions/
H A DFunction.java24 public interface Function { interface
/external/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/
H A Dis_destructible.pass.cpp60 typedef void (Function) (); typedef
82 test_is_not_destructible<Function>();
/external/lldb/test/lang/cpp/breakpoints/
H A Dnested.cpp11 int Function () function in class:Foo::Bar::Baz
24 int Function () function in class:Foo::Bar::Baz2
34 int Function () function in namespace:Foo::Bar
46 int Function () function in class:Baz
56 Function () function
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());
72 printf ("And got %d from ::.\n", ::Function());
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dast.ml25 type func = Function of proto * expr Constructor in type:func
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dast.ml25 type func = Function of proto * expr Constructor in type:func
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dast.ml25 type func = Function of proto * expr Constructor in type:func
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfType1ShadingDictionary_autogen.cpp35 SkPdfFunction SkPdfType1ShadingDictionary::Function(SkPdfNativeDoc* doc) { function in class:SkPdfType1ShadingDictionary
36 SkPdfNativeObject* ret = get("Function", "");
44 return get("Function", "") != NULL;
/external/deqp/framework/randomshaders/
H A DrsgShader.cpp44 Function::Function (void) function in class:rsg::Function
48 Function::Function (const char* name) function in class:rsg::Function
53 Function::~Function (void)
125 void Function::tokenize (GeneratorState& state, TokenStream& str) const
130 // Function name
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathFunctions.h36 class Function : public Expression { class in namespace:blink::XPath
51 Function* createFunction(const String& name);
52 Function* createFunction(const String& name, WillBeHeapVector<OwnPtrWillBeMember<Expression> >&);
/external/guava/guava/src/com/google/common/collect/
H A DByFunctionOrdering.java22 import com.google.common.base.Function;
36 final Function<F, ? extends T> function;
40 Function<F, ? extends T> function, Ordering<T> ordering) {
39 ByFunctionOrdering( Function<F, ? extends T> function, Ordering<T> ordering) argument
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dast.ml31 type func = Function of proto * expr Constructor in type:func
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dast.ml36 type func = Function of proto * expr Constructor in type:func

Completed in 726 milliseconds

12345