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

<<11121314151617181920>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.5.1-2.js 26 Array objects use a variation of the [[Put]] method used for other native
29 Assume A is an Array object and P is a string.
42 8. If P is not an array index, return.
66 var TITLE = "Array [[Put]] (P,V)";
70 var testcases = new Array();
72 var a = new Array();
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
10.1.5-1.js 60 if ( Array == null ) {
61 testcases[0].reason += " Array == null";
112 var array = new Array();
115 array[item++] = new TestCase( "SECTION", "Global Code check" );
117 return ( array );
10.1.5-3.js 62 if ( Array == null ) {
63 testcases[0].reason += " Array == null";
113 var array = new Array();
116 array[item++] = new TestCase( "SECTION", "Function Code check" );
118 return ( array );
10.2.2-1.js 54 var testcases = new Array();
63 var GLOBAL_PROPERTIES = new Array();
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.2.1-2.js 70 var testcases = new Array();
74 var PROPERTY = new Array();
11.2.1-3-n.js 70 var testcases = new Array();
74 var PROPERTY = new Array();
11.2.1-4-n.js 70 var testcases = new Array();
74 var PROPERTY = new Array();
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/RegExp/
regexp-enumerate-001.js 36 var testcases = new Array();
49 var e = new Array();
56 "r = new RegExp(); e = new Array(); "+
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/String/
split-001.js 56 // verify that the result of split is an object of type Array
58 "( " + string + " ).split(" + str_sep +").constructor == Array",
60 string.split(separator).constructor == Array );
62 // check the number of items in the array
68 // check the value of each array item
83 // verify that the result of split is an object of type Array
87 " ).constructor == Array",
89 string.split(separator, limit).constructor == Array );
91 // check the length of the array
98 // check the value of each array ite
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/
arguments-001.js 51 actual = a instanceof Array;
67 actual = a instanceof Array;
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
15.10.3.1-1.js 55 var patterns = new Array();
56 var flags = new Array();
15.10.3.1-2.js 63 var patterns = new Array();
64 var flags = new Array();
15.10.4.1-3.js 59 var patterns = new Array();
60 var flags = new Array();
15.10.4.1-4.js 65 var patterns = new Array();
66 var flags = new Array();
15.10.4.1-5-n.js 54 var patterns = new Array();
55 var flags = new Array();
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/inherit/
proto_3.js 46 var testcases = new Array();
58 this.projects = new Array();
  /external/webkit/Source/WebCore/dom/
Clipboard.idl 34 readonly attribute [CustomGetter] Array types;
MessagePort.idl 37 [Custom] void postMessage(in DOMString message, in [Optional] Array messagePorts)
  /external/webkit/Source/WebCore/inspector/
JavaScriptCallFrame.idl 47 readonly attribute [CustomGetter] Array scopeChain;
ScriptProfileNode.idl 36 readonly attribute [CustomGetter] Array children;
  /external/webkit/Source/WebCore/workers/
DedicatedWorkerContext.idl 44 [Custom] void postMessage(in any message, in [Optional] Array messagePorts)
47 // There's no good way to expose an array via the ObjC bindings, so for now just allow passing in a single port.
Worker.idl 42 [Custom] void postMessage(in SerialisedScriptValue message, in [Optional] Array messagePorts)
45 // There's no good way to expose an array via the ObjC bindings, so for now just allow passing in a single port.
  /libcore/luni/src/main/java/java/security/cert/
PolicyQualifierInfo.java 22 import org.apache.harmony.security.utils.Array;
113 sb.append(Array.toString(policyQualifier, " "));
  /libcore/luni/src/main/java/org/apache/harmony/security/utils/
Array.java 30 public class Array {
33 private Array() {
46 * Represents <code>array</code> as <code>String</code>
47 * for printing. Array length can be up to 32767
49 * @param array to be represented as <code>String</code>
51 * @return <code>String</code> representation of the <code>array</code>
53 public static String toString(byte[] array, String prefix) {
66 for (i=0; i<array.length; i++) {
79 sb.append(Byte.toHexString(array[i], false));
81 int currentByte = (0xff & array[i])
    [all...]
  /external/v8/test/mjsunit/regress/
regress-1790.js 29 // array functions is specification conform (i.e. [[HasProperty]] might return
33 var array = [1,2,3];
41 Object.defineProperty(array, '1', {
42 get: function () { delete array[1]; },
46 assertTrue(array.hasOwnProperty('1'));
47 builtin.apply(array, [callback_wrapper, 'argument']);
48 assertFalse(array.hasOwnProperty('1'));
52 CheckSequence(Array.prototype.every, function() { return true; });
53 CheckSequence(Array.prototype.filter, function() { return true; });
54 CheckSequence(Array.prototype.forEach, function() { return 0; })
    [all...]

Completed in 807 milliseconds

<<11121314151617181920>>