Searched defs:Function (Results 26 - 50 of 85) sorted by relevance

1234

/external/llvm/lib/Target/ARM/
H A DARMJITInfo.cpp21 #include "llvm/IR/Function.h"
159 void *ARMJITInfo::emitFunctionStub(const Function* F, void *Fn,
267 void ARMJITInfo::relocate(void *Function, MachineRelocation *MR, argument
270 void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITCAPITest.cpp87 Function = 0;
104 Function = LLVMAddFunction(
106 LLVMSetFunctionCallConv(Function, LLVMCCallConv);
108 LLVMBasicBlockRef entry = LLVMAppendBasicBlock(Function, "entry");
152 LLVMValueRef Function; member in class:MCJITCAPITest
170 functionPointer.raw = LLVMGetPointerToGlobal(Engine, Function);
188 functionPointer.raw = LLVMGetPointerToGlobal(Engine, Function);
/external/mesa3d/src/mesa/main/
H A DAPIspec.py100 func = Function(tmpl_node, func_node, self.is_impl,
122 class Function(object): class in inherits:object
/external/llvm/lib/IR/
H A DFunction.cpp1 //===-- Function.cpp - Implement the Global object classes ----------------===//
10 // This file implements the Function class for the IR library.
14 #include "llvm/IR/Function.h"
36 template class llvm::SymbolTableListTraits<Argument, Function>;
37 template class llvm::SymbolTableListTraits<BasicBlock, Function>;
45 Argument::Argument(Type *Ty, const Twine &Name, Function *Par)
57 void Argument::setParent(Function *parent) {
68 const Function *F = getParent();
71 Function::const_arg_iterator AI = F->arg_begin();
164 // Helper Methods in Function
195 Function::Function(FunctionType *Ty, LinkageTypes Linkage, function in class:Function
[all...]
/external/v8/src/
H A Dv8natives.js34 // var $Function = global.Function;
1541 // Function
1543 $Function.prototype.constructor = $Function;
1551 throw new $TypeError('Function.prototype.toString is not generic');
1612 if (%_ClassOf(this) == "Function") {
1613 // Function or FunctionProxy.
1662 %SetCode($Function, NewFunction);
1668 InstallFunctions($Function
[all...]
H A Druntime.h600 struct Function { struct in class:v8::internal::Runtime
626 static const Function* FunctionForSymbol(Handle<String> name);
629 static const Function* FunctionForId(FunctionId id);
H A Druntime.js48 var $Function = global.Function;
/external/chromium/chrome/common/
H A Dsqlite_utils.h251 typedef void (*Function)(void*); typedef in class:SQLStatement
255 int bind_blob(int index, const void* value, int value_len, Function dtor);
298 Function dtor);
313 Function dtor);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DFunctional.h560 class Function;
563 class Function<R ()> : public FunctionBase { class in namespace:WTF
565 Function() function in class:WTF::Function
569 Function(PassRefPtr<FunctionImpl<R ()> > impl) function in class:WTF::Function
582 Function<typename FunctionWrapper<FunctionType>::ResultType ()> bind(FunctionType function)
584 return Function<typename FunctionWrapper<FunctionType>::ResultType ()>(adoptRef(new BoundFunctionImpl<FunctionWrapper<FunctionType>, typename FunctionWrapper<FunctionType>::ResultType ()>(FunctionWrapper<FunctionType>(function))));
588 Function<typename FunctionWrapper<FunctionType>::ResultType ()> bind(FunctionType function, const A1& a1)
590 return Function<typename FunctionWrapper<FunctionType>::ResultType ()>(adoptRef(new BoundFunctionImpl<FunctionWrapper<FunctionType>, typename FunctionWrapper<FunctionType>::ResultType (A1)>(FunctionWrapper<FunctionType>(function), a1)));
594 Function<typename FunctionWrapper<FunctionType>::ResultType ()> bind(FunctionType function, const A1& a1, const A2& a2)
596 return Function<typenam
[all...]
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dvirtualsocketserver.h119 typedef std::vector<Point> Function; typedef in class:talk_base::VirtualSocketServer
121 static Function* CreateDistribution(uint32 mean, uint32 stddev,
189 static Function* Accumulate(Function* f);
190 static Function* Invert(Function* f);
191 static Function* Resample(Function* f, double x1, double x2, uint32 samples);
192 static double Evaluate(Function* f, double x);
241 Function* delay_dist
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
H A Dcparse.py96 class Function(Node,Parser): class in inherits:Node,Parser
305 node = Function()
H A Dgenpyx.py152 class Function(object): class in inherits:object
177 if isinstance(node,Function):
433 """ used in Function; may lack an identifier """
/external/chromium_org/tools/json_schema_compiler/
H A Dmodel.py50 - |functions| a map of function names to their model.Function
51 - |events| a map of event names to their model.Function
103 - |functions| a map of function names to their model.Function
196 self.function = Function(self, function_name, json, namespace, origin)
200 class Function(object): class in inherits:object
201 """A Function defined in the API.
212 - |optional| whether the Function is "optional"; this only makes sense to be
213 present when the Function is representing a callback property
214 - |simple_name| the name of this Function without a namespace
256 self.callback = Function(sel
[all...]
/external/chromium_org/v8/src/
H A Druntime.h713 struct Function { struct in class:v8::internal::Runtime
740 static const Function* FunctionForName(Handle<String> name);
743 static const Function* FunctionForId(FunctionId id);
H A Druntime.js48 var $Function = global.Function;
/external/chromium_org/v8/test/cctest/
H A Dtest-types.cc125 Function(Type::Function(), isolate),
161 Handle<Type> Function; member in class:HandlifiedTypes
305 CheckSub(T.Function, T.Object);
308 CheckUnordered(T.Array, T.Function);
372 CheckOverlap(T.Function, T.Object);
375 CheckDisjoint(T.Array, T.Function);
/external/chromium_org/v8/test/webkit/fast/js/
H A DObject-getOwnPropertyNames.js37 // Function objects
38 "new Function()": "['arguments', 'caller', 'length', 'name', 'prototype']",
39 "(function(){var x=new Function();x.__proto__=[1,2,3];return x;})()": "['arguments', 'caller', 'length', 'name', 'prototype']",
76 "Function": "['length', 'name', 'prototype']",
77 "Function.prototype": "['apply', 'bind', 'call', 'constructor', 'length', 'name', 'toString']",
122 "Function",
/external/llvm/lib/Target/Mips/
H A DMipsJITInfo.cpp20 #include "llvm/IR/Function.h"
202 void *MipsJITInfo::emitFunctionStub(const Function *F, void *Fn,
247 void MipsJITInfo::relocate(void *Function, MachineRelocation *MR, argument
251 void *RelocPos = (char*) Function + MR->getMachineCodeOffset();
/external/llvm/lib/Target/PowerPC/
H A DPPCJITInfo.cpp18 #include "llvm/IR/Function.h"
366 void *PPCJITInfo::emitFunctionStub(const Function* F, void *Fn,
413 void PPCJITInfo::relocate(void *Function, MachineRelocation *MR, argument
416 unsigned *RelocPos = (unsigned*)Function + MR->getMachineCodeOffset()/4;
/external/llvm/lib/Target/X86/
H A DX86JITInfo.cpp19 #include "llvm/IR/Function.h"
471 void *X86JITInfo::emitFunctionStub(const Function* F, void *Target,
542 void X86JITInfo::relocate(void *Function, MachineRelocation *MR, argument
545 void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
558 ResultPtr = ResultPtr - ((intptr_t)Function + MR->getConstantVal());
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Dstatetracker.py530 class Function(object): class in inherits:object
803 The current Function object.
918 function = Function(self._block_depth, is_assigned, doc, name)
/external/chromium_org/third_party/closure_linter/closure_linter/
H A Dstatetracker.py530 class Function(object): class in inherits:object
803 The current Function object.
918 function = Function(self._block_depth, is_assigned, doc, name)
/external/llvm/include/llvm/IR/
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/chromium_org/third_party/mesa/src/src/mesa/drivers/osmesa/
H A Dosmesa.c1086 OSMESAproc Function; member in struct:name_function
1111 return functions[i].Function;
/external/giflib/
H A Dgif_lib.h55 int Function; /* The block function code */ member in struct:ExtensionBlock
251 int Function,

Completed in 1239 milliseconds

1234