Searched defs:Func (Results 1 - 25 of 83) sorted by relevance

1234

/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/clang/test/SemaTemplate/
H A Dinstantiate-overloaded-arrow.cpp18 void Func() { function
/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/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'}}
H A Dabstract.cpp53 typedef void (*Func)(C); // expected-error {{parameter type 'C' is an abstract class}} typedef
54 void t6(Func);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
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/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp3.cpp17 void Func() {} function in namespace:PR5910
23 Foo(Func<int>);
/external/llvm/unittests/Bitcode/
H A DBitReaderTest.cpp30 Function* Func = Function::Create(FuncTy,GlobalValue::ExternalLinkage, local
33 BasicBlock* Entry = BasicBlock::Create(Mod->getContext(), "entry", Func);
36 BasicBlock* BB = BasicBlock::Create(Mod->getContext(), "bb", Func);
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
H A Dp1.cpp85 void Func();
91 void X2<T>::Bar<F>::Func() {} function in class:X2::Bar
/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...]
/external/chromium_org/ppapi/native_client/
H A Dchrome_main.scons313 def Func(target, source, env): function in function:GenerateSimpleManifestStaticLink
320 node = env.Command(dest_file, [], Func)[0]
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Drepeated_field_reflection_unittest.cc51 static int Func(int i, int j) { function in namespace:google::protobuf::__anon13418
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/clang/unittests/ASTMatchers/Dynamic/
H A DRegistryTest.cpp157 Matcher<Decl> Func = local
163 EXPECT_TRUE(matches("void f(){};", Func));
164 EXPECT_FALSE(matches("void f();", Func));
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMELFStreamer.cpp192 void EmitThumbFunc(MCSymbol *Func) { argument
195 getAssembler().setIsThumbFunc(Func);
197 MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Func);
/external/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.h107 /// \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, argument
112 : Marshaller(Marshaller), Func(Func), MatcherName(MatcherName.str()) {}
116 return Marshaller(Func, MatcherName, NameRange, Args, Error);
121 const FuncType Func; member in class:clang::ast_matchers::dynamic::internal::FixedArgCountMatcherCreateCallback
139 FreeFuncMatcherCreateCallback(RunFunc Func, StringRef MatcherName) argument
140 : Func(Func), MatcherNam
148 const RunFunc Func; member in class:clang::ast_matchers::dynamic::internal::FreeFuncMatcherCreateCallback
202 matcherMarshall0(ReturnType (Func)), StringRef MatcherName, const SourceRange &NameRange, ArrayRef<ParserValue> Args, Diagnostics *Error) argument
213 matcherMarshall1(ReturnType (Func)ArgType1), StringRef MatcherName, const SourceRange &NameRange, ArrayRef<ParserValue> Args, Diagnostics *Error) argument
226 matcherMarshall2(ReturnType (Func)ArgType1, ArgType2), StringRef MatcherName, const SourceRange &NameRange, ArrayRef<ParserValue> Args, Diagnostics *Error) argument
283 makeMatcherAutoMarshall(ReturnType (Func)), StringRef MatcherName) argument
291 makeMatcherAutoMarshall(ReturnType (Func)ArgType1), StringRef MatcherName) argument
299 makeMatcherAutoMarshall(ReturnType (Func)ArgType1, ArgType2), StringRef MatcherName) argument
[all...]
/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/llvm/lib/CodeGen/
H A DMachineTraceMetrics.cpp51 bool MachineTraceMetrics::runOnMachineFunction(MachineFunction &Func) { argument
52 MF = &Func;
/external/llvm/lib/MC/
H A DMCPureStreamer.cpp71 virtual void EmitThumbFunc(MCSymbol *Func) { argument
H A DWinCOFFStreamer.cpp57 virtual void EmitThumbFunc(MCSymbol *Func);
200 void WinCOFFStreamer::EmitThumbFunc(MCSymbol *Func) { argument
/external/llvm/lib/Target/PowerPC/
H A DPPCCTRLoops.cpp270 LibFunc::Func Func; local
272 LibInfo->getLibFunc(F->getName(), Func) &&
273 LibInfo->hasOptimizedCodeGen(Func)) {
282 switch (Func) {
/external/llvm/lib/Target/X86/
H A DX86FixupLEAs.cpp136 bool FixupLEAPass::runOnMachineFunction(MachineFunction &Func) { argument
137 MF = &Func;
143 for (MachineFunction::iterator I = Func.begin(), E = Func.end(); I != E; ++I)
144 processBasicBlock(Func, I);
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITTestBase.h61 void endFunctionWithRet(Function *Func, Value *RetValue) { argument
120 Function *insertExternalReferenceToFunction(Module *M, Function *Func) { argument
121 Function *Result = Function::Create(Func->getFunctionType(),
123 Func->getName(), M);

Completed in 457 milliseconds

1234