Searched defs:Array (Results 76 - 100 of 184) sorted by relevance

12345678

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2419.js35 Array.prototype.sort.call(b);
34 Array.prototype.sort.call(b); class
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Dstring-tagcloud.js40 Array.prototype.toJSONString = function (w) {
38 Array.prototype.toJSONString = function (w) { class
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Dstring-tagcloud.js40 Array.prototype.toJSONString = function (w) {
38 Array.prototype.toJSONString = function (w) { class
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A Dstring-tagcloud.js40 Array.prototype.toJSONString = function (w) {
38 Array.prototype.toJSONString = function (w) { class
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DTracingAgent.js67 * @return {!Array.<{cat: string, args: !Object, ph: string, ts: number}>}
76 Array.prototype.push.apply(this._events, events);
75 Array.prototype.push.apply(this._events, events); class
/external/chromium_org/v8/test/mjsunit/
H A Darray-functions-prototype-misc.js61 return new Array(length);
63 the_prototype = Array.prototype;
102 return Array.prototype.concat.call(array, other);
105 return Array.prototype.slice.call(array, start, len);
108 return Array.prototype.splice.call(array, start, len);
111 return Array.prototype.splice.call(array, start, len, elt);
114 return Array.prototype.unshift.call(array, elt);
117 return Array.prototype.unshift.call(array, elt1, elt2);
120 return Array.prototype.shift.call(array);
273 var a = new Array(LARG
307 Array.prototype[1] = 1; class
[all...]
H A Darray-functions-prototype.js40 Array.prototype[0] = 'zero';
41 Array.prototype[1] = 'one';
42 Array.prototype[2] = 'two';
63 assertEquals('zero', Array.prototype.shift.call(nonArray));
94 assertEquals(4, Array.prototype.unshift.call(nonArray, 'zero'));
125 assertArrayEquals(['zero'], Array.prototype.splice.call(nonArray, 0, 1));
156 assertArrayEquals(['zero', 'one', 'two'], Array.prototype.slice.call(nonArray, 0, 3));
37 Array.prototype[0] = 'zero'; class
/external/chromium_org/v8/test/webkit/fast/js/
H A Darray-functions-non-arrays.js102 shouldBe("Array.prototype.toString.call({})", '"' + ({}).toString() + '"');
103 shouldBe("Array.prototype.toString.call(new Date)", '"' + Object.prototype.toString.call(new Date) + '"');
104 shouldBe("Array.prototype.toString.call({sort: function() { return 'sort' }})", '"' + Object.prototype.toString.call({}) + '"');
105 shouldBe("Array.prototype.toString.call({join: function() { return 'join' }})", '"join"');
106 shouldBe("Array.prototype.toString.call({__proto__: Array.prototype, 0: 'a', 1: 'b', 2: 'c', length: 3})", '"a,b,c"');
107 shouldBe("({__proto__: Array.prototype, 0: 'a', 1: 'b', 2: 'c', length: 3}).toString()", '"a,b,c"');
108 shouldBe("Array.prototype.toString.call({__proto__: Array.prototype, 0: 'a', 1: 'b', 2: 'c', length: 3, join: function() { return 'join' }})", '"join"');
109 shouldBe("({__proto__: Array
112 Array.prototype.join = function() { return 'array-join' }; class
[all...]
/external/v8/test/mjsunit/
H A Darray-functions-prototype-misc.js61 return new Array(length);
63 the_prototype = Array.prototype;
102 return Array.prototype.concat.call(array, other);
105 return Array.prototype.slice.call(array, start, len);
108 return Array.prototype.splice.call(array, start, len);
111 return Array.prototype.splice.call(array, start, len, elt);
114 return Array.prototype.unshift.call(array, elt);
117 return Array.prototype.unshift.call(array, elt1, elt2);
120 return Array.prototype.shift.call(array);
273 var a = new Array(LARG
307 Array.prototype[1] = 1; class
[all...]
H A Darray-functions-prototype.js40 Array.prototype[0] = 'zero';
41 Array.prototype[1] = 'one';
42 Array.prototype[2] = 'two';
63 assertEquals('zero', Array.prototype.shift.call(nonArray));
94 assertEquals(4, Array.prototype.unshift.call(nonArray, 'zero'));
125 assertArrayEquals(['zero'], Array.prototype.splice.call(nonArray, 0, 1));
156 assertArrayEquals(['zero', 'one', 'two'], Array.prototype.slice.call(nonArray, 0, 3));
37 Array.prototype[0] = 'zero'; class
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp6.cpp42 template<class T> class Array { /* ... */ }; class
44 template<class T> void sort(Array<T>& v) { /* ... */ }
48 void f(Array<String>& v) {
52 // sort(Array<T>&), T is String
55 template<> void sort<String>(Array<String>& v); // // expected-error{{after instantiation}}
56 template<> void sort<>(Array<char*>& v); // OK: sort<char*> not yet used
H A Dp1.cpp98 template<class T> class Array { /* ... */ }; class
99 template<class T> void sort(Array<T>& v) { /* ... */ }
100 template<> void sort<char*>(Array<char*>&) ;
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp2.cpp4 template<class T> class Array { void mf() { } }; class
6 template class Array<char>;
7 template void Array<int>::mf();
8 template<class T> void sort(Array<T>& v) { /* ... */ }
9 template void sort(Array<char>&);
H A Dp6.cpp4 template<class T> class Array { /* ... */ }; class
5 template<class T> void sort(Array<T>& v) { }
7 // instantiate sort(Array<int>&) - template-argument deduced
8 template void sort<>(Array<int>&);
10 template void sort(Array<long>&);
/external/clang/test/SemaTemplate/
H A Dinstantiate-member-initializers.cpp39 template<typename T> struct Array { struct
41 Array() : a() {} function in struct:Array
43 Array<int> s;
H A Dtemp_arg_type.cpp34 struct Array { struct
39 A1<Array<int, 17>::type> ax;
/external/chromium/chrome/common/extensions/docs/js/
H A Dapi_page_generator.js64 Array.prototype.select = function(f) {
59 Array.prototype.select = function(f) { class
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/
H A Doptions.js7 Array.max = function(array) {
11 Array.min = function(array) {
16 Array.avg = function(array) {
38 Array.stddev = function(array) {
160 var avgA = Array.avg(arr);
165 var avgB = Array.avg(arr);
174 this.maxA = Array.max(arr);
176 this.maxB = Array.max(arr);
382 var selectedArr = new Array();
437 obj.mean = Array
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/custom/
H A DCustomFilterParameter.h48 Array, enumerator in enum:WebCore::CustomFilterParameter::ParameterType
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dobject-observe.js80 assertTrue(r instanceof Array)
687 __proto__: Array.prototype,
741 __proto__: Array.prototype,
750 Array.prototype.push.apply(self, cut);
754 Array.prototype.push.apply(self, cut);
1163 Array.observe(arr, observer2.callback);
1165 Array.observe(arr2, observer2.callback);
1167 Array.observe(arr3, observer2.callback);
1228 var slow_arr = new Array(1000000000);
1235 Array
1442 Array.prototype.push.call(array, 1); class
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dcore-extensions.rb202 relative_list = Array.new( reference_list.length, '..' )
230 class Array class
246 Array.new( ( len+size ).abs,val ) + self
248 self + Array.new( len-size,val )
263 replace Array.new( ( len+size ).abs,val ) + self
265 concat Array.new( len-size,val )
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/util/
H A Dsorttable.js445 if (!Array.forEach) { // mozilla already supports this
446 Array.forEach = function(array, block, context) {
464 Array.forEach(string.split(""), function(chr, index) {
485 resolve = Array;
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/util/
H A Dsorttable.js443 if (!Array.forEach) { // mozilla already supports this
444 Array.forEach = function(array, block, context) {
462 Array.forEach(string.split(""), function(chr, index) {
483 resolve = Array;
/external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
H A Dmodel.py74 class Array(Node): class in inherits:Node
/external/chromium_org/tools/code_coverage/third_party/
H A Dsorttable.js450 if (!Array.forEach) { // mozilla already supports this
451 Array.forEach = function(array, block, context) {
469 Array.forEach(string.split(""), function(chr, index) {
490 resolve = Array;

Completed in 9593 milliseconds

12345678