HomeSort by relevance Sort by last modified time
    Searched refs:Array (Results 26 - 50 of 1692) sorted by null

12 3 4 5 6 7 8 91011>>

  /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/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
regress-87231.js 30 * expectedmatch = Array('A', '', 'A');
45 var statusmessages = new Array();
47 var patterns = new Array();
49 var strings = new Array();
51 var actualmatches = new Array();
53 var expectedmatches = new Array();
60 expectedmatch = Array('AAA', 'A', 'AA');
66 expectedmatch = Array('AA', 'A', 'A');
72 expectedmatch = Array('A', undefined, 'A'); // 'altruistic' case: see above
83 expectedmatch = Array('AAA' + strR, 'A', 'AA' + strR)
    [all...]
regress-123437.js 49 var statusmessages = new Array();
51 var patterns = new Array();
53 var strings = new Array();
55 var actualmatches = new Array();
57 var expectedmatches = new Array();
64 expectedmatch = Array('a', undefined);
71 expectedmatch = Array('a', undefined);
78 expectedmatch = Array('a', undefined, 'a');
perlstress-001.js 57 //expectedmatch = Array('.', '.', ''); <<<--- Perl
58 expectedmatch = Array('.', '.', undefined); <<<--- JS
91 var statusmessages = new Array();
93 var patterns = new Array();
95 var strings = new Array();
97 var actualmatches = new Array();
99 var expectedmatches = new Array();
108 expectedmatch = Array('abc');
115 expectedmatch = Array('abc');
122 expectedmatch = Array('abc')
    [all...]
octal-001.js 47 var statusmessages = new Array();
49 var patterns = new Array();
51 var strings = new Array();
53 var actualmatches = new Array();
55 var expectedmatches = new Array();
74 expectedmatch = Array('ab*c');
81 expectedmatch = Array('abc');
88 expectedmatch = Array('ab****c', '*');
95 expectedmatch = Array('ab****c', '****', '*');
102 expectedmatch = Array('*c')
    [all...]
regress-165353.js 47 var statusmessages = new Array();
49 var patterns = new Array();
51 var strings = new Array();
53 var actualmatches = new Array();
55 var expectedmatches = new Array();
62 expectedmatch = Array('a', undefined);
68 expectedmatch = Array('ab', 'a');
74 expectedmatch = Array('abc', 'ab');
82 expectedmatch = Array('www.netscape.com', 'netscape.', 'netscap');
89 expectedmatch = Array('www.netscape.com', 'netscape.', 'netscap', 'e')
    [all...]
regress-191479.js 48 var statusmessages = new Array();
50 var patterns = new Array();
52 var strings = new Array();
54 var actualmatches = new Array();
56 var expectedmatches = new Array();
63 expectedmatch = Array('12', '2');
70 expectedmatch = Array(string, '5');
77 expectedmatch = Array('12', '2');
84 expectedmatch = Array(string, '5');
94 expectedmatch = Array(string, '5')
    [all...]
regress-57572.js 34 var statusmessages = new Array();
36 var patterns = new Array();
38 var strings = new Array();
40 var actualmatches = new Array();
42 var expectedmatches = new Array();
49 expectedmatch = Array(string, 'Test', ' this'); //single space in front of 'this'
56 expectedmatch = Array(string, 'Test', 'this'); //NO space in front of 'this'
63 expectedmatch = Array(string, 'Stupid', ' phrase, with six - (short) words'); //single space in front of 'phrase'
70 expectedmatch = Array(string, 'Stupid', 'phrase, with six - (short) words'); //NO space in front of 'phrase'
79 expectedmatch = Array(string, 'Stupid', cnSingleSpace, 'phrase, with six - (short) words')
    [all...]
15.10.2-1.js 49 var statusmessages = new Array();
51 var patterns = new Array();
53 var strings = new Array();
55 var actualmatches = new Array();
57 var expectedmatches = new Array();
64 expectedmatch = Array('a');
71 expectedmatch = Array('abc', 'a', 'a', undefined, 'bc', undefined, 'bc');
78 expectedmatch = Array('abcde');
85 expectedmatch = Array('abc');
92 expectedmatch = Array('aaba', 'ba')
    [all...]
