HomeSort by relevance Sort by last modified time
    Searched refs:Array (Results 1076 - 1100 of 1201) sorted by null

<<414243444546474849

  /external/webkit/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.6-2.js 96 var array = new Array();
101 array[item++] = new TestCase( SECTION, "function f() { return this; }; function g() { var h = f; return h(); }; g().toString()", GLOBAL, g().toString() );
104 array[item++] = new TestCase( SECTION, "String.prototype.indexOf.length", 1, String.prototype.indexOf.length );
105 array[item++] = new TestCase( SECTION, "String.prototype.indexOf.length = null; String.prototype.indexOf.length", 1, eval("String.prototype.indexOf.length = null; String.prototype.indexOf.length") );
106 array[item++] = new TestCase( SECTION, "delete String.prototype.indexOf.length", false, delete String.prototype.indexOf.length );
107 array[item++] = new TestCase( SECTION, "delete String.prototype.indexOf.length; String.prototype.indexOf.length", 1, eval("delete String.prototype.indexOf.length; String.prototype.indexOf.length") );
109 array[item++] = new TestCase( SECTION, "var s = new String(); s.indexOf()", -1, eval("var s = new String(); s.indexOf()") );
122 array[item++] = new TestCase( SECTION,
128 array[item++] = new TestCase( SECTION
    [all...]
15.5.4.7-1.js 71 var array = new Array();
75 array[j] = new TestCase( SECTION,
82 array[j] = new TestCase( SECTION,
89 array[j] = new TestCase( SECTION,
96 array[j] = new TestCase( SECTION,
110 array[j] = new TestCase( SECTION,
121 array[j] = new TestCase( SECTION,
132 array[j] = new TestCase( SECTION,
145 array[j++] = new TestCase( SECTION, "String.lastIndexOf(" +TEST_STRING + ", 0 )", 0, TEST_STRING.lastIn (…)
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/TypeConversion/
9.5-2.js 91 var array = new Array();
94 array[item++] = new TestCase( SECTION, "0 << 0", 0, 0 << 0 );
95 array[item++] = new TestCase( SECTION, "-0 << 0", 0, -0 << 0 );
96 array[item++] = new TestCase( SECTION, "Infinity << 0", 0, "Infinity" << 0 );
97 array[item++] = new TestCase( SECTION, "-Infinity << 0", 0, "-Infinity" << 0 );
98 array[item++] = new TestCase( SECTION, "Number.POSITIVE_INFINITY << 0", 0, Number.POSITIVE_INFINITY << 0 );
99 array[item++] = new TestCase( SECTION, "Number.NEGATIVE_INFINITY << 0", 0, Number.NEGATIVE_INFINITY << 0 );
100 array[item++] = new TestCase( SECTION, "Number.NaN << 0", 0, Number.NaN << 0 );
102 array[item++] = new TestCase( SECTION, "Number.MIN_VALUE << 0", 0, Number.MIN_VAL (…)
    [all...]
9.7.js 79 var array = new Array();
82 array[item++] = new TestCase( "9.7", "String.fromCharCode(0).charCodeAt(0)", 0, String.fromCharCode(0).charCodeAt(0) );
83 array[item++] = new TestCase( "9.7", "String.fromCharCode(-0).charCodeAt(0)", 0, String.fromCharCode(-0).charCodeAt(0) );
84 array[item++] = new TestCase( "9.7", "String.fromCharCode(1).charCodeAt(0)", 1, String.fromCharCode(1).charCodeAt(0) );
85 array[item++] = new TestCase( "9.7", "String.fromCharCode(64).charCodeAt(0)", 64, String.fromCharCode(64).charCodeAt(0) );
86 array[item++] = new TestCase( "9.7", "String.fromCharCode(126).charCodeAt(0)", 126, String.fromCharCode(126).charCodeAt(0) );
87 array[item++] = new TestCase( "9.7", "String.fromCharCode(127).charCodeAt(0)", 127, String.fromCharCode(127).charCodeAt(0) );
88 array[item++] = new TestCase( "9.7", "String.fromCharCode(128).charCodeAt(0)", 128, String.fromCharCode(128).charCodeAt(0) );
89 array[item++] = new TestCase( "9.7", "String.fromCharCode(130).charCodeAt(0)", 130, String.f (…)
    [all...]
9.9-1.js 48 // all tests must call a function that returns an array of TestCase objects.
52 var array = new Array();
55 array[item++] = new TestCase( SECTION, "Object(true).valueOf()", true, (Object(true)).valueOf() );
56 array[item++] = new TestCase( SECTION, "typeof Object(true)", "object", typeof Object(true) );
57 array[item++] = new TestCase( SECTION, "(Object(true)).__proto__", Boolean.prototype, (Object(true)).__proto__ );
59 array[item++] = new TestCase( SECTION, "Object(false).valueOf()", false, (Object(false)).valueOf() );
60 array[item++] = new TestCase( SECTION, "typeof Object(false)", "object", typeof Object(false) );
61 array[item++] = new TestCase( SECTION, "(Object(true)).__proto__", Boolean.prototype, (Object(true)).__proto__ );
63 array[item++] = new TestCase( SECTION, "Object(0).valueOf()", 0, (Object(0)). (…)
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/regexp/
special_characters.js 39 var testcases = new Array();
  /external/webkit/SunSpider/tests/sunspider-0.9/
access-nbody.js 158 var bodies = new NBodySystem( Array(
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
access-nbody.js 158 var bodies = new NBodySystem( Array(
  /external/webkit/WebCore/bridge/qt/
qt_runtime.h 93 template <typename T> class QtArray : public Array
qt_runtime.cpp 97 Array,
109 "RegExp", "Array", "RTObject", "Object", "Null", "RTArray"};
131 if (object->inherits(&RuntimeArray::s_info)) // RuntimeArray 'inherits' from Array, but not in C++
134 return Array;
205 case Array:
318 if (type == Object || type == Array || type == RTArray) {
350 qConvDebug() << "converting a " << len << " length Array";
356 break; // Failed converting a list entry, so fail the array
363 } else if (type == Array) {
364 JSArray* array = static_cast<JSArray*>(object) local
414 JSArray* array = static_cast<JSArray*>(object); local
643 JSArray* array = static_cast<JSArray *>(object); local
693 JSArray* array = static_cast<JSArray *>(object); local
    [all...]
  /external/webkit/WebKit/chromium/src/js/
InspectorControllerImpl.js 274 var args = Array.prototype.slice.call(arguments, 1);
  /external/webkit/WebKitTools/iExploder/htdocs/
iexploder.rb 75 list = Array.new
  /frameworks/base/core/java/android/text/
SpannableStringBuilder.java 23 import java.lang.reflect.Array;
706 * Return an array of the spans of the specified type that overlap
757 ret = (Object[]) Array.newInstance(kind, spanCount - i + 1);
786 ret = (Object[]) Array.newInstance(kind, 1);
794 Object[] nret = (Object[]) Array.newInstance(kind, count);
844 * specified array, beginning at the specified offset.
    [all...]
  /hardware/ti/wlan/wl1271/stad/src/Ctrl_Interface/
EvHandler.c 244 PRINT(DBG_INIT_ERROR, " EvHandlerSendEvent Array Full u Fool! \n");
248 pNewEvent = &pEvHandler->SendEventArray.Array[TailIndex];
  /system/wlan/ti/wilink_6_1/stad/src/Ctrl_Interface/
EvHandler.c 237 PRINT(DBG_INIT_ERROR, " EvHandlerSendEvent Array Full u Fool! \n");
241 pNewEvent = &pEvHandler->SendEventArray.Array[TailIndex];
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
perlstress-002.js 63 var statusmessages = new Array();
65 var patterns = new Array();
67 var strings = new Array();
69 var actualmatches = new Array();
71 var expectedmatches = new Array();
355 expectedmatch = Array("", undefined);
364 expectedmatch = Array("ax", "ax", "", "a");
    [all...]
  /external/v8/benchmarks/
crypto.js 59 this.array = new Array();
78 var this_array = this.array;
79 var w_array = w.array;
92 var this_array = this.array;
93 var w_array = w.array;
109 var this_array = this.array;
110 var w_array = w.array;
127 var this_array = this.array;
128 var w_array = w.array;
    [all...]
  /external/v8/src/
runtime.js 45 const $Array = global.Array;
380 // Get an array of property keys for the given object. Used in
418 // array. This is the fast case. If this fails, we do the slow case
643 // NOTE: Setting the prototype for Array must take place as early as
644 // possible due to code generation for array literals. When
645 // generating code for a array literal a boilerplate array is created
648 %FunctionSetPrototype($Array, new $Array(0))
    [all...]
string.js 95 var parts = new $Array(len + 1);
193 // This has the same size as the lastMatchInfo array, and can be used for
452 var parameters = $Array(m + 2);
519 // be an array of size 1 containing the entire string. SpiderMonkey
534 var result = $Array(length);
610 // instead of allocating a new array with basically the same information.
734 var codes = new $Array(n);
818 this.elements = new $Array();
866 InstallFunctions($String, DONT_ENUM, $Array(
872 InstallFunctionsOnHiddenPrototype($String.prototype, DONT_ENUM, $Array(
    [all...]
  /external/webkit/SunSpider/tests/v8-v4/
v8-crypto.js 51 this.array = new Array();
70 var this_array = this.array;
71 var w_array = w.array;
84 var this_array = this.array;
85 var w_array = w.array;
101 var this_array = this.array;
102 var w_array = w.array;
119 var this_array = this.array;
120 var w_array = w.array;
    [all...]
  /external/webkit/SunSpider/tests/parse-only/
prototype-1.6.0.3.js 449 return count < 1 ? '' : new Array(count + 1).join(this);
611 var index = -number, slices = [], array = this.toArray();
612 if (number < 1) return array;
613 while ((index += number) < array.length)
614 slices.push(array.slice(index, index+number));
815 var length = iterable.length || 0, results = new Array(length);
829 var length = iterable.length || 0, results = new Array(length);
835 Array.from = $A;
837 Object.extend(Array.prototype, Enumerable);
839 if (!Array.prototype._reverse) Array.prototype._reverse = Array.prototype.reverse
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/
jsref.js 104 testcases = new Array();
653 var properties = new Array();
655 properties[ properties.length ] = new Array( p, o[p] );
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/
jsref.js 78 testcases = new Array();
614 var properties = new Array();
616 properties[ properties.length ] = new Array( p, o[p] );
  /external/skia/src/animator/
SkDisplayType.cpp 102 CASE_DISPLAY_NEW(Array);
257 CASE_GET_DISPLAY_INFO(Array);
424 { "array", SkType_Array INIT_BOOL_FIELDS },
  /external/v8/test/mjsunit/
debug-backtrace-text.js 81 // 2: Call on function an array element 2
85 assertEquals("#<an Array>[2](aka distance)(p=#<a Point>, q=#<a Point>)", exec_state.frame(2).invocationText());

Completed in 1455 milliseconds

<<414243444546474849