Searched refs:Function (Results 1 - 25 of 750) 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; }
/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 DBypassSlowDivision.h21 #include "llvm/Function.h"
27 bool bypassSlowDivision(Function &F,
28 Function::iterator &I,
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...]
H A DCodeExtractor.h24 class Function;
89 Function *extractCodeRegion();
111 Function *constructFunction(const ValueSet &inputs,
115 Function *oldFunction, Module *M);
117 void moveCodeToFunction(Function *newFunction);
119 void emitCallAndSwitchStatement(Function *newFunction,
/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/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/Transforms/Instrumentation/
H A DProfilingUtils.h22 class Function;
27 void InsertProfilingInitCall(Function *MainFn, const char *FnName,
33 void InsertProfilingShutdownCall(Function *Callee, Module *Mod);
H A DBlackList.h32 class Function;
42 bool isIn(const Function &F);
/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/llvm/lib/Target/NVPTX/
H A DNVPTXAllocaHoisting.cpp14 #include "llvm/Function.h"
21 bool NVPTXAllocaHoisting::runOnFunction(Function &function) {
23 Function::iterator I = function.begin();
26 for (Function::iterator E = function.end(); I != E; ++I) {
H A DNVPTXAllocaHoisting.h24 class Function;
42 virtual bool runOnFunction(Function &function);
H A DNVPTXUtilities.h19 #include "llvm/Function.h"
47 bool getMaxNTIDx(const llvm::Function &, unsigned &);
48 bool getMaxNTIDy(const llvm::Function &, unsigned &);
49 bool getMaxNTIDz(const llvm::Function &, unsigned &);
51 bool getReqNTIDx(const llvm::Function &, unsigned &);
52 bool getReqNTIDy(const llvm::Function &, unsigned &);
53 bool getReqNTIDz(const llvm::Function &, unsigned &);
55 bool getMinCTASm(const llvm::Function &, unsigned &);
56 bool isKernelFunction(const llvm::Function &);
58 bool getAlign(const llvm::Function
[all...]
/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/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);

Completed in 300 milliseconds

1234567891011>>