| /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
| parser.ml | 206 raise (Stream.Error "expected function name in prototype") 211 Ast.Function (p, e) 217 Ast.Function (Ast.Prototype ("", [||]), e)
|
| /external/llvm/include/llvm/CodeGen/ |
| JITCodeEmitter.h | 36 class Function; 50 /// function has been emitted, the overflow condition is checked, and if it has 58 /// startFunction - This callback is invoked when the specified function is 64 /// finishFunction - This callback is invoked when the specified function has 275 /// because a global may live longer than the current function. 315 /// 'Index' in the function that last called initJumpTableInfo.
|
| MachineCodeEmitter.h | 34 class Function; 49 /// function has been emitted, the overflow condition is checked, and if it has 68 /// startFunction - This callback is invoked when the specified function is 74 /// finishFunction - This callback is invoked when the specified function has 312 /// 'Index' in the function that last called initJumpTableInfo.
|
| /external/llvm/include/llvm/IR/ |
| Constants.h | 173 /// This function will return true iff every bit in this constant is set 181 /// This function will return true iff this constant represents the largest 193 /// This function will return true iff this constant represents the smallest 205 /// This function will return true iff this constant represents a value with 752 BlockAddress(Function *F, BasicBlock *BB); 754 /// get - Return a BlockAddress for the specified function and basic block. 755 static BlockAddress *get(Function *F, BasicBlock *BB); 758 /// block must be embedded into a function. 764 Function *getFunction() const { return (Function*)Op<0>().get(); [all...] |
| IntrinsicInst.h | 17 // All intrinsic function calls are instances of the call instruction, so these 28 #include "llvm/IR/Function.h" 49 if (const Function *CF = I->getCalledFunction())
|
| /external/llvm/lib/Analysis/ |
| LoopPass.cpp | 24 /// PrintLoopPass - Print a Function corresponding to a Loop. 178 /// whether any of the passes modifies the function, and if so, return true. 179 bool LPPassManager::runOnFunction(Function &F) { 240 // is a function pass and it's really expensive to verify every 241 // loop in the function every time. That level of checking can be
|
| MemoryBuiltins.cpp | 72 static Function *getCalledFunction(const Value *V, bool LookThroughBitCast) { 80 Function *Callee = CS.getCalledFunction(); 87 /// known allocation function, and NULL otherwise. 95 Function *Callee = getCalledFunction(V, LookThroughBitCast); 99 // Make sure that the function is available. 120 // Check function prototype. 143 /// \brief Tests if a value is a call or invoke to a library function that 151 /// \brief Tests if a value is a call or invoke to a function that returns a 161 /// \brief Tests if a value is a call or invoke to a library function that 168 /// \brief Tests if a value is a call or invoke to a library function tha [all...] |
| PathProfileVerifier.cpp | 89 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) { 113 DEBUG(dbgs() << "function '" << F->getName() << "' ran " 143 // TODO: make this a separate function
|
| RegionPass.cpp | 52 /// whether any of the passes modifies the function, and if so, return true. 53 bool RGPassManager::runOnFunction(Function &F) { 108 // is a function pass and it's really expensive to verify every 109 // Region in the function every time. That level of checking can be 159 dbgs() << "\nRegion tree of function " << F.getName()
|
| /external/llvm/lib/Target/MSP430/ |
| MSP430RegisterInfo.cpp | 24 #include "llvm/IR/Function.h" 44 const Function* F = MF->getFunction();
|
| /external/llvm/lib/Target/PowerPC/ |
| PPCCodeEmitter.cpp | 43 /// its address in the function into this pointer. 50 /// getBinaryCodeForInstr - This function, generated by the 164 Cst, isa<Function>(MO.getGlobal()));
|
| /external/llvm/lib/Transforms/Utils/ |
| Local.cpp | 74 //cerr << "Function: " << T->getParent()->getParent() [all...] |
| /external/sonivox/arm-hybrid-22k/lib_src/ |
| ARM-E_filter_gnu.s | 2 @ Function: WT_VoiceFilter
126 @ Return to calling function
|
| ARM-E_interpolate_loop_gnu.s | 2 @ Function: WT_Interpolate
4 @ Description: the main synthesis function when fetching
|
| ARM-E_interpolate_noloop_gnu.s | 2 @ Function: WT_InterpolateNoLoop
4 @ Description: the main synthesis function when fetching
122 @ Return to calling function
|
| ARM-E_voice_gain_gnu.s | 2 @ Function: WT_VoiceGain
4 @ Description: the main synthesis function when fetching
|
| /external/sonivox/arm-wt-22k/lib_src/ |
| ARM-E_filter_gnu.s | 2 @ Function: WT_VoiceFilter
126 @ Return to calling function
|
| ARM-E_interpolate_loop_gnu.s | 2 @ Function: WT_Interpolate
4 @ Description: the main synthesis function when fetching
|
| ARM-E_interpolate_noloop_gnu.s | 2 @ Function: WT_InterpolateNoLoop
4 @ Description: the main synthesis function when fetching
122 @ Return to calling function
|
| ARM-E_voice_gain_gnu.s | 2 @ Function: WT_VoiceGain
4 @ Description: the main synthesis function when fetching
|
| /external/v8/test/mjsunit/ |
| undeletable-functions.js | 104 CheckEcmaSemantics(Function.prototype, ["toString"], "Function prototype"); 118 function CheckEcmaSemantics(type, props, name) { 126 function CheckDontDelete(type, props, name) { 134 function CheckDeletable(type, prop) { 148 function CheckDontDeleteAttr(type, prop) { 160 function CheckReadOnlyAttr(type, prop) {
|
| /external/webkit/Source/JavaScriptCore/ |
| create_hash_table | 88 if ($att =~ m/Function/) { 89 push(@values, { "type" => "Function", "function" => $val, "params" => (length($param) ? $param : "") }); 262 if ($values[$i]{"type"} eq "Function") { 264 $firstValue = $values[$i]{"function"};
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/ |
| 15.4.4.4-1.js | 59 Note that the reverse function is intentionally generic; it does not require 61 kinds of objects for use as a method. Whether the reverse function can be applied 83 function getTestCases() { 155 var FUNCTION_OBJECT = new Function( 'return this' ); 206 function CheckItems( R, A ) { 215 function test() { 226 function Object_1( value ) { 235 function Reverse( array ) { 258 function Iterate( array ) { 264 function Object_1( value ) [all...] |
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/ |
| 11.2.1-1.js | 72 // go through all Native Function objects, methods, and properties and get their typeof. 81 PROPERTY[p++] = new Property( "this", "eval", "function" ); 82 PROPERTY[p++] = new Property( "this", "parseInt", "function" ); 83 PROPERTY[p++] = new Property( "this", "parseFloat", "function" ); 84 PROPERTY[p++] = new Property( "this", "escape", "function" ); 85 PROPERTY[p++] = new Property( "this", "unescape", "function" ); 86 PROPERTY[p++] = new Property( "this", "isNaN", "function" ); 87 PROPERTY[p++] = new Property( "this", "isFinite", "function" ); 88 PROPERTY[p++] = new Property( "this", "Object", "function" ); 89 PROPERTY[p++] = new Property( "this", "Number", "function" ); [all...] |
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ObjectObjects/ |
| 15.2.2.1.js | 54 function getTestCases() { 112 var myfunction = new Function( "x", "return x"); 122 array[item++] = new TestCase( SECTION, "myfunction = new Function(); new Object(myfunction)", myfunction, new Object(myfunction) ); 127 function test() {
|