HomeSort by relevance Sort by last modified time
    Searched refs:Array (Results 101 - 125 of 1692) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.8-2.js 27 Returns an Array object into which substrings of the result of converting
30 occurrences are not part of any substring in the returned array, but serve
34 up into individual characters; the length of the result array equals the
37 If the separator is not supplied, then the result array contains just one
43 2. Create a new Array object of length 0 and call it A.
90 var array = new Array();
97 array[item++] = new TestCase( SECTION,
104 array[item++] = new TestCase( SECTION,
114 var EXPECT_STRING = new Array( "this", "is", "a", "string", "object" )
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
CommonTokenStream.as 43 protected var tokens:Array = new Array();
46 protected var channelOverrideMap:Array;
49 protected var discardSet:Array;
153 channelOverrideMap = new Array();
160 discardSet = new Array();
169 public function getTokens():Array {
176 public function getTokensRange(start:int, stop:int):Array {
186 public function getTokensBitSet(start:int, stop:int, types:BitSet):Array {
201 var filteredTokens:Array = new Array()
    [all...]
  /external/v8/test/mjsunit/
array-store-and-grow.js 29 // to an array that grow it by a single element. Test functions are
37 // Check handling of the empty array.
116 a = new Array(1,2,3);
118 a = new Array(1,2,3);
127 a = new Array(1,2,3);
129 a = new Array(1,2,3);
138 a = new Array(1,2,3);
140 a = new Array(1,2,3);
150 var a = new Array(0.5, 1.5);
152 a = new Array(0.5, 1.5)
    [all...]
array-indexing.js 28 var array = [1,2,3,1,2,3,1,2,3,1,2,3]; variable
49 // Array.prototype.indexOf.
54 assertEquals(-1, array.indexOf(4));
55 assertEquals(-1, array.indexOf(3, array.length));
57 assertEquals(2, array.indexOf(3));
59 assertEquals(0, array.indexOf(1, -17));
61 assertEquals(3, array.indexOf(1, -11));
63 assertEquals(3, array.indexOf(1, 1));
64 assertEquals(3, array.indexOf(1, 3))
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.4.3-1.js 24 ECMA Section: 15.4.4.3-1 Array.prototype.join()
33 ECMA-262 Ed.3 Section 15.4.4.5 Array.prototype.join()
43 writeHeaderToLog( SECTION + " Array.prototype.join()");
49 var array = new Array();
52 var ARR_PROTOTYPE = Array.prototype;
54 array[item++] = new TestCase( SECTION, "Array.prototype.join.length", 1, Array.prototype.join.length );
55 array[item++] = new TestCase( SECTION, "delete Array.prototype.join.length", false, delete Array.pro (…)
    [all...]
15.4.4.4-2.js 24 ECMA Section: 15.4.4.3-1 Array.prototype.reverse()
27 The elements of the array are rearranged so as to reverse their order.
60 that its this value be an Array object. Therefore it can be transferred to other
64 Note: Array.prototype.reverse allows some flexibility in implementation
65 regarding array indices that have not been populated. This test covers the
76 var testcases = new Array();
78 writeHeaderToLog( SECTION + " Array.prototype.reverse()");
84 var ARR_PROTOTYPE = Array.prototype;
86 testcases[testcases.length] = new TestCase( SECTION, "Array.prototype.reverse.length", 0, Array.prototype.reverse.length )
    [all...]
15.4.3.2.js 24 ECMA Section: 15.4.3.2 Array.length
34 var TITLE = "Array.length";
42 var array = new Array();
44 array[item++] = new TestCase( SECTION, "Array.length", 1, Array.length );
45 return ( array );
15.4.3.js 24 ECMA Section: 15.4.3 Properties of the Array Constructor
26 Array constructor is the Function prototype object.
35 var TITLE = "Properties of the Array Constructor";
43 var array = new Array();
46 array[item++] = new TestCase( SECTION, "Array.__proto__", Function.prototype, Array.__proto__ );
48 return ( array );
15.4.4.5-3.js 24 ECMA Section: Array.prototype.sort(comparefn)
41 var TITLE = "Array.prototype.sort(comparefn)";
45 var testcases = new Array();
64 var array = new Array();
66 array[array.length] = new Date( TIME_2000 * Math.PI );
67 array[array.length] = new Date( TIME_2000 * 10 );
68 array[array.length] = new Date( TIME_1900 + TIME_1900 )
    [all...]
  /libcore/include/
ScopedPrimitiveArray.h 29 Scoped ## NAME ## ArrayRO(JNIEnv* env, PRIMITIVE_TYPE ## Array javaArray) \
43 PRIMITIVE_TYPE ## Array getJavaArray() const { return mJavaArray; } \
48 PRIMITIVE_TYPE ## Array mJavaArray; \
72 Scoped ## NAME ## ArrayRW(JNIEnv* env, PRIMITIVE_TYPE ## Array javaArray) \
86 PRIMITIVE_TYPE ## Array getJavaArray() const { return mJavaArray; } \
93 PRIMITIVE_TYPE ## Array mJavaArray; \
  /external/replicaisland/tools/
ExtractPoints.js 50 var tiles = new Array();
54 // an array by tile.
67 tile.edges = new Array();
220 var lineArray = new Array();
227 lineArray[y] = Array(offsetX + edge.startX, offsetY + edge.startY);
244 var tileCenterArray = new Array();
245 tileCenterArray[0] = new Array(offsetX + tile.centerX - 1,
247 tileCenterArray[1] = new Array(offsetX + tile.centerX - 1,
249 tileCenterArray[2] = new Array(offsetX + tile.centerX + 1,
251 tileCenterArray[3] = new Array(offsetX + tile.centerX + 1,
    [all...]
  /external/clang/test/SemaTemplate/
temp_arg_type.cpp 34 struct Array {
39 A1<Array<int, 17>::type> ax;
  /external/mockito/src/org/mockito/internal/stubbing/defaultanswers/
ReturnsMoreEmptyValues.java 9 import java.lang.reflect.Array;
32 * Returns empty array for array-returning methods
71 return Array.newInstance(componenetType, 0);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Boolean/
15.6.4.3-3.js 43 var testcases = new Array();
49 var array = new Array();
52 array[item++] = new TestCase( SECTION,
56 return ( array );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
10.2.1.js 45 var testcases = new Array();
54 var GLOBAL_PROPERTIES = new Array();
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Statements/
12.6.3-10.js 65 var testcases = new Array();
71 function f() { count++; return new Array("h","e","l","l","o"); }
78 "function f() { count++; return new Array(\"h\",\"e\",\"l\",\"l\",\"o\"); }"+
12.6.3-19.js 65 var testcases = new Array();
71 function f() { count++; return new Array("h","e","l","l","o"); }
78 "function f() { count++; return new Array(\"h\",\"e\",\"l\",\"l\",\"o\"); }"+
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
expression-002.js 20 var testcases = new Array();
24 var PROPERTY = new Array();
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/instanceof/
instanceof-002.js 19 var testcases = new Array();
34 "b instanceof Array",
36 b instanceof Array );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/Array/
general2.js 24 Description: 'This tests out some of the functionality on methods on the Array objects'
39 var testcases = new Array();
42 array1 = new Array();
72 testcases[count++] = new TestCase( SECTION, "Array.push,pop,shift,unshift,slice,splice", true,String(array1) == String(array2));
75 testcases[count++] = new TestCase( SECTION, "Array.sort", true,String(array1) == String(array2));
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_4/Regress/
function-003.js 40 var testcases = new Array();
44 "StripSpaces(Array.prototype.concat.toString()).substring(0,17)",
46 StripSpaces(Array.prototype.concat.toString()).substring(0,17));
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
SubjectKeyIdentifier.java 22 import org.apache.harmony.security.utils.Array;
77 sb.append(Array.toString(keyIdentifier, prefix));
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
RewriteRuleElementStream.as 53 protected var elements:Array;
76 if (element is Array) {
78 this.elements = element as Array;
111 elements = new Array();
  /external/mockito/src/org/mockito/internal/matchers/
ArrayEquals.java 8 import java.lang.reflect.Array;
55 private void appendArray(Object[] array, Description description) {
57 for (int i = 0; i < array.length; i++) {
58 new Equals(array[i]).describeTo(description);
59 if (i != array.length - 1) {
66 public static Object[] createObjectArray(Object array) {
67 if (array instanceof Object[]) {
68 return (Object[]) array;
70 Object[] result = new Object[Array.getLength(array)];
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
access-fannkuch.js 7 var perm = Array(n);
8 var perm1 = Array(n);
9 var count = Array(n);
10 var maxPerm = Array(n);

Completed in 1195 milliseconds

1 2 3 45 6 7 8 91011>>