| /external/llvm/lib/Transforms/IPO/ |
| DeadArgumentElimination.cpp | 12 // only passed into function calls as dead arguments of other functions. This 50 /// Struct that represents (part of) either a return value or a function 54 RetOrArg(const Function *F, unsigned Idx, bool IsArg) : F(F), Idx(Idx), 56 const Function *F; 77 + utostr(Idx) + " of function " + F->getNameStr(); 89 RetOrArg CreateRet(const Function *F, unsigned Idx) { 93 RetOrArg CreateArg(const Function *F, unsigned Idx) { 105 /// This means that some function calls G and passes its result as an 115 typedef std::set<const Function*> LiveFuncSet; 144 void SurveyFunction(const Function &F) [all...] |
| /external/llvm/examples/ExceptionDemo/ |
| ExceptionDemo.cpp | 20 // regardless of whether or not that test function ignores or catches the 33 // thrown and caught by an inner generated test function. 35 // thrown and caught by an outer generated test function. 37 // thrown and NOT be caught by any generated function. 39 // caught by any generated function 208 /// Utility used to create a function, both declarations and definitions 210 /// @param retType function return type 211 /// @param theArgTypes function's ordered argument types 212 /// @param theArgNames function's ordered arguments needed if use of this 213 /// function corresponds to a function definition. Use empty [all...] |
| /external/apache-xml/src/main/java/org/apache/xalan/extensions/ |
| ExpressionVisitor.java | 28 import org.apache.xpath.functions.Function; 55 * If the function is an extension function, register the namespace. 58 * @param func The function currently being visited. 62 public boolean visitFunction(ExpressionOwner owner, Function func)
|
| /external/apache-xml/src/main/java/org/apache/xpath/ |
| XPathVisitor.java | 25 import org.apache.xpath.functions.Function; 141 * Visit a function. 144 * @param func The function reference object. 147 public boolean visitFunction(ExpressionOwner owner, Function func)
|
| /external/llvm/include/llvm/Analysis/ |
| DOTGraphTraitsPass.h | 29 virtual bool runOnFunction(Function &F) { 34 Title = GraphName + " for '" + F.getNameStr() + "' function"; 56 virtual bool runOnFunction(Function &F) { 67 Title = GraphName + " for '" + F.getNameStr() + "' function";
|
| LoopPass.h | 21 #include "llvm/Function.h" 27 class Function; 34 /// getPrinterPass - Get a pass to print the function corresponding 91 bool runOnFunction(Function &F);
|
| RegionPass.h | 23 #include "llvm/Function.h" 30 class Function; 33 /// @brief A pass that runs on each Region in a function. 95 /// @return True if any of the passes modifies the function. 96 bool runOnFunction(Function &F);
|
| /external/llvm/include/llvm/CodeGen/ |
| MachineModuleInfo.h | 64 /// the current function. 71 const Function *Personality; // Personality function. 110 /// FrameMoves - List of moves done by a function's prolog. Used to construct 115 /// unwind encoding. It replaces a function's CIE and FDE. 119 /// information in the current function. 127 /// EH_LABEL for the current function. 134 /// TypeInfos - List of C++ TypeInfo used in the current function. 137 /// FilterIds - List of typeids encoding filters used in the current function. 146 std::vector<const Function *> Personalities [all...] |
| /external/llvm/include/llvm/Transforms/Utils/ |
| Local.h | 22 class Function; 122 /// SimplifyCFG - This function is used to do simplification of a CFG. For 136 /// DemoteRegToStack - This function takes a virtual register computed by an 146 /// DemotePHIToStack - This function takes a virtual register computed by a phi 179 bool LowerDbgDeclare(Function &F);
|
| /external/llvm/lib/Target/Blackfin/ |
| BlackfinIntrinsicInfo.cpp | 16 #include "llvm/Function.h" 96 Function *BlackfinIntrinsicInfo::getDeclaration(Module *M, unsigned IntrID, 101 return cast<Function>(M->getOrInsertFunction(getName(IntrID),
|
| /external/llvm/lib/Target/MBlaze/ |
| MBlazeIntrinsicInfo.cpp | 16 #include "llvm/Function.h" 105 Function *MBlazeIntrinsicInfo::getDeclaration(Module *M, unsigned IntrID, 110 return cast<Function>(M->getOrInsertFunction(getName(IntrID),
|
| /external/llvm/lib/Transforms/Scalar/ |
| ConstantProp.cpp | 41 bool runOnFunction(Function &F); 58 bool ConstantPropagation::runOnFunction(Function &F) { 85 // We made a change to the function...
|
| /external/llvm/lib/Transforms/Utils/ |
| Mem2Reg.cpp | 10 // This pass is a simple pass wrapper around the PromoteMemToReg function call 21 #include "llvm/Function.h" 37 virtual bool runOnFunction(Function &F); 57 bool PromotePass::runOnFunction(Function &F) { 60 BasicBlock &BB = F.getEntryBlock(); // Get the entry node for the function
|
| /external/llvm/lib/VMCore/ |
| Dominators.cpp | 58 bool DominatorTree::runOnFunction(Function &F) { 66 Function &F = *getRoot()->getParent();
|
| /external/llvm/tools/bugpoint/ |
| Miscompilation.cpp | 176 class ReduceMiscompilingFunctions : public ListReducer<Function*> { 185 virtual TestResult doTest(std::vector<Function*> &Prefix, 186 std::vector<Function*> &Suffix, 205 bool TestFuncs(const std::vector<Function*> &Prefix, std::string &Error); 213 /// argument is set to true then this function deletes both input 246 bool ReduceMiscompilingFunctions::TestFuncs(const std::vector<Function*> &Funcs, 248 // Test to see if the function is misoptimized if we ONLY run it on the 251 << (Funcs.size()==1 ? "this function is" : "these functions are") 258 // * If the optimization passes delete any function, the deleted function [all...] |
| /external/llvm/tools/llvm-diff/ |
| DiffConsumer.h | 28 class Function; 59 : L(L), R(R), Differences(false), IsFunction(isa<Function>(L)) {}
|
| /external/llvm/unittests/VMCore/ |
| VerifierTest.cpp | 12 #include "llvm/Function.h" 28 OwningPtr<Function> F(Function::Create(FTy, GlobalValue::ExternalLinkage));
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/ |
| 10.1.3-1.js | 55 var myfun1 = new Function( "a", "a", "return a" ); 56 var myfun2 = new Function( "a", "b", "a", "return a" ); 58 function myfun3(a, b, a) { 95 function test() {
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/ |
| 15.3.1.1-3.js | 24 ECMA Section: 15.3.1.1 The Function Constructor Called as a Function 26 new Function(p1, p2, ..., pn, body ) 29 of a function; any preceeding arguments sepcify formal 43 var TITLE = "The Function Constructor Called as a Function"; 68 MyFunc = Function( args, "var r=0; for (var i = 0; i < MyFunc.length; i++ ) { if ( eval('arg'+i) == void 0) break; else r += eval('arg'+i); }; return r"); 69 MyObject = Function( args, "for (var i = 0; i < MyFunc.length; i++ ) { if ( eval('arg'+i) == void 0) break; eval('this.arg'+i +'=arg'+i); };"); 79 testcases[testcases.length] = new TestCase( SECTION, "FUN1 = Function( 'a','b','c', 'return FUN1.length' ); FUN1.length", 3, eval("FUN1 = Function( 'a','b','c', 'return FUN1.length' ); FUN1.length") ) [all...] |
| 15.3.2.1-3.js | 24 ECMA Section: 15.3.2.1 The Function Constructor 25 new Function(p1, p2, ..., pn, body ) 28 of a function; any preceeding arguments sepcify formal 42 var TITLE = "The Function Constructor"; 49 function getTestCases() { 71 MyFunc = new Function( args, "var r=0; for (var i = 0; i < MyFunc.length; i++ ) { if ( eval('arg'+i) == void 0) break; else r += eval('arg'+i); }; return r"); 72 MyObject = new Function( args, "for (var i = 0; i < MyFunc.length; i++ ) { if ( eval('arg'+i) == void 0) break; eval('this.arg'+i +'=arg'+i); };"); 79 array[item++] = new TestCase( SECTION, "FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1.length", 3, eval("FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1.length") ); 80 array[item++] = new TestCase( SECTION, "FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1()", 3, eval("FUN1 = new Function( 'a','b','c', (…) [all...] |
| 15.3.5-1.js | 24 ECMA Section: 15.3.5 Properties of Function Instances 25 new Function(p1, p2, ..., pn, body ) 32 the "typical" number of arguments expected by the function. However, 33 the language permits the function to be invoked with some other number 34 of arguments. The behavior of a function when invoked on a number of 36 on the function. 40 Prototype]] property of a newly created object before the Function object 46 outstanding invocation of the function in progress (that is, the function has been called 47 but has not yet returned). When a non-internal Function object (15.3.2.1) is invoked, it [all...] |
| /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/function/ |
| Function_object.js | 24 Description: 'Testing Function objects' 42 function a_test_function(a,b,c) 64 testcases[count++] = new TestCase( SECTION, "(new Function()).name", 65 fnName, (new Function()).name); 67 testcases[count++] = new TestCase( SECTION, "(new Function()).toString()", 68 '\nfunction ' + fnName + '() {\n}\n', (new Function()).toString()); 70 function test()
|
| /external/webkit/Source/WebCore/bindings/v8/ |
| V8WindowErrorHandler.cpp | 54 v8::Local<v8::Function> callFunction = v8::Local<v8::Function>::Cast(listener);
|
| V8WorkerContextErrorHandler.cpp | 54 v8::Local<v8::Function> callFunction = v8::Local<v8::Function>::Cast(listener);
|
| /frameworks/compile/libbcc/lib/CodeGen/ |
| CodeEmitter.h | 43 class Function; 65 typedef llvm::DenseMap<const llvm::Function *, void*> 99 // The constant pool for the current function. 108 // The jump tables for the current function. 114 // When outputting a function stub in the context of some other function, we 118 // These are the relocations that the function needs, as emitted. 134 std::set<const llvm::Function*> PendingFunctions; 171 // This callback is invoked when the specified function is about to be code 175 // This callback is invoked when the specified function has finished cod [all...] |