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

<<414243444546474849

  /external/webkit/JavaScriptCore/tests/mozilla/ecma/String/
15.5.3.2-1.js 52 var array = new Array();
55 array[item++] = new TestCase( SECTION, "typeof String.fromCharCode", "function", typeof String.fromCharCode );
56 array[item++] = new TestCase( SECTION, "typeof String.prototype.fromCharCode", "undefined", typeof String.prototype.fromCharCode );
57 array[item++] = new TestCase( SECTION, "var x = new String(); typeof x.fromCharCode", "undefined", eval("var x = new String(); typeof x.fromCharCode") );
58 array[item++] = new TestCase( SECTION, "String.fromCharCode.length", 1, String.fromCharCode.length );
60 array[item++] = new TestCase( SECTION, "String.fromCharCode()", "", String.fromCharCode() );
61 array[item++] = new TestCase( SECTION, "String.fromCharCode(0x0020)", " ", String.fromCharCode(0x0020) );
62 array[item++] = new TestCase( SECTION, "String.fromCharCode(0x0021)", "!", String.fromCharCode(0x0021) );
63 array[item++] = new TestCase( SECTION, "String.fromCharCode(0x0022)", "\"", String.fromCharCode( (…)
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/TypeConversion/
9.3.1-3.js 53 var testcases = new Array();
  /external/webkit/WebCore/bridge/jni/jsc/
JNIBridgeJSC.cpp 256 JavaArray::JavaArray(jobject array, const char* type, PassRefPtr<RootObject> rootObject)
257 : Array(rootObject)
259 m_array = new JObjectWrapper(array);
260 // Java array are fixed length, so we can cache length.
284 // The type of the array will be something like:
369 // Nested array?
372 // or array of other object type?
  /external/webkit/WebKit/chromium/src/js/
DevTools.js 333 return String.vsprintf(string, Array.prototype.slice.call(arguments, 1));
  /libcore/luni/src/main/java/java/util/concurrent/
ArrayBlockingQueue.java 23 * array. This queue orders elements FIFO (first-in-first-out). The
31 * fixed-sized array holds elements inserted by producers and
57 * even for the items array, which is default-serialized, even if
471 * Returns an array containing all of the elements in this queue, in
474 * <p>The returned array will be "safe" in that no references to it are
476 * a new array). The caller is thus free to modify the returned array.
478 * <p>This method acts as bridge between array-based and collection-based
481 * @return an array containing all of the elements in this queue
502 * Returns an array containing all of the elements in this queue, i
    [all...]
LinkedBlockingQueue.java 31 * Linked queues typically have higher throughput than array-based queues but
534 * Returns an array containing all of the elements in this queue, in
537 * <p>The returned array will be "safe" in that no references to it are
539 * a new array). The caller is thus free to modify the returned array.
541 * <p>This method acts as bridge between array-based and collection-based
544 * @return an array containing all of the elements in this queue
561 * Returns an array containing all of the elements in this queue, in
562 * proper sequence; the runtime type of the returned array is that of
563 * the specified array. If the queue fits in the specified array, i
    [all...]
