/external/opencv3/samples/winrt/ImageManipulations/ |
Constants.h | 33 static property Platform::Array<Scenario>^ scenarios 35 Platform::Array<Scenario>^ get() 41 static Platform::Array<Scenario>^ scenariosInner;
|
/external/clang/test/CXX/temp/temp.spec/temp.explicit/ |
p6.cpp | 4 template<class T> class Array { /* ... */ }; 5 template<class T> void sort(Array<T>& v) { } 7 // instantiate sort(Array<int>&) - template-argument deduced 8 template void sort<>(Array<int>&); 10 template void sort(Array<long>&);
|
/external/clang/test/CodeGen/ |
2002-03-12-ArrayInitialization.c | 4 specified for an array. 17 struct Test Array[10] = { { 2, 12.0 }, { 3, 24.0 } };
|
/external/clang/test/CodeGenCXX/ |
pr20897.cpp | 32 int Array[1];
|
exception-spec-decay.cpp | 2 typedef int Array[10]; 4 void foo() throw (Array) {
|
/external/v8/test/mjsunit/regress/ |
regress-crbug-469768.js | 9 Array.prototype.concat.apply([], new Array(100000)); 16 Array.prototype.concat.apply([], new Array(150000)); 23 Array.prototype.concat.apply([], new Array(200000)); 30 Array.prototype.concat.apply([], new Array(248000));
|
regress-builtinbust-6.js | 5 // Test that Array builtins can be called on primitive values. 9 Array.prototype.join.call(v); 10 Array.prototype.pop.call(v); 11 Array.prototype.push.call(v); 12 Array.prototype.reverse.call(v); 13 Array.prototype.shift.call(v); 14 Array.prototype.slice.call(v); 15 Array.prototype.splice.call(v); 16 Array.prototype.unshift.call(v); 33 test_receiver(11, "Array.prototype.join.call(11)" [all...] |
regress-3158.js | 7 Array.prototype[0] = 'a'; 8 delete Array.prototype[0]; 14 var a = new Array(100000); 22 Array.prototype[0] = 'a';
|
/external/eigen/Eigen/src/Core/ |
Array.h | 15 /** \class Array 20 * The %Array class is very similar to the Matrix class. It provides 22 * %Array and the %Matrix class is primarily in the API: the API for the 23 * %Array class provides easy access to coefficient-wise operations, while the 34 struct traits<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > : traits<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > 37 typedef ArrayBase<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > XprBase; 42 class Array 43 : public PlainObjectBase<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > 47 typedef PlainObjectBase<Array> Base; 48 EIGEN_DENSE_PUBLIC_INTERFACE(Array) [all...] |
/external/v8/test/mjsunit/es7/ |
array-includes.js | 6 // https://github.com/tc39/Array.prototype.includes/tree/master/test 10 // Array.prototype.includes sees a new element added by a getter that is hit 23 assertTrue(Array.prototype.includes.call(arrayLike, "c")); 27 // Array.prototype.includes works on array-like objects 35 assertTrue(Array.prototype.includes.call(arrayLike1, "a")); 36 assertFalse(Array.prototype.includes.call(arrayLike1, "c")); 45 assertTrue(Array.prototype.includes.call(arrayLike2, "b")); 46 assertFalse(Array.prototype.includes.call(arrayLike2, "c")); 50 // Array.prototype.includes should fail if used on a null or undefined thi [all...] |
array-includes-to-object-sloppy.js | 6 // https://github.com/tc39/Array.prototype.includes/blob/master/test/number-this.js 9 // Array.prototype.includes should use ToObject on this, so that when called 23 assertTrue(Array.prototype.includes.call(5, "a")); 24 assertTrue(Array.prototype.includes.call(5, "b")); 25 assertTrue(Array.prototype.includes.call(5, "c")); 26 assertFalse(Array.prototype.includes.call(5, "d"));
|
/external/v8/test/webkit/fast/js/ |
array-functions-non-arrays.js | 25 "Test some array functions on non-array objects." 102 shouldBe("Array.prototype.toString.call({})", '"' + ({}).toString() + '"'); 103 shouldBe("Array.prototype.toString.call(new Date)", '"' + Object.prototype.toString.call(new Date) + '"'); 104 shouldBe("Array.prototype.toString.call({sort: function() { return 'sort' }})", '"' + Object.prototype.toString.call({}) + '"'); 105 shouldBe("Array.prototype.toString.call({join: function() { return 'join' }})", '"join"'); 106 shouldBe("Array.prototype.toString.call({__proto__: Array.prototype, 0: 'a', 1: 'b', 2: 'c', length: 3})", '"a,b,c"'); 107 shouldBe("({__proto__: Array.prototype, 0: 'a', 1: 'b', 2: 'c', length: 3}).toString()", '"a,b,c"'); 108 shouldBe("Array.prototype.toString.call({__proto__: Array.prototype, 0: 'a', 1: 'b', 2: 'c', length: 3, join: func (…) [all...] |
/external/v8/test/mjsunit/es6/ |
array-from.js | 7 assertEquals(1, Array.from.length); 17 // Assert that constructor is called with "length" for array-like objects 25 Array.from.call(MyCollection, {length: 5}); 34 Array.from([1], non_strict); 35 Array.from([1], non_strict, void 0); 36 Array.from([1], non_strict, null); 37 Array.from([1], strict); 38 Array.from([1], strict, void 0); 39 Array.from([1], strict_null, null); 42 assertArrayLikeEquals(Array.from.call(thisArg, [], undefined), [] [all...] |
array-length.js | 7 // Test array functions do not cause infinite loops when length is negative, 13 var result = Array.prototype.toString.call(o); 19 var result = Array.prototype.toLocaleString.call(o); 25 var result = Array.prototype.join.call(o); 31 Array.prototype.push.call(o, 1); 36 assertThrows(() => Array.prototype.push.call(o, 1), TypeError); 41 Array.prototype.pop.call(o); 45 Array.prototype.pop.call(o); 49 Array.prototype.pop.call(o); 55 var result = Array.prototype.reverse.call(o) [all...] |
/external/clang/test/Frontend/ |
optimization-remark-analysis.c | 7 double foo(int N, int *Array) { 12 switch(Array[i]) {
|
/external/eigen/unsupported/Eigen/src/Splines/ |
SplineFwd.h | 36 typedef Array<Scalar,1,OrderAtCompileTime> BasisVectorType; 39 typedef Array<Scalar,Dynamic,Dynamic,RowMajor,NumOfDerivativesAtCompileTime,OrderAtCompileTime> BasisDerivativeType; 42 typedef Array<Scalar,Dimension,Dynamic,ColMajor,Dimension,NumOfDerivativesAtCompileTime> DerivativeType; 45 typedef Array<Scalar,Dimension,1> PointType; 48 typedef Array<Scalar,1,Dynamic> KnotVectorType; 51 typedef Array<Scalar,Dimension,Dynamic> ControlPointVectorType; 67 typedef Array<_Scalar,Dynamic,Dynamic,RowMajor,NumOfDerivativesAtCompileTime,OrderAtCompileTime> BasisDerivativeType; 70 typedef Array<_Scalar,_Dim,Dynamic,ColMajor,_Dim,NumOfDerivativesAtCompileTime> DerivativeType;
|
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/ |
GwtPlatform.java | 20 import com.google.gwt.lang.Array; 35 public static <T> T[] clone(T[] array) { 36 return (T[]) Array.clone(array);
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
array5.cpp | 6 // array of class. 35 struct Array 37 A array[2][2][2]; member in struct:Array 45 Array A;
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
array5.cpp | 6 // array of class. 35 struct Array 37 A array[2][2][2]; member in struct:Array 45 Array A;
|
/external/v8/test/mjsunit/ |
array-constructor.js | 32 var a = new Array(); 33 var b = Array(); 45 var a = new Array(j); 46 var b = Array(j); 58 a = new Array(0, 1); 60 a = new Array(0, 1, 2); 62 a = new Array(0, 1, 2, 3); 64 a = new Array(0, 1, 2, 3, 4); 66 a = new Array(0, 1, 2, 3, 4, 5); 68 a = new Array(0, 1, 2, 3, 4, 5, 6) [all...] |
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/ |
p6.cpp | 42 template<class T> class Array { /* ... */ }; 44 template<class T> void sort(Array<T>& v) { /* ... */ } 48 void f(Array<String>& v) { 52 // sort(Array<T>&), T is String 55 template<> void sort<String>(Array<String>& v); // // expected-error{{after instantiation}} 56 template<> void sort<>(Array<char*>& v); // OK: sort<char*> not yet used
|
/external/opencv3/3rdparty/openexr/IlmImf/ |
ImfArray.h | 42 // class Array 46 // When an array goes out of scope, its elements are automatically 60 // Array <C> a(3); 76 class Array 84 Array () {_data = 0;} 85 Array (long size) {_data = new T[size];} 86 ~Array () {delete [] _data;} 90 // Access to the array elements 98 // Resize and clear the array (the contents of the array [all...] |
/external/deqp/modules/gles2/functional/ |
es2fVertexArrayTest.cpp | 21 * \brief Vertex array and buffer tests 72 Array::Usage usages[] = {Array::USAGE_STATIC_DRAW, Array::USAGE_STREAM_DRAW, Array::USAGE_DYNAMIC_DRAW}; 75 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_FIXED, Array::INPUTTYPE_SHORT, Array::INPUTTYPE_BYTE} [all...] |
/external/v8/test/webkit/ |
array-proto-func-length-getter-except.js | 25 "This test checks that functions on the array prototype correctly handle exceptions from length getters when called on non-array objects." 47 shouldBeTrue("test(Array.prototype.join)"); 48 shouldBeTrue("test(Array.prototype.pop)"); 49 shouldBeTrue("test(Array.prototype.push)"); 50 shouldBeTrue("test(Array.prototype.reverse)"); 51 shouldBeTrue("test(Array.prototype.shift)"); 52 shouldBeTrue("test(Array.prototype.slice)"); 53 shouldBeTrue("test(Array.prototype.sort)"); 54 shouldBeTrue("test(Array.prototype.splice)") [all...] |
/external/clang/test/SemaTemplate/ |
instantiate-member-initializers.cpp | 39 template<typename T> struct Array { 41 Array() : a() {} 43 Array<int> s;
|