| /external/llvm/lib/Transforms/IPO/ |
| GlobalDCE.cpp | 105 std::vector<Function*> DeadFunctions; 174 // Otherwise this must be a function object. We have to scan the body of 175 // the function looking for constants and global values which are used as 178 Function *F = cast<Function>(G); 180 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
|
| /external/llvm/lib/Transforms/Utils/ |
| SimplifyInstructions.cpp | 18 #include "llvm/Function.h" 45 bool runOnFunction(Function &F) {
|
| /external/llvm/lib/VMCore/ |
| PrintModulePass.cpp | 1 //===--- VMCore/PrintModulePass.cpp - Module/Function Printer -------------===// 16 #include "llvm/Function.h" 51 std::string Banner; // String to print before each function 66 // function as it's processed. 68 bool runOnFunction(Function &F) { 83 INITIALIZE_PASS(PrintFunctionPass, "print-function", 84 "Print function to stderr", false, false)
|
| Metadata.cpp | 80 /// getOperandPtr - Helper function to get the MDNodeOperand's coallocated on 120 static const Function *getFunctionForValue(Value *V) { 136 static const Function *assertLocalFunction(const MDNode *N) { 139 // FIXME: This does not handle cyclic function local metadata. 140 const Function *F = 0, *NewF = 0; 151 assert((NewF == 0 || F == NewF) &&"inconsistent function-local metadata"); 157 // getFunction - If this metadata is function-local and recursively has a 158 // function-local operand, return the first such operand's parent function. 161 const Function *MDNode::getFunction() const [all...] |
| /external/llvm/tools/bugpoint/ |
| BugDriver.h | 30 class Function; 123 /// debugCodeGenerator - This method narrows down a module to a function or 191 /// this function. 207 /// EmitProgressBitcode - This function is used to output M to a file named 228 /// function. This returns null if there are no extractable loops in the 236 /// this function should return null, otherwise it returns a new Module. 311 void PrintFunctionList(const std::vector<Function*> &Funcs); 317 // DeleteFunctionBody - "Remove" the function by deleting all of it's basic 320 void DeleteFunctionBody(Function *F); 325 Module *SplitFunctionsOutOfModule(Module *M, const std::vector<Function*> &F [all...] |
| /external/llvm/tools/opt/ |
| GraphPrinters.cpp | 109 virtual bool runOnFunction(Function &F) {
|
| /external/v8/test/mjsunit/ |
| body-not-visible.js | 29 // compiling functions using new Function(). 33 (new Function("return body;"))();
|
| call-non-function-call.js | 28 // Throw exception when invoking Function.prototype.call with a 29 // non-function receiver. 32 Function.prototype.call.call({});
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/ |
| 10.1.5-1.js | 54 if ( Function == null ) { 55 testcases[0].reason += " Function == null"; 64 testcases[0].reason += " Function == null"; 99 function test() { 111 function getTestCases() {
|
| 10.1.5-3.js | 52 function test() { 56 if ( Function == null ) { 57 testcases[0].reason += " Function == null"; 66 testcases[0].reason += " Function == null"; 112 function getTestCases() { 116 array[item++] = new TestCase( "SECTION", "Function Code check" );
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/ |
| 15.3.5-2.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/ecma/String/ |
| 15.5.4.2.js | 41 function getTestCases() { 45 array[item++] = new TestCase( SECTION, "String.prototype.toString.__proto__", Function.prototype, String.prototype.toString.__proto__ ); 78 function test( array ) {
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Object/ |
| class-001.js | 25 * The getJSClass() function we use is in a utility file, e.g. "shell.js". 48 status = 'new Function()'; 49 actual = getJSClass(new Function()); 50 expect = 'Function'; 101 function addThis() 110 function test() 125 function getStatus(i)
|
| class-002.js | 26 * Therefore we expect the [[Class]] property to equal 'Function' in each case. 28 * The getJSClass() function we use is in a utility file, e.g. "shell.js" 42 * We expect 'Function' every time; see discussion above - 46 expect = 'Function'; 49 status = 'Function'; 50 actual = getJSClass(Function); 51 expect = 'Function'; 56 expect = 'Function'; 61 expect = 'Function'; 66 expect = 'Function'; [all...] |
| /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/Objects/ |
| toString-001.js | 67 toString:new Function( "return this.value+''" ) } 71 "toString:new Function( \"return this.value+''\" ) }; o.toString()", 79 function test() { 98 * in the resulting string is not specified. This function compares the 102 function checkObjectToString(s, a) {
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/Script/ |
| new-001.js | 42 function Test_One (x) { 47 function Test_Two( x, y ) { 90 "new (Function)(\"x\", \"return x+3\")(5,6)", 92 new (Function)("x","return x+3")(5,6) ); 108 function test() {
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/regress/ |
| new-001.js | 42 function Test_One (x) { 47 function Test_Two( x, y ) { 90 "new (Function)(\"x\", \"return x+3\")(5,6)", 92 new (Function)("x","return x+3")(5,6) ); 108 function test() {
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Expressions/ |
| regress-192288.js | 55 function f() 76 actual = isNaN(Function('return 0/0;')()); 81 actual = isNaN(eval("Function('return 0/0;')()")); 93 function addThis() 102 function test()
|
| /frameworks/compile/libbcc/runtime/make/ |
| lib_util.mk | 5 # Function: GetCNAVar variable-name platform-key config arch 14 # Function: SelectFunctionDir config arch function-name optimized 16 # Choose the appropriate implementation directory to use for 'function-name' in 22 $(error SelectFunctionDir: invalid function name "$(3)" ($(strip\ 24 no such function,\ 25 function implemented in multiple directories!!!)))))) 27 # Helper functions that select the entire list of subdirs where a function is 46 # Helper function to select the right set of dirs in generic priority order. 53 # Helper function to select the right set of dirs in optimized priority order [all...] |
| /hardware/ril/mock-ril/src/cpp/ |
| mock_ril.cpp | 126 * this function returns. 204 * Call user-specifed "callback" function on on the same thread that 231 v8::Handle<v8::Function> onUnsolicitedTick = 232 v8::Handle<v8::Function>::Cast(functionValue); 278 v8::Handle<v8::Function> start = 279 v8::Handle<v8::Function>::Cast(functionValue);
|
| protobuf_v8.cpp | 65 using v8::Function; 127 Handle<Function> Constructor() const { 129 return handle_->GetInternalField(2).As<Function>(); 142 // from = function(arr) { this.f0 = arr[0]; this.f1 = arr[1]; ... } 143 // to = function() { return [ this.f0, this.f1, ... ] } 146 from << "(function(arr) { if(arr) {"; 147 to << "(function() { return [ "; 167 Handle<Function> constructor = 168 Script::Compile(String::New(from.str().c_str()))->Run().As<Function>(); 171 Handle<Function> bind [all...] |
| /external/llvm/lib/AsmParser/ |
| LLParser.h | 29 class Function; 121 // References to blockaddress. The key is the function ValID, the value is 122 // a list of references to blocks in that function. 233 // Function Semantic Analysis. 236 Function &F; 241 /// FunctionNumber - If this is an unnamed function, this is the slot 245 PerFunctionState(LLParser &p, Function &f, int FunctionNumber); 248 Function &getFunction() const { return F; } 324 // Function Parsing. 334 bool ParseFunctionHeader(Function *&Fn, bool isDefine) [all...] |
| /development/tools/glesv2debugger/src/com/android/glesv2debugger/ |
| MessageQueue.java | 20 import com.android.glesv2debugger.DebuggerMessage.Message.Function; 208 builder.setFunction(Function.CONTINUE); 219 builder.setFunction(Function.SKIP); 240 } else if (msg.getType() == Type.Response && msg.getFunction() == Function.SETPROP) { 299 assert message.getFunction() != Function.NEG;
|
| /external/giflib/ |
| gifalloc.c | 91 * When we are willing to break API we need to make this function 235 int Function) { 237 New->Function = Function; 242 * this an obsolete function? (People should use AddExtensionBlock 244 * Looks like AddExtensionBlock needs to take the int Function argument 245 * then it can take the place of this function. Right now people have to 276 ep->Function = New->Function; 301 /* Private Function [all...] |
| /external/llvm/include/llvm/Analysis/ |
| DIBuilder.h | 25 class Function; 57 Function *DeclareFn; // llvm.dbg.declare 58 Function *ValueFn; // llvm.dbg.value 402 /// @param Scope Function scope. 403 /// @param Name Function name. 404 /// @param LinkageName Mangled function name. 407 /// @param Ty Function type. 408 /// @param isLocalToUnit True if this function is not externally visible.. 409 /// @param isDefinition True if this is a function definition. 410 /// @param Flags e.g. is this function prototyped or not [all...] |