HomeSort by relevance Sort by last modified time
    Searched refs:function (Results 326 - 350 of 6482) sorted by null

<<11121314151617181920>>

  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
access-nsieve.js 6 function pad(number,width){
15 function nsieve(m, isPrime){
30 function sieve() {
bitops-nsieve-bits.js 6 function pad(n,width) {
12 function primes(isPrime, n) {
25 function sieve() {
controlflow-recursive.js 5 function ack(m,n){
11 function fib(n) {
16 function tak(x,y,z) {
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
access-nsieve.js 6 function pad(number,width){
15 function nsieve(m, isPrime){
30 function sieve() {
bitops-nsieve-bits.js 6 function pad(n,width) {
12 function primes(isPrime, n) {
25 function sieve() {
controlflow-recursive.js 5 function ack(m,n){
11 function fib(n) {
16 function tak(x,y,z) {
  /external/webkit/Source/JavaScriptCore/interpreter/
CachedCall.h 38 CachedCall(CallFrame* callFrame, JSFunction* function, int argCount)
41 , m_globalObjectScope(callFrame->globalData(), function->scope()->globalObject.get())
43 ASSERT(!function->isHostFunction());
44 m_closure = m_interpreter->prepareForRepeatCall(function->jsExecutable(), callFrame, function, argCount, function->scope());
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
10.1.6.js 27 If the function object being invoked has an arguments property, let x be
30 property is created for the function object but the activation object is
33 object) is used as the new value of the arguments property of the function
35 exists and has the ReadOnly attribute (as it will for native Function
38 function f within the body of f by using the expression f.arguments.
39 The recommended way to access the arguments object for function f within
80 // The function invoked with [[Call]]
92 function Prototype() {
95 function TestObject() {
99 function AnotherTestObject()
    [all...]
10.1.8-1.js 27 When control enters an execution context for declared function code,
36 The initial value of this property is the function object being executed.
49 for the function object, this property shares its value with the
99 function TestFunction() {
102 function GetCallee() {
106 function GetArguments() {
110 function GetLength() {
115 function AnotherTestFunction() {
120 function test() {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/
browser.js 24 * in the browser. Overrides the shell's print function with document.write
41 function startTest() {
51 function writeLineToLog( string ) {
54 function writeHeaderToLog( string ) {
57 function stopTest() {
64 function writeFormattedResult( expect, actual, string, passed ) {
72 function err( msg, page, line ) {
shell.js 45 function test() {
59 function TestCase( n, d, e, a ) {
73 function startTest() {
103 function getTestCaseResult( expect, actual ) {
142 function writeTestCaseResult( expect, actual, string ) {
148 function writeFormattedResult( expect, actual, string, passed ) {
155 function writeLineToLog( string ) {
158 function writeHeaderToLog( string ) {
161 function stopTest() {
167 function getFailedCases()
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/
regress-131964.js 38 * SUMMARY: Function declarations in global or function scope are {DontDelete}.
39 * Function declarations in eval scope are not {DontDelete}.
47 var summary = 'Functions defined in global or function scope are {DontDelete}';
57 function f()
78 * Try the same test in function scope -
81 function g()
83 function f()
106 * Try the same test in eval scope - here we EXPECT the function to be deleted (?)
110 s += 'function h()'
    [all...]
regress-94506.js 22 * SUMMARY: When we invoke a function, the arguments object should take
42 function F1(arguments)
49 function F2()
57 function F3()
65 function F4()
121 function addThis()
130 function test()
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/
browser.js 24 * in the browser. Overrides the shell's print function with document.write
41 function startTest() {
51 function writeLineToLog( string ) {
54 function writeHeaderToLog( string ) {
57 function stopTest() {
64 function writeFormattedResult( expect, actual, string, passed ) {
72 function err ( msg, page, line ) {
jsref.js 50 function AddTestCase( description, expect, actual ) {
53 function TestCase( n, d, e, a ) {
64 function startTest() {
79 function test() {
92 function getTestCaseResult( expect, actual ) {
131 * print function. When running tests in the browser, these
136 function writeTestCaseResult( expect, actual, string ) {
141 function writeFormattedResult( expect, actual, string, passed ) {
147 function writeLineToLog( string ) {
150 function writeHeaderToLog( string )
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/version120/
regress-99663.js 36 * function return."
38 * Note: it is the function statements for f1(), etc. that MUST be compiled
71 function f1()
80 function f2()
86 function f3(s)
146 function readOnly(msg)
154 function addThis()
163 function test()
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/inherit/
proto_3.js 48 function Employee () {
52 function Manager () {
57 function WorkerBee () {
63 function SalesPerson () {
69 function Engineer () {
75 function test() {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Exceptions/
regress-50447.js 38 function test()
54 function testRealError()
76 function test1()
94 function test2()
112 function test3()
131 function test4()
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Scope/
regress-220362.js 38 * SUMMARY: Calling a local function from global scope
45 var summary = 'Calling a local function from global scope';
54 // creates a local function and calls it immediately
55 function a()
58 var f = function() {return x;};
62 // creates and returns a local function
63 function b()
66 var f = function() {return x;};
90 function addThis()
99 function test(
    [all...]
scope-002.js 22 * SUMMARY: Testing visibility of outer function from inner function.
28 var summary = 'Testing visibility of outer function from inner function';
41 function Outer()
44 function inner()
66 function Car(make)
71 function paint()
100 function addThis()
109 function test(
    [all...]
scope-003.js 62 function a()
64 function b()
69 this.c = function()
96 function capture(val)
104 function test()
119 function getStatus(i)
  /external/webkit/Source/WebCore/inspector/front-end/
DatabaseTableView.js 26 WebInspector.DatabaseTableView = function(database, tableName)
41 show: function(parentElement)
52 update: function()
57 _queryFinished: function(columnNames, values)
74 _queryError: function(error)
84 _refreshButtonClicked: function(event)
  /frameworks/wilhelm/src/
trace.h 49 extern void slTraceEnterGlobal(const char *function);
50 extern void slTraceLeaveGlobal(const char *function, SLresult result);
51 extern void slTraceEnterInterface(const char *function);
52 extern void slTraceLeaveInterface(const char *function, SLresult result);
53 extern void slTraceEnterInterfaceVoid(const char *function);
54 extern void slTraceLeaveInterfaceVoid(const char *function);
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
TreeParser.as 41 public function TreeParser(input:TreeNodeStream, state:RecognizerSharedState = null) {
46 public override function reset():void {
54 public function set treeNodeStream(input:TreeNodeStream):void {
58 public function get treeNodeStream():TreeNodeStream {
62 public override function get sourceName():String {
66 protected override function getCurrentInputSymbol(input:IntStream):Object {
70 protected override function getMissingSymbol(input:IntStream,
83 public function matchAny(ignore:IntStream):void { // ignore stream, copy of this.input
113 protected override function mismatch(input:IntStream, ttype:int, follow:BitSet):void {
121 public override function getErrorHeader(e:RecognitionException):String
    [all...]
  /external/v8/test/mjsunit/compiler/
short-circuit.js 35 assertEquals(x, function () { return 0 || x }());
36 assertEquals(1, function () { return 1 || x }());
39 assertEquals(0, function () { return 0 && x }());
40 assertEquals(x, function () { return 1 && x }());
43 assertEquals(x, function(y) { return y++ || x }(0));
44 assertEquals(1, function(y) { return y++ || x }(1));
47 assertEquals(0, function(y) { return y++ && x }(0));
48 assertEquals(x, function(y) { return y++ && x }(1));
51 assertEquals(0, function () { return {x: 0}}().x);
54 assertEquals(0, function () { return {x: 0} || this }().x)
    [all...]

Completed in 601 milliseconds

<<11121314151617181920>>