HomeSort by relevance Sort by last modified time
    Searched refs:Array (Results 601 - 625 of 1581) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/WebKit/Source/web/
WebBindings.cpp 323 v8::Handle<v8::Array> result = v8::Array::New(isolate, data.size());
334 v8::Handle<v8::Array> result = v8::Array::New(isolate, data.size());
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
svn-log.js 92 var commits = Array.prototype.map.call(responseXML.getElementsByTagName('entry'), function(logentry) {
  /external/chromium_org/tools/code_coverage/third_party/
sorttable.js 140 // build an array to sort. This is a Schwartzian transform thing,
449 // array-like enumeration
450 if (!Array.forEach) { // mozilla already supports this
451 Array.forEach = function(array, block, context) {
452 for (var i = 0; i < array.length; i++) {
453 block.call(context, array[i], i, array);
469 Array.forEach(string.split(""), function(chr, index) {
489 // the object is array-lik
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/metadata/
function_sequence.js 11 * @param {Array} steps array of functions to invoke in sequence.
129 * @param {Array.*} args // TODO(JSDOC).
  /external/chromium_org/v8/test/mjsunit/
delete-non-configurable.js 43 // Delete elements of an Array.
44 var arr = new Array(length);
  /external/chromium_org/v8/test/mjsunit/harmony/
proxies-example-membrane.js 151 return wrap(fun.apply(that, Array.prototype.map.call(args, wrap)));
183 return wrap(new forward(Array.prototype.map.call(arguments, wrap)));
322 optWetHandler, Array.prototype.map.call(arguments, asWet)));
339 asWet(this), Array.prototype.map.call(arguments, asWet)));
345 return asDry(new forward(Array.prototype.map.call(arguments, asWet)));
389 optDryHandler, Array.prototype.map.call(arguments, asDry)));
406 asDry(this), Array.prototype.map.call(arguments, asDry)));
412 return asWet(new forward(Array.prototype.map.call(arguments, asDry)));
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1167.js 33 var a = new Array(n);
50 var a = new Array(n);
regress-crbug-3184.js 70 Object.extend( Array.prototype,
75 var res = new Array(len);
  /external/chromium_org/v8/test/webkit/
Object-create.js 34 shouldBe("Object.getPrototypeOf(Object.create(Array.prototype))", "Array.prototype");
array-reduce.js 28 function toObject(array) {
30 for (var i in array)
31 o[i] = array[i];
32 o.length = array.length;
33 o.reduce = Array.prototype.reduce;
36 function toUnorderedObject(array) {
39 for (var i in array)
42 o[props[i]] = array[props[i]];
43 o.length = array.length;
44 o.reduce = Array.prototype.reduce
    [all...]
  /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...]
warn-bool-conversion.cpp 70 namespace Array {
85 // expected-warning@-1{{address of array 'b' will always evaluate to 'true'}}
87 // expected-warning@-1{{address of array 'b' will always evaluate to 'true'}}
89 // expected-warning@-1{{address of array 'c.x' will always evaluate to 'true'}}
91 // expected-warning@-1{{address of array 'str' will always evaluate to 'true'}}
  /external/clang/tools/scan-build/
sorttable.js 140 // build an array to sort. This is a Schwartzian transform thing,
447 // array-like enumeration
448 if (!Array.forEach) { // mozilla already supports this
449 Array.forEach = function(array, block, context) {
450 for (var i = 0; i < array.length; i++) {
451 block.call(context, array[i], i, array);
467 Array.forEach(string.split(""), function(chr, index) {
487 // the object is array-lik
    [all...]
  /external/eigen/lapack/
slarfg.f 27 * .. Array Arguments ..
76 *> X is REAL array, dimension
118 * .. Array Arguments ..
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
parser.ml 40 Ast.Call (id, Array.of_list (List.rev args))
104 Ast.Prototype (id, Array.of_list (List.rev args))
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
parser.ml 40 Ast.Call (id, Array.of_list (List.rev args))
104 Ast.Prototype (id, Array.of_list (List.rev args))
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
parser.ml 40 Ast.Call (id, Array.of_list (List.rev args))
104 Ast.Prototype (id, Array.of_list (List.rev args))
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
codegen.ml 92 if Array.length params == Array.length args then () else
94 let args = Array.map codegen_expr args in
247 Array.iter (fun (var_name, init) ->
290 let doubles = Array.make (Array.length args) double_type in
310 Array.iteri (fun i a ->
323 Array.iteri (fun i ai ->
  /frameworks/base/core/java/android/text/
SpannableStringInternal.java 24 import java.lang.reflect.Array;
245 ret = (Object[]) Array.newInstance(kind, spanCount - i + 1);
274 ret = (Object[]) Array.newInstance(kind, 1);
282 Object[] nret = (Object[]) Array.newInstance(kind, count);
  /frameworks/base/tools/preload/
sorttable.js 140 // build an array to sort. This is a Schwartzian transform thing,
447 // array-like enumeration
448 if (!Array.forEach) { // mozilla already supports this
449 Array.forEach = function(array, block, context) {
450 for (var i = 0; i < array.length; i++) {
451 block.call(context, array[i], i, array);
467 Array.forEach(string.split(""), function(chr, index) {
487 // the object is array-lik
    [all...]
  /libcore/luni/src/main/java/java/sql/
Connection.java 476 * auto-generated keys designated by a supplied array. If {@code sql} is an
575 * auto-generated keys designated by a supplied array. If {@code sql} is an
    [all...]
ResultSet.java 239 * of this {@code ResultSet} as a {@code java.sql.Array}.
243 * @return a {@code java.sql.Array} with the data from the column.
247 public Array getArray(int columnIndex) throws SQLException;
251 * java.sql.Array}.
255 * @return a {@code java.sql.Array} with the data from the specified column.
259 public Array getArray(String colName) throws SQLException;
453 * Gets the value of a column specified by column index as a byte array.
457 * @return a byte array containing the value of the column. {@code null} if
465 * Gets the value of a column specified by column name as a byte array.
469 * @return a byte array containing the value of the column. {@code null} i
    [all...]
  /libcore/luni/src/main/java/java/util/
AbstractCollection.java 20 import java.lang.reflect.Array;
  /prebuilts/misc/darwin-x86/analyzer/tools/scan-build/
sorttable.js 140 // build an array to sort. This is a Schwartzian transform thing,
447 // array-like enumeration
448 if (!Array.forEach) { // mozilla already supports this
449 Array.forEach = function(array, block, context) {
450 for (var i = 0; i < array.length; i++) {
451 block.call(context, array[i], i, array);
467 Array.forEach(string.split(""), function(chr, index) {
487 // the object is array-lik
    [all...]
  /prebuilts/misc/linux-x86/analyzer/tools/scan-build/
sorttable.js 140 // build an array to sort. This is a Schwartzian transform thing,
447 // array-like enumeration
448 if (!Array.forEach) { // mozilla already supports this
449 Array.forEach = function(array, block, context) {
450 for (var i = 0; i < array.length; i++) {
451 block.call(context, array[i], i, array);
467 Array.forEach(string.split(""), function(chr, index) {
487 // the object is array-lik
    [all...]

Completed in 1034 milliseconds

<<21222324252627282930>>