Searched refs:Function (Results 1 - 25 of 1203) sorted by relevance

1234567891011>>

/external/clang/test/PCH/
H A Dtypo.cpp12 Function<int(int)> f;
13 // expected-error@-1{{no template named 'Function'; did you mean 'boost::function'?}}
/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/llvm/include/llvm/Transforms/Utils/
H A DBypassSlowDivision.h22 #include "llvm/IR/Function.h"
28 bool bypassSlowDivision(Function &F,
29 Function::iterator &I,
H A DCtorUtils.h22 class Function;
28 function_ref<bool(Function *)> ShouldRemove);
H A DModuleUtils.h20 class Function;
29 void appendToGlobalCtors(Module &M, Function *F, int Priority);
32 void appendToGlobalDtors(Module &M, Function *F, int Priority);
/external/valgrind/main/none/tests/ppc32/
H A DtestVMX.stdout.exp3 Function vec_abs [type char] ===> OK
4 Function vec_abs [type short] ===> OK
5 Function vec_abs [type integer] ===> OK
8 Function vec_abss [type char] ===> OK
9 Function vec_abss [type short] ===> OK
10 Function vec_abss [type integer] ===> OK
13 Function vec_add [type char] ===> OK
14 Function vec_add [type unsigned char] ===> OK
15 Function vec_add [type short] ===> OK
16 Function vec_ad
[all...]
/external/chromium_org/mojo/public/platform/native/
H A Dgles2_impl_chromium_sync_point_thunks.cc15 #define VISIT_GL_CALL(Function, ReturnType, PARAMETERS, ARGUMENTS) \
16 ReturnType gl##Function PARAMETERS { \
17 assert(g_impl_chromium_sync_point_thunks.Function); \
18 return g_impl_chromium_sync_point_thunks.Function ARGUMENTS; \
H A Dgles2_impl_chromium_texture_mailbox_thunks.cc15 #define VISIT_GL_CALL(Function, ReturnType, PARAMETERS, ARGUMENTS) \
16 ReturnType gl##Function PARAMETERS { \
17 assert(g_impl_chromium_texture_mailbox_thunks.Function); \
18 return g_impl_chromium_texture_mailbox_thunks.Function ARGUMENTS; \
H A Dgles2_impl_thunks.cc14 #define VISIT_GL_CALL(Function, ReturnType, PARAMETERS, ARGUMENTS) \
15 ReturnType gl##Function PARAMETERS { \
16 assert(g_impl_thunks.Function); \
17 return g_impl_thunks.Function ARGUMENTS; \
H A Dgles2_impl_chromium_sync_point_thunks.h17 #define VISIT_GL_CALL(Function, ReturnType, PARAMETERS, ARGUMENTS) \
18 ReturnType(*Function) PARAMETERS;
30 #define VISIT_GL_CALL(Function, ReturnType, PARAMETERS, ARGUMENTS) gl##Function,
H A Dgles2_impl_chromium_texture_mailbox_thunks.h17 #define VISIT_GL_CALL(Function, ReturnType, PARAMETERS, ARGUMENTS) \
18 ReturnType(*Function) PARAMETERS;
31 #define VISIT_GL_CALL(Function, ReturnType, PARAMETERS, ARGUMENTS) gl##Function,
H A Dgles2_impl_thunks.h19 #define VISIT_GL_CALL(Function, ReturnType, PARAMETERS, ARGUMENTS) \
20 ReturnType(*Function) PARAMETERS;
31 #define VISIT_GL_CALL(Function, ReturnType, PARAMETERS, ARGUMENTS) gl##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/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/llvm/include/llvm/Analysis/
H A DLint.h27 class Function;
44 const Function &F ///< The function to be checked
H A DJumpInstrTableInfo.h23 class Function;
46 typedef std::pair<Function *, Function *> JumpPair;
50 void insertEntry(FunctionType *TableFunTy, Function *Target, Function *Jump);
/external/jsilver/src/com/google/clearsilver/jsilver/functions/
H A DEscapingFunction.java19 public abstract class EscapingFunction implements Function {
H A DNonEscapingFunction.java19 public abstract class NonEscapingFunction implements Function {
/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/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8CustomElementLifecycleCallbacks.h51 static PassRefPtr<V8CustomElementLifecycleCallbacks> create(ScriptState*, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged);
58 V8CustomElementLifecycleCallbacks(ScriptState*, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged);
65 void call(const ScopedPersistent<v8::Function>& weakCallback, Element*);
72 ScopedPersistent<v8::Function> m_create
[all...]
/external/llvm/include/llvm/IR/
H A DArgument.h29 /// This class represents an incoming formal argument to a Function. A formal
37 Function *Parent;
39 friend class SymbolTableListTraits<Argument, Function>;
40 void setParent(Function *parent);
47 explicit Argument(Type *Ty, const Twine &Name = "", Function *F = nullptr);
49 inline const Function *getParent() const { return Parent; }
50 inline Function *getParent() { return Parent; }
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DMainThread.cpp64 Function<void()>* function = static_cast<Function<void()>*>(context);
69 void callOnMainThread(const Function<void()>& function)
71 callOnMainThread(callFunctionObject, new Function<void()>(function));
/external/chromium_org/mojo/public/c/gles2/
H A Dchromium_sync_point.h21 #define VISIT_GL_CALL(Function, ReturnType, PARAMETERS, ARGUMENTS) \
22 MOJO_GLES2_EXPORT ReturnType GL_APIENTRY gl##Function PARAMETERS;
H A Dchromium_texture_mailbox.h21 #define VISIT_GL_CALL(Function, ReturnType, PARAMETERS, ARGUMENTS) \
22 MOJO_GLES2_EXPORT ReturnType GL_APIENTRY gl##Function PARAMETERS;

Completed in 1096 milliseconds

1234567891011>>