regress-216591.js 48 var statusmessages = new Array();
50 var patterns = new Array();
52 var strings = new Array();
54 var actualmatches = new Array();
56 var expectedmatches = new Array();
63 expectedmatch = Array('{result.data.DATA}', 'result.data.', 'data.', 'DATA');
82 expectedmatch = Array('{result.data.DATA}');
regress-220367-001.js 48 var statusmessages = new Array();
50 var patterns = new Array();
52 var strings = new Array();
54 var actualmatches = new Array();
56 var expectedmatches = new Array();
63 expectedmatch = Array(string, 'a', undefined);
70 expectedmatch = Array(string, undefined, 'b');
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/meta/meta.rel/
is_convertible.pass.cpp 17 typedef char Array[1];
42 static_assert((!std::is_convertible<void, Array>::value), "");
43 static_assert((!std::is_convertible<void, const Array>::value), "");
44 static_assert((!std::is_convertible<const void, Array>::value), "");
45 static_assert((!std::is_convertible<const void, const Array>::value), "");
47 static_assert((!std::is_convertible<void, Array&>::value), "");
48 static_assert((!std::is_convertible<void, const Array&>::value), "");
49 static_assert((!std::is_convertible<const void, Array&>::value), "");
50 static_assert((!std::is_convertible<const void, const Array&>::value), "");
78 static_assert((!std::is_convertible<Function, Array>::value), "")
    [all...]
  /external/clang/test/CodeGenCXX/
exception-spec-decay.cpp 2 typedef int Array[10];
4 void foo() throw (Array) {
  /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;
  /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/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/clang/test/CodeGen/
debug-info-iv.c 16 for (j = 0; j < 100; j+=3) /* 2d array access */
22 int Array[100][200], i, j;
27 Array[i][j] = 0;
28 test_indvars(Array[0], Array);
33 sum += Array[i][j];
  /external/llvm/lib/Analysis/
LibCallSemantics.cpp 52 const LibCallFunctionInfo *Array = getFunctionInfoArray();
53 if (Array == 0) return 0;
55 // We now have the array of entries. Populate the StringMap.
56 for (unsigned i = 0; Array[i].Name; ++i)
57 (*Map)[Array[i].Name] = Array+i;
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Array/
regress-178722.js 41 * ECMA-262 Ed.3: 15.4.4.11 Array.prototype.sort (comparefn)
54 * If |arr| is an empty array, the return value of |arr.sort()| should be
55 * an empty array, not the value |undefined| as was occurring in bug 178722.
71 // create empty array or pseudo-array objects in various ways
72 var arr1 = Array();
73 var arr2 = new Array();
79 arr5.__proto__ = Array.prototype;
84 actual = arr instanceof Array && arr.length === 0 && arr === arr1;
90 actual = arr instanceof Array && arr.length === 0 && arr === arr2
    [all...]
  /system/core/libcutils/
array.c 17 #include <cutils/array.h>
26 struct Array {
32 Array* arrayCreate() {
33 return calloc(1, sizeof(struct Array));
36 void arrayFree(Array* array) {
37 assert(array != NULL);
39 // Free internal array.
40 free(array->contents);
42 // Free the Array itself
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.1.js 24 ECMA Section: 15.4.1 The Array Constructor Called as a Function
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
39 var TITLE = "The Array Constructor Called as a Function";
47 var array = new Array();
50 array[item++] = new TestCase( SECTION,
51 "Array() +''"
    [all...]
15.4.4.2.js 24 ECMA Section: 15.4.4.2 Array.prototype.toString()
37 var TITLE = "Array.prototype.toString";
45 var array = new Array();
48 array[item++] = new TestCase( SECTION, "Array.prototype.toString.length", 0, Array.prototype.toString.length );
50 array[item++] = new TestCase( SECTION, "(new Array()).toString()", "", (new Array()).toString() )
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-member-initializers.cpp 39 template<typename T> struct Array {
41 Array() : a() {}
43 Array<int> s;
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
GwtPlatform.java 21 import com.google.gwt.lang.Array;
37 public static <T> T[] clone(T[] array) {
38 return (T[]) Array.clone(array);
42 return Array.createFrom(reference, length);

Completed in 1307 milliseconds

12 3 4 5 6 7 8 91011>>