Searched refs:Function (Results 1 - 25 of 723) sorted by relevance

1234567891011>>

/external/clang/test/PCH/
H A Dtypo.cpp10 Function<int(int)> f; // expected-error{{no template named 'Function'; did you mean 'boost::function'?}}
/external/llvm/include/llvm/
H A DAutoUpgrade.h20 class Function;
27 bool UpgradeIntrinsicFunction(Function *F, Function *&NewFn);
31 void UpgradeIntrinsicCall(CallInst *CI, Function *NewFn);
37 void UpgradeCallsToIntrinsic(Function* F);
H A DArgument.h27 /// A class to represent an incoming formal argument to a Function. An argument
34 Function *Parent;
36 friend class SymbolTableListTraits<Argument, Function>;
37 void setParent(Function *parent);
40 /// Argument ctor - If Function argument is specified, this argument is
43 explicit Argument(Type *Ty, const Twine &Name = "", Function *F = 0);
45 inline const Function *getParent() const { return Parent; }
46 inline Function *getParent() { return Parent; }
H A DFunction.h1 //===-- llvm/Function.h - Class to represent a single function --*- C++ -*-===//
10 // This file contains the declaration of the Function class, which represents a
35 : public SymbolTableListTraits<BasicBlock, Function> {
48 static ValueSymbolTable *getSymTab(Function *ItemParent);
54 : public SymbolTableListTraits<Argument, Function> {
65 static ValueSymbolTable *getSymTab(Function *ItemParent);
70 class Function : public GlobalValue, class in namespace:llvm
71 public ilist_node<Function> {
96 friend class SymbolTableListTraits<Function, Module>;
113 Function(cons
[all...]
/external/llvm/include/llvm/Transforms/Utils/
H A DModuleUtils.h20 class Function;
26 void appendToGlobalCtors(Module &M, Function *F, int Priority);
29 void appendToGlobalDtors(Module &M, Function *F, int Priority);
H A DFunctionUtils.h1 //===-- Transform/Utils/FunctionUtils.h - Function Utils --------*- C++ -*-===//
23 class Function;
29 Function* ExtractCodeRegion(DominatorTree& DT,
35 Function* ExtractLoop(DominatorTree& DT, Loop *L,
41 Function* ExtractBasicBlock(ArrayRef<BasicBlock*> BBs,
H A DCloning.h30 class Function;
99 const Twine &NameSuffix = "", Function *F = 0,
114 Function *CloneFunction(const Function *F,
121 inline Function *CloneFunction(const Function *F, ClonedCodeInfo *CodeInfo = 0){
135 void CloneFunctionInto(Function *NewFunc, const Function *OldFunc,
154 void CloneAndPruneFunctionInto(Function *NewFunc, const Function *OldFun
[all...]
/external/valgrind/main/none/tests/ppc32/
H A DtestVMX.stdout.exp3 Function vec_abs [type char] ===> OK
4 Function vec_abs [type short] ===> OK
5 Function vec_abs [type integer] ===> OK
8 Function vec_abss [type char] ===> OK
9 Function vec_abss [type short] ===> OK
10 Function vec_abss [type integer] ===> OK
13 Function vec_add [type char] ===> OK
14 Function vec_add [type unsigned char] ===> OK
15 Function vec_add [type short] ===> OK
16 Function vec_ad
[all...]
/external/llvm/include/llvm/Analysis/
H A DLint.h27 class Function;
44 const Function &F ///< The function to be checked
H A DVerifier.h30 class Function;
69 const Function &F, ///< The function to be verified
/external/llvm/lib/Transforms/Instrumentation/
H A DFunctionBlackList.h19 class Function;
32 bool isIn(const Function &F);
H A DProfilingUtils.h22 class Function;
27 void InsertProfilingInitCall(Function *MainFn, const char *FnName,
33 void InsertProfilingShutdownCall(Function *Callee, Module *Mod);
/external/jsilver/src/com/google/clearsilver/jsilver/functions/
H A DEscapingFunction.java19 public abstract class EscapingFunction implements Function {
H A DNonEscapingFunction.java19 public abstract class NonEscapingFunction implements Function {
H A DFunction.java24 public interface Function { interface
/external/llvm/lib/VMCore/
H A DFunction.cpp1 //===-- Function.cpp - Implement the Global object classes ----------------===//
10 // This file implements the Function class for the VMCore library.
35 template class llvm::SymbolTableListTraits<Argument, Function>;
36 template class llvm::SymbolTableListTraits<BasicBlock, Function>;
44 Argument::Argument(Type *Ty, const Twine &Name, Function *Par)
56 void Argument::setParent(Function *parent) {
67 const Function *F = getParent();
70 Function::const_arg_iterator AI = F->arg_begin();
133 // Helper Methods in Function
136 LLVMContext &Function
164 Function::Function(FunctionType *Ty, LinkageTypes Linkage, function in class:Function
[all...]
/external/llvm/include/llvm/Target/
H A DTargetIntrinsicInfo.h21 class Function;
50 virtual unsigned getIntrinsicID(Function *F) const;
55 /// Create or insert an LLVM Function declaration for an intrinsic,
58 virtual Function *getDeclaration(Module *M, unsigned ID, Type **Tys = 0,
/external/clang/test/Misc/
H A Dinteger-literal-printing.cpp10 void Function() { function
/external/javasqlite/src/main/java/SQLite/
H A DFunction.java12 * class SinFunc implements SQLite.Function {
31 public interface Function { interface
/external/llvm/lib/Target/
H A DTargetIntrinsicInfo.cpp15 #include "llvm/Function.h"
25 unsigned TargetIntrinsicInfo::getIntrinsicID(Function *F) const {
/external/valgrind/main/none/tests/
H A Dprocfs-non-linux.stderr.exp8 readlinkat: Function not implemented
9 readlinkat: Function not implemented
/external/llvm/include/llvm/Assembly/
H A DAssemblyAnnotationWriter.h22 class Function;
35 virtual void emitFunctionAnnot(const Function *,
/external/llvm/lib/Analysis/
H A DTrace.cpp19 #include "llvm/Function.h"
25 Function *Trace::getFunction() const {
36 Function *F = getFunction();
/external/webkit/Source/WebCore/bindings/v8/
H A DV8EventListener.cpp44 v8::Local<v8::Function> V8EventListener::getListenerFunction(ScriptExecutionContext* context)
50 return v8::Local<v8::Function>();
53 return v8::Local<v8::Function>::Cast(listener);
60 return v8::Local<v8::Function>::Cast(property);
63 return v8::Local<v8::Function>();
69 v8::Local<v8::Function> handlerFunction = getListenerFunction(context);
/external/llvm/lib/ExecutionEngine/JIT/
H A DJIT.h23 class Function;
37 std::vector<AssertingVH<Function> > PendingFunctions;
47 std::vector<AssertingVH<Function> > &getPendingFunctions(const MutexGuard &L){
117 virtual GenericValue runFunction(Function *F,
139 void *getPointerToFunction(Function *F);
160 void *getPointerToFunctionOrStub(Function *F);
168 void *recompileAndRelinkFunction(Function *F);
171 /// Function.
173 void freeMachineCodeForFunction(Function *F);
179 void addPendingFunction(Function *
[all...]

Completed in 364 milliseconds

1234567891011>>