/external/eigen/bench/btl/libs/blitz/ |
blitz_interface.hh | 25 #include <blitz/array.h> 43 typedef blitz::Array<real, 2> gene_matrix; 44 typedef blitz::Array<real, 1> gene_vector;
|
/external/eigen/test/ |
array.cpp | 12 template<typename ArrayType> void array(const ArrayType& m) function 17 typedef Array<Scalar, ArrayType::RowsAtCompileTime, 1> ColVectorType; 18 typedef Array<Scalar, 1, ArrayType::ColsAtCompileTime> RowVectorType; 89 typedef Array<Scalar, ArrayType::RowsAtCompileTime, 1> VectorType; 143 typedef Array<typename ArrayType::Index, Dynamic, 1> ArrayOfIndices; 145 // TODO allows colwise/rowwise for array 207 // scalar by array division 243 // min/max with array 265 CALL_SUBTEST_1( array(Array<float, 1, 1>()) ) [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
ForwardingTestCase.java | 24 import java.lang.reflect.Array; 117 return Array.newInstance(returnType.getComponentType(), 0);
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
parser.ml | 42 Ast.Call (id, Array.of_list (List.rev args)) 160 Ast.Prototype (id, Array.of_list (List.rev args)) 169 let args = Array.of_list (List.rev args) in 172 if Array.length args != kind
|
/external/llvm/lib/CodeGen/ |
LiveIntervalUnion.cpp | 183 void LiveIntervalUnion::Array::init(LiveIntervalUnion::Allocator &Alloc, 196 void LiveIntervalUnion::Array::clear() {
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/ |
11.4.3.js | 46 var testcases = new Array(); 83 testcases[testcases.length] = new TestCase( SECTION, "typeof(new Array(1,2,3))", "object", typeof(new Array(1,2,3)) ); 86 testcases[testcases.length] = new TestCase( SECTION, "typeof(['array', 'of', 'strings'])", "object", typeof(["array", "of", "strings"]) );
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/ |
15.1.2.4.js | 81 var array = new Array(); 84 array[item++] = new TestCase( SECTION, "escape.length", 1, escape.length ); 85 array[item++] = new TestCase( SECTION, "escape.length = null; escape.length", 1, eval("escape.length = null; escape.length") ); 86 array[item++] = new TestCase( SECTION, "delete escape.length", false, delete escape.length ); 87 array[item++] = new TestCase( SECTION, "delete escape.length; escape.length", 1, eval("delete escape.length; escape.length") ); 88 array[item++] = new TestCase( SECTION, "var MYPROPS=''; for ( var p in escape ) { MYPROPS+= p}; MYPROPS", "", eval("var MYPROPS=''; for ( var p in escape ) { MYPROPS+= p}; MYPROPS") ); 90 array[item++] = new TestCase( SECTION, "escape()", "undefined", escape() ); 91 array[item++] = new TestCase( SECTION, "escape('')", "", escape('') ); 92 array[item++] = new TestCase( SECTION, "escape( null )", "null", escape(null) ) [all...] |
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...] |
15.1.2.5-3.js | 84 var array = new Array(); 90 array[item++] = new TestCase( SECTION, 102 array[item++] = new TestCase( SECTION, 115 array[item++] = new TestCase( SECTION, 128 return ( array ); 152 var hex = new Array();
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/TypeConversion/ |
9.2.js | 46 var testcases = new Array(); 80 testcases[tc++] = new TestCase( SECTION, "Boolean(new Array())", true, Boolean(new Array()) );
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/ |
regress-85721.js | 82 expect = Array("<sql:connection id=\"conn1\"> <sql:url>www.m.com</sql:url> <sql:driver>drive.class</sql:driver>\n<sql:userId>foo</sql:userId> <sql:password>goo</sql:password> </sql:connection>","conn1","www.m.com","drive.class","<sql:userId>foo</sql:userId> ","foo","<sql:password>goo</sql:password> ","goo"); 256 expect = Array('Jeffy<"That Tall Guy"@ora.com (this address is no longer active)>');
|
shell.js | 30 var ERR_MATCH = '\nERROR !!! regexp failed to give expected match array:'; 49 var actualmatch = new Array(); 50 var expectedmatch = new Array(); 156 * var arr = Array(1,2,'3'); 183 * a) Double-quote each array element that is of string type
|
/external/webkit/Source/WebCore/bindings/v8/ |
PageScriptDebugServer.cpp | 108 v8::Handle<v8::Array> scriptsArray = v8::Handle<v8::Array>::Cast(value);
|
WorkerScriptDebugServer.cpp | 99 v8::Handle<v8::Array> scriptsArray = v8::Handle<v8::Array>::Cast(value);
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8ConsoleCustom.cpp | 56 v8::Handle<v8::Array> result = v8::Array::New(profiles.size());
|
/libcore/luni/src/main/java/java/util/concurrent/atomic/ |
AtomicReferenceArray.java | 10 import java.lang.reflect.Array; 14 * An array of object references in which elements may be updated 20 * @param <E> The base class of elements held in this array 29 private final Object[] array; // must have exact type Object[] field in class:AtomicReferenceArray 36 (AtomicReferenceArray.class.getDeclaredField("array")); 48 if (i < 0 || i >= array.length) 62 * @param length the length of the array 65 array = new Object[length]; 70 * all elements copied from, the given array. 72 * @param array the array to copy elements fro [all...] |
/external/clang/lib/Tooling/ |
JSONCompilationDatabase.cpp | 242 llvm::yaml::SequenceNode *Array = dyn_cast<llvm::yaml::SequenceNode>(Root); 243 if (Array == NULL) { 244 ErrorMessage = "Expected array."; 247 for (llvm::yaml::SequenceNode::iterator AI = Array->begin(), 248 AE = Array->end();
|
/external/clang/test/SemaCXX/ |
c99-variable-length-array.cpp | 19 NonPOD array3[N]; // expected-error{{variable length array of non-POD element type 'NonPOD'}} 20 NonPOD2 array4[N][3]; // expected-error{{variable length array of non-POD element type 'NonPOD2'}} 50 int array[N]; // expected-warning{{variable length arrays are a C99 feature}} local 51 X0<__typeof__(array)> x0a; // expected-error{{variably modified type 'typeof (array)' (aka 'int [N]') cannot be used as a template argument}} 56 template<int (&Array)[T::value]> // expected-error{{non-type template parameter of variably modified type 'int (&)[HasNonConstantValue::value]'}} \ 69 void accept_array(T (&array)[N]); // expected-note{{candidate template ignored: could not match 'T [N]' against 'int [N]'}} 72 int array[N]; // expected-warning{{variable length arrays are a C99 feature}} local 73 accept_array(array); // expected-error{{no matching function for call to 'accept_array'}} 80 int array[N]; // expected-error{{fields must have a constant size: 'variable length array in structure' exte (…) member in struct:X 100 int array[value * i]; \/\/ expected-warning 2{{variable length arrays are a C99 feature}} local [all...] |
/external/eigen/doc/special_examples/ |
Tutorial_sparse_example_details.cpp | 39 Eigen::Array<unsigned char,Eigen::Dynamic,Eigen::Dynamic> bits = (x*255).cast<unsigned char>();
|
/external/eigen/doc/ |
tutorial.cpp | 1 #include <Eigen/Array>
|
/external/v8/test/mjsunit/ |
array-sort.js | 30 // Test array sort. 151 // Test array sorting with holes in the array. 164 // Test array sorting with undefined elemeents in the array. 175 // in the array. 193 Array.prototype.sort.call(obj); 209 var x = new Array(4); 213 Array.prototype.sort.call(x); 232 Array.prototype.sort.call(x) [all...] |
function-caller.js | 51 [Array.prototype.sort, Array.prototype.sort].sort(f);
|
instanceof.js | 31 assertFalse({} instanceof Array); 32 assertTrue([] instanceof Array);
|
/external/v8/test/mjsunit/compiler/ |
regress-serialized-slots.js | 40 var args = Array.prototype.slice.call(arguments, 1); 46 args.concat(Array.prototype.slice.call(arguments, 0)));
|
/external/v8/test/mjsunit/regress/ |
regress-1129.js | 34 var source = Array(50000).join("(") + "a" + Array(50000).join(")");
|