HomeSort by relevance Sort by last modified time
    Searched refs:Function (Results 276 - 300 of 1083) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
10.1.4-5.js 65 function test() {
90 function getTestCases() {
99 function MyObject() {
100 this.eval = new Function( "x", "return(Math.pow(Number(x),2))" );
10.1.4-7.js 65 function test() {
89 function getTestCases() {
98 function MyObject() {
99 this.eval = new Function( "x", "return(Math.pow(Number(x),2))" );
10.1.5-4.js 52 'if ( Function == null ) { testcases[0].reason += " Function == null"; }' +
55 'if ( Number == null ) { testcases[0].reason += " Function == null";}' +
62 var NEW_FUNCTION = new Function( EVAL_STRING );
73 function test() {
87 function getTestCases() {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.2.2-11.js 74 var FUNCTION = new Function();
77 "var FUNCTION = new Function(); f = new FUNCTION(); typeof f",
79 eval("var FUNCTION = new Function(); f = new FUNCTION(); typeof f") );
82 "var FUNCTION = new Function('return this'); f = new FUNCTION(); typeof f"
    [all...]
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*);
V8DOMWrapper.cpp 128 v8::Local<v8::Function> V8DOMWrapper::getConstructor(WrapperTypeInfo* type, v8::Handle<v8::Value> objectPrototype)
130 // A DOM constructor is a function instance created from a DOM constructor
132 // different from a normal function in two ways:
135 // Function.prototype.
137 // object, but not a function. Hotmail relies on the fact that, in Safari,
140 // Getting the function might fail if we're running out of
143 v8::Local<v8::Function> value = functionTemplate->GetFunction();
145 return v8::Local<v8::Function>();
152 v8::Local<v8::Function> V8DOMWrapper::getConstructorForContext(WrapperTypeInfo* type, v8::Handle<v8::Context> context)
160 v8::Local<v8::Function> V8DOMWrapper::getConstructor(WrapperTypeInfo* type, DOMWindow* window
278 v8::Local<v8::Function> function; local
    [all...]
  /frameworks/compile/libbcc/lib/AndroidBitcode/
ABCExpandVAArgPass.cpp 30 bool ABCExpandVAArgPass::runOnFunction(llvm::Function &pFunc) {
  /ndk/build/core/
definitions-host.mk 22 # Function : host-path
26 # Rationale: This function is used to translate Cygwin paths into
37 # Function : host-rm
40 # Rationale: This function expands to the host-specific shell command used
52 # Function : host-rmdir
55 # Rationale: This function expands to the host-specific shell command used
67 # Function : host-mkdir
70 # Rationale: This function expands to the host-specific shell command used
80 # Function : host-cp
84 # Rationale: This function expands to the host-specific shell command use
    [all...]
  /external/llvm/lib/CodeGen/
GCStrategy.cpp 48 bool PerformDefaultLowering(Function &F, GCStrategy &Coll);
49 static bool InsertRootInitializers(Function &F,
60 bool runOnFunction(Function &F);
65 /// function representation to identify safe points for the garbage collector
67 /// GCMetadata record for each function.
114 bool GCStrategy::performCustomLowering(Function &F) {
126 GCFunctionInfo *GCStrategy::insertFunctionInfo(const Function &F) {
181 bool LowerIntrinsics::InsertRootInitializers(Function &F, AllocaInst **Roots,
245 if (Function *F = CI->getCalledFunction())
255 bool LowerIntrinsics::runOnFunction(Function &F)
    [all...]
  /external/llvm/unittests/ExecutionEngine/JIT/
JITMemoryManagerTest.cpp 14 #include "llvm/IR/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)
80 DEFAULT_DISPATCH(Function)
  /external/guava/guava-tests/test/com/google/common/collect/
InternersTest.java 19 import com.google.common.base.Function;
92 Function<String, String> internerFunction =

Completed in 952 milliseconds

<<11121314151617181920>>