Searched defs:Func (Results 1 - 25 of 87) 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/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/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/chromium_org/mojo/nacl/generator/
H A Dinterface_dsl.py9 def Func(self, name, return_type): member in class:Interface
/external/llvm/unittests/CodeGen/
H A DDIEHashTest.cpp512 auto Func = make_unique<DIE>(dwarf::DW_TAG_subprogram); local
514 Func->addValue(dwarf::DW_AT_name, dwarf::DW_FORM_strp, &FuncStr);
516 Unnamed.addChild(std::move(Func));
536 auto Func = make_unique<DIE>(dwarf::DW_TAG_subprogram); local
540 Func->addValue(dwarf::DW_AT_external, dwarf::DW_FORM_flag_present, &One);
541 Func->addValue(dwarf::DW_AT_name, dwarf::DW_FORM_strp, &FuncStr);
542 Func->addValue(dwarf::DW_AT_decl_file, dwarf::DW_FORM_data1, &One);
543 Func->addValue(dwarf::DW_AT_decl_line, dwarf::DW_FORM_data1, &Two);
544 Func->addValue(dwarf::DW_AT_linkage_name, dwarf::DW_FORM_strp, &FuncLinkage);
545 Func
[all...]
/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.scons300 def Func(target, source, env): function in function:GenerateSimpleManifestStaticLink
307 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::__anon14853
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/include/clang/ASTMatchers/Dynamic/
H A DVariantValue.h56 ast_matchers::internal::VariadicOperatorFunction Func,
88 ast_matchers::internal::VariadicOperatorFunction Func,
161 ast_matchers::internal::VariadicOperatorFunction Func,
174 Func, DynMatchers)));
160 constructVariadicOperator( ast_matchers::internal::VariadicOperatorFunction Func, ArrayRef<VariantMatcher> InnerMatchers) argument
/external/clang/lib/ASTMatchers/Dynamic/
H A DVariantValue.cpp100 VariadicOpPayload(ast_matchers::internal::VariadicOperatorFunction Func, argument
102 : Func(Func), Args(std::move(Args)) {}
119 Ops.constructVariadicOperator(Func, Args);
123 const ast_matchers::internal::VariadicOperatorFunction Func; member in class:clang::ast_matchers::dynamic::VariantMatcher::VariadicOpPayload
139 ast_matchers::internal::VariadicOperatorFunction Func,
141 return VariantMatcher(new VariadicOpPayload(Func, std::move(Args)));
138 VariadicOperatorMatcher( ast_matchers::internal::VariadicOperatorFunction Func, std::vector<VariantMatcher> Args) argument
/external/clang/test/Sema/
H A Dext_vector_casts.c88 C3DVector3 Func(const C3DVector3 a) { function
/external/clang/unittests/ASTMatchers/Dynamic/
H A DRegistryTest.cpp236 Matcher<Decl> Func = local
242 EXPECT_TRUE(matches("void f(){};", Func));
243 EXPECT_FALSE(matches("void f();", Func));
/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.cpp53 bool MachineTraceMetrics::runOnMachineFunction(MachineFunction &Func) { argument
54 MF = &Func;
H A DVirtRegMap.cpp307 const Function *Func = dyn_cast<Function>(MO.getGlobal()); local
308 if (!Func || !Func->hasFnAttribute(Attribute::NoReturn) ||
312 !Func->hasFnAttribute(Attribute::NoUnwind))

Completed in 842 milliseconds

1234