Searched refs:Func (Results 1 - 25 of 208) sorted by relevance

123456789

/external/clang/test/CodeGen/
H A D2003-10-06-NegateExprType.c5 void Func(int *B) { function
H A D2003-10-29-AsmRename.c7 extern int Func(struct foo*) __asm__("Func64");
10 int Func(struct foo *F) { function
20 Func(0); /* should be renamed to call Func64 */
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
H A DFunctionDelegates.cs37 public delegate TResult Func<TResult>(); method in namespace:Antlr.Runtime.Misc
39 public delegate TResult Func<T, TResult>(T arg); method in namespace:Antlr.Runtime.Misc
/external/clang/test/CodeGenCXX/
H A D2009-08-11-VectorRetTy.cpp3 typedef void (*Func) (); typedef
11 Func arr[] = {
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DITreeVisitorAction.cs63 Func<object, object> _preAction;
64 Func<object, object> _postAction;
66 public TreeVisitorAction(Func<object, object> preAction, Func<object, object> postAction)
H A DTreeFilter.cs35 public delegate TResult Func<T, TResult>(T arg); method in namespace:Antlr.Runtime.Tree
121 Func<object, object> pre = delegate(object o)
126 Func<object, object> post = delegate(object o)
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DITreeVisitorAction.cs65 private readonly Func<object, object> _preAction;
66 private readonly Func<object, object> _postAction;
68 public TreeVisitorAction( Func<object, object> preAction, Func<object, object> postAction ) argument
/external/clang/test/SemaTemplate/
H A Dinstantiate-overloaded-arrow.cpp18 void Func() { function
/external/compiler-rt/test/asan/TestCases/
H A Duar_and_exceptions.cc24 void Func(int depth) { function
28 Func(depth - 1);
36 Func(argc * 100);
/external/clang/test/PCH/
H A Drdar10830559.cpp28 class BarTypes { public: virtual void Func(); };
/external/clang/test/SemaCXX/
H A Dincomplete-call.cpp20 typedef A (*Func)(); typedef
21 Func fp;
23 ((Func)0)(); // expected-error {{calling function with incomplete return type 'A'}}
/external/eigen/Eigen/src/Core/
H A DRedux.h26 template<typename Func, typename Derived>
39 && (functor_traits<Func>::PacketAccess),
55 || (Derived::SizeAtCompileTime!=1 && functor_traits<Func>::Cost == Dynamic)
58 + (Derived::SizeAtCompileTime-1) * functor_traits<Func>::Cost,
76 template<typename Func, typename Derived, int Start, int Length>
85 static EIGEN_STRONG_INLINE Scalar run(const Derived &mat, const Func& func)
87 return func(redux_novec_unroller<Func, Derived, Start, HalfLength>::run(mat,func),
88 redux_novec_unroller<Func, Derived, Start+HalfLength, Length-HalfLength>::run(mat,func));
92 template<typename Func, typename Derived, int Start>
93 struct redux_novec_unroller<Func, Derive
102 run(const Derived &mat, const Func&) argument
115 run(const Derived&, const Func&) argument
152 run(const Derived &mat, const Func&) argument
[all...]
/external/protobuf/src/google/protobuf/
H A Drepeated_field_reflection_unittest.cc51 static int Func(int i, int j) { function in namespace:google::protobuf::__anon13541
57 SStringPrintf(&str, "%d", Func(i, 4));
68 message.add_repeated_int32(Func(i, 1));
69 message.add_repeated_double(Func(i, 2));
71 message.add_repeated_foreign_message()->set_c(Func(i, 6));
119 EXPECT_EQ(rf_int32.Get(i), Func(i, 1));
120 EXPECT_EQ(rf_double.Get(i), Func(i, 2));
122 EXPECT_EQ(rpf_foreign_message.Get(i).c(), Func(i, 6));
124 Func(i, 6));
127 EXPECT_EQ(mrf_int32->Get(i), Func(
[all...]
/external/llvm/lib/Target/NVPTX/
H A DNVPTXLowerStructArgs.cpp60 Function *Func = Arg->getParent(); local
61 Instruction *FirstInst = &(Func->getEntryBlock().front());
73 AllocA->setAlignment(Func->getParamAlignment(Arg->getArgNo() + 1));
79 Type::getInt8PtrTy(Func->getParent()->getContext(), ADDRESS_SPACE_PARAM),
80 Type::getInt8PtrTy(Func->getParent()->getContext(),
83 Func->getParent(), Intrinsic::nvvm_ptr_gen_to_param, CvtTypes);
86 new BitCastInst(Arg, Type::getInt8PtrTy(Func->getParent()->getContext(),
/external/llvm/bindings/go/llvm/
H A DIRBindings.cpp25 Function *Func = unwrap<Function>(Fn); local
26 const AttributeSet PAL = Func->getAttributes();
29 PAL.addAttributes(Func->getContext(), AttributeSet::FunctionIndex,
30 AttributeSet::get(Func->getContext(),
32 Func->setAttributes(PALnew);
36 Function *Func = unwrap<Function>(Fn); local
37 const AttributeSet PAL = Func->getAttributes();
42 Function *Func = unwrap<Function>(Fn); local
43 const AttributeSet PAL = Func->getAttributes();
46 PAL.removeAttributes(Func
[all...]
/external/llvm/tools/llvm-cov/
H A Dllvm-cov.cpp54 MainFunction Func = StringSwitch<MainFunction>(argv[1]) local
62 if (Func) {
65 return Func(argc - 1, argv + 1);
/external/eigen/Eigen/src/Core/util/
H A DMeta.h119 template<typename Func, typename ArgType, int SizeOf=sizeof(has_none)>
122 template<typename Func, typename ArgType>
123 struct unary_result_of_select<Func, ArgType, sizeof(has_std_result_type)> {typedef typename Func::result_type type;};
125 template<typename Func, typename ArgType>
126 struct unary_result_of_select<Func, ArgType, sizeof(has_tr1_result)> {typedef typename Func::template result<Func(ArgType)>::type type;};
128 template<typename Func, typename ArgType>
129 struct result_of<Func(ArgTyp
[all...]
/external/libunwind/doc/
H A Dunw_step.tex15 \Type{int} \Func{unw\_step}(\Type{unw\_cursor\_t~*}\Var{cp});\\
19 The \Func{unw\_step}() routine advances the unwind cursor \Var{cp} to
24 On successful completion, \Func{unw\_step}() returns a positive value
31 \Func{unw\_step}() is thread-safe. If cursor \Var{cp} is in the local
48 \Func{find\_proc\_info}() returned -\Const{UNW\_ESTOPUNWIND}.
50 In addition, \Func{unw\_step}() may return any error returned by the
51 \Func{find\_proc\_info}(), \Func{get\_dyn\_info\_list\_addr}(),
52 \Func{access\_mem}(), \Func{acces
[all...]
H A Dunw_backtrace.tex15 \Type{int} \Func{unw\_backtrace}(\Type{void~**}\Var{buffer}, \Type{int}~\Var{size});\\
19 \Type{int} \Func{backtrace}(\Type{void~**}\Var{buffer}, \Type{int}~\Var{size});\\
23 \Func{unw\_backtrace}() is a convenient routine for obtaining the backtrace for
28 called \Func{backtrace}(). The prototype for this function is usually obtained
30 \Func{backtrace}() is not provided by \Prog{libunwind}. \Prog{libunwind} weakly
31 aliases \Func{backtrace}() to \Func{unw\_backtrace}(), so when a program
32 calling \Func{backtrace}() is linked against \Prog{libunwind}, it may end up
33 calling \Func{unw\_backtrace}().
H A Dlibunwind-setjmp.tex16 \Type{int} \Func{setjmp}(\Type{jmp\_buf}~\Var{env});\\
17 \Type{void} \Func{longjmp}(\Type{jmp\_buf}~\Var{env}, \Type{int}~\Var{val});\\
18 \Type{int} \Func{\_setjmp}(\Type{jmp\_buf}~\Var{env});\\
19 \Type{void} \Func{\_longjmp}(\Type{jmp\_buf}~\Var{env}, \Type{int}~\Var{val});\\
20 \Type{int} \Func{sigsetjmp}(\Type{sigjmp\_buf}~\Var{env}, \Type{int}~\Var{savemask});\\
21 \Type{void} \Func{siglongjmp}(\Type{sigjmp\_buf}~\Var{env}, \Type{int}~\Var{val});\\
30 \Func{setjmp}() routines is very fast. Typically, just 2 or 3 words
32 \Func{sigprocmask}(2), in the case of \Func{sigsetjmp}). On the
34 \Func{longjm
[all...]
H A Dunw_getcontext.tex15 \Type{int} \Func{unw\_getcontext}(\Type{unw\_context\_t~*}\Var{ucp});\\
19 The \Func{unw\_getcontext}() routine initializes the context structure
21 exact set of registers stored by \Func{unw\_getcontext}() is
33 \Func{getcontext}() instead of \Func{unw\_getcontext}(). However, the
35 initialized by \Func{unw\_getcontext()} in places where a structure
36 initialized by \Func{getcontext()} is expected. The reason for this
37 asymmetry is that \Func{unw\_getcontext()} is optimized for maximum
42 On successful completion, \Func{unw\_getcontext}() returns 0.
47 \Func{un
[all...]
H A Dunw_resume.tex15 \Type{int} \Func{unw\_resume}(\Type{unw\_cursor\_t~*}\Var{cp});\\
19 The \Func{unw\_resume}() routine resumes execution at the stack frame
23 For local unwinding, \Func{unw\_resume}() restores the machine state
25 \Func{unw\_resume}() does not return in this case. Restoring the
29 \Var{cp} was interrupted by a signal, then \Func{unw\_resume}() will
31 \Func{unw\_resume}() on a cursor which identifies the stack frame of
35 For remote unwinding, \Func{unw\_resume}() installs the machine state
36 identified by the cursor by calling the \Func{access\_reg} and
37 \Func{access\_fpreg} accessor callbacks as needed. Once that is
38 accomplished, the \Func{resum
[all...]
/external/harfbuzz_ng/test/api/
H A Dhb-test.h170 #define hb_test_add(Func) hb_test_add_func (#Func, Func)
181 #define hb_test_add_flavor(Flavor, Func) hb_test_add_func (#Func, Flavor, Func)
192 #define hb_test_add_data(UserData, Func) hb_test_add_data_func (#Func, UserData, Func)
204 #define hb_test_add_data_flavor(UserData, Flavor, Func) hb_test_add_data_func_flavo
[all...]
/external/opencv/cxcore/include/
H A Dcxerror.h119 #define OPENCV_CALL( Func ) \
121 Func; \
168 #define CV_CALL( Func ) \
170 Func; \
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DEnumerableExtensions.cs40 public delegate TResult Func<TResult>(); method
41 public delegate TResult Func<T, TResult>(T arg1); method
42 public delegate TResult Func<T1, T2, TResult>(T1 arg1, T2 arg2); method
43 public delegate TResult Func<T1, T2, T3, TResult>(T1 arg1, T2 arg2, T3 arg3); method
44 public delegate TResult Func<T1, T2, T3, T4, TResult>(T1 arg1, T2 arg2, T3 arg3, T4 arg4); method
57 Func<TAggregate, TElement, TAggregate> func, Func<TAggregate, long, TResult> result)
139 static U Iterate<T, U>(IEnumerable<T> source, U initValue, Func<T, U, U> selector) {
166 public static IEnumerable<TResult> Select<TSource, TResult>(IEnumerable<TSource> source, Func<TSource, TResult> selector) {
172 static IEnumerable<TResult> CreateSelectIterator<TSource, TResult>(IEnumerable<TSource> source, Func<TSourc
[all...]

Completed in 777 milliseconds

123456789