Home
last modified time | relevance | path

Searched refs:Func (Results 1 – 25 of 97) sorted by relevance

1234

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
DEnumerableExtensions.cs40 public delegate TResult Func<TResult>(); in Func() method
41 public delegate TResult Func<T, TResult>(T arg1); in Func() method
42 public delegate TResult Func<T1, T2, TResult>(T1 arg1, T2 arg2); in Func() method
43 public delegate TResult Func<T1, T2, T3, TResult>(T1 arg1, T2 arg2, T3 arg3); in Func() method
44 public delegate TResult Func<T1, T2, T3, T4, TResult>(T1 arg1, T2 arg2, T3 arg3, T4 arg4); in Func() 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) { in Iterate()
166 …Enumerable<TResult> Select<TSource, TResult>(IEnumerable<TSource> source, Func<TSource, TResult> s… in Select()
172 …sult> CreateSelectIterator<TSource, TResult>(IEnumerable<TSource> source, Func<TSource, TResult> s… in CreateSelectIterator()
177 …Enumerable<TResult> Select<TSource, TResult>(IEnumerable<TSource> source, Func<TSource, int, TResu… in Select()
[all …]
/external/llvm/include/llvm/Target/
DTargetLibraryInfo.h20 enum Func { enum
236 void setState(LibFunc::Func F, AvailabilityState State) { in setState()
240 AvailabilityState getState(LibFunc::Func F) const { in getState()
252 bool has(LibFunc::Func F) const { in has()
256 StringRef getName(LibFunc::Func F) const { in getName()
268 void setUnavailable(LibFunc::Func F) { in setUnavailable()
272 void setAvailable(LibFunc::Func F) { in setAvailable()
276 void setAvailableWithName(LibFunc::Func F, StringRef Name) { in setAvailableWithName()
/external/clang/test/SemaObjC/
Dprotocol-qualified-class-unsupported.m15 @protocol Func protocol
20 @interface Derived: Object <Func>
23 @interface Derived2: Object <Func>
26 static void doSomething(Class <Func> unsupportedObjectType) {
30 static void doSomethingElse(id <Func> pleaseConvertToThisType) {
Dcall-super-2.m12 @protocol Func protocol
43 int i = [(id <Func>)self class_func0];
44 …i += [(id <Func>)super class_func0]; // expected-error {{cannot cast 'super' (it isn't an expre…
45 i += [(Class <Func>)self class_func0]; //
46 …return i + [(Class <Func>)super class_func0]; // // expected-error {{cannot cast 'super' (it isn't…
50 …return [(Object <Func> *)super class_func0]; // expected-error {{cannot cast 'super' (it isn't an…
54 …return [(Derived <Func> *)super class_func0]; // expected-error {{cannot cast 'super' (it isn't an…
76 …return [(id <Func>)super instance_func0]; // expected-error {{cannot cast 'super' (it isn't an exp…
80 …return [(Object <Func> *)super instance_func0]; // expected-error {{cannot cast 'super' (it isn't …
84 …return [(Derived <Func> *)super instance_func0]; // expected-error {{cannot cast 'super' (it isn't…
/external/llvm/include/llvm/ADT/
DVariadicFunction.h105 ResultT (*Func)(ArrayRef<const ArgT *>)>
108 return Func(ArrayRef<const ArgT *>()); in operator()
114 return Func(makeArrayRef(Args)); \
152 ResultT (*Func)(Param0T, ArrayRef<const ArgT *>)>
155 return Func(P0, ArrayRef<const ArgT *>()); in operator()
161 return Func(P0, makeArrayRef(Args)); \
199 ResultT (*Func)(Param0T, Param1T, ArrayRef<const ArgT *>)>
202 return Func(P0, P1, ArrayRef<const ArgT *>()); in operator()
209 return Func(P0, P1, makeAraryRef(Args)); \
248 ResultT (*Func)(Param0T, Param1T, Param2T, ArrayRef<const ArgT *>)>
[all …]
DSTLExtras.h118 template <class _Iterator, class Func>
119 inline mapped_iterator<_Iterator, Func>
120 operator+(typename mapped_iterator<_Iterator, Func>::difference_type N,
121 const mapped_iterator<_Iterator, Func>& X) {
122 return mapped_iterator<_Iterator, Func>(X.getCurrent() - N, X.getFunc());
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DITreeVisitorAction.cs63 Func<object, object> _preAction;
64 Func<object, object> _postAction;
66 public TreeVisitorAction(Func<object, object> preAction, Func<object, object> postAction) in TreeVisitorAction()
DTreeRewriter.cs40 System.Func<IAstRuleReturnScope<TTree>> topdown_func;
41 System.Func<IAstRuleReturnScope<TTree>> bottomup_func;
54 … public virtual object ApplyOnce(object t, System.Func<IAstRuleReturnScope<TTree>> whichRule) { in ApplyOnce()
86 …public virtual object ApplyRepeatedly(object t, System.Func<IAstRuleReturnScope<TTree>> whichRule)… in ApplyRepeatedly()
DTreeFilter.cs35 public delegate TResult Func<T, TResult>(T arg); in Func() method
121 Func<object, object> pre = delegate(object o) in Downup()
126 Func<object, object> post = delegate(object o) in Downup()
DTreeVisitor.cs76 … public object Visit(object t, Func<object, object> preAction, Func<object, object> postAction) in Visit()
/external/regex-re2/re2/
Dvariadic_function.h11 Result (*Func)(Param0, Param1, const Arg* const [], int count)>
17 return Func(p0, p1, 0, 0); in operator()
22 return Func(p0, p1, args, 1); in operator()
27 return Func(p0, p1, args, 2); in operator()
33 return Func(p0, p1, args, 3); in operator()
39 return Func(p0, p1, args, 4); in operator()
45 return Func(p0, p1, args, 5); in operator()
51 return Func(p0, p1, args, 6); in operator()
58 return Func(p0, p1, args, 7); in operator()
65 return Func(p0, p1, args, 8); in operator()
[all …]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
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 ) in TreeVisitorAction()
DTreeRewriter.cs46 Func<IAstRuleReturnScope> topdown_func;
47 Func<IAstRuleReturnScope> bottomup_func;
62 public virtual object ApplyOnce( object t, Func<IAstRuleReturnScope> whichRule ) in ApplyOnce()
94 public virtual object ApplyRepeatedly( object t, Func<IAstRuleReturnScope> whichRule ) in ApplyRepeatedly()
DTreeVisitor.cs78 … public object Visit( object t, Func<object, object> preAction, Func<object, object> postAction ) in Visit()
/external/clang/include/clang/StaticAnalyzer/Core/
DCheckerManager.h58 typedef RET (*Func)(void *, P1, P2, P3, P4, P5); typedef
59 Func Fn;
62 CheckerFn(CheckerBase *checker, Func fn) : Fn(fn), Checker(checker) { } in CheckerFn()
70 typedef RET (*Func)(void *, P1, P2, P3, P4); typedef
71 Func Fn;
74 CheckerFn(CheckerBase *checker, Func fn) : Fn(fn), Checker(checker) { } in CheckerFn()
82 typedef RET (*Func)(void *, P1, P2, P3); typedef
83 Func Fn;
86 CheckerFn(CheckerBase *checker, Func fn) : Fn(fn), Checker(checker) { } in CheckerFn()
92 typedef RET (*Func)(void *, P1, P2); typedef
[all …]
/external/clang/test/CodeGen/
D2003-10-29-AsmRename.c7 extern int Func(struct foo*) __asm__("Func64");
10 int Func(struct foo *F) { in Func() function
20 Func(0); /* should be renamed to call Func64 */ in test()
/external/opencv/cxcore/include/
Dcxerror.h119 #define OPENCV_CALL( Func ) \ argument
121 Func; \
168 #define CV_CALL( Func ) \ argument
170 Func; \
/external/clang/test/SemaCXX/
Dincomplete-call.cpp20 typedef A (*Func)(); in g() typedef
21 Func fp; in g()
23 ((Func)0)(); // expected-error {{calling function with incomplete return type 'A'}} in g()
Dexplicit.cpp161 using Func = void(*)(int); in testFunctionPointer() typedef
164 operator Func(); in testFunctionPointer()
167 explicit operator Func(); in testFunctionPointer()
/external/llvm/unittests/Bitcode/
DBitReaderTest.cpp30 Function* Func = Function::Create(FuncTy,GlobalValue::ExternalLinkage, in makeLLVMModule() local
33 BasicBlock* Entry = BasicBlock::Create(Mod->getContext(), "entry", Func); in makeLLVMModule()
36 BasicBlock* BB = BasicBlock::Create(Mod->getContext(), "bb", Func); in makeLLVMModule()
/external/openssl/crypto/sha/asm/
Dsha512-s390x.pl99 $Func="sha${label}_block_data_order";
233 .globl $Func
234 .type $Func,\@function
235 $Func:
312 .size $Func,.-$Func
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
DFunctionDelegates.cs37 public delegate TResult Func<TResult>(); in Func() method
39 public delegate TResult Func<T, TResult>(T arg); in Func() method
/external/clang/test/CodeGenCXX/
D2009-08-11-VectorRetTy.cpp3 typedef void (*Func) (); typedef
11 Func arr[] = {
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
Dp3.cpp17 void Func() {} in Func() function
23 Foo(Func<int>); in Test()
/external/clang/test/SemaObjCXX/
Dobjc-pointer-conv.mm32 void Func (I* arg); // expected-note {{candidate function not viable: no known conversion from 'co… function
36 Func(p); // expected-error {{no matching function for call to 'Func'}}

1234