| /external/llvm/lib/Transforms/Utils/ |
| BreakCriticalEdges.cpp | 24 #include "llvm/Function.h" 42 virtual bool runOnFunction(Function &F); 68 bool BreakCriticalEdges::runOnFunction(Function &F) { 70 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) { 121 /// may require new PHIs in the new exit block. This function inserts the 164 /// It is invalid to call this function on a critical edge that starts at an 181 // it in this generic function. 194 // Insert the block into the function... right after the block TI lives in. 195 Function &F = *TIBB->getParent(); 196 Function::iterator FBBI = TIBB [all...] |
| /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/ |
| MessageQueue.java | 20 import com.android.ide.eclipse.gldebugger.DebuggerMessage.Message.Function; 207 builder.setFunction(Function.CONTINUE); 218 builder.setFunction(Function.SKIP); 239 } else if (msg.getType() == Type.Response && msg.getFunction() == Function.SETPROP) { 298 assert message.getFunction() != Function.NEG;
|
| /external/clang/lib/CodeGen/ |
| CodeGenModule.h | 37 class Function; 207 /// CodeGenModule - This class organizes the cross-function state that is used 294 SmallVector<std::pair<OrderGlobalInits, llvm::Function*>, 8> 484 /// GetAddrOfFunction - Return the address of the given function. If Ty is 485 /// non-null, then this function will use the specified type if it has to 614 /// getBuiltinLibFunction - Given a builtin id for a function like 615 /// "__builtin_fabsf", return a Function* for "fabsf". 619 llvm::Function *getIntrinsic(unsigned IID, ArrayRef<llvm::Type*> Tys = 631 /// destructor function. 636 /// CreateRuntimeFunction - Create a new runtime function with the specifie [all...] |
| CGCXX.cpp | 201 llvm::Function *fn = 202 cast<llvm::Function>(GetAddrOfCXXConstructor(ctor, ctorType, &fnInfo)); 226 return cast<llvm::Function>(GetOrCreateLLVMFunction(name, fnType, GD, 265 llvm::Function *fn = 266 cast<llvm::Function>(GetAddrOfCXXDestructor(dtor, dtorType, &fnInfo)); 290 return cast<llvm::Function>(GetOrCreateLLVMFunction(name, fnType, GD, 361 // Compute the function type we're calling.
|
| /external/llvm/lib/Bitcode/Writer/ |
| ValueEnumerator.cpp | 39 EnumerateAttributes(cast<Function>(I)->getAttributes()); 68 // Enumerate types used by function bodies and argument lists. 71 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end(); 75 for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB) 81 // These will get enumerated during function-incorporation. 189 /// EnumerateMDNodeOperands - Enumerate all non-function-local values 211 // In the module-level pass, skip function-local nodes themselves, but 228 // Enumerate all non-function-local operands. 233 /// EnumerateFunctionLocalMetadataa - Incorporate function-local metadata 237 "EnumerateFunctionLocalMetadata called on non-function-local mdnode!") [all...] |
| /frameworks/compile/slang/BitWriter_2_9/ |
| ValueEnumerator.cpp | 39 EnumerateAttributes(cast<Function>(I)->getAttributes()); 68 // Enumerate types used by function bodies and argument lists. 71 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end(); 75 for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB) 81 // These will get enumerated during function-incorporation. 189 /// EnumerateMDNodeOperands - Enumerate all non-function-local values 211 // In the module-level pass, skip function-local nodes themselves, but 228 // Enumerate all non-function-local operands. 233 /// EnumerateFunctionLocalMetadataa - Incorporate function-local metadata 237 "EnumerateFunctionLocalMetadata called on non-function-local mdnode!") [all...] |
| /packages/apps/Calculator/ |
| arity-2.1.2.jar | |
| /external/llvm/lib/Target/CBackend/ |
| CBackend.cpp | 91 std::set<Function*> intrinsicPrototypesAlreadyGenerated; 121 bool runOnFunction(Function &F) { 197 void lowerIntrinsics(Function &F); 198 /// Prints the definition of the intrinsic function F. Supports the 200 void printIntrinsicDefinition(const Function &F, raw_ostream &Out); 204 void printFloatingPointConstants(Function &F); 206 void printFunctionSignature(const Function *F, bool Prototype); 208 void printFunction(Function &); 536 // Must be a function ptr cast! [all...] |
| /external/chromium/testing/gmock/include/gmock/ |
| gmock-generated-function-mockers.h | 2 // pump.py gmock-generated-function-mockers.h.pump 38 // This file implements function mockers of various arities. 65 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple; 85 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple; 106 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple; 127 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple; 149 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple; 172 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple; 196 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple; 221 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple [all...] |
| /external/llvm/lib/Transforms/IPO/ |
| StripSymbols.cpp | 152 else if (!isa<Function>(C)) 243 if (Function *Declare = M.getFunction("llvm.dbg.declare")) { 252 if (Function *DbgVal = M.getFunction("llvm.dbg.value")) { 272 for (Function::iterator FI = MI->begin(), FE = MI->end(); FI != FE; 299 Function *Declare = M.getFunction("llvm.dbg.declare"); 391 if (Function *F = DISubprogram(*I).getFunction()) 400 // to hold debug info for dead function's local variables.
|
| ArgumentPromotion.cpp | 13 // argument is *only* loaded, then it can pass the value into the function 18 // This pass also handles aggregate arguments that are passed into a function, 21 // more than three operands to the function, because passing thousands of 79 CallGraphNode *DoPromotion(Function *F, 117 /// PromoteArguments - This method checks the specified function to see if there 118 /// are any promotable arguments and if it is safe to promote the function (for 123 Function *F = CGN->getFunction(); 131 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); 138 // transform functions that have indirect callers. Also see if the function 167 << " than " << maxElements << " arguments to the function.\n") [all...] |
| GlobalOpt.cpp | 82 bool OptimizeEmptyGlobalCXXDtors(Function *CXAAtExitFn); 133 /// null/false. When the first accessing function is noticed, it is recorded. 134 /// When a second different accessing function is noticed, 136 const Function *AccessingFunction; 190 const Function *F = I->getParent()->getParent(); [all...] |
| /external/v8/test/mjsunit/ |
| mirror-function.js | 31 function MirrorRefCache(json_refs) { 39 MirrorRefCache.prototype.lookup = function(handle) { 43 function testFunctionMirror(f) { 59 assertEquals('function', mirror.type()); 61 assertEquals("Function", mirror.className()); 74 assertEquals('function', fromJSON.type); 75 assertEquals('Function', fromJSON.className); 76 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type); 77 assertEquals('Function', refs.lookup(fromJSON.constructorFunction.ref).name); 88 testFunctionMirror(function(){}); [all...] |
| /external/llvm/lib/Analysis/ |
| Lint.cpp | 50 #include "llvm/Function.h" 69 void visitFunction(Function &F); 115 virtual bool runOnFunction(Function &F); 170 // function. 172 bool Lint::runOnFunction(Function &F) { 183 void Lint::visitFunction(Function &F) { 185 // fairly common mistake to neglect to name a function. 187 "Unusual: Unnamed function with non-local linkage", &F); 199 if (Function *F = dyn_cast<Function>(findValue(Callee, /*OffsetOk=*/false))) [all...] |
| AliasDebugger.cpp | 61 for (Function::arg_iterator AI = I->arg_begin(), AE = I->arg_end(); 64 for (Function::const_iterator FI = I->begin(), FE = I->end();
|
| DomPrinter.cpp | 11 // a dom.<fnname>.dot or postdom.<fnname>.dot file for each function in the 13 // function. 43 return DOTGraphTraits<const Function*> 46 return DOTGraphTraits<const Function*> 121 "View dominance tree of function", false, false) 125 "View dominance tree of function (with no function bodies)", 130 "View postdominance tree of function", false, false) 134 "View postdominance tree of function " 135 "(with no function bodies)" [all...] |
| MemoryBuiltins.cpp | 37 Function *Callee = CI->getCalledFunction(); 154 // Malloc call was not bitcast, so type is the malloc function's return type. 192 Function *Callee = CI->getCalledFunction();
|
| RegionPrinter.cpp | 9 // Print out the region tree of a function using dotty/graphviz. 47 return DOTGraphTraits<const Function*> 50 return DOTGraphTraits<const Function*> 177 "Print regions of function to 'dot' file", true, true) 179 INITIALIZE_PASS(RegionViewer, "view-regions", "View regions of function", 183 "View regions of function (with no function bodies)", 201 "Print regions of function to 'dot' file " 202 "(with no function bodies)",
|
| /external/llvm/lib/Linker/ |
| LinkModules.cpp | 319 /// function, which is the entrypoint for this file. 390 bool linkFunctionProto(Function *SrcF); 395 void linkFunctionBody(Function *Dst, Function *Src); 675 /// linkFunctionProto - Link the function in the source module into the 677 bool ModuleLinker::linkFunctionProto(Function *SF) { 693 // Track the function from the source module so we don't attempt to remap 703 Function *NewDF = Function::Create(TypeMap.get(SF->getFunctionType()), 805 // linkFunctionBody - Copy the source function over into the dest function an [all...] |
| /external/llvm/lib/VMCore/ |
| Core.cpp | 263 /*--.. Operations on function types ........................................--*/ [all...] |
| /external/chromium/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/ |
| binaryajax.js | 9 var BinaryFile = function(strData, iDataOffset, iDataLength) { 14 this.getRawData = function() { 21 this.getByteAt = function(iOffset) { 27 this.getByteAt = function(iOffset) { 32 this.getLength = function() { 36 this.getSByteAt = function(iOffset) { 44 this.getShortAt = function(iOffset, bBigEndian) { 51 this.getSShortAt = function(iOffset, bBigEndian) { 58 this.getLongAt = function(iOffset, bBigEndian) { 70 this.getSLongAt = function(iOffset, bBigEndian) [all...] |
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
| ast.ml | 16 (* variant for function calls. *) 25 (* proto - This type represents the "prototype" for a function, which captures 27 * function takes). *) 30 (* func - This type represents a function definition itself. *) 31 type func = Function of proto * expr
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
| ast.ml | 19 (* variant for function calls. *) 28 (* proto - This type represents the "prototype" for a function, which captures 30 * function takes). *) 35 (* func - This type represents a function definition itself. *) 36 type func = Function of proto * expr
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
| ast.ml | 19 (* variant for function calls. *) 31 (* proto - This type represents the "prototype" for a function, which captures 33 * function takes). *) 38 (* func - This type represents a function definition itself. *) 39 type func = Function of proto * expr
|
| /external/llvm/include/llvm/MC/ |
| MCDwarf.h | 218 /// Utility function to encode a Dwarf pair of LineDelta and AddrDeltas. 221 /// Utility function to emit the encoding to a streamer. 225 /// Utility function to write the encoding to an object writer. 265 Function(0), Instructions(), PersonalityEncoding(), 271 const MCSymbol *Function;
|