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

<<31323334353637383940>>

  /external/webkit/WebCore/bridge/jni/jsc/
JNIBridgeJSC.h 62 class JavaArray : public Array {
64 JavaArray(jobject array, const char* type, PassRefPtr<RootObject>);
  /external/webkit/WebCore/inspector/front-end/
Database.js 92 if (!(result instanceof Array)) {
  /libcore/luni/src/main/java/java/sql/
SQLInput.java 142 * Returns the next attribute in the stream in the form of a byte array.
144 * @return the attribute as a byte array. {@code null} if the read returns
282 * java.sql.Array}.
284 * @return the next attribute as an {@code Array}. {@code null} if the value
288 * @see Array
290 public Array readArray() throws SQLException;
SQLOutput.java 134 * Write an array of bytes into the output stream.
137 * the array of bytes to write.
273 * Write an SQL {@code Array} value into the output stream.
276 * the {@code java.sql.Array} object to write.
279 * @see Array
281 public void writeArray(Array theArray) throws SQLException;
  /libcore/luni/src/main/java/org/apache/harmony/lang/annotation/
AnnotationMember.java 26 import java.lang.reflect.Array;
40 * <li> one-dimensional array of the above
62 * Tag description of an array value type.
64 protected static final char ARRAY = '[';
114 tag = ARRAY;
168 if (tag == ARRAY) {
171 int len = Array.getLength(value);
174 sb.append(Array.get(value, i));
201 if (tag == ARRAY) {
219 * @return true if the value is array and is equal to specified object
    [all...]
  /external/v8/tools/
consarray.js 32 * sequentally. The internal Array implementation is horribly slow
47 * Concatenates another array for iterating. Empty arrays are ignored.
51 * @param {Array} arr Array to concatenate.
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.4.3.js 46 var testcases = new Array();
83 testcases[testcases.length] = new TestCase( SECTION, "typeof(new Array(1,2,3))", "object", typeof(new Array(1,2,3)) );
86 testcases[testcases.length] = new TestCase( SECTION, "typeof(['array', 'of', 'strings'])", "object", typeof(["array", "of", "strings"]) );
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/GlobalObject/
15.1.2.4.js 81 var array = new Array();
84 array[item++] = new TestCase( SECTION, "escape.length", 1, escape.length );
85 array[item++] = new TestCase( SECTION, "escape.length = null; escape.length", 1, eval("escape.length = null; escape.length") );
86 array[item++] = new TestCase( SECTION, "delete escape.length", false, delete escape.length );
87 array[item++] = new TestCase( SECTION, "delete escape.length; escape.length", 1, eval("delete escape.length; escape.length") );
88 array[item++] = new TestCase( SECTION, "var MYPROPS=''; for ( var p in escape ) { MYPROPS+= p}; MYPROPS", "", eval("var MYPROPS=''; for ( var p in escape ) { MYPROPS+= p}; MYPROPS") );
90 array[item++] = new TestCase( SECTION, "escape()", "undefined", escape() );
91 array[item++] = new TestCase( SECTION, "escape('')", "", escape('') );
92 array[item++] = new TestCase( SECTION, "escape( null )", "null", escape(null) )
    [all...]
15.1.2.5-1.js 79 var array = new Array();
82 array[item++] = new TestCase( SECTION, "unescape.length", 1, unescape.length );
83 array[item++] = new TestCase( SECTION, "unescape.length = null; unescape.length", 1, eval("unescape.length=null; unescape.length") );
84 array[item++] = new TestCase( SECTION, "delete unescape.length", false, delete unescape.length );
85 array[item++] = new TestCase( SECTION, "delete unescape.length; unescape.length", 1, eval("delete unescape.length; unescape.length") );
86 array[item++] = new TestCase( SECTION, "var MYPROPS=''; for ( var p in unescape ) { MYPROPS+= p }; MYPROPS", "", eval("var MYPROPS=''; for ( var p in unescape ) { MYPROPS+= p }; MYPROPS") );
88 array[item++] = new TestCase( SECTION, "unescape()", "undefined", unescape() );
89 array[item++] = new TestCase( SECTION, "unescape('')", "", unescape('') );
90 array[item++] = new TestCase( SECTION, "unescape( null )", "null", unescape(null) )
    [all...]
15.1.2.5-3.js 84 var array = new Array();
90 array[item++] = new TestCase( SECTION,
102 array[item++] = new TestCase( SECTION,
115 array[item++] = new TestCase( SECTION,
128 return ( array );
152 var hex = new Array();
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/TypeConversion/
9.2.js 46 var testcases = new Array();
80 testcases[tc++] = new TestCase( SECTION, "Boolean(new Array())", true, Boolean(new Array()) );
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
regress-85721.js 82 expect = Array("<sql:connection id=\"conn1\"> <sql:url>www.m.com</sql:url> <sql:driver>drive.class</sql:driver>\n<sql:userId>foo</sql:userId> <sql:password>goo</sql:password> </sql:connection>","conn1","www.m.com","drive.class","<sql:userId>foo</sql:userId> ","foo","<sql:password>goo</sql:password> ","goo");
256 expect = Array('Jeffy<"That Tall Guy"@ora.com (this address is no longer active)>');
shell.js 30 var ERR_MATCH = '\nERROR !!! regexp failed to give expected match array:';
49 var actualmatch = new Array();
50 var expectedmatch = new Array();
156 * var arr = Array(1,2,'3');
183 * a) Double-quote each array element that is of string type
  /external/webkit/WebCore/bindings/v8/custom/
V8ClipboardCustom.cpp 56 v8::Local<v8::Array> result = v8::Array::New(types.size());
  /libcore/luni/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Connection1.java 20 import java.sql.Array;
196 public Array createArrayOf(String typeName, Object[] elements)
  /libcore/luni/src/test/java/tests/sql/
SQLOutputTest.java 29 import java.sql.Array;
322 * Test method for {@link java.sql.SQLOutput#writeArray(java.sql.Array)}.
328 args = {Array.class}
  /external/v8/test/mjsunit/
array-indexing.js 28 var array = [1,2,3,1,2,3,1,2,3,1,2,3]; variable
31 // Array.prototype.indexOf.
36 assertEquals(array.indexOf(4), -1);
37 assertEquals(array.indexOf(3, array.length), -1);
39 assertEquals(array.indexOf(3), 2);
41 assertEquals(array.indexOf(1, -17), 0);
43 assertEquals(array.indexOf(1, -11), 3);
45 assertEquals(array.indexOf(1, 1), 3);
46 assertEquals(array.indexOf(1, 3), 3)
    [all...]
instanceof.js 31 assertFalse({} instanceof Array);
32 assertTrue([] instanceof Array);
  /external/v8/test/mjsunit/regress/
regress-279.js 35 assertEquals(0, b.foo.length, "Array in object");
53 assertEquals('undefined', typeof(b[0].bar), "Object in array");
62 assertEquals(0, b[0].length, "Array in array");
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.5.1-1.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.
61 var TITLE = "Array [[Put]] (P, V)";
69 var array = new Array();
75 array[item++] = new TestCase( SECTION,
76 "var A = new Array(); A.length = 1000; A.length",
78 eval("var A = new Array(); A.length = 1000; A.length") );
80 // A has Property P, and P is not length or an array inde
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Boolean/
15.6.1.js 55 var array = new Array();
58 array[item++] = new TestCase( SECTION, "Boolean(1)", true, Boolean(1) );
59 array[item++] = new TestCase( SECTION, "Boolean(0)", false, Boolean(0) );
60 array[item++] = new TestCase( SECTION, "Boolean(-1)", true, Boolean(-1) );
61 array[item++] = new TestCase( SECTION, "Boolean('1')", true, Boolean("1") );
62 array[item++] = new TestCase( SECTION, "Boolean('0')", true, Boolean("0") );
63 array[item++] = new TestCase( SECTION, "Boolean('-1')", true, Boolean("-1") );
64 array[item++] = new TestCase( SECTION, "Boolean(true)", true, Boolean(true) );
65 array[item++] = new TestCase( SECTION, "Boolean(false)", false, Boolean(false) )
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.5.3-2.js 44 var testcases = new Array();
15.9.5.4-1.js 40 var testcases = new Array();
15.9.5.5.js 46 var testcases = new Array();
15.9.5.6.js 41 var testcases = new Array();

Completed in 1285 milliseconds

<<31323334353637383940>>