/external/clang/test/CodeGen/ |
2003-10-06-NegateExprType.c | 5 void Func(int *B) {
|
2003-10-29-AsmRename.c | 7 extern int Func(struct foo*) __asm__("Func64"); 10 int Func(struct foo *F) { 20 Func(0); /* should be renamed to call Func64 */
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/ |
FunctionDelegates.cs | 37 public delegate TResult Func<TResult>(); 39 public delegate TResult Func<T, TResult>(T arg);
|
/external/clang/test/CodeGenCXX/ |
2009-08-11-VectorRetTy.cpp | 3 typedef void (*Func) (); 11 Func arr[] = {
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
ITreeVisitorAction.cs | 63 Func<object, object> _preAction; 64 Func<object, object> _postAction; 66 public TreeVisitorAction(Func<object, object> preAction, Func<object, object> postAction)
|
TreeVisitor.cs | 76 public object Visit(object t, Func<object, object> preAction, Func<object, object> postAction)
|
TreeFilter.cs | 35 public delegate TResult Func<T, TResult>(T arg); 121 Func<object, object> pre = delegate(object o) 126 Func<object, object> post = delegate(object o)
|
/external/clang/test/SemaTemplate/ |
instantiate-overloaded-arrow.cpp | 18 void Func() {
|
/external/clang/test/SemaCXX/ |
incomplete-call.cpp | 20 typedef A (*Func)(); 21 Func fp; 23 ((Func)0)(); // expected-error {{calling function with incomplete return type 'A'}}
|
/external/eigen/Eigen/src/Core/ |
Redux.h | 26 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), [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
repeated_field_reflection_unittest.cc | 51 static int Func(int i, int j) { 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(i, 1)) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
ITreeVisitorAction.cs | 65 private readonly Func<object, object> _preAction; 66 private readonly Func<object, object> _postAction; 68 public TreeVisitorAction( Func<object, object> preAction, Func<object, object> postAction )
|
TreeVisitor.cs | 78 public object Visit( object t, Func<object, object> preAction, Func<object, object> postAction )
|
/external/clang/test/PCH/ |
rdar10830559.cpp | 28 class BarTypes { public: virtual void Func(); };
|
/external/chromium_org/third_party/skia/src/core/ |
SkOnce.h | 42 template <typename Func, typename Arg> 43 inline void SkOnce(SkOnceFlag* once, Func f, Arg arg); 99 template <typename Func, typename Arg> 100 static void sk_once_slow(SkOnceFlag* once, Func f, Arg arg) { 134 template <typename Func, typename Arg> 135 inline void SkOnce(SkOnceFlag* once, Func f, Arg arg) {
|
/external/skia/src/core/ |
SkOnce.h | 42 template <typename Func, typename Arg> 43 inline void SkOnce(SkOnceFlag* once, Func f, Arg arg); 99 template <typename Func, typename Arg> 100 static void sk_once_slow(SkOnceFlag* once, Func f, Arg arg) { 134 template <typename Func, typename Arg> 135 inline void SkOnce(SkOnceFlag* once, Func f, Arg arg) {
|
/external/clang/lib/ASTMatchers/Dynamic/ |
Marshallers.h | 107 /// \param Marshaller Function to unpack the arguments and call \c Func 108 /// \param Func Matcher construct function. This is the function that 110 FixedArgCountMatcherCreateCallback(MarshallerType Marshaller, FuncType Func, 112 : Marshaller(Marshaller), Func(Func), MatcherName(MatcherName.str()) {} 116 return Marshaller(Func, MatcherName, NameRange, Args, Error); 121 const FuncType Func; 139 FreeFuncMatcherCreateCallback(RunFunc Func, StringRef MatcherName) 140 : Func(Func), MatcherName(MatcherName.str()) { [all...] |
/external/eigen/Eigen/src/Core/util/ |
Meta.h | 119 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(ArgType)> [all...] |
/external/harfbuzz_ng/test/api/ |
hb-test.h | 173 #define hb_test_add(Func) hb_test_add_func (#Func, Func) 184 #define hb_test_add_flavor(Flavor, Func) hb_test_add_func (#Func, Flavor, Func) 195 #define hb_test_add_data(UserData, Func) hb_test_add_data_func (#Func, UserData, Func) 207 #define hb_test_add_data_flavor(UserData, Flavor, Func) hb_test_add_data_func_flavor (#Func, Flavor, UserData, Func [all...] |
/external/opencv/cxcore/include/ |
cxerror.h | 106 #define OPENCV_ERROR(status,func,context) \ 107 cvError((status),(func),(context),__FILE__,__LINE__) 109 #define OPENCV_ERRCHK(func,context) \ 111 {OPENCV_ERROR(CV_StsBackTrace,(func),(context));}} 113 #define OPENCV_ASSERT(expr,func,context) \ 115 {OPENCV_ERROR(CV_StsInternal,(func),(context));}} 119 #define OPENCV_CALL( Func ) \ 121 Func; \ 168 #define CV_CALL( Func ) \ 170 Func; \ [all...] |
/external/chromium_org/tools/android/forwarder2/ |
common.h | 25 #define PRESERVE_ERRNO_HANDLE_EINTR(Func) \ 28 (void) HANDLE_EINTR(Func); \
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/ |
p3.cpp | 17 void Func() {} 23 Foo(Func<int>);
|
/external/clang/test/Index/ |
comment-cplus-decls.cpp | 116 void Func(int x); 123 friend void ::test2::foo::Func(int x); 126 // CHECK: <Declaration>friend void Func(int x)</Declaration>
|
/external/llvm/lib/Analysis/IPA/ |
CallPrinter.cpp | 34 if (Function *Func = Node->getFunction()) 35 return Func->getName();
|
/external/llvm/unittests/Bitcode/ |
BitReaderTest.cpp | 30 Function* Func = Function::Create(FuncTy,GlobalValue::ExternalLinkage, 31 "func", Mod); 33 BasicBlock* Entry = BasicBlock::Create(Mod->getContext(), "entry", Func); 36 BasicBlock* BB = BasicBlock::Create(Mod->getContext(), "bb", Func);
|