CopyOnWriteArrayList.java 24 import java.lang.reflect.Array;
74 * contents of a given array.
76 * @param array the array the elements of which are to be copied into the
79 public CopyOnWriteArrayList(E[] array) {
80 int size = array.length;
83 data[i] = array[i];
462 * sets the internal data array
464 * @param data array to set
471 * gets the internal data array (or a new array if it is null
    [all...]
  /libcore/sqlite-jdbc/src/main/java/SQLite/JDBC2z/
JDBCConnection.java 501 public Array createArrayOf(String type, Object[] elems)
JDBCResultSet.java 710 public java.sql.Array getArray(int columnIndex) throws SQLException {
714 public java.sql.Array getArray(String columnName) throws SQLException {
    [all...]
  /dalvik/vm/
Dvm.mk 185 oo/Array.c \
  /development/scripts/app_engine_server/gae_shell/static/
shell.js 36 * The shell history. history is an array of strings, ordered oldest to
41 * element is added to the end of the array for the new statement, and
44 * @type {Array}
  /external/v8/src/arm/
ic-arm.cc 87 // Check that the properties array is a dictionary.
558 // Get the elements array of the object.
566 __ ldr(r3, FieldMemOperand(r1, Array::kLengthOffset));
683 Label slow, fast, array, extra, exit; local
700 // Check if the object is a JS array or not.
704 __ b(eq, &array);
710 // Object case: Check key against length in the elements array.
717 // Untag the key (for checking against untagged length in the fixed array).
719 // Compute address to store into and check array bounds.
733 // element to the array by writing to array[array.length]
    [all...]
  /external/v8/src/
d8.cc 269 Handle<Array> Shell::GetCompletions(Handle<String> text, Handle<String> full) {
277 return handle_scope.Close(Handle<Array>::Cast(val));
date.js 296 var four_year_cycle_table = new $Array(1461);
671 var parse_buffer = $Array(7);
1115 InstallFunctions($Date, DONT_ENUM, $Array(
1126 InstallFunctionsOnHiddenPrototype($Date.prototype, DONT_ENUM, $Array(
    [all...]
json.js 262 InstallFunctions($JSON, DONT_ENUM, $Array(
math.js 240 InstallFunctionsOnHiddenPrototype($Math, DONT_ENUM, $Array(
runtime.cc 141 // an array.
226 // Create the fixed array with the key.
250 // Get the global context from the literals array. This is the
276 Handle<FixedArray> array = Handle<FixedArray>::cast(value); local
277 value = CreateLiteralBoilerplate(literals, array);
283 // If key is a symbol it is not an array element.
287 } else if (Array::IndexFromObject(*key, &element_index)) {
288 // Array index (uint32).
343 Handle<FixedArray> array) {
344 Handle<FixedArray> elements = CompileTimeValue::GetElements(array);
    [all...]
  /external/v8/test/cctest/
test-heap.cc 628 String* name = String::cast(Heap::LookupAsciiSymbol("Array"));
633 JSArray* array = JSArray::cast(Heap::AllocateJSObject(function)); local
634 array->Initialize(0);
636 // Set array length to 0.
637 array->SetElementsLength(Smi::FromInt(0));
638 CHECK_EQ(Smi::FromInt(0), array->length());
639 CHECK(array->HasFastElements()); // Must be in fast mode.
641 // array[length] = name.
642 array->SetElement(0, name);
643 CHECK_EQ(Smi::FromInt(1), array->length())
    [all...]
test-debug.cc 382 // Allocate array for the debugged functions
727 // checks: An array of expressions and expected results
735 // Array of checks to do.
808 // expected_step_sequence: An array of the expected function call sequence.
    [all...]
  /external/webkit/WebCore/inspector/front-end/
ConsoleView.js 111 "array": this._formatarray,
602 this.setMessageBody(Array.prototype.slice.call(arguments, 7));
613 var stack = Array.prototype.slice.call(args);
    [all...]
ElementsPanel.js 409 else if (value1 instanceof Array)
441 if (!(value instanceof Array))
    [all...]
inspector.js 555 var parameters = Array.prototype.slice.call(arguments, 1);
    [all...]
  /external/v8/benchmarks/
earley-boyer.js 1333 var a = new Array();
1341 var sc_Vector = Array;
1359 /*** META ((export vector? array?)
1375 /*** META ((export make-vector make-array)) */
1383 /*** META ((export vector array)
1393 /*** META ((export vector-length array-length)
1400 /*** META ((export vector-ref array-ref)
1407 /*** META ((export vector-set! array-set!)
1414 /*** META ((export vector->list array->list)) */
    [all...]
raytrace.js 318 this.shapes = new Array();
319 this.lights = new Array();
  /external/webkit/SunSpider/tests/v8-v4/
v8-earley-boyer.js 1327 var a = new Array();
1335 var sc_Vector = Array;
1353 /*** META ((export vector? array?)
1369 /*** META ((export make-vector make-array)) */
1377 /*** META ((export vector array)
1387 /*** META ((export vector-length array-length)
1394 /*** META ((export vector-ref array-ref)
1401 /*** META ((export vector-set! array-set!)
1408 /*** META ((export vector->list array->list)) */
1416 /*** META ((export list->vector list->array)) */
    [all...]

Completed in 1947 milliseconds

<<414243444546474849