| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/ |
| 11.8.1.js | 39 function test() { 52 function getTestCases() { 109 function MyObject(value) { 111 this.valueOf = new Function( "return this.value" ); 112 this.toString = new Function( "return this.value +''" ); 114 function MyValueObject(value) { 116 this.valueOf = new Function( "return this.value" ); 118 function MyStringObject(value) { 120 this.toString = new Function( "return this.value +''" );
|
| 11.8.2.js | 39 function test() { 52 function getTestCases() { 110 function MyObject(value) { 112 this.valueOf = new Function( "return this.value" ); 113 this.toString = new Function( "return this.value +''" ); 115 function MyValueObject(value) { 117 this.valueOf = new Function( "return this.value" ); 119 function MyStringObject(value) { 121 this.toString = new Function( "return this.value +''" );
|
| 11.8.3.js | 38 function test() { 51 function getTestCases() { 108 function MyObject(value) { 110 this.valueOf = new Function( "return this.value" ); 111 this.toString = new Function( "return this.value +''" ); 113 function MyValueObject(value) { 115 this.valueOf = new Function( "return this.value" ); 117 function MyStringObject(value) { 119 this.toString = new Function( "return this.value +''" );
|
| 11.8.4.js | 39 function test() { 52 function getTestCases() { 110 function MyObject(value) { 112 this.valueOf = new Function( "return this.value" ); 113 this.toString = new Function( "return this.value +''" ); 115 function MyValueObject(value) { 117 this.valueOf = new Function( "return this.value" ); 119 function MyStringObject(value) { 121 this.toString = new Function( "return this.value +''" );
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/ |
| 15.3.3.1-4.js | 24 ECMA Section: 15.3.3.1 Properties of the Function Constructor 25 Function.prototype 27 Description: The initial value of Function.prototype is the built-in 28 Function prototype object. 33 This test the ReadOnly property of Function.prototype. 42 var TITLE = "Function.prototype"; 50 function getTestCases() { 54 "Function.prototype = null; Function.prototype", 55 Function.prototype [all...] |
| 15.3.3.2.js | 24 ECMA Section: 15.3.3.2 Properties of the Function Constructor 25 Function.length 37 var TITLE = "Function.length"; 44 function getTestCases() { 47 array[item++] = new TestCase( SECTION, "Function.length", 1, Function.length ); 50 function test() {
|
| 15.3.5.1.js | 24 ECMA Section: Function.length 28 "typical" number of arguments expected by the function. However, the 29 language permits the function to be invoked with some other number of 30 arguments. The behavior of a function when invoked on a number of arguments 31 other than the number specified by its length property depends on the function. 45 var TITLE = "Function.length"; 52 var f = new Function( "a","b", "c", "return f.length"); 55 'var f = new Function( "a","b", "c", "return f.length"); f()', 61 'var f = new Function( "a","b", "c", "return f.length"); f(1,2,3,4,5)', 68 function test() [all...] |
| 15.3.5.3.js | 24 ECMA Section: Function.arguments 28 outstanding invocation of the function in progress (that is, the 29 function has been called but has not yet returned). When a non-internal 30 Function object (15.3.2.1) is invoked, its arguments property is 45 var TITLE = "Function.arguments"; 52 function getTestCases() { 56 var MYFUNCTION = new Function( "return this.arguments" ); 59 array[item++] = new TestCase( SECTION, "var MYFUNCTION = new Function( 'return this.arguments' ); MYFUNCTION.arguments", null, MYFUNCTION.arguments ); 63 function test() {
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Number/ |
| 15.7.3.js | 27 of the Number constructor is the Function prototype 48 function getTestCases() { 51 array[item++] = new TestCase(SECTION, "Number.__proto__", Function.prototype, Number.__proto__ ); 56 function test() {
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ObjectObjects/ |
| 15.2.3-1.js | 27 Object constructor is the Function prototype object. 45 function getTestCases() { 49 array[item++] = new TestCase( SECTION, "Object.__proto__", Function.prototype, Object.__proto__ ); 54 function test( array ) {
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/ |
| 15.5.3.js | 27 the String constructor is the Function prototype 48 // all tests must call a function that returns an array of TestCase objects. 51 function getTestCases() { 55 array[item++] = new TestCase( SECTION, "String.prototype", Function.prototype, String.__proto__ ); 59 function test( array ) {
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/ |
| try-006.js | 23 * This is the "check" function for test objects that will 26 function throwException() { 32 * This is the "check" function for test objects that do not 35 function noException() { 54 function TryObject( value, fun, exception ) { 58 this.valueOf = new Function ( "return this.value" ); 63 * This function has the try block that has a with block within it. 64 * Test cases are added in this function. Within the with block, the 65 * object's "check" function is called. If the test object's exception 70 function TryWith( object ) [all...] |
| /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/function/ |
| length.js | 24 ECMA Section: Function.length 28 "typical" number of arguments expected by the function. However, the 29 language permits the function to be invoked with some other number of 30 arguments. The behavior of a function when invoked on a number of arguments 31 other than the number specified by its length property depends on the function. 33 This checks the pre-ecma behavior Function.length. 42 var SECTION = "function/length.js"; 45 var TITLE = "Function.length"; 52 var f = new Function( "a","b", "c", "return f.length"); 57 'var f = new Function( "a","b", "c", "return f.length"); f()' [all...] |
| /external/webkit/Source/WebCore/bindings/v8/ |
| V8DOMWrapper.h | 100 static v8::Local<v8::Function> getConstructorForContext(WrapperTypeInfo*, v8::Handle<v8::Context>); 101 static v8::Local<v8::Function> getConstructor(WrapperTypeInfo*, v8::Handle<v8::Value> objectPrototype); 102 static v8::Local<v8::Function> getConstructor(WrapperTypeInfo*, DOMWindow*); 104 static v8::Local<v8::Function> getConstructor(WrapperTypeInfo*, WorkerContext*);
|
| /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger.tests/src/com/android/ide/eclipse/gldebugger/ |
| MessageParserExTest.java | 27 import com.android.ide.eclipse.gldebugger.DebuggerMessage.Message.Function; 77 assertEquals(Function.glShaderSource, builder.getFunction()); 89 assertEquals(Function.glBlendEquation, builder.getFunction()); 103 builder.setFunction(Function.glUniformMatrix2fv);
|
| /external/llvm/unittests/ExecutionEngine/JIT/ |
| JITMemoryManagerTest.cpp | 14 #include "llvm/Function.h" 23 Function *makeFakeFunction() { 27 return Function::Create(FTy, GlobalValue::ExternalLinkage); 32 // function bodies. 40 OwningPtr<Function> F1(makeFakeFunction()); 47 OwningPtr<Function> F2(makeFakeFunction()); 54 OwningPtr<Function> F3(makeFakeFunction()); 84 OwningPtr<Function> F1(makeFakeFunction()); 92 OwningPtr<Function> F2(makeFakeFunction()); 100 OwningPtr<Function> F3(makeFakeFunction()) [all...] |
| /external/clang/include/clang/Analysis/Visitors/ |
| CFGRecStmtDeclVisitor.h | 59 DISPATCH_CASE(Function) 77 DEFAULT_DISPATCH(Function)
|
| /external/llvm/include/llvm/Analysis/ |
| Trace.h | 26 class Function; 36 /// residing in the function which is the parent of the first 51 /// getFunction - Return this trace's parent function. 53 Function *getFunction () const; 56 /// function.
|
| /external/llvm/include/llvm/MC/ |
| MCWin64EH.h | 65 Function(0), PrologEnd(0), Symbol(0), 72 const MCSymbol *Function;
|
| /external/llvm/lib/CodeGen/AsmPrinter/ |
| Win64Exception.cpp | 53 /// BeginFunction - Gather pre-function exception information. Assumes it's 54 /// being emitted immediately after the function entry point. 65 const Function *Per = MMI->getPersonalities()[MMI->getPersonalityIndex()]; 90 /// EndFunction - Gather and emit post-function exception information. 104 const Function *Per = MMI->getPersonalities()[MMI->getPersonalityIndex()];
|
| /external/llvm/lib/Target/ARM/ |
| ARMJITInfo.h | 45 // how to codegen function stubs. 51 /// replaceMachineCodeForFunction - Make it so that calling the function 69 /// small native function that simply calls the function at the specified 71 virtual void *emitFunctionStub(const Function* F, void *Fn, 80 virtual void relocate(void *Function, MachineRelocation *MR, 102 /// Initialize - Initialize internal stage for the function being JITted. 130 /// text section of the function. This returns the address of the base of
|
| /external/llvm/lib/Transforms/Scalar/ |
| ADCE.cpp | 40 virtual bool runOnFunction(Function& F); 52 bool ADCE::runOnFunction(Function& F) { 78 // value of the function, and may therefore be deleted safely.
|
| DCE.cpp | 12 // Dead Inst Elimination performs a single pass over the function removing 78 virtual bool runOnFunction(Function &F); 89 bool DCE::runOnFunction(Function &F) {
|
| /external/llvm/lib/Transforms/Utils/ |
| LowerSwitch.cpp | 19 #include "llvm/Function.h" 40 virtual bool runOnFunction(Function &F); 70 /// The comparison function for sorting the switch case values in the vector. 94 bool LowerSwitch::runOnFunction(Function &F) { 97 for (Function::iterator I = F.begin(), E = F.end(); I != E; ) { 128 // the case values. The function recursively builds this tree. 157 Function* F = OrigBlock->getParent(); 159 Function::iterator FI = OrigBlock; 179 Function* F = OrigBlock->getParent(); 181 Function::iterator FI = OrigBlock [all...] |
| /external/llvm/tools/llvm-diff/ |
| llvm-diff.cpp | 50 Function *LFn = L->getFunction(Name); 51 Function *RFn = R->getFunction(Name); 55 errs() << "No function named @" << Name << " in either module\n"; 57 errs() << "No function named @" << Name << " in left module\n"; 59 errs() << "No function named @" << Name << " in right module\n";
|