Searched defs:Func (Results 1 - 25 of 202) 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/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/CoverageMapping/
H A Dsystem_macro.c6 #define Func(x) if (x) {} macro
16 Func(x);
/external/compiler-rt/test/asan/TestCases/
H A Duar_and_exceptions.cc21 void Func(int depth) { function
25 Func(depth - 1);
33 Func(argc * 100);
/external/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp54 static bool ignoreCallingConv(LibFunc::Func Func) { argument
55 return Func == LibFunc::abs || Func == LibFunc::labs ||
56 Func == LibFunc::llabs || Func == LibFunc::strlen;
94 LibFunc::Func DoubleFn, LibFunc::Func FloatFn,
95 LibFunc::Func LongDoubleFn) {
782 LibFunc::Func Fun
[all...]
/external/llvm/tools/llvm-cov/
H A Dllvm-cov.cpp69 MainFunction Func = StringSwitch<MainFunction>(argv[1]) local
78 if (Func) {
81 return Func(argc - 1, argv + 1);
/external/python/cpython2/Lib/idlelib/idle_test/
H A Dmock_idle.py8 class Func(object): class in inherits:object
H A Dtest_helpabout.py7 from idlelib.idle_test.mock_idle import Func namespace
30 cls.view = Func()
/external/python/cpython3/Lib/idlelib/idle_test/
H A Dmock_idle.py8 class Func: class in inherits:
H A Dtest_help_about.py7 from idlelib.idle_test.mock_idle import Func namespace
29 cls.view = Func()
/external/swiftshader/third_party/subzero/src/
H A DIceInstrumentation.cpp28 void Instrumentation::instrumentFunc(Cfg *Func) { argument
29 assert(Func);
30 assert(!Func->getNodes().empty());
32 if (!isInstrumentable(Func))
37 Context.init(Func->getNodes().front());
38 for (CfgNode *Node : Func->getNodes()) {
52 std::string FuncName = Func->getFunctionName().toStringOrEmpty();
54 instrumentStart(Func);
56 finishFunc(Func);
H A DIceSwitchLowering.cpp24 CaseClusterArray CaseCluster::clusterizeSwitch(Cfg *Func, argument
54 if (CaseClusters.size() < Func->getTarget()->getMinJumpTableSize())
79 InstJumpTable::create(Func, TotalRange, Instr->getLabelDefault());
88 Func->addJumpTable(JumpTable);
H A DIceTargetLoweringX8632.h40 static std::unique_ptr<::Ice::TargetLowering> create(Cfg *Func) { argument
41 return makeUnique<TargetX8632>(Func);
70 explicit TargetX8632(Cfg *Func) : TargetX86Base(Func) {} argument
74 return Traits::X86OperandMem::create(Func, IceType_i32, nullptr, Zero,
H A DIceTargetLoweringX8664.h40 static std::unique_ptr<::Ice::TargetLowering> create(Cfg *Func) { argument
41 return makeUnique<TargetX8664>(Func);
73 explicit TargetX8664(Cfg *Func) : TargetX86Base(Func) {} argument
/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.cpp30 void Func() {} function in namespace:PR5910
36 Foo(Func<int>);
/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/clang/unittests/Analysis/
H A DCFGTest.cpp36 const auto *Func = Result.Nodes.getNodeAs<FunctionDecl>("func"); local
37 Stmt *Body = Func->getBody();
/external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
H A Dcopy_assign.pass.cpp93 typedef std::function<int()> Func; typedef
94 Func f = g0;
95 Func& fr = (f = f);
100 typedef std::function<int(int)> Func; typedef
101 Func f = g;
102 Func& fr = (f = f);
107 typedef std::function<int(int, int)> Func; typedef
108 Func f = g2;
109 Func& fr = (f = f);
114 typedef std::function<int(int, int, int)> Func; typedef
[all...]
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DMemoryTypeTableBuilder.h27 template <typename TFunc> void ForEachRecord(TFunc Func) { argument
31 Func(TypeIndex(Index), R);
/external/spirv-llvm/lib/SPIRV/libSPIRV/
H A DSPIRVBasicBlock.cpp51 SPIRVBasicBlock::SPIRVBasicBlock(SPIRVId TheId, SPIRVFunction *Func) argument
52 :SPIRVValue(Func->getModule(), 2, OpLabel, TheId), ParentF(Func) {

Completed in 1728 milliseconds

123456789