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

1 2 3 45 6 7 8 91011>>

  /external/skia/experimental/docs/
utilities.js 19 return a.constructor === Array;
  /external/v8/test/mjsunit/
array-shift.js 28 // Check that shifting array of holes keeps it as array of holes
30 var array = new Array(10);
31 array.shift();
32 assertFalse(0 in array);
35 // Now check the case with array of holes and some elements on prototype.
38 var array = new Array(len);
39 Array.prototype[3] = "@3"
    [all...]
array-store-and-grow.js 31 // to an array that grow it by a single element. Test functions are
39 // Check handling of the empty array.
121 a = new Array(1,2,3);
123 a = new Array(1,2,3);
132 a = new Array(1,2,3);
134 a = new Array(1,2,3);
143 a = new Array(1,2,3);
145 a = new Array(1,2,3);
155 var a = new Array(0.5, 1.5);
157 a = new Array(0.5, 1.5)
    [all...]
array-functions-prototype-misc.js 61 return new Array(length);
63 the_prototype = Array.prototype;
64 push_function = function(array, elt) {
65 return array.push(elt);
67 concat_function = function(array, other) {
68 return array.concat(other);
70 slice_function = function(array, start, len) {
71 return array.slice(start, len);
73 splice_function = function(array, start, len) {
74 return array.splice(start, len)
    [all...]
array-push6.js 7 function push_wrapper(array, value) {
8 array.push(value);
11 // Test that optimization of Array.push() for non-Arrays works correctly.
14 object.__proto__ = Array.prototype;
  /external/v8/test/mjsunit/bugs/
bug-4577.js 6 return Array.isArray(arguments);
  /external/v8/test/mjsunit/es6/
typed-array-iterator.js 24 assertEquals(Array.prototype.entries, TypedArrayPrototype.entries);
25 assertEquals(Array.prototype[Symbol.iterator], TypedArrayPrototype.values);
26 assertEquals(Array.prototype.keys, TypedArrayPrototype.keys);
27 assertEquals(Array.prototype[Symbol.iterator], TypedArrayPrototype[Symbol.iterator]);
31 var array = [1, 2, 3];
33 for (var value of new constructor(array)) {
34 assertEquals(array[i++], value);
36 assertEquals(i, array.length);
  /external/v8/test/mjsunit/regress/
regress-500173.js 12 f(new Array());
regress-alloc-smi-check.js 13 f(new Array(100000));
regress-arguments-slice.js 8 Array.prototype.slice.call(o);
regress-crbug-485410.js 20 for (var i = 0; i < 3; i++) Fail(new Array(1), 1, i);
23 Fail(new Array(1), ToHeapNumber(1050), 3);
  /frameworks/base/core/java/android/hardware/camera2/marshal/impl/
MarshalQueryableArray.java 24 import java.lang.reflect.Array;
29 * Marshal any array {@code T}.
37 * @param <T> the type of the array (e.g. T = int[], or T = Rational[])
62 int length = Array.getLength(value);
70 Object array; local
86 "Attempting to unpack array (count = %d, element size = %d, bytes "
91 array = Array.newInstance(mComponentClass, arraySize);
94 Array.set(array, i, elem)
    [all...]
  /libnativehelper/include/nativehelper/
ScopedPrimitiveArray.h 31 Scoped ## NAME ## ArrayRO(JNIEnv* env, PRIMITIVE_TYPE ## Array javaArray) \
47 void reset(PRIMITIVE_TYPE ## Array javaArray) { \
58 PRIMITIVE_TYPE ## Array getJavaArray() const { return mJavaArray; } \
64 PRIMITIVE_TYPE ## Array mJavaArray; \
91 Scoped ## NAME ## ArrayRW(JNIEnv* env, PRIMITIVE_TYPE ## Array javaArray) \
104 void reset(PRIMITIVE_TYPE ## Array javaArray) { \
109 PRIMITIVE_TYPE ## Array getJavaArray() const { return mJavaArray; } \
116 PRIMITIVE_TYPE ## Array mJavaArray; \
  /ndk/sources/cxx-stl/gabi++/tests/
test_vector3.cpp 62 typedef test1::A Array[10];
63 Array a[10]; // calls _cxa_vec_dtor
  /art/runtime/entrypoints/quick/
quick_fillarray_entrypoints.cc 19 #include "mirror/array.h"
25 * Handle fill array data by copying appropriate part of dex file into array.
27 extern "C" int artHandleFillArrayDataFromCode(uint32_t payload_offset, mirror::Array* array,
34 bool success = FillArrayData(array, payload);
  /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/chromium-trace/catapult/tracing/third_party/gl-matrix/src/gl-matrix/
common.js 29 glMatrix.ARRAY_TYPE = (typeof Float32Array !== 'undefined') ? Float32Array : Array;
33 * Sets the type of array used when creating new vectors and matrices
35 * @param {Type} type Array type, such as Float32Array or Array
  /external/clang/test/CodeGenCXX/
alignment.cpp 172 struct Array {
177 __attribute__((aligned(16))) Array aArray;
182 Array bArray;
198 typedef __attribute__((aligned(64))) Array AlignedArray;
202 // CHECK: [[RESULT:%.*]] = alloca [[ARRAY:%.*]], align 64
205 // CHECK: [[T0:%.*]] = bitcast [[ARRAY]]* [[RESULT]] to i8*
206 // CHECK: [[T1:%.*]] = bitcast [[ARRAY]]* [[ARRAY_P]] to i8*
213 // CHECK: [[RESULT:%.*]] = alloca [[ARRAY]], align 64
224 // CHECK: [[T0:%.*]] = bitcast [[ARRAY]]* [[RESULT]] to i8*
225 // CHECK: [[T1:%.*]] = bitcast [[ARRAY]]* [[ARRAY_P]] to i8
    [all...]
  /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...]
VarargCapturingMatcher.java 8 import java.lang.reflect.Array;
50 Object[] primitiveArray = new Object[Array.getLength(varArgArray)];
52 primitiveArray[i] = Array.get(varArgArray, i);
  /external/v8/test/mjsunit/es7/regress/
regress-443982.js 12 Object.defineProperty(Array.prototype, '0', {
17 Array.observe(arr, observer);
  /external/protobuf/java/src/main/java/com/google/protobuf/nano/
Extension.java 34 import java.lang.reflect.Array;
134 * @param clazz the Java array type of this extension, with an unboxed component type
150 * Protocol Buffer {@link #type}; for a repeated extension, this is an array type whose
203 T result = clazz.cast(Array.newInstance(clazz.getComponentType(), resultSize));
205 Array.set(result, i, resultList.get(i));
285 protected void writeRepeatedData(Object array, CodedOutputByteBufferNano output) {
287 int arrayLength = Array.getLength(array);
289 Object element = Array.get(array, i)
    [all...]
  /external/bison/lib/
argmatch.h 29 # define ARRAY_CARDINALITY(Array) (sizeof (Array) / sizeof *(Array))
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p1.cpp 98 template<class T> class Array { /* ... */ };
99 template<class T> void sort(Array<T>& v) { /* ... */ }
100 template<> void sort<char*>(Array<char*>&) ;
  /external/opencv3/samples/wp8/OcvImageManipulation/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
DirectXHelper.h 19 inline Concurrency::task<Platform::Array<byte>^> ReadDataAsync(Platform::String^ filename)
34 }).then([] (Streams::IBuffer^ fileBuffer) -> Platform::Array<byte>^
36 auto fileData = ref new Platform::Array<byte>(fileBuffer->Length);

Completed in 829 milliseconds

1 2 3 45 6 7 8 91011>>