HomeSort by relevance Sort by last modified time
    Searched refs:array (Results 376 - 400 of 3188) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.1.3.js 24 ECMA Section: 15.4.1.3 Array()
26 Description: When Array is called as a function rather than as a
27 constructor, it creates and initializes a new array
28 object. Thus, the function call Array(...) is
29 equivalent to the object creationi new Array(...) with
32 An array is created and returned as if by the
33 expression new Array(len).
41 var TITLE = "Array Constructor Called as a Function: Array()";
50 var array = new Array()
    [all...]
15.4.3.1-2.js 24 ECMA Section: 15.4.3.1 Array.prototype
25 Description: The initial value of Array.prototype is the built-in
26 Array prototype object (15.4.4).
35 var TITLE = "Array.prototype";
43 var array = new Array();
45 var ARRAY_PROTO = Array.prototype;
47 array[item++] = new TestCase( SECTION, "var props = ''; for ( p in Array ) { props += p } props", "", eval("var props = ''; for ( p in Array ) { props += p } props") )
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Boolean/
15.6.4-1.js 48 var array = new Array();
51 array[item++] = new TestCase( SECTION, "typeof Boolean.prototype == typeof( new Boolean )", true, typeof Boolean.prototype == typeof( new Boolean ) );
52 array[item++] = new TestCase( SECTION, "typeof( Boolean.prototype )", "object", typeof(Boolean.prototype) );
53 array[item++] = new TestCase( SECTION,
57 array[item++] = new TestCase( SECTION, "Boolean.prototype.valueOf()", false, Boolean.prototype.valueOf() );
59 return ( array );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/
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...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/
7.1-2.js 53 var array = new Array();
55 array[item++] = new TestCase( SECTION, "'var'+'\u000B'+'MYVAR1=10;MYVAR1'", 10, eval('var'+'\u000B'+'MYVAR1=10;MYVAR1') );
56 array[item++] = new TestCase( SECTION, "'var'+'\u0009'+'MYVAR2=10;MYVAR2'", 10, eval('var'+'\u0009'+'MYVAR2=10;MYVAR2') );
57 array[item++] = new TestCase( SECTION, "'var'+'\u000C'+'MYVAR3=10;MYVAR3'", 10, eval('var'+'\u000C'+'MYVAR3=10;MYVAR3') );
58 array[item++] = new TestCase( SECTION, "'var'+'\u0020'+'MYVAR4=10;MYVAR4'", 10, eval('var'+'\u0020'+'MYVAR4=10;MYVAR4') );
60 return ( array );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Math/
15.8.2.12.js 51 var array = new Array();
54 array[item++] = new TestCase( SECTION, "Math.min.length", 2, Math.min.length );
56 array[item++] = new TestCase( SECTION, "Math.min()", Infinity, Math.min() );
57 array[item++] = new TestCase( SECTION, "Math.min(void 0, 1)", Number.NaN, Math.min( void 0, 1 ) );
58 array[item++] = new TestCase( SECTION, "Math.min(void 0, void 0)", Number.NaN, Math.min( void 0, void 0 ) );
59 array[item++] = new TestCase( SECTION, "Math.min(null, 1)", 0, Math.min( null, 1 ) );
60 array[item++] = new TestCase( SECTION, "Math.min(-1, null)", -1, Math.min( -1, null ) );
61 array[item++] = new TestCase( SECTION, "Math.min(true, false)", 0, Math.min(true,false) );
63 array[item++] = new TestCase( SECTION, "Math.min('-99','99')", -99, Math.min( "-99" (…)
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.2-3.js 66 var array = new Array();
69 array[item++] = new TestCase( SECTION,
73 array[item++] = new TestCase( SECTION,
77 array[item++] = new TestCase( SECTION,
81 array[item++] = new TestCase( SECTION,
86 return ( array );
15.5.4.3-2.js 63 var array = new Array();
66 array[item++] = new TestCase( SECTION,
70 array[item++] = new TestCase( SECTION,
74 array[item++] = new TestCase( SECTION,
78 array[item++] = new TestCase( SECTION,
83 array[item++] = new TestCase( SECTION,
88 return ( array );
  /external/webkit/Source/WebCore/webaudio/
RealtimeAnalyserNode.idl 40 // Copies the current frequency data into the passed array.
41 // If the array has fewer elements than the frequencyBinCount, the excess elements will be dropped.
42 [Conditional=WEBGL] void getFloatFrequencyData(in Float32Array array);
43 [Conditional=WEBGL] void getByteFrequencyData(in Uint8Array array);
46 [Conditional=WEBGL] void getByteTimeDomainData(in Uint8Array array);
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
EncodedArrayItem.java 33 * Encoded array of constant values.
39 /** {@code non-null;} the array to represent */
40 private final CstArray array; field in class:EncodedArrayItem
51 * @param array {@code non-null;} array to represent
53 public EncodedArrayItem(CstArray array) {
60 if (array == null) {
61 throw new NullPointerException("array == null");
64 this.array = array;
    [all...]
  /external/clang/test/CodeGenCXX/
array-construction.cpp 26 xpto array[2][3][4]; local
30 printf("array[%d][%d][%d] = {%d, %f}\n",
31 h, i, j, array[h][i][j].i, array[h][i][j].f);
  /external/eigen/doc/examples/
Tutorial_ArrayClass_interop.cpp 18 result = (m.array() + 4).matrix() * m;
20 result = (m.array() * n.array()).matrix() * m;
  /external/valgrind/main/drd/tests/
pth_barrier.c 29 int8_t* array; member in struct:threadinfo
45 /** Single thread, which touches p->iterations elements of array p->array.
46 * Each modification of an element of p->array is a data race. */
50 int8_t* const array = p->array; local
59 pthread_self(), i + 1, &array[i]);
60 array[i] = i;
73 int8_t* array; local
76 array = malloc(iterations * sizeof(array[0]))
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/NativeObjects/
15-2.js 49 var array = new Array();
52 array[item++] = new TestCase( SECTION, "Object.__proto__", Function.prototype, Object.__proto__ );
53 array[item++] = new TestCase( SECTION, "Array.__proto__", Function.prototype, Array.__proto__ );
54 array[item++] = new TestCase( SECTION, "String.__proto__", Function.prototype, String.__proto__ );
55 array[item++] = new TestCase( SECTION, "Boolean.__proto__", Function.prototype, Boolean.__proto__ );
56 array[item++] = new TestCase( SECTION, "Number.__proto__", Function.prototype, Number.__proto__ );
57 array[item++] = new TestCase( SECTION, "Date.__proto__", Function.prototype, Date.__proto__ )
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/array/array.fill/
fill.pass.cpp 10 // <array>
14 #include <array>
21 typedef std::array<T, 3> C;
31 typedef std::array<T, 0> C;
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
MockParserStream.java 31 int[] array; field in class:MockParserStream
36 array = _array;
42 return array[pos++];
  /dalvik/tests/049-show-object/src/
Main.java 27 Object[] array = new Object[5]; local
28 showObject(array);
31 array = niftyStrings;
32 showObject(array);
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Proxy_I2.java 22 int[] array(long[] f); method in interface:Support_Proxy_I2
  /external/chromium/googleurl/base/
basictypes.h 13 // The arraysize(arr) macro returns the # of elements in an array arr.
18 // One caveat is that arraysize() doesn't accept any array of an
28 char (&ArraySizeHelper(T (&array)[N]))[N];
35 char (&ArraySizeHelper(const T (&array)[N]))[N];
38 #define arraysize(array) (sizeof(ArraySizeHelper(array)))
60 // the array) and sizeof(*(arr)) (the # of bytes in one array
62 // indeed an array, in which case the division result is the # of
63 // elements in the array. Otherwise, arr cannot possibly be an array
    [all...]
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p9.cpp 14 int array[NumElements]; member in class:N::Y
  /external/clang/test/Index/
load-exprs.c 24 struct X array[3]; member in struct:Y
30 struct Y y0 = { .array[StartIndex].b = bval, .array[StartIndex].a = aval };
31 __builtin_offsetof(struct Y, array[StartIndex].b);
69 // CHECK: load-exprs.c:30:20: MemberRef=array:24:12 Extent=[30:20 - 30:25]
73 // CHECK: load-exprs.c:30:49: MemberRef=array:24:12 Extent=[30:49 - 30:54]
78 // CHECK: load-exprs.c:31:32: MemberRef=array:24:12 Extent=[31:32 - 31:37]
  /external/clang/test/Sema/
address-constant.c 8 int *array[] = {&i, a, &s.i}; variable
  /external/clang/test/SemaCXX/
array-bounds-system-header.cpp 2 #include <array-bounds-system-header.h>
6 BAD_MACRO_2(a, 3); // expected-warning {{array index 3}}
8 NOP(a[3] = 5); // expected-warning {{array index 3}}
non-empty-class-size-zero.cpp 5 int array[0]; member in struct:X
  /external/compiler-rt/BlocksRuntime/tests/
byrefcopyint.c 57 voidVoid array[100]; local
59 array[i] = testRoutine(argv[0]);
60 array[i]();
63 Block_release(array[i]);

Completed in 482 milliseconds

<<11121314151617181920